From ef4a1f9cb7c50013386fb9e127539875a43a881c Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 24 Feb 2010 10:47:24 +0000 Subject: [PATCH] - Display proper message for "(NS_ERROR_FILE_ACCESS_DENIED) [nsIFile.lastModifiedTime]", and add additional detail to message text --- chrome/content/zotero/xpcom/storage.js | 47 +++++++++++++++++--- chrome/locale/af-ZA/zotero/zotero.properties | 1 - chrome/locale/ar/zotero/zotero.properties | 1 - chrome/locale/bg-BG/zotero/zotero.properties | 1 - chrome/locale/ca-AD/zotero/zotero.properties | 1 - chrome/locale/cs-CZ/zotero/zotero.properties | 1 - chrome/locale/da-DK/zotero/zotero.properties | 1 - chrome/locale/de-AT/zotero/zotero.properties | 1 - chrome/locale/de-CH/zotero/zotero.properties | 1 - chrome/locale/de-DE/zotero/zotero.properties | 1 - chrome/locale/el-GR/zotero/zotero.properties | 1 - chrome/locale/en-US/zotero/zotero.properties | 1 - chrome/locale/es-ES/zotero/zotero.properties | 1 - chrome/locale/et-EE/zotero/zotero.properties | 1 - chrome/locale/eu-ES/zotero/zotero.properties | 1 - chrome/locale/fi-FI/zotero/zotero.properties | 1 - chrome/locale/fr-FR/zotero/zotero.properties | 1 - chrome/locale/gl-ES/zotero/zotero.properties | 1 - chrome/locale/he-IL/zotero/zotero.properties | 1 - chrome/locale/hr-HR/zotero/zotero.properties | 1 - chrome/locale/hu-HU/zotero/zotero.properties | 1 - chrome/locale/is-IS/zotero/zotero.properties | 1 - chrome/locale/it-IT/zotero/zotero.properties | 1 - chrome/locale/ja-JP/zotero/zotero.properties | 1 - chrome/locale/ko-KR/zotero/zotero.properties | 1 - chrome/locale/mn-MN/zotero/zotero.properties | 1 - chrome/locale/nb-NO/zotero/zotero.properties | 1 - chrome/locale/nl-NL/zotero/zotero.properties | 1 - chrome/locale/pl-PL/zotero/zotero.properties | 1 - chrome/locale/pt-BR/zotero/zotero.properties | 1 - chrome/locale/pt-PT/zotero/zotero.properties | 1 - chrome/locale/ro-RO/zotero/zotero.properties | 1 - chrome/locale/ru-RU/zotero/zotero.properties | 1 - chrome/locale/sk-SK/zotero/zotero.properties | 1 - chrome/locale/sl-SI/zotero/zotero.properties | 1 - chrome/locale/sr-RS/zotero/zotero.properties | 1 - chrome/locale/sv-SE/zotero/zotero.properties | 1 - chrome/locale/th-TH/zotero/zotero.properties | 1 - chrome/locale/tr-TR/zotero/zotero.properties | 1 - chrome/locale/vi-VN/zotero/zotero.properties | 1 - chrome/locale/zh-CN/zotero/zotero.properties | 1 - chrome/locale/zh-TW/zotero/zotero.properties | 1 - 42 files changed, 41 insertions(+), 47 deletions(-) diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js index 87a6caf4b1..520144eaf7 100644 --- a/chrome/content/zotero/xpcom/storage.js +++ b/chrome/content/zotero/xpcom/storage.js @@ -530,7 +530,30 @@ Zotero.Sync.Storage = new function () { if (attachmentData[item.id].hash && attachmentData[item.id].hash == fileHash) { Zotero.debug("Mod time didn't match (" + fmtime + "!=" + mtime + ") " + "but hash did for " + file.leafName + " -- updating file mod time"); - file.lastModifiedTime = attachmentData[item.id].mtime; + try { + file.lastModifiedTime = attachmentData[item.id].mtime; + } + catch (e) { + if (e.name == 'NS_ERROR_FILE_ACCESS_DENIED') { + Zotero.debug(e); + // TODO: localize + var fileCannotBeUpdated = "The file '" + file.leafName + + "' cannot be updated."; + var checkFileWindows = "Check that the file is not currently " + + "in use and that it is not marked read-only."; + var checkFileOther = "Check that the file is not currently " + + "in use and that its permissions allow write access."; + var msg = Zotero.localeJoin([ + fileCannotBeUpdated, + Zotero.isWin ? checkFileWindows : checkFileOther + ]) + "\n\n" + + "Restarting your computer or disabling security " + + "software may also help."; + throw (msg); + } + + throw (e); + } continue; } @@ -882,9 +905,9 @@ Zotero.Sync.Storage = new function () { // ecrypt (on Ubuntu, at least) can result in a lower limit — // not much we can do about this, but throw a specific error else if (e.name == "NS_ERROR_FAILURE" && Zotero.isLinux && destFile.leafName.length > 130) { - var e = "Error creating file '" + destFile.leafName + "' " - + "(Are you using filesystem encryption such as eCryptfs " - + "that results in a filename length limit below 255 bytes?)"; + var e = "Error creating file '" + destFile.leafName + "'\n\n" + + "Check whether you are using a filesystem encryption such as eCryptfs " + + "that results in a filename length limit below 255 bytes."; } if (windowsLength || nameLength) { @@ -1214,7 +1237,19 @@ Zotero.Sync.Storage = new function () { catch (e) { if (e.name == 'NS_ERROR_FILE_ACCESS_DENIED') { Zotero.debug(e); - var msg = Zotero.getString('sync.storage.error.fileInUse', file.leafName); + // TODO: localize + var fileCannotBeUpdated = "The file '" + file.leafName + + "' cannot be updated."; + var checkFileWindows = "Check that the file is not currently " + + "in use and that it is not marked read-only."; + var checkFileOther = "Check that the file is not currently " + + "in use and that its permissions allow write access."; + var msg = Zotero.localeJoin([ + fileCannotBeUpdated, + Zotero.isWin ? checkFileWindows : checkFileOther + ]) + "\n\n" + + "Restarting your computer or disabling security " + + "software may also help."; throw (msg); } @@ -1483,7 +1518,7 @@ Zotero.Sync.Storage = new function () { buttonFlags, Zotero.getString('sync.resetGroupAndSync'), null, null, null, {} - ); + ); if (index == 0) { group.erase(); diff --git a/chrome/locale/af-ZA/zotero/zotero.properties b/chrome/locale/af-ZA/zotero/zotero.properties index 9323985c11..bbde37f503 100644 --- a/chrome/locale/af-ZA/zotero/zotero.properties +++ b/chrome/locale/af-ZA/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/ar/zotero/zotero.properties b/chrome/locale/ar/zotero/zotero.properties index cca9d0ad0b..de0a25e386 100644 --- a/chrome/locale/ar/zotero/zotero.properties +++ b/chrome/locale/ar/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/bg-BG/zotero/zotero.properties b/chrome/locale/bg-BG/zotero/zotero.properties index e507c8fd71..982d4db9a6 100644 --- a/chrome/locale/bg-BG/zotero/zotero.properties +++ b/chrome/locale/bg-BG/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Сървърът %S не беше д sync.storage.error.permissionDeniedAtAddress=Нямате разрешение за създаване на Зотеро директория на следният адрес: sync.storage.error.checkFileSyncSettings=Моля проверете настройките на файловата синхронизация или се свържете с администратора на сървъра. sync.storage.error.verificationFailed=%S проверкате беше неуспешна. Проверете параметрите на файловата синхронизация в панела за синхронизация в настройките на Зотеро. -sync.storage.error.fileInUse=Файлът %S се използва в момента и не може да бъде осъвременен. Моля затворете файла или рестартирайте вашият компютър и опитайте отново синхронизацията. sync.storage.error.fileNotCreated=Файлът '%S' не може да бъде създаден в папката за съхранение нв Зотеро. sync.storage.error.fileEditingAccessLost=Вие нямате разрешение да редактирате файлове в Зотеро групата %S и файловете които сте добавили или редактирали не могат да бъдат синхронизирани със сървъра. sync.storage.error.copyChangedItems=Ако искате да копирате променените записи и файлове, откажете синхронизацията. diff --git a/chrome/locale/ca-AD/zotero/zotero.properties b/chrome/locale/ca-AD/zotero/zotero.properties index 7c83f85b36..ae0a26e4d8 100644 --- a/chrome/locale/ca-AD/zotero/zotero.properties +++ b/chrome/locale/ca-AD/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/cs-CZ/zotero/zotero.properties b/chrome/locale/cs-CZ/zotero/zotero.properties index 6ee9c8fab2..5ccaa988cc 100644 --- a/chrome/locale/cs-CZ/zotero/zotero.properties +++ b/chrome/locale/cs-CZ/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Nepodařilo se dosáhnout serveru %S. sync.storage.error.permissionDeniedAtAddress=Nemáte práva vytvořit Zotero adresář na následující adrese: sync.storage.error.checkFileSyncSettings=Prosím, zkontrolujte své nastavení synchronizace, nebo kontaktujte administrátora vašeho serveru. sync.storage.error.verificationFailed=Ověření %S selhalo. Zkontrolujte vaše nastavení synchronizace souborů v panelu Sync v Nastavení Zotera. -sync.storage.error.fileInUse=Soubor '%S' je používán a nemůže být změnen. Prosím, zavřete soubor nebo restartujte počítač a opakujte synchronizaci. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=V Zotero skupině '%S' už nemáte právo editace souborů a soubory, které jste přidali či editovali, nemohou být synchronizovány se serverem. sync.storage.error.copyChangedItems=Pokud byste chtěli uložit kopii změněných položek a souborů jinam, zrušte teď synchronizaci. diff --git a/chrome/locale/da-DK/zotero/zotero.properties b/chrome/locale/da-DK/zotero/zotero.properties index 4e455a89e9..8517cc88cf 100644 --- a/chrome/locale/da-DK/zotero/zotero.properties +++ b/chrome/locale/da-DK/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/de-AT/zotero/zotero.properties b/chrome/locale/de-AT/zotero/zotero.properties index bde4626ba8..cfbf372286 100644 --- a/chrome/locale/de-AT/zotero/zotero.properties +++ b/chrome/locale/de-AT/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/de-CH/zotero/zotero.properties b/chrome/locale/de-CH/zotero/zotero.properties index 9237006ad7..b016ca3ce0 100644 --- a/chrome/locale/de-CH/zotero/zotero.properties +++ b/chrome/locale/de-CH/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/de-DE/zotero/zotero.properties b/chrome/locale/de-DE/zotero/zotero.properties index e692ae26d7..1705e1e67d 100644 --- a/chrome/locale/de-DE/zotero/zotero.properties +++ b/chrome/locale/de-DE/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Der Server %S konnte nicht erreicht w sync.storage.error.permissionDeniedAtAddress=Sie haben keine Berechtigung, ein Zotero-Verzeichnis unter der folgenden Adresse anzulegen: sync.storage.error.checkFileSyncSettings=Bitte überprüfen Sie Ihre Datei-Sync-Einstellungen oder kontaktieren Sie Ihren Server-Administrator. sync.storage.error.verificationFailed=%S Verifizierung fehlgeschlagen. Überprüfen Sie Ihre Datei-Sync-Einstellungen im Sync-Reiter der Zotero-Einstellungen. -sync.storage.error.fileInUse=Die Date '%S' ist in Verwendung und kann nicht upgedatet werden. Bitte schließen Sie die Datei oder starten Sie Ihren Computer neu und versuchen Sie die Synchronsierung erneut. sync.storage.error.fileNotCreated=Die Datei '%S' konnte nicht im Zotero-Ablageverzeichnis angelegt werden. sync.storage.error.fileEditingAccessLost=Sie haben keine Dateiberarbeitungsberechtigung mehr für die Zotero-Gruppe '%S', und die Dateien, die Sie hinzugefügt oder bearbeitet haben, können nicht mit dem Server synchronisiert werden. sync.storage.error.copyChangedItems=Wenn Sie die veränderten Einträge und Dateien an einen anderen Ort kopieren wollen, brechen Sie die Synchronisierung jetzt ab. diff --git a/chrome/locale/el-GR/zotero/zotero.properties b/chrome/locale/el-GR/zotero/zotero.properties index 9323985c11..bbde37f503 100644 --- a/chrome/locale/el-GR/zotero/zotero.properties +++ b/chrome/locale/el-GR/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/en-US/zotero/zotero.properties b/chrome/locale/en-US/zotero/zotero.properties index 608bf00d93..6396df396c 100644 --- a/chrome/locale/en-US/zotero/zotero.properties +++ b/chrome/locale/en-US/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached = The server %S could not be reached sync.storage.error.permissionDeniedAtAddress = You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings = Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed = %S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse = The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated = The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost = You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems = If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/es-ES/zotero/zotero.properties b/chrome/locale/es-ES/zotero/zotero.properties index 939410fe4e..287a18b4e2 100644 --- a/chrome/locale/es-ES/zotero/zotero.properties +++ b/chrome/locale/es-ES/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=No puedo llegar al servidor %S. sync.storage.error.permissionDeniedAtAddress=No tienes permiso para crear un directorio de Zotero en la siguiente dirección: sync.storage.error.checkFileSyncSettings=Comprueba tus ajustes de fichero de sincronización o informa al administrador de tu servidor. sync.storage.error.verificationFailed=Falló la verificación de %S. Comprueba tus ajustes de fichero de sincronización en el panel "Sincronización" de las preferencias de Zotero. -sync.storage.error.fileInUse=El fichero '%S' está en uso y no puede actualizarse. Cierra el fichero o reinicia tu ordenador e intenta sincronizar de nuevo. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=Ya no tienes acceso a modificar ficheros en el grupo Zotero '%S', y los ficheros que has añadido o modificado no pueden sincronizarse con el servidor. sync.storage.error.copyChangedItems=Si quieres tener la oportunidad de copiar los ítems y fichero cambiados a otro sitio, debes cancelar la sincronización ahora. diff --git a/chrome/locale/et-EE/zotero/zotero.properties b/chrome/locale/et-EE/zotero/zotero.properties index 9323985c11..bbde37f503 100644 --- a/chrome/locale/et-EE/zotero/zotero.properties +++ b/chrome/locale/et-EE/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/eu-ES/zotero/zotero.properties b/chrome/locale/eu-ES/zotero/zotero.properties index 8ea1ef0ece..cff796af35 100644 --- a/chrome/locale/eu-ES/zotero/zotero.properties +++ b/chrome/locale/eu-ES/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=%S zerbitzarira ezin izan da heldu. sync.storage.error.permissionDeniedAtAddress=Arazo bat zure baimenekin: You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S egiaztapenak huts egin du. Egiaztatu Sync hobespenak Zotero panelean. -sync.storage.error.fileInUse='%S'zabalik dago eta ezin da eguneratu. Itxi ezazu eta saiatu berriro. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/fi-FI/zotero/zotero.properties b/chrome/locale/fi-FI/zotero/zotero.properties index a1a01245f6..2ce443f02b 100644 --- a/chrome/locale/fi-FI/zotero/zotero.properties +++ b/chrome/locale/fi-FI/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/fr-FR/zotero/zotero.properties b/chrome/locale/fr-FR/zotero/zotero.properties index 6060155d90..a0dbff7ed9 100644 --- a/chrome/locale/fr-FR/zotero/zotero.properties +++ b/chrome/locale/fr-FR/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Le serveur %S n'a pu être atteint. sync.storage.error.permissionDeniedAtAddress=Vous n'avez pas le droit de créer un répertoire Zotero à l'adresse suivante : sync.storage.error.checkFileSyncSettings=Veuillez vérifier vos paramètres de synchronisation de fichier ou contacter l'administrateur de votre serveur. sync.storage.error.verificationFailed=La vérification %S a échoué. Vérifiez vos paramètres de synchronisation de fichier dans le panneau de synchronisation des préférences Zotero. -sync.storage.error.fileInUse=Le fichier '%S' est en cours d'utilisation et ne peut pas être mis à jour. Veuillez fermer le fichier ou redémarrer votre ordinateur et réessayer de synchroniser. sync.storage.error.fileNotCreated=Le fichier '%S' n'a pas pu être créé dans le répertoire 'storage' de Zotero. sync.storage.error.fileEditingAccessLost=Vous n'avez plus d'accès en modification de fichier pour le groupe Zotero '%S', et les fichiers que vous avez ajoutés ou modifiés ne peuvent pas être synchronisés vers le serveur. sync.storage.error.copyChangedItems=Pour avoir une chance de copier les documents et fichiers modifiés ailleurs, annulez la synchronisation maintenant. diff --git a/chrome/locale/gl-ES/zotero/zotero.properties b/chrome/locale/gl-ES/zotero/zotero.properties index 162fc475ab..d869f7188a 100644 --- a/chrome/locale/gl-ES/zotero/zotero.properties +++ b/chrome/locale/gl-ES/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Non se pode alcanzar o servidor %S. sync.storage.error.permissionDeniedAtAddress=Non ten permiso para crear un directorio Zotero no seguinte enderezo: sync.storage.error.checkFileSyncSettings=Por favor, verifique as súas opcións de sincronización de arquivos ou contacte co administrador do servidor. sync.storage.error.verificationFailed=A verificación de %S fallou. Comprobe as súas opcións de sincronización de arquivos no panel de sincronización das preferencias Zotero. -sync.storage.error.fileInUse=O arquivo '%S' está en uso e non pode ser actualizado. Por favor, peche o ficheiro ou reinicie o seu computador e probe sincronizar de novo. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=Xa non ten acceso a edición de arquivos do grupo Zotero '%S', e os arquivos que Vostede engadiu ou editou non poden ser sincronizados co servidor. sync.storage.error.copyChangedItems=Se desexa unha oportunidade de copiar os elementos alterados e os arquivos en outro lugar, cancele agora a sincronización. diff --git a/chrome/locale/he-IL/zotero/zotero.properties b/chrome/locale/he-IL/zotero/zotero.properties index fe4a0db78b..3cb8e9d082 100644 --- a/chrome/locale/he-IL/zotero/zotero.properties +++ b/chrome/locale/he-IL/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/hr-HR/zotero/zotero.properties b/chrome/locale/hr-HR/zotero/zotero.properties index 9323985c11..bbde37f503 100644 --- a/chrome/locale/hr-HR/zotero/zotero.properties +++ b/chrome/locale/hr-HR/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/hu-HU/zotero/zotero.properties b/chrome/locale/hu-HU/zotero/zotero.properties index 58a2fe4345..fc5d9d2289 100644 --- a/chrome/locale/hu-HU/zotero/zotero.properties +++ b/chrome/locale/hu-HU/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=A %S szerver nem elérhető. sync.storage.error.permissionDeniedAtAddress=Nincs jogosultsága az alábbi címen Zotero könyvtárat létrehozni: sync.storage.error.checkFileSyncSettings=Ellenőrizze a fájl szinkronizációs beállításokat vagy forduljon a rendszergazdához. sync.storage.error.verificationFailed=A %S szerver ellenőrzése sikertelen. Ellenőrizze a fájl szinkronizációs beállításokat a Zoteto beállítások Szinkronizáció lapján. -sync.storage.error.fileInUse=A '%S' fájl használatban van, és nem frissíthető. Csukja be a fájl vagy indítsa újra a gépet, és kezdje újra a szinkronizációt. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=Nincs módosítási jogosultsága a '%S' csoporthoz, ezért az új vagy módosított fájlokat nem lehet szinkronizálni a szerverrel. sync.storage.error.copyChangedItems=Ha jogosultságot szeretne kérni vagy egy másik csoporttal szinkronizálni, vesse el a szinkronizációt. diff --git a/chrome/locale/is-IS/zotero/zotero.properties b/chrome/locale/is-IS/zotero/zotero.properties index 4ef07910b4..c0a3075541 100644 --- a/chrome/locale/is-IS/zotero/zotero.properties +++ b/chrome/locale/is-IS/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/it-IT/zotero/zotero.properties b/chrome/locale/it-IT/zotero/zotero.properties index 74eeed8a8e..e3f75338a7 100644 --- a/chrome/locale/it-IT/zotero/zotero.properties +++ b/chrome/locale/it-IT/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/ja-JP/zotero/zotero.properties b/chrome/locale/ja-JP/zotero/zotero.properties index 8f115f2118..5e9fb8cef3 100644 --- a/chrome/locale/ja-JP/zotero/zotero.properties +++ b/chrome/locale/ja-JP/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/ko-KR/zotero/zotero.properties b/chrome/locale/ko-KR/zotero/zotero.properties index 46e0e265f0..6fc79fa5bd 100644 --- a/chrome/locale/ko-KR/zotero/zotero.properties +++ b/chrome/locale/ko-KR/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=서버 %S에 도달할 수 있습니 sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/mn-MN/zotero/zotero.properties b/chrome/locale/mn-MN/zotero/zotero.properties index dc88d4bb50..aacc7c5324 100644 --- a/chrome/locale/mn-MN/zotero/zotero.properties +++ b/chrome/locale/mn-MN/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/nb-NO/zotero/zotero.properties b/chrome/locale/nb-NO/zotero/zotero.properties index 1b1e61f12f..93c7094508 100644 --- a/chrome/locale/nb-NO/zotero/zotero.properties +++ b/chrome/locale/nb-NO/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/nl-NL/zotero/zotero.properties b/chrome/locale/nl-NL/zotero/zotero.properties index 5bdce60bb5..4a8e72c2d4 100644 --- a/chrome/locale/nl-NL/zotero/zotero.properties +++ b/chrome/locale/nl-NL/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=De server %S kon niet worden bereikt. sync.storage.error.permissionDeniedAtAddress=U heeft geen toegangsrechten om een Zotero-map aan te maken op het volgende adres: sync.storage.error.checkFileSyncSettings=Controleer uw bestandssynchronisatie-instellingen of neem contact op met uw serveradministrator. sync.storage.error.verificationFailed=%S controle mislukt. Controleer uw bestandssynchronisatie-instellingen in het synchronisatie-paneel in de Zotero-voorkeuren. -sync.storage.error.fileInUse=Het bestand '%S' is in gebruik en kan niet worden bijgewerkt. Sluit het bestand of herstart uw computer en probeer opnieuw om te synchroniseren. sync.storage.error.fileNotCreated=Het bestand '%S' kon niet worden aangemaakt in de Zotero opslagmap. sync.storage.error.fileEditingAccessLost=U heeft geen toegangsrechten meer om bestanden te wijzigen in de Zotero-groep '%S'. Bestanden die u heeft toegevoegd of gewijzigd zullen niet gesynchroniseerd worden met de server. sync.storage.error.copyChangedItems=Annuleer de synchronisatie als u eerst uw gewijzigde objecten en bestanden wilt opslaan. diff --git a/chrome/locale/pl-PL/zotero/zotero.properties b/chrome/locale/pl-PL/zotero/zotero.properties index a64d434762..59c0d853b8 100644 --- a/chrome/locale/pl-PL/zotero/zotero.properties +++ b/chrome/locale/pl-PL/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/pt-BR/zotero/zotero.properties b/chrome/locale/pt-BR/zotero/zotero.properties index e44dd201b7..837f523355 100644 --- a/chrome/locale/pt-BR/zotero/zotero.properties +++ b/chrome/locale/pt-BR/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=O servidor %S não pôde ser contatad sync.storage.error.permissionDeniedAtAddress=Você não tem permissão para criar um diretório Zotero no seguinte endereço: sync.storage.error.checkFileSyncSettings=Por favor, verifique suas configurações de sincronização de arquivo ou contato o administrador de seu servidor. sync.storage.error.verificationFailed=Erro de verificação %S. Verifique suas configurações de sincronização no painel Sincronização das preferências Zotero. -sync.storage.error.fileInUse=O arquivo '%S' está em uso e não pode ser atualizado. Por favor, feche o arquivo ou reinicie seu computador e tente sincronizar novamente. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=Você não tem mais direitos de edição para o grupo Zotero '%S'; os arquivos que você adicionou ou editou não podem ser sincronizados com o servidor. sync.storage.error.copyChangedItems=Se deseja uma oportunidade para copiar os itens e arquivos modificados para outro lugar, cancele a operação de sincronização agora. diff --git a/chrome/locale/pt-PT/zotero/zotero.properties b/chrome/locale/pt-PT/zotero/zotero.properties index 8e4e29e889..9c2619dc9f 100644 --- a/chrome/locale/pt-PT/zotero/zotero.properties +++ b/chrome/locale/pt-PT/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Não foi possível alcançar o servid sync.storage.error.permissionDeniedAtAddress=Não tem permissão para criar uma pasta Zotero no seguinte endereço: sync.storage.error.checkFileSyncSettings=Por favor verifique as opções de sincronização de arquivos ou contacte o administrador do seu servidor. sync.storage.error.verificationFailed=Falhou a verificação de %S. Verifique as opções de sincronização de arquivos no painel de sincronização das preferências do Zotero. -sync.storage.error.fileInUse=O arquivo '%S' está a ser usado e não pode ser actualizado. Por favor feche o arquivo ou reinicie o computador e tente sincronizar novamente. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=Já não tem acesso à edição de arquivos no grupo Zotero '%S'. Assim, arquivos que adicionou ou editou não podem ser sincronizados com o servidor. sync.storage.error.copyChangedItems=Se quiser uma oportunidade para copiar itens ou arquivos alterados para lugar seguro, cancele a sincronização imediatamente. diff --git a/chrome/locale/ro-RO/zotero/zotero.properties b/chrome/locale/ro-RO/zotero/zotero.properties index dbd7e8389f..14476a143b 100644 --- a/chrome/locale/ro-RO/zotero/zotero.properties +++ b/chrome/locale/ro-RO/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Serverul %S nu poate fi găsit. sync.storage.error.permissionDeniedAtAddress=Nu ai permisiunea să creezi un dosar Zotero la adresa următoare: sync.storage.error.checkFileSyncSettings=Te rog să verifici configurările de sincronizare a fișierelor sau să contactezi administratorul serverului tău. sync.storage.error.verificationFailed=Eroare la verificarea %S. Verifică-ți configurările de sincronizare a fișierelor în panoul Sincronizare din preferințele Zotero. -sync.storage.error.fileInUse=Fișierul '%S' este în folosință și nu poate fi actualizat. Te rog să închizi fișierul sau să repornești calculatorul, după care poți reîncerca să faci sincronizarea. sync.storage.error.fileNotCreated=Fișierul '%S' nu poate fi creat în directorul Zotero 'storage' (depozit). sync.storage.error.fileEditingAccessLost=Nu mai ai permisiuni de editare a fișierelor în grupul Zotero '%S', de aceea fișierele pe care le-ai adăugat sau editat nu pot fi sincronizate cu serverul. sync.storage.error.copyChangedItems=Dacă vrei să copiezi itemii modificați și fișierele altundeva, renunță la sincronizare acum. diff --git a/chrome/locale/ru-RU/zotero/zotero.properties b/chrome/locale/ru-RU/zotero/zotero.properties index c88f0625b9..1467b2fa16 100644 --- a/chrome/locale/ru-RU/zotero/zotero.properties +++ b/chrome/locale/ru-RU/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Сервер %S недоступен. sync.storage.error.permissionDeniedAtAddress=У вас нет разрешения на создание каталога Zotero по следующему адресу: sync.storage.error.checkFileSyncSettings=Пожалуйста, проверьте ваши настройки синхронизации файлов или свяжитесь с администратором вашего сервера. sync.storage.error.verificationFailed=Проверка %S не удалась. Проверьте ваши настройки синхронизации файлов в панели Синхронизация настроек Zotero. -sync.storage.error.fileInUse=Файл '%S' сейчас используется и не может быть обновлен. Пожалуйста, закройте этот файл или перезагрузите компьютер и снова попробуйте синхронизацию. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=У вас больше нет доступа на редактирование файлов к группе Zotero '%S', и файлы, которые вы добавили или изменили, не могут быть синхронизированы с сервером. sync.storage.error.copyChangedItems=Если вы хотите скопировать измененные документы и файлы в другое место, отмените синхронизацию сейчас. diff --git a/chrome/locale/sk-SK/zotero/zotero.properties b/chrome/locale/sk-SK/zotero/zotero.properties index 1feb0a08ee..f05dad7ddc 100644 --- a/chrome/locale/sk-SK/zotero/zotero.properties +++ b/chrome/locale/sk-SK/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=K serveru %S sa nedá pripojiť. sync.storage.error.permissionDeniedAtAddress=Nemáte povolenie vytvoriť priečinok Zotero na nasledujúcej adrese: sync.storage.error.checkFileSyncSettings=Prosím skontrolujte si vaše nastavenia pre synchronizáciu súborov alebo kontaktujte správcu servera. sync.storage.error.verificationFailed=%S overenie zlyhalo. -sync.storage.error.fileInUse=Súbor "%S" sa práve používa a nemôže byť aktualizovaný. Prosím zatvorte súbor alebo reštartujte počítač a skúste synchronizáciu znova. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=V skupine "%S"už nemáte právo upravovať súbory a tak súbory, ktoré ste pridali alebo upravili, nemôžu byť synchronizované na server. sync.storage.error.copyChangedItems=Ak chcete upravené položky skopírovať na iné miesto, zrušte aktuálnu synchronizáciu. diff --git a/chrome/locale/sl-SI/zotero/zotero.properties b/chrome/locale/sl-SI/zotero/zotero.properties index d9d749c617..59668b5dd6 100644 --- a/chrome/locale/sl-SI/zotero/zotero.properties +++ b/chrome/locale/sl-SI/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Strežnika %S ni mogoče doseči. sync.storage.error.permissionDeniedAtAddress=Nimate pravic za ustvarjanje mape Zotero na naslednjem naslovu: sync.storage.error.checkFileSyncSettings=Preverite svoje nastavitve usklajevanja ali povprašajte svojega sistemskega skrbnika. sync.storage.error.verificationFailed=Overjanje $S ni uspelo. Preverite nastavitve usklajevanja datotek v podoknu Usklajevanje v nastavitvah Zotera. -sync.storage.error.fileInUse=Datoteka '%S' je v rabi in je ni mogoče posodobiti. Zaprite datoteko ali ponovno zaženite računalnik in poskusite znova z usklajevanjem. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=V skupini Zotero '%S' nimate več pravic urejanja in datotek, ki ste jih dodali ali uredili, ni več mogoče usklajevati s strežnikom. sync.storage.error.copyChangedItems=Če želite kopirati spremenjene vnose drugam, takoj prekinite usklajevanje. diff --git a/chrome/locale/sr-RS/zotero/zotero.properties b/chrome/locale/sr-RS/zotero/zotero.properties index d6736775dd..41c325e78f 100644 --- a/chrome/locale/sr-RS/zotero/zotero.properties +++ b/chrome/locale/sr-RS/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/sv-SE/zotero/zotero.properties b/chrome/locale/sv-SE/zotero/zotero.properties index 4ae1e484b2..b4c119babe 100644 --- a/chrome/locale/sv-SE/zotero/zotero.properties +++ b/chrome/locale/sv-SE/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/th-TH/zotero/zotero.properties b/chrome/locale/th-TH/zotero/zotero.properties index 505272b002..2f8591336b 100644 --- a/chrome/locale/th-TH/zotero/zotero.properties +++ b/chrome/locale/th-TH/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/tr-TR/zotero/zotero.properties b/chrome/locale/tr-TR/zotero/zotero.properties index 7ef8e506e0..3b6f1d349d 100644 --- a/chrome/locale/tr-TR/zotero/zotero.properties +++ b/chrome/locale/tr-TR/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=Bu sunucu %S ulaşılamaz. sync.storage.error.permissionDeniedAtAddress=Belirtilen adreste Zotero dizini yaratmak için izne sahip değilsiniz: sync.storage.error.checkFileSyncSettings=Lütfen, dosya eşleme ayarlarınızı kontrol ediniz veya sunucu yöneticinizle temas kurunuz. sync.storage.error.verificationFailed=%S onaylama başarısız. Zotero tercihlerinde, Eşleme panosundaki dosya eşleme ayarlarınızı doğrulayınız. -sync.storage.error.fileInUse='%S' dosyası kullanımda ve güncellenemez. Lütfen dosyayı kapatın veya bilgisayarınızı tekrar başlatın tekrar eşleyin. sync.storage.error.fileNotCreated='%S' dosyası Zotero depo dizininde yaratılamadı. sync.storage.error.fileEditingAccessLost=Zotero grup '%S' düzenleme hakkına sahip değilsiniz ve yaptığınız ekleme veya düzeltmeler sunucuya eşlenmeyecek. sync.storage.error.copyChangedItems=Eğer başkabiryerde değişen dosya ve eserlerin kopyalanmasını değiştirmek isterseniz, şimdi eşlemeyi iptal edin. diff --git a/chrome/locale/vi-VN/zotero/zotero.properties b/chrome/locale/vi-VN/zotero/zotero.properties index ed2f351bbe..b9f08500a0 100644 --- a/chrome/locale/vi-VN/zotero/zotero.properties +++ b/chrome/locale/vi-VN/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/zh-CN/zotero/zotero.properties b/chrome/locale/zh-CN/zotero/zotero.properties index 805a4cfea6..d5e3f92d7d 100644 --- a/chrome/locale/zh-CN/zotero/zotero.properties +++ b/chrome/locale/zh-CN/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=The server %S could not be reached. sync.storage.error.permissionDeniedAtAddress=You do not have permission to create a Zotero directory at the following address: sync.storage.error.checkFileSyncSettings=Please check your file sync settings or contact your server administrator. sync.storage.error.verificationFailed=%S verification failed. Verify your file sync settings in the Sync pane of the Zotero preferences. -sync.storage.error.fileInUse=The file '%S' is in use and cannot be updated. Please close the file or restart your computer and try syncing again. sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=You no longer have file editing access to the Zotero group '%S', and files you've added or edited cannot be synced to the server. sync.storage.error.copyChangedItems=If you would like a chance to copy changed items and files elsewhere, cancel the sync now. diff --git a/chrome/locale/zh-TW/zotero/zotero.properties b/chrome/locale/zh-TW/zotero/zotero.properties index 2944355335..39c7410f33 100644 --- a/chrome/locale/zh-TW/zotero/zotero.properties +++ b/chrome/locale/zh-TW/zotero/zotero.properties @@ -634,7 +634,6 @@ sync.storage.error.serverCouldNotBeReached=無法到達 %S 這個伺服器。 sync.storage.error.permissionDeniedAtAddress=你在以下的位址沒有建立 Zotero 資料夾的權限: sync.storage.error.checkFileSyncSettings=請檢查你的檔案同步設定或與你的伺服器管理員聯絡。 sync.storage.error.verificationFailed=%S 驗證失敗。請到 Zotero 偏好設定內的同步窗格查驗你的檔案同步設定。 -sync.storage.error.fileInUse='%S' 這個檔案正在使用中,無法更新。請關閉這個檔案或重新啟動你的電腦,然後再試一次同步。 sync.storage.error.fileNotCreated=The file '%S' could not be created in the Zotero 'storage' directory. sync.storage.error.fileEditingAccessLost=你不再能夠存取 Zotero 群組 '%S' 檔案編輯,你所新增或編輯的檔案無法與伺服器同步。 sync.storage.error.copyChangedItems=如果你想要有機會把更改過的項目複製到別處,則現在取消同步化。