[boinc] 01/03: Imported Upstream version 7.6.20+dfsg

Gianfranco Costamagna locutusofborg-guest at moszumanska.debian.org
Tue Dec 8 11:49:25 UTC 2015


This is an automated email from the git hooks/post-receive script.

locutusofborg-guest pushed a commit to branch master
in repository boinc.

commit d21e6464568d8f5a7f286c5a55f3142f6f31cc5f
Author: Gianfranco Costamagna <costamagnagianfranco at yahoo.it>
Date:   Tue Dec 8 12:46:24 2015 +0100

    Imported Upstream version 7.6.20+dfsg
---
 android/BOINC/AndroidManifest.xml     |   2 +-
 client/client_state.cpp               |   2 +-
 client/gpu_amd.cpp                    |   7 ++-
 client/gpu_nvidia.cpp                 |   3 +-
 client/gpu_opencl.cpp                 |  37 ++++++++-----
 client/hostinfo_unix.cpp              |   2 +-
 configure.ac                          |   2 +-
 html/inc/boinc_db.inc                 |   2 +-
 locale/it_IT/BOINC-Manager.mo         | Bin 79467 -> 79561 bytes
 locale/it_IT/BOINC-Manager.po         |  94 +++++++++++++++++-----------------
 locale/it_IT/BOINC-Project-Generic.po |   2 +-
 locale/it_IT/BOINC-Web.mo             | Bin 36770 -> 36762 bytes
 locale/it_IT/BOINC-Web.po             |  10 ++--
 locale/sk/BOINC-Manager.mo            | Bin 77763 -> 78080 bytes
 locale/zh_TW/BOINC-Manager.mo         | Bin 73148 -> 71591 bytes
 locale/zh_TW/BOINC-Web.mo             | Bin 32720 -> 32442 bytes
 version.log                           |   2 +-
 17 files changed, 87 insertions(+), 78 deletions(-)

diff --git a/android/BOINC/AndroidManifest.xml b/android/BOINC/AndroidManifest.xml
index 73141d2..ec9d888 100644
--- a/android/BOINC/AndroidManifest.xml
+++ b/android/BOINC/AndroidManifest.xml
@@ -21,7 +21,7 @@
     package="edu.berkeley.boinc"
     android:installLocation="internalOnly"
     android:versionCode="133"
-    android:versionName="7.6.19" > <!-- installation on SD card would break boot receiver -->
+    android:versionName="7.6.20" > <!-- installation on SD card would break boot receiver -->
 
 
     <!-- Add Google Play store metadata informing the store we can run on tablets and other large screen devices -->
diff --git a/client/client_state.cpp b/client/client_state.cpp
index 5b1daa6..f3365ae 100644
--- a/client/client_state.cpp
+++ b/client/client_state.cpp
@@ -512,7 +512,7 @@ int CLIENT_STATE::init() {
         }
         if (log_flags.coproc_debug) {
             for (i=0; i<warnings.size(); i++) {
-                msg_printf(NULL, MSG_INFO, "%s", warnings[i].c_str());
+                msg_printf(NULL, MSG_INFO, "[coproc] %s", warnings[i].c_str());
             }
         }
 #if 0
diff --git a/client/gpu_amd.cpp b/client/gpu_amd.cpp
index 7509fb5..60be4c9 100644
--- a/client/gpu_amd.cpp
+++ b/client/gpu_amd.cpp
@@ -158,11 +158,10 @@ void COPROC_ATI::get(
 
 #else
 
-    void* callib = NULL;
-
-    callib = dlopen("libaticalrt.so", RTLD_NOW);
+    void* callib = dlopen("libaticalrt.so", RTLD_NOW);
     if (!callib) {
-        warnings.push_back("No ATI library found");
+        sprintf(buf, "ATI: %s", dlerror());
+        warnings.push_back(buf);
         return;
     }
 
diff --git a/client/gpu_nvidia.cpp b/client/gpu_nvidia.cpp
index 82a2446..32eda2b 100644
--- a/client/gpu_nvidia.cpp
+++ b/client/gpu_nvidia.cpp
@@ -287,7 +287,8 @@ void* cudalib = NULL;
     cudalib = dlopen("libcuda.so", RTLD_NOW);
 #endif
     if (!cudalib) {
-        warnings.push_back("No NVIDIA library found");
+        sprintf(buf, "NVIDIA: %s", dlerror());
+        warnings.push_back(buf);
         return;
     }
     __cuDeviceGetCount = (int(*)(int*)) dlsym(cudalib, "cuDeviceGetCount");
diff --git a/client/gpu_opencl.cpp b/client/gpu_opencl.cpp
index 4a10832..07b9e42 100644
--- a/client/gpu_opencl.cpp
+++ b/client/gpu_opencl.cpp
@@ -162,6 +162,7 @@ void COPROCS::get_opencl(
     int num_CAL_devices = (int)ati_gpus.size();
     vector<int>devnums_pci_slot_sort;
     vector<OPENCL_DEVICE_PROP>::iterator it;
+    int max_other_coprocs = MAX_RSC-1;  // coprocs[0] is reserved for CPU
 
 #ifdef _WIN32
     opencl_lib = LoadLibrary("OpenCL.dll");
@@ -179,9 +180,13 @@ void COPROCS::get_opencl(
     opencl_lib = dlopen("/System/Library/Frameworks/OpenCL.framework/Versions/Current/OpenCL", RTLD_NOW);
 #else
     opencl_lib = dlopen("libOpenCL.so", RTLD_NOW);
+    if (!opencl_lib) {
+        opencl_lib = dlopen("libOpenCL.so.1", RTLD_NOW);
+    }
 #endif
     if (!opencl_lib) {
-        warnings.push_back("No OpenCL library found");
+        sprintf(buf, "OpenCL: %s", dlerror());
+        warnings.push_back(buf);
         return;
     }
     __clGetPlatformIDs = (cl_int(*)(cl_uint, cl_platform_id*, cl_uint*)) dlsym( opencl_lib, "clGetPlatformIDs" );
@@ -192,25 +197,25 @@ void COPROCS::get_opencl(
 
     if (!__clGetPlatformIDs) {
         warnings.push_back("clGetPlatformIDs() missing from OpenCL library");
-        return;
+        goto leave;
     }
     if (!__clGetPlatformInfo) {
         warnings.push_back("clGetPlatformInfo() missing from OpenCL library");
-        return;
+        goto leave;
     }
     if (!__clGetDeviceIDs) {
         warnings.push_back("clGetDeviceIDs() missing from OpenCL library");
-        return;
+        goto leave;
     }
     if (!__clGetDeviceInfo) {
         warnings.push_back("clGetDeviceInfo() missing from OpenCL library");
-        return;
+        goto leave;
     }
 
     ciErrNum = (*__clGetPlatformIDs)(MAX_OPENCL_PLATFORMS, platforms, &num_platforms);
     if ((ciErrNum != CL_SUCCESS) || (num_platforms == 0)) {
         warnings.push_back("clGetPlatformIDs() failed to return any OpenCL platforms");
-        return;
+        goto leave;
     }
 
     if (nvidia_gpus.size()) {
@@ -412,7 +417,7 @@ void COPROCS::get_opencl(
                                 break;
                             } else {
                                 // Older CUDA drivers should report all NVIDIA GPUs reported by OpenCL
-                                return; // Should never happen
+                                goto leave; // Should never happen
                             }
                         }
                         if (!strcmp(prop.name,
@@ -474,7 +479,7 @@ void COPROCS::get_opencl(
                                 device_index
                             );
                             warnings.push_back(buf);
-                            return; // Should never happen
+                            goto leave; // Should never happen
                         }
                         if ((int)ati_gpus[current_CAL_index].attribs.target >= min_CAL_target) {
                             break;  // We have a match
@@ -539,10 +544,8 @@ void COPROCS::get_opencl(
                 // a native device.
                 //
                 intel_gpus.push_back(c);
-            }
-
-            //////////// OTHER GPU OR ACCELERTOR //////////////
-            else {
+            } else {
+                //////////// OTHER GPU OR ACCELERATOR //////////////
                 // Put each coprocessor instance into a separate other_opencls element
 
                 // opencl_device_index is passed to project apps via init_data.xml
@@ -572,9 +575,9 @@ void COPROCS::get_opencl(
         }
     }
     
-    int max_other_coprocs = MAX_RSC-1;  // coprocs[0] is reserved for CPU
     // Neither nvidia.count, ati.count nor intel_gpu.count have been set yet, 
     // so we can't test have_nvidia(), have_ati() or have_intel_gpu() here.
+    //
     if ((nvidia_opencls.size() > 0) || nvidia.have_cuda) max_other_coprocs--;
     if ((ati_opencls.size() > 0) || ati.have_cal) max_other_coprocs--;
     if (intel_gpu_opencls.size() > 0) max_other_coprocs--;
@@ -604,6 +607,12 @@ void COPROCS::get_opencl(
             "OpenCL library present but no OpenCL-capable devices found"
         );
     }
+leave:
+#ifdef _WIN32
+    if (opencl_lib) FreeLibrary(opencl_lib);
+#else
+    if (opencl_lib) dlclose(opencl_lib);
+#endif
 }
 
 void COPROCS::correlate_opencl(
@@ -643,7 +652,7 @@ void COPROCS::correlate_opencl(
         intel_gpu.available_ram = intel_gpu.opencl_prop.global_mem_size;
         safe_strcpy(intel_gpu.name, intel_gpu.opencl_prop.name);
     }
- }
+}
 
 cl_int COPROCS::get_opencl_info(
     OPENCL_DEVICE_PROP& prop,
diff --git a/client/hostinfo_unix.cpp b/client/hostinfo_unix.cpp
index 2715d42..617f824 100644
--- a/client/hostinfo_unix.cpp
+++ b/client/hostinfo_unix.cpp
@@ -1905,7 +1905,7 @@ bool HOST_INFO::users_idle(
         }   // End (gEventHandle == NULL)
     }           // End NXIdleTime API does not exist
     
- bail:   
+bail:
     if (actual_idle_time) {
         *actual_idle_time = idleTime;
     }
diff --git a/configure.ac b/configure.ac
index b79b688..cf444bf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@ dnl not sure exactly what the minimum version is (but 2.13 wont work)
 AC_PREREQ(2.58)
 
 dnl Set the BOINC version here.  You can also use the set-version script.
-AC_INIT(BOINC, 7.6.19)
+AC_INIT(BOINC, 7.6.20)
 AC_CONFIG_MACRO_DIR([m4])
 LIBBOINC_VERSION=`echo ${PACKAGE_VERSION} | sed 's/\./:/g'`
 AC_SUBST([LIBBOINC_VERSION])
diff --git a/html/inc/boinc_db.inc b/html/inc/boinc_db.inc
index 9a583a8..d6d279a 100644
--- a/html/inc/boinc_db.inc
+++ b/html/inc/boinc_db.inc
@@ -432,7 +432,7 @@ class BoincProfile {
         $db = BoincDb::get();
         return $db->enum_fields('profile', 'BoincProfile', $fields, $where_clause, $order_clause);
     }
-    function delete_aux($clause) {
+    static function delete_aux($clause) {
         $db = BoincDb::get();
         return $db->delete_aux('profile', $clause);
     }
diff --git a/locale/it_IT/BOINC-Manager.mo b/locale/it_IT/BOINC-Manager.mo
index 95eceaa..18b00eb 100644
Binary files a/locale/it_IT/BOINC-Manager.mo and b/locale/it_IT/BOINC-Manager.mo differ
diff --git a/locale/it_IT/BOINC-Manager.po b/locale/it_IT/BOINC-Manager.po
index ab21a39..a78a3be 100644
--- a/locale/it_IT/BOINC-Manager.po
+++ b/locale/it_IT/BOINC-Manager.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: BOINC\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-10-16 17:27-0500\n"
-"PO-Revision-Date: 2015-11-27 10:50+0000\n"
+"PO-Revision-Date: 2015-12-04 11:26+0000\n"
 "Last-Translator: Sebastiano Pistore <olatusrooc at virgilio.it>\n"
 "Language-Team: Italian (Italy) (http://www.transifex.com/boinc/boinc/language/it_IT/)\n"
 "MIME-Version: 1.0\n"
@@ -299,7 +299,7 @@ msgstr "&Disco\tCtrl+Shift+D"
 
 #: clientgui/AdvancedFrame.cpp:431
 msgid "Show disk usage"
-msgstr "Visualizza utilizzo disco"
+msgstr "Visualizza l'utilizzo del disco"
 
 #: clientgui/AdvancedFrame.cpp:438
 msgid "Simple &View...\tCtrl+Shift+V"
@@ -456,11 +456,11 @@ msgstr "Applicazioni esclusive..."
 
 #: clientgui/AdvancedFrame.cpp:611
 msgid "Configure exclusive applications"
-msgstr "Configura applicazioni esclusive"
+msgstr "Configura le applicazioni esclusive"
 
 #: clientgui/AdvancedFrame.cpp:616
 msgid "Select columns..."
-msgstr "Seleziona colonne..."
+msgstr "Impostazione colonne del menu"
 
 #: clientgui/AdvancedFrame.cpp:617
 msgid "Select which columns to display"
@@ -502,22 +502,22 @@ msgstr "Leggi le preferenze dal file global_prefs_override.xml"
 #: clientgui/AdvancedFrame.cpp:646 clientgui/sg_BoincSimpleFrame.cpp:219
 #, c-format
 msgid "%s &help"
-msgstr "&Aiuto su %s"
+msgstr "&Assistenza di %s"
 
 #: clientgui/AdvancedFrame.cpp:650 clientgui/sg_BoincSimpleFrame.cpp:223
 #, c-format
 msgid "Show information about %s"
-msgstr "Mostra le informazioni su %s"
+msgstr "Fornisce assistenza per risolvere i problemi legati a %s"
 
 #: clientgui/AdvancedFrame.cpp:660
 #, c-format
 msgid "&%s help"
-msgstr "Aiuto su &%s"
+msgstr "Assistenza di &%s"
 
 #: clientgui/AdvancedFrame.cpp:664 clientgui/sg_BoincSimpleFrame.cpp:237
 #, c-format
 msgid "Show information about the %s"
-msgstr "Mostra le informazioni sul %s"
+msgstr "Mostra le informazioni su %s"
 
 #: clientgui/AdvancedFrame.cpp:675 clientgui/sg_BoincSimpleFrame.cpp:247
 #, c-format
@@ -527,17 +527,17 @@ msgstr "Sito &web di %s"
 #: clientgui/AdvancedFrame.cpp:679 clientgui/sg_BoincSimpleFrame.cpp:251
 #, c-format
 msgid "Show information about BOINC and %s"
-msgstr "Mostra le informazioni su BOINC e sul %s"
+msgstr "Mostra informazioni su BOINC e su %s"
 
 #: clientgui/AdvancedFrame.cpp:690 clientgui/BOINCTaskBar.cpp:541
 #: clientgui/sg_BoincSimpleFrame.cpp:262
 #, c-format
 msgid "&About %s..."
-msgstr "&Informazioni sul %s..."
+msgstr "&Informazioni su %s..."
 
 #: clientgui/AdvancedFrame.cpp:696 clientgui/sg_BoincSimpleFrame.cpp:268
 msgid "Licensing and copyright information."
-msgstr "Mostra le informazioni sulla licenza e sul copyright"
+msgstr "Mostra le informazioni sulla licenza ed il copyright"
 
 #: clientgui/AdvancedFrame.cpp:703 clientgui/sg_BoincSimpleFrame.cpp:275
 msgid "&File"
@@ -545,7 +545,7 @@ msgstr "&File"
 
 #: clientgui/AdvancedFrame.cpp:707 clientgui/sg_BoincSimpleFrame.cpp:279
 msgid "&View"
-msgstr "&Visualizza"
+msgstr "&Visuali"
 
 #: clientgui/AdvancedFrame.cpp:711
 msgid "&Activity"
@@ -577,12 +577,12 @@ msgid ""
 "but you'll have to manage projects manually.\n"
 "\n"
 "Do you want to stop using %s?"
-msgstr "Se tu finisci di usare %s,\nmanterrai tutti i tuoi progetti correnti,\nma dovrai gestirli manualmente.\n\nVuoi finire di usare %s?"
+msgstr "Se smetti di utilizzare %s,\nmanterrai tutti i tuoi progetti correnti,\nma dovrai gestirli manualmente.\n\nVuoi smettere di usare %s?"
 
 #: clientgui/AdvancedFrame.cpp:1471
 #, c-format
 msgid "%s - Shut down the current client..."
-msgstr "%s - Chiudi il client corrente..."
+msgstr "%s - Chiusura del client..."
 
 #: clientgui/AdvancedFrame.cpp:1480
 #, c-format
@@ -609,7 +609,7 @@ msgstr "%s - (%s)"
 #: clientgui/AdvancedFrame.cpp:2032
 #, c-format
 msgid "Connecting to %s"
-msgstr "Connessione a %s in corso"
+msgstr "Connessione in corso con %s"
 
 #: clientgui/AdvancedFrame.cpp:2035
 #, c-format
@@ -737,12 +737,12 @@ msgstr "%s al momento non è connesso al client %s.\nUsa l'opzione del menù 'Av
 #. Create the web sites task group
 #: clientgui/BOINCBaseView.cpp:790
 msgid "Project web pages"
-msgstr "Siti web del progetto"
+msgstr "Pagine web del progetto"
 
 #: clientgui/BOINCClientManager.cpp:547
 #, c-format
 msgid "%s - Unexpected Exit"
-msgstr "%s - Disconnessione Inaspettata "
+msgstr "%s - disconnessione imprevista"
 
 #: clientgui/BOINCClientManager.cpp:557
 #, c-format
@@ -948,7 +948,7 @@ msgstr "L'elaborazione con la GPU è abilitata"
 
 #: clientgui/BOINCTaskBar.cpp:729
 msgid "GPU computing is suspended - "
-msgstr "L'elaborazione con la GPU è sospesa -."
+msgstr "L'elaborazione con la GPU è sospesa -"
 
 #: clientgui/BOINCTaskBar.cpp:738
 msgid "Network is enabled"
@@ -1092,7 +1092,7 @@ msgstr "Numero non valido"
 
 #: clientgui/DlgAdvPreferences.cpp:685 clientgui/sg_DlgPreferences.cpp:776
 msgid "Invalid time, value must be between 0:00 and 24:00, format is HH:MM"
-msgstr "Tempo non valido, il valore deve essere compreso tra 00:00 e 24:00. Il formato è HH:MM"
+msgstr "Orario non valido, il valore deve essere compreso tra 00:00 e 24:00. Il formato è HH:MM"
 
 #: clientgui/DlgAdvPreferences.cpp:686 clientgui/sg_DlgPreferences.cpp:777
 msgid "Start time must be different from end time"
@@ -1207,7 +1207,7 @@ msgstr "Limite di utilizzo"
 msgid ""
 "Keep some CPUs free for other applications. Example: 75% means use 6 cores "
 "on an 8-core CPU."
-msgstr "Mantieni alcune CPU libere per altre applicazioni. Esempio: 75% significa usa 6 core in una CPU a 8 core."
+msgstr "Mantieni alcune CPU libere per altre applicazioni. Esempio: 75% significa usa 6 core in una CPU ad 8 core."
 
 #: clientgui/DlgAdvPreferencesBase.cpp:243
 #: clientgui/DlgAdvPreferencesBase.cpp:255 clientgui/sg_DlgPreferences.cpp:286
@@ -1282,7 +1282,7 @@ msgstr "minuti"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:323
 msgid "Suspend when non-BOINC CPU usage is above"
-msgstr "Sospendi quando l'utilizzo CPU da parte di applicazioni non-BOINC è superiore a"
+msgstr "Sospendi quando l'uso della CPU da parte di applicazioni non-BOINC è superiore al"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:325
 msgid "Suspend computing when your computer is busy running other programs."
@@ -1716,11 +1716,11 @@ msgstr "Rimuovi applicazione dalla lista"
 
 #: clientgui/DlgExclusiveApps.cpp:96
 msgid "Suspend GPU usage when these applications are running:"
-msgstr "Sospendi l'utilizzo GPU quando queste applicazioni sono in esecuzione:"
+msgstr "Sospendi l'utilizzo della GPU quando queste applicazioni sono in esecuzione:"
 
 #: clientgui/DlgExclusiveApps.cpp:122
 msgid "For advanced options, refer to "
-msgstr "Per le opzioni avanzate, vai su"
+msgstr "Per le opzioni avanzate vai su"
 
 #: clientgui/DlgExclusiveApps.cpp:147
 msgid "save all values and close the dialog"
@@ -1744,12 +1744,12 @@ msgstr "Applicazioni da aggiungere"
 #: clientgui/DlgExclusiveApps.cpp:332
 #, c-format
 msgid "'%s' is not an executable application."
-msgstr "%s non è un'applicazione eseguibile"
+msgstr "'%s' non è un'applicazione eseguibile"
 
 #: clientgui/DlgExclusiveApps.cpp:333 clientgui/DlgExclusiveApps.cpp:380
 #: clientgui/DlgExclusiveApps.cpp:404
 msgid "Add Exclusive App"
-msgstr "Aggiungi Applicazione Esclusiva"
+msgstr "Aggiungi applicazione esclusiva"
 
 #: clientgui/DlgExclusiveApps.cpp:345
 msgid "Name of application to add?"
@@ -1818,7 +1818,7 @@ msgstr "Non visualizzare piu questo messaggio."
 #: clientgui/DlgHiddenColumns.cpp:64
 #, c-format
 msgid "%s Column Selection"
-msgstr "%s Selezione Colonna"
+msgstr "Selezione colonna di %s"
 
 #: clientgui/DlgHiddenColumns.cpp:77
 #, c-format
@@ -1842,7 +1842,7 @@ msgstr "Non richiedere elaborazioni per "
 
 #: clientgui/DlgItemProperties.cpp:194
 msgid "Project preference"
-msgstr "Preferenze per il progetto"
+msgstr "Preferenze del progetto"
 
 #: clientgui/DlgItemProperties.cpp:197
 msgid "Account manager preference"
@@ -1854,7 +1854,7 @@ msgstr "Il progetto non ha applicazioni per"
 
 #: clientgui/DlgItemProperties.cpp:203
 msgid "Client configuration excludes "
-msgstr "La configurazione client esclude"
+msgstr "La configurazione del client esclude"
 
 #: clientgui/DlgItemProperties.cpp:209
 #, c-format
@@ -1990,7 +1990,7 @@ msgstr "Computer"
 
 #: clientgui/DlgItemProperties.cpp:315
 msgid "Scheduling"
-msgstr "Programmazione del lavoro"
+msgstr "Scheduling"
 
 #: clientgui/DlgItemProperties.cpp:316
 msgid "Scheduling priority"
@@ -2038,11 +2038,11 @@ msgstr "Risorse in uso"
 
 #: clientgui/DlgItemProperties.cpp:385
 msgid "Estimated computation size"
-msgstr "Durata stimata dell'elaborazione"
+msgstr "Durata stimata del calcolo"
 
 #: clientgui/DlgItemProperties.cpp:390
 msgid "CPU time at last checkpoint"
-msgstr "Tempo CPU all'ultimo checkpoint"
+msgstr "Tempo dall'ultimo checkpoint"
 
 #: clientgui/DlgItemProperties.cpp:391 clientgui/DlgItemProperties.cpp:417
 msgid "CPU time"
@@ -2054,11 +2054,11 @@ msgstr "Tempo trascorso"
 
 #: clientgui/DlgItemProperties.cpp:395
 msgid "Estimated time remaining"
-msgstr "Stima del tempo rimanente"
+msgstr "Tempo stimato al completamento"
 
 #: clientgui/DlgItemProperties.cpp:396
 msgid "Fraction done"
-msgstr "Frazione già eseguita"
+msgstr "Parte già eseguita"
 
 #: clientgui/DlgItemProperties.cpp:397
 msgid "Virtual memory size"
@@ -2116,11 +2116,11 @@ msgstr "Quale lingua desideri che BOINC utilizzI?"
 
 #: clientgui/DlgOptions.cpp:190
 msgid "Notice reminder interval:"
-msgstr "Intervallo di notifica avviso:"
+msgstr "Intervallo di notifica degli avvisi:"
 
 #: clientgui/DlgOptions.cpp:197
 msgid "How often should BOINC remind you of new notices?"
-msgstr "Quanto spesso vuoi che il Manager ti ricordi di nuovi avvisi?"
+msgstr "Quanto spesso vuoi che il Manager ti ricordi dei nuovi avvisi?"
 
 #: clientgui/DlgOptions.cpp:202
 msgid "Run Manager at login?"
@@ -2549,7 +2549,7 @@ msgstr "Scaricamento in corso"
 
 #: clientgui/MainDocument.cpp:2493 clientgui/MainDocument.cpp:2552
 msgid " (suspended - "
-msgstr "(sospesa - "
+msgstr "(sospesa -"
 
 #: clientgui/MainDocument.cpp:2501
 msgid "Project suspended by user"
@@ -2563,11 +2563,11 @@ msgstr "Elaborazione sospesa dall'utente"
 #. (because of <dont_suspend_nci>
 #: clientgui/MainDocument.cpp:2508
 msgid "Suspended - "
-msgstr "Sospesa - "
+msgstr "Sospesa -"
 
 #: clientgui/MainDocument.cpp:2511
 msgid "GPU suspended - "
-msgstr "GPU sospesa - "
+msgstr "GPU sospesa -"
 
 #: clientgui/MainDocument.cpp:2515
 msgid "Waiting for memory"
@@ -2812,7 +2812,7 @@ msgstr "Utente:"
 msgid ""
 "WARNING: This project is not registered with BOINC.  Make sure you trust it "
 "before continuing."
-msgstr "ATTENZIONE: Questo progetto non è registrato su BOINC. Assicurati che sia fidato prima di continuare."
+msgstr "ATTENZIONE: Questo progetto non è registrato su BOINC. Assicurati che sia affidabile prima di continuare."
 
 #: clientgui/ProjectWelcomePage.cpp:277
 msgid "To continue, click Next."
@@ -2870,7 +2870,7 @@ msgstr "Server:"
 
 #: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
-msgstr "Rilevazione automatica"
+msgstr "Rilevamento automatico"
 
 #: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
@@ -3234,7 +3234,7 @@ msgstr "Richiesta allo scheduler in corso"
 
 #: clientgui/ViewProjects.cpp:1173
 msgid "Trickle up message pending"
-msgstr "attesa su messaggio trickle"
+msgstr "Attesa su messaggio trickle"
 
 #: clientgui/ViewProjects.cpp:1179
 msgid "Communication deferred"
@@ -3655,11 +3655,11 @@ msgstr "Seleziona la grafica dell'interfaccia utente."
 
 #: clientgui/sg_BoincSimpleFrame.cpp:181
 msgid "Advanced View...\tCtrl+Shift+A"
-msgstr "Visualizzazione Avanzata...\tCtrl+Shift+A"
+msgstr "Visualizzazione avanzata...\tCtrl+Shift+A"
 
 #: clientgui/sg_BoincSimpleFrame.cpp:182
 msgid "Display the advanced graphical interface."
-msgstr "Visualizza l'interfaccia grafica avanzata di BOINC"
+msgstr "Visualizza l'interfaccia grafica avanzata di BOINC."
 
 #: clientgui/sg_BoincSimpleFrame.cpp:198
 msgid "Configure display options and proxy settings"
@@ -3688,7 +3688,7 @@ msgstr "Riprendi l'elaborazione"
 
 #: clientgui/sg_BoincSimpleFrame.cpp:913
 msgid "Open a window to view notices from projects or BOINC"
-msgstr "Apri una finestra per visualizzare gli avvisi dai progetti o dal BOINC"
+msgstr "Apri una finestra per visualizzare gli avvisi dei progetti e del sistema BOINC"
 
 #: clientgui/sg_BoincSimpleFrame.cpp:934 clientgui/sg_DlgPreferences.cpp:366
 #, c-format
@@ -3707,7 +3707,7 @@ msgstr "Avvisi di %s"
 #: clientgui/sg_DlgPreferences.cpp:208
 msgid ""
 "For additional settings, select Computing Preferences in the Advanced View."
-msgstr "Per impostazioni aggiuntive, seleziona Preferenze di elaborazione nella Vista Avanzata."
+msgstr "Per impostazioni aggiuntive, seleziona Preferenze di elaborazione nella Vista avanzata."
 
 #: clientgui/sg_DlgPreferences.cpp:346
 msgid "GB of disk space"
@@ -3736,7 +3736,7 @@ msgstr "Lavoro svolto per questo progetto"
 
 #: clientgui/sg_ProjectPanel.cpp:76
 msgid "Volunteer for any or all of 30+ projects in many areas of science"
-msgstr "Diventa un volontario di uno o di tutti gli oltre 30 progetti nelle varie aree scientifiche"
+msgstr "Diventa volontario in uno dei oltre 30 progetti delle varie aree scientifiche"
 
 #: clientgui/sg_ProjectPanel.cpp:77
 msgid "Synchronize projects with account manager system"
@@ -3753,7 +3753,7 @@ msgstr "Siti web del progetto"
 
 #: clientgui/sg_ProjectPanel.cpp:149
 msgid "Project Commands"
-msgstr "Comandi del Progetto"
+msgstr "Comandi del progetto"
 
 #: clientgui/sg_ProjectPanel.cpp:278
 #, c-format
diff --git a/locale/it_IT/BOINC-Project-Generic.po b/locale/it_IT/BOINC-Project-Generic.po
index 8af72f7..842f97c 100644
--- a/locale/it_IT/BOINC-Project-Generic.po
+++ b/locale/it_IT/BOINC-Project-Generic.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: BOINC\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at boinc.berkeley.edu>\n"
 "POT-Creation-Date: 2015-06-24 13:05 PDT\n"
-"PO-Revision-Date: 2015-11-27 10:50+0000\n"
+"PO-Revision-Date: 2015-12-04 11:06+0000\n"
 "Last-Translator: Sebastiano Pistore <olatusrooc at virgilio.it>\n"
 "Language-Team: Italian (Italy) (http://www.transifex.com/boinc/boinc/language/it_IT/)\n"
 "MIME-Version: 1.0\n"
diff --git a/locale/it_IT/BOINC-Web.mo b/locale/it_IT/BOINC-Web.mo
index 635ceec..31df829 100644
Binary files a/locale/it_IT/BOINC-Web.mo and b/locale/it_IT/BOINC-Web.mo differ
diff --git a/locale/it_IT/BOINC-Web.po b/locale/it_IT/BOINC-Web.po
index b79bf77..1456b89 100644
--- a/locale/it_IT/BOINC-Web.po
+++ b/locale/it_IT/BOINC-Web.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: BOINC\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
 "POT-Creation-Date: 2015-07-09 18:59 PDT\n"
-"PO-Revision-Date: 2015-11-12 11:55+0000\n"
+"PO-Revision-Date: 2015-12-04 11:23+0000\n"
 "Last-Translator: Sebastiano Pistore <olatusrooc at virgilio.it>\n"
 "Language-Team: Italian (Italy) (http://www.transifex.com/boinc/boinc/language/it_IT/)\n"
 "MIME-Version: 1.0\n"
@@ -598,7 +598,7 @@ msgstr "Universe at Home mira a creare il primo database del contenuto simulato ste
 
 #: projects.inc:332
 msgid "Do research in physics and astronomy"
-msgstr "Fare ricerca in fisica e astronomia"
+msgstr "Fare ricerca in fisica ed astronomia"
 
 #: projects.inc:337
 msgid "Rensselaer Polytechnic Institute"
@@ -669,18 +669,18 @@ msgid ""
 "physics laboratory.  It is the most powerful instrument ever built to "
 "investigate on particles proprieties. LHC at home runs simulations to improve "
 "the design of LHC and its detectors."
-msgstr "Il Large Hadron Collider (LHC) è un acceleratore di particelle sito al CERN, l'Organizzazione Europea per la Ricerca Nucleare, il più grande laboratorio di fisica delle particelle del mondo. Esso è il più potente strumento mai costruito per investigare le proprietà delle particelle. LHC at home elabora simulazioni per migliorare la progettazione di LHC e dei suoi rivelatori."
+msgstr "Il Large Hadron Collider (LHC) è un acceleratore di particelle sito al CERN, l'Organizzazione Europea per la Ricerca Nucleare, il più grande laboratorio di fisica delle particelle del mondo. Oggi è il più potente strumento del mondo per lo studio delle proprietà delle particelle. LHC at home esegue simulazioni per migliorare il progetto di LHC e dei suoi rivelatori."
 
 #: projects.inc:388
 msgid "Improve the design of the Large Hadron Collider"
-msgstr "Migliorare il design del Large Hadron Collider"
+msgstr "Migliorare il progetto di LHC"
 
 #: projects.inc:395
 msgid ""
 "This project uses CERN-developed virtual machine technology for LHC event "
 "physics simulation on volunteer computers.  Requires that you install "
 "VirtualBox on your computer"
-msgstr "Questo progetto utilizza la macchina virtuale sviluppata al CERN per la simulazione fisica degli eventi dell'LHC sui computer dei volontari.  È necessario installare VirtualBox sul tuo computer"
+msgstr "Questo progetto utilizza la macchina virtuale sviluppata al CERN per la simulazione fisica degli eventi dell'LHC sui computer dei volontari.  È necessario installare VirtualBox su questi computer per eseguirla."
 
 #: projects.inc:398
 msgid "Simulate high-energy particle collisions"
diff --git a/locale/sk/BOINC-Manager.mo b/locale/sk/BOINC-Manager.mo
index d353afa..cc6e8a5 100644
Binary files a/locale/sk/BOINC-Manager.mo and b/locale/sk/BOINC-Manager.mo differ
diff --git a/locale/zh_TW/BOINC-Manager.mo b/locale/zh_TW/BOINC-Manager.mo
index 4b398d5..f3c2784 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-Web.mo b/locale/zh_TW/BOINC-Web.mo
index 2b40421..21156b6 100644
Binary files a/locale/zh_TW/BOINC-Web.mo and b/locale/zh_TW/BOINC-Web.mo differ
diff --git a/version.log b/version.log
index 03d71dc..22d149e 100644
--- a/version.log
+++ b/version.log
@@ -1 +1 @@
-7.6.19
+7.6.20

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-boinc/boinc.git



More information about the pkg-boinc-commits mailing list