From f341bb1ae036338c020362fc4266155add4993e3 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 4 Aug 2013 23:30:28 -0400 Subject: [PATCH 01/20] Fix error exporting linked HTML file https://forums.zotero.org/discussion/29392/#Item_14 --- chrome/content/zotero/xpcom/translation/translate_item.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/chrome/content/zotero/xpcom/translation/translate_item.js b/chrome/content/zotero/xpcom/translation/translate_item.js index afab5df4d..6778820df 100644 --- a/chrome/content/zotero/xpcom/translation/translate_item.js +++ b/chrome/content/zotero/xpcom/translation/translate_item.js @@ -822,9 +822,10 @@ Zotero.Translate.ItemGetter.prototype = { var directory = targetFile.parent; - // The only attachments that can have multiple supporting files are of mime type - // text/html (specified in Attachments.getNumFiles()) - if(attachment.attachmentMIMEType == "text/html" + // The only attachments that can have multiple supporting files are imported + // attachments of mime type text/html (specified in Attachments.getNumFiles()) + if(attachment.attachmentMIMEType == "text/html" + && linkMode != Zotero.Attachments.LINK_MODE_LINKED_FILE && Zotero.Attachments.getNumFiles(attachment) > 1) { // Attachment is a snapshot with supporting files. Check if any of the // supporting files would cause a name conflict, and build a list of transfers From 86c66115608330aedda34f2a950139ac2a33211c Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 5 Aug 2013 10:57:09 -0400 Subject: [PATCH 02/20] Update auto-update pref text to include styles --- chrome/locale/en-US/zotero/preferences.dtd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/locale/en-US/zotero/preferences.dtd b/chrome/locale/en-US/zotero/preferences.dtd index 5c4b48f68..813ce1207 100644 --- a/chrome/locale/en-US/zotero/preferences.dtd +++ b/chrome/locale/en-US/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + From 675fde2f1a894a7e824e19002a4febc439353250 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 5 Aug 2013 16:31:23 -0400 Subject: [PATCH 03/20] Use async I/O for attachment (blue dot) column file check in Fx23+ --- chrome/content/zotero/xpcom/data/item.js | 78 +++++++++++++++++++-- chrome/content/zotero/xpcom/itemTreeView.js | 63 +++++++++++------ 2 files changed, 114 insertions(+), 27 deletions(-) diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index d4531d182..b04c12bcb 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -2951,12 +2951,48 @@ Zotero.Item.prototype.getFilename = function () { * * This is updated only initially and on subsequent getFile() calls. */ -Zotero.Item.prototype.__defineGetter__('fileExists', function () { - if (this._fileExists === null) { +Zotero.Item.prototype.fileExists = function (cachedOnly) { + if (!cachedOnly && this._fileExists === null) { this.getFile(); } return this._fileExists; -}); +}; + + +/** + * Asynchronous cached check for file existence, used for items view + * + * This is updated only initially and on subsequent getFile() calls. + */ +Zotero.Item.prototype.fileExistsAsync = function () { + var self = this; + return Q.fcall(function () { + if (self._fileExists !== null) { + return self._fileExists; + } + + if (Zotero.platformMajorVersion < 23) { + return self.fileExists(); + } + + if (!self.isAttachment()) { + throw new Error("Zotero.Item.fileExistsAsync() can only be called on attachment items"); + } + + if (self.attachmentLinkMode == Zotero.Attachments.LINK_MODE_LINKED_URL) { + throw new Error("Zotero.Item.fileExistsAsync() cannot be called on link attachments"); + } + + var nsIFile = self.getFile(null, true); + Components.utils.import("resource://gre/modules/osfile.jsm"); + return Q(OS.File.exists(nsIFile.path)) + .then(function(exists) { + self._updateAttachmentStates(exists); + return exists; + }); + }); +}; + /* @@ -3611,16 +3647,46 @@ Zotero.Item.prototype.getBestAttachment = function() { * * @return {Integer} 0 (none), 1 (present), -1 (missing) */ -Zotero.Item.prototype.getBestAttachmentState = function () { - if (this._bestAttachmentState !== null) { +Zotero.Item.prototype.getBestAttachmentState = function (cachedOnly) { + if (cachedOnly || this._bestAttachmentState !== null) { return this._bestAttachmentState; } var itemID = this.getBestAttachment(); - this._bestAttachmentState = itemID ? (Zotero.Items.get(itemID).fileExists ? 1 : -1) : 0; + this._bestAttachmentState = itemID + ? (Zotero.Items.get(itemID).fileExists() ? 1 : -1) + : 0; return this._bestAttachmentState; } +/** + * Return cached state of best attachment for use in items view + * + * @return {Promise:Integer} Promise with 0 (none), 1 (present), -1 (missing) + */ +Zotero.Item.prototype.getBestAttachmentStateAsync = function () { + var self = this; + return Q.fcall(function() { + if (self._bestAttachmentState !== null) { + return self._bestAttachmentState; + } + var itemID = self.getBestAttachment(); + if (itemID) { + return Zotero.Items.get(itemID).fileExistsAsync() + .then(function (exists) { + self._bestAttachmentState = exists ? 1 : -1; + }); + } + else { + self._bestAttachmentState = 0; + } + }) + .then(function () { + return self._bestAttachmentState; + }); +} + + Zotero.Item.prototype.updateBestAttachmentState = function () { this._bestAttachmentState = null; } diff --git a/chrome/content/zotero/xpcom/itemTreeView.js b/chrome/content/zotero/xpcom/itemTreeView.js index fde9c11b3..9656ed579 100644 --- a/chrome/content/zotero/xpcom/itemTreeView.js +++ b/chrome/content/zotero/xpcom/itemTreeView.js @@ -598,7 +598,8 @@ Zotero.ItemTreeView.prototype.notify = function(action, type, ids, extraData) // Clear item type icons var items = Zotero.Items.get(ids); for (let i=0; i Date: Mon, 5 Aug 2013 20:47:50 -0400 Subject: [PATCH 04/20] Fix note resetting in external note window during file syncing https://forums.zotero.org/discussion/29008 --- chrome/content/zotero/note.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chrome/content/zotero/note.js b/chrome/content/zotero/note.js index b3972aa83..c4cb38ecc 100644 --- a/chrome/content/zotero/note.js +++ b/chrome/content/zotero/note.js @@ -88,8 +88,7 @@ function onUnload() var NotifyCallback = { notify: function(action, type, ids){ - // DEBUG: why does this reset without checking the modified ids? - if (noteEditor.item) { + if (noteEditor.item && ids.indexOf(noteEditor.item.id) != -1) { noteEditor.item = noteEditor.item; // If the document title hasn't yet been set, reset undo so From f2d9580ba63d9a7eb6249df6e5b7c18d63f2c31d Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 6 Aug 2013 15:19:45 -0400 Subject: [PATCH 05/20] Update locales from Transifex --- chrome/locale/af-ZA/zotero/preferences.dtd | 8 +-- chrome/locale/af-ZA/zotero/zotero.properties | 4 ++ chrome/locale/ar/zotero/preferences.dtd | 8 +-- chrome/locale/ar/zotero/standalone.dtd | 2 +- chrome/locale/ar/zotero/zotero.properties | 4 ++ chrome/locale/bg-BG/zotero/preferences.dtd | 8 +-- chrome/locale/bg-BG/zotero/zotero.properties | 4 ++ chrome/locale/ca-AD/zotero/preferences.dtd | 8 +-- chrome/locale/ca-AD/zotero/standalone.dtd | 2 +- chrome/locale/ca-AD/zotero/zotero.properties | 4 ++ chrome/locale/cs-CZ/zotero/preferences.dtd | 8 +-- chrome/locale/cs-CZ/zotero/standalone.dtd | 2 +- chrome/locale/cs-CZ/zotero/zotero.properties | 4 ++ chrome/locale/da-DK/zotero/about.dtd | 2 +- chrome/locale/da-DK/zotero/preferences.dtd | 42 +++++------ chrome/locale/da-DK/zotero/standalone.dtd | 8 +-- chrome/locale/da-DK/zotero/zotero.dtd | 70 +++++++++---------- chrome/locale/da-DK/zotero/zotero.properties | 6 +- chrome/locale/de/zotero/preferences.dtd | 8 +-- chrome/locale/de/zotero/standalone.dtd | 2 +- chrome/locale/de/zotero/zotero.properties | 4 ++ chrome/locale/el-GR/zotero/preferences.dtd | 8 +-- chrome/locale/el-GR/zotero/zotero.properties | 4 ++ chrome/locale/es-ES/zotero/preferences.dtd | 8 +-- chrome/locale/es-ES/zotero/standalone.dtd | 2 +- chrome/locale/es-ES/zotero/zotero.properties | 4 ++ chrome/locale/et-EE/zotero/preferences.dtd | 8 +-- chrome/locale/et-EE/zotero/standalone.dtd | 2 +- chrome/locale/et-EE/zotero/zotero.properties | 4 ++ chrome/locale/eu-ES/zotero/preferences.dtd | 8 +-- chrome/locale/eu-ES/zotero/zotero.properties | 4 ++ chrome/locale/fa/zotero/preferences.dtd | 8 +-- chrome/locale/fa/zotero/zotero.properties | 4 ++ chrome/locale/fi-FI/zotero/preferences.dtd | 8 +-- chrome/locale/fi-FI/zotero/standalone.dtd | 2 +- chrome/locale/fi-FI/zotero/zotero.properties | 4 ++ chrome/locale/fr-FR/zotero/preferences.dtd | 8 +-- chrome/locale/fr-FR/zotero/standalone.dtd | 2 +- chrome/locale/fr-FR/zotero/zotero.properties | 4 ++ chrome/locale/gl-ES/zotero/preferences.dtd | 8 +-- chrome/locale/gl-ES/zotero/standalone.dtd | 2 +- chrome/locale/gl-ES/zotero/zotero.properties | 4 ++ chrome/locale/he-IL/zotero/preferences.dtd | 8 +-- chrome/locale/he-IL/zotero/standalone.dtd | 2 +- chrome/locale/he-IL/zotero/zotero.properties | 4 ++ chrome/locale/hr-HR/zotero/preferences.dtd | 8 +-- chrome/locale/hr-HR/zotero/zotero.properties | 4 ++ chrome/locale/hu-HU/zotero/preferences.dtd | 8 +-- chrome/locale/hu-HU/zotero/zotero.properties | 4 ++ chrome/locale/id-ID/zotero/preferences.dtd | 8 +-- chrome/locale/id-ID/zotero/standalone.dtd | 2 +- chrome/locale/id-ID/zotero/zotero.properties | 4 ++ chrome/locale/is-IS/zotero/preferences.dtd | 8 +-- chrome/locale/is-IS/zotero/zotero.properties | 4 ++ chrome/locale/it-IT/zotero/preferences.dtd | 8 +-- chrome/locale/it-IT/zotero/standalone.dtd | 2 +- chrome/locale/it-IT/zotero/zotero.properties | 4 ++ chrome/locale/ja-JP/zotero/preferences.dtd | 8 +-- chrome/locale/ja-JP/zotero/standalone.dtd | 2 +- chrome/locale/ja-JP/zotero/zotero.properties | 4 ++ chrome/locale/km/zotero/preferences.dtd | 8 +-- chrome/locale/km/zotero/standalone.dtd | 2 +- chrome/locale/km/zotero/zotero.properties | 4 ++ chrome/locale/ko-KR/zotero/preferences.dtd | 8 +-- chrome/locale/ko-KR/zotero/standalone.dtd | 2 +- chrome/locale/ko-KR/zotero/zotero.properties | 4 ++ chrome/locale/mn-MN/zotero/preferences.dtd | 8 +-- chrome/locale/mn-MN/zotero/zotero.properties | 4 ++ chrome/locale/nb-NO/zotero/preferences.dtd | 8 +-- chrome/locale/nb-NO/zotero/zotero.properties | 4 ++ chrome/locale/nl-NL/zotero/preferences.dtd | 8 +-- chrome/locale/nl-NL/zotero/standalone.dtd | 2 +- chrome/locale/nl-NL/zotero/zotero.properties | 4 ++ chrome/locale/nn-NO/zotero/preferences.dtd | 8 +-- chrome/locale/nn-NO/zotero/standalone.dtd | 2 +- chrome/locale/nn-NO/zotero/zotero.properties | 4 ++ chrome/locale/pl-PL/zotero/preferences.dtd | 8 +-- chrome/locale/pl-PL/zotero/standalone.dtd | 2 +- chrome/locale/pl-PL/zotero/zotero.properties | 4 ++ chrome/locale/pt-BR/zotero/preferences.dtd | 8 +-- chrome/locale/pt-BR/zotero/standalone.dtd | 2 +- chrome/locale/pt-BR/zotero/zotero.properties | 4 ++ chrome/locale/pt-PT/zotero/preferences.dtd | 8 +-- chrome/locale/pt-PT/zotero/standalone.dtd | 2 +- chrome/locale/pt-PT/zotero/zotero.properties | 4 ++ chrome/locale/ro-RO/zotero/preferences.dtd | 8 +-- chrome/locale/ro-RO/zotero/standalone.dtd | 2 +- chrome/locale/ro-RO/zotero/zotero.properties | 4 ++ chrome/locale/ru-RU/zotero/preferences.dtd | 8 +-- chrome/locale/ru-RU/zotero/standalone.dtd | 2 +- chrome/locale/ru-RU/zotero/zotero.properties | 4 ++ chrome/locale/sk-SK/zotero/preferences.dtd | 8 +-- chrome/locale/sk-SK/zotero/standalone.dtd | 2 +- chrome/locale/sk-SK/zotero/zotero.properties | 4 ++ chrome/locale/sl-SI/zotero/preferences.dtd | 8 +-- chrome/locale/sl-SI/zotero/standalone.dtd | 2 +- chrome/locale/sl-SI/zotero/zotero.properties | 4 ++ chrome/locale/sr-RS/zotero/preferences.dtd | 8 +-- chrome/locale/sr-RS/zotero/zotero.properties | 4 ++ chrome/locale/sv-SE/zotero/preferences.dtd | 14 ++-- chrome/locale/sv-SE/zotero/standalone.dtd | 2 +- .../locale/sv-SE/zotero/timeline.properties | 4 +- chrome/locale/sv-SE/zotero/zotero.dtd | 4 +- chrome/locale/sv-SE/zotero/zotero.properties | 4 ++ chrome/locale/th-TH/zotero/preferences.dtd | 8 +-- chrome/locale/th-TH/zotero/standalone.dtd | 2 +- chrome/locale/th-TH/zotero/zotero.properties | 4 ++ chrome/locale/tr-TR/zotero/preferences.dtd | 16 ++--- chrome/locale/tr-TR/zotero/standalone.dtd | 2 +- chrome/locale/tr-TR/zotero/zotero.dtd | 16 ++--- chrome/locale/tr-TR/zotero/zotero.properties | 24 ++++--- chrome/locale/vi-VN/zotero/preferences.dtd | 8 +-- chrome/locale/vi-VN/zotero/zotero.properties | 4 ++ chrome/locale/zh-CN/zotero/preferences.dtd | 8 +-- chrome/locale/zh-CN/zotero/standalone.dtd | 2 +- chrome/locale/zh-CN/zotero/zotero.properties | 4 ++ chrome/locale/zh-TW/zotero/preferences.dtd | 8 +-- chrome/locale/zh-TW/zotero/standalone.dtd | 2 +- chrome/locale/zh-TW/zotero/zotero.properties | 4 ++ 119 files changed, 452 insertions(+), 284 deletions(-) diff --git a/chrome/locale/af-ZA/zotero/preferences.dtd b/chrome/locale/af-ZA/zotero/preferences.dtd index df053f1c6..cde46a89f 100644 --- a/chrome/locale/af-ZA/zotero/preferences.dtd +++ b/chrome/locale/af-ZA/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/af-ZA/zotero/zotero.properties b/chrome/locale/af-ZA/zotero/zotero.properties index e88d80c55..6ed16aa96 100644 --- a/chrome/locale/af-ZA/zotero/zotero.properties +++ b/chrome/locale/af-ZA/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/ar/zotero/preferences.dtd b/chrome/locale/ar/zotero/preferences.dtd index e4522b0df..ea49268ab 100644 --- a/chrome/locale/ar/zotero/preferences.dtd +++ b/chrome/locale/ar/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/ar/zotero/standalone.dtd b/chrome/locale/ar/zotero/standalone.dtd index 8afc80f84..9f178c90d 100644 --- a/chrome/locale/ar/zotero/standalone.dtd +++ b/chrome/locale/ar/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/ar/zotero/zotero.properties b/chrome/locale/ar/zotero/zotero.properties index ba3f0f55a..7bd39ebab 100644 --- a/chrome/locale/ar/zotero/zotero.properties +++ b/chrome/locale/ar/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=إدارة محرك البحث... standalone.corruptInstallation=يبدو أن تثبيت Zotero المستقل قد تلف بسبب تحديث التلقائي فاشل. قد يستمر Zotero في العمل، لتجنب الأخطاء المحتملة، يرجى تحميل أحدث نسخة من Zotero مستقل من http://zotero.org/support/standalone في أقرب وقت ممكن. standalone.addonInstallationFailed.title=فشلت عملية تنصيب الوظيفة الاضافية standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=خطأ في موصل الزوتيرو connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/bg-BG/zotero/preferences.dtd b/chrome/locale/bg-BG/zotero/preferences.dtd index cf4e32814..15eab3aaf 100644 --- a/chrome/locale/bg-BG/zotero/preferences.dtd +++ b/chrome/locale/bg-BG/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/bg-BG/zotero/zotero.properties b/chrome/locale/bg-BG/zotero/zotero.properties index 883478de2..683552bf2 100644 --- a/chrome/locale/bg-BG/zotero/zotero.properties +++ b/chrome/locale/bg-BG/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/ca-AD/zotero/preferences.dtd b/chrome/locale/ca-AD/zotero/preferences.dtd index 7121bde3d..57b65c9ef 100644 --- a/chrome/locale/ca-AD/zotero/preferences.dtd +++ b/chrome/locale/ca-AD/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/ca-AD/zotero/standalone.dtd b/chrome/locale/ca-AD/zotero/standalone.dtd index 606823133..e8b2e079e 100644 --- a/chrome/locale/ca-AD/zotero/standalone.dtd +++ b/chrome/locale/ca-AD/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/ca-AD/zotero/zotero.properties b/chrome/locale/ca-AD/zotero/zotero.properties index ad6370ec3..a6371f771 100644 --- a/chrome/locale/ca-AD/zotero/zotero.properties +++ b/chrome/locale/ca-AD/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=La teva instal·lació de Zotero Independent sembla estar danyada a causa d'un error d'actualització automàtica. Mentre que Zotero pot seguir funcionant, per evitar possibles errors, si us plau descarrega la darrera versió de Zotero Independent de http://zotero.org/support/standalone tan aviat com sigui possible. standalone.addonInstallationFailed.title=La intal·lació del complement ha fallat standalone.addonInstallationFailed.body=No s'ha pogut instal·lar el complement "%S". Potser és incompatible amb aquesta versió de Zotero Independent. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Error del connector de Zotero connector.standaloneOpen=No es pot accedir a la base de dades perquè el Zotero Independent està obert. Visualitzeu el elements al Zotero Independent. diff --git a/chrome/locale/cs-CZ/zotero/preferences.dtd b/chrome/locale/cs-CZ/zotero/preferences.dtd index 0da10e65f..bf27645e1 100644 --- a/chrome/locale/cs-CZ/zotero/preferences.dtd +++ b/chrome/locale/cs-CZ/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/cs-CZ/zotero/standalone.dtd b/chrome/locale/cs-CZ/zotero/standalone.dtd index f8ee19be5..0bfaca692 100644 --- a/chrome/locale/cs-CZ/zotero/standalone.dtd +++ b/chrome/locale/cs-CZ/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/cs-CZ/zotero/zotero.properties b/chrome/locale/cs-CZ/zotero/zotero.properties index c24c1963c..9198d6e6a 100644 --- a/chrome/locale/cs-CZ/zotero/zotero.properties +++ b/chrome/locale/cs-CZ/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Instalace vašeho Samostatného Zotera se zdá být poškozena kvůli nezdařené automatické aktualizaci. Zotero může dál fungovat, nicméně pokud se chcete vyhnout potenciálním chybám, doporučujeme co nejdříve znovu stáhnout Samostatné Zotero z http://zotero.org/support/standalone. standalone.addonInstallationFailed.title=Instalace doplňku selhala. standalone.addonInstallationFailed.body=Doplněk "%S" nemohl být nainstalován. Může být nekompatibilní s touto verzí Samostantého Zotera. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Chyba připojení Zotera. connector.standaloneOpen=Není možné přistupovat k vaší databázi, protože je otevřeno Samostatné Zotero. K prohlížení vašich položek použijte prosím Samostatné Zotero. diff --git a/chrome/locale/da-DK/zotero/about.dtd b/chrome/locale/da-DK/zotero/about.dtd index 475029cf0..6d361edfa 100644 --- a/chrome/locale/da-DK/zotero/about.dtd +++ b/chrome/locale/da-DK/zotero/about.dtd @@ -10,4 +10,4 @@ - + diff --git a/chrome/locale/da-DK/zotero/preferences.dtd b/chrome/locale/da-DK/zotero/preferences.dtd index 2d982a425..eba4de9a6 100644 --- a/chrome/locale/da-DK/zotero/preferences.dtd +++ b/chrome/locale/da-DK/zotero/preferences.dtd @@ -3,7 +3,7 @@ - + @@ -22,7 +22,7 @@ - + @@ -39,7 +39,7 @@ - + @@ -60,14 +60,14 @@ - - - + + + - - - + + + @@ -76,7 +76,7 @@ - + @@ -126,16 +126,16 @@ + - + - - + + - @@ -161,7 +161,7 @@ - + @@ -181,11 +181,11 @@ - - - - - + + + + + @@ -204,4 +204,4 @@ - + diff --git a/chrome/locale/da-DK/zotero/standalone.dtd b/chrome/locale/da-DK/zotero/standalone.dtd index 1b5cd7fec..3992fff19 100644 --- a/chrome/locale/da-DK/zotero/standalone.dtd +++ b/chrome/locale/da-DK/zotero/standalone.dtd @@ -12,12 +12,12 @@ - + - + - + @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/da-DK/zotero/zotero.dtd b/chrome/locale/da-DK/zotero/zotero.dtd index 353311428..99d6450db 100644 --- a/chrome/locale/da-DK/zotero/zotero.dtd +++ b/chrome/locale/da-DK/zotero/zotero.dtd @@ -5,7 +5,7 @@ - + @@ -13,7 +13,7 @@ - + @@ -58,22 +58,22 @@ - - - - - - - - - - + + + + + + + + + + - - + + @@ -86,10 +86,10 @@ - + - - + + @@ -121,7 +121,7 @@ - + @@ -139,18 +139,18 @@ - + - - - - - + + + + + - + @@ -159,9 +159,9 @@ - - - + + + @@ -170,7 +170,7 @@ - + @@ -189,7 +189,7 @@ - + @@ -212,8 +212,8 @@ - - + + @@ -239,9 +239,9 @@ - - - + + + diff --git a/chrome/locale/da-DK/zotero/zotero.properties b/chrome/locale/da-DK/zotero/zotero.properties index 0b8342275..7c85392eb 100644 --- a/chrome/locale/da-DK/zotero/zotero.properties +++ b/chrome/locale/da-DK/zotero/zotero.properties @@ -276,7 +276,7 @@ noteEditor.editNote=Rediger Note itemTypes.note=Note itemTypes.attachment=Vedhæftning itemTypes.book=Bog -itemTypes.bookSection=Bidrag til bog +itemTypes.bookSection=Uddrag af bog itemTypes.journalArticle=Tidsskriftsartikel itemTypes.magazineArticle=Artikel i blad itemTypes.newspaperArticle=Avisartikel @@ -934,6 +934,10 @@ locate.manageLocateEngines=Håndter Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/de/zotero/preferences.dtd b/chrome/locale/de/zotero/preferences.dtd index b50aa4596..63ca521ad 100644 --- a/chrome/locale/de/zotero/preferences.dtd +++ b/chrome/locale/de/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/de/zotero/standalone.dtd b/chrome/locale/de/zotero/standalone.dtd index 136775d24..53e11cdf7 100644 --- a/chrome/locale/de/zotero/standalone.dtd +++ b/chrome/locale/de/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/de/zotero/zotero.properties b/chrome/locale/de/zotero/zotero.properties index 4f1588d3f..acb10ccbf 100644 --- a/chrome/locale/de/zotero/zotero.properties +++ b/chrome/locale/de/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Lookup-Engines einrichten... standalone.corruptInstallation=Ihre Installation von Zotero Standalone scheint aufgrund eines fehlgeschlagenen automatischen Updates beschädigt worden zu sein. Zotero funktioniert eventuell weiterhin, aber Sie sollten die aktuellste Version von Zotero Standalone von http://zotero.org/support/standalone so bald wie möglich herunterladen, um potentielle Probleme zu vermeiden. standalone.addonInstallationFailed.title=Installation der Erweiterung fehlgeschlagen standalone.addonInstallationFailed.body=Die Erweiterung "%S" konnte nicht installiert werden. Sie ist eventuell inkompatibel mit dieser Version von Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero-Connector-Fehler connector.standaloneOpen=Zugriff auf Ihre Datenbank nicht möglich, da Zotero Standalone im Moment läuft. Bitte betrachten Sie Ihre Einträge in Zotero Standalone. diff --git a/chrome/locale/el-GR/zotero/preferences.dtd b/chrome/locale/el-GR/zotero/preferences.dtd index 46834b1b0..3dd89d77b 100644 --- a/chrome/locale/el-GR/zotero/preferences.dtd +++ b/chrome/locale/el-GR/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/el-GR/zotero/zotero.properties b/chrome/locale/el-GR/zotero/zotero.properties index e88d80c55..6ed16aa96 100644 --- a/chrome/locale/el-GR/zotero/zotero.properties +++ b/chrome/locale/el-GR/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/es-ES/zotero/preferences.dtd b/chrome/locale/es-ES/zotero/preferences.dtd index d91e45b2f..e84834d62 100644 --- a/chrome/locale/es-ES/zotero/preferences.dtd +++ b/chrome/locale/es-ES/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/es-ES/zotero/standalone.dtd b/chrome/locale/es-ES/zotero/standalone.dtd index 399385c9c..7ed98f1a5 100644 --- a/chrome/locale/es-ES/zotero/standalone.dtd +++ b/chrome/locale/es-ES/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/es-ES/zotero/zotero.properties b/chrome/locale/es-ES/zotero/zotero.properties index dabf4bf4a..f937f4f3d 100644 --- a/chrome/locale/es-ES/zotero/zotero.properties +++ b/chrome/locale/es-ES/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Gestionar motores de búsqueda... standalone.corruptInstallation=Tu instalación Zotero parece estar corrupta debido a una fallida auto-actualización. Aunque Zotero puede seguir funcionando, para evitar posibles errores, por favor, descarga la última versión de Zotero en http://zotero.org/support/standalone tan pronto como sea posible. standalone.addonInstallationFailed.title=Instalación de complemento fallida standalone.addonInstallationFailed.body=El complemento "%S" no puede ser instalado. Puede ser incompatible con esta versión de Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Error de conector Zotero connector.standaloneOpen=No se puede acceder a tu base de datos debido a que Zotero Standalone está abierto. Por favor, mira tus ítems en Zotero Standalone. diff --git a/chrome/locale/et-EE/zotero/preferences.dtd b/chrome/locale/et-EE/zotero/preferences.dtd index 1514edc46..0956b79d4 100644 --- a/chrome/locale/et-EE/zotero/preferences.dtd +++ b/chrome/locale/et-EE/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/et-EE/zotero/standalone.dtd b/chrome/locale/et-EE/zotero/standalone.dtd index f8335a79a..7f6380d62 100644 --- a/chrome/locale/et-EE/zotero/standalone.dtd +++ b/chrome/locale/et-EE/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/et-EE/zotero/zotero.properties b/chrome/locale/et-EE/zotero/zotero.properties index 4e5f01df4..bd3dd6ba7 100644 --- a/chrome/locale/et-EE/zotero/zotero.properties +++ b/chrome/locale/et-EE/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Autonoomne Zotero paistab olevat vigane tänu ebaõnnestunud uuendusele. Kuigi Zotero võib edasi funktsioneerida, siis võimalike vigade vältimiseks palun laadige alla viimane versioon Autonoomsest Zoterost http://zotero.org/support/standalone nii pea kui võimalik. standalone.addonInstallationFailed.title=Lisa paigaldamine nurjus standalone.addonInstallationFailed.body=Lisa "%S" paigaldamine ei õnnestunud. Tegemist võib olla versiooni mitteühildumisega Autonoomse Zoteroga. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero ühendaja viga connector.standaloneOpen=Andmebaasiga ei õnnestu kontakteeruda, sest Autonoomne Zotero on parajasti avatud. Palun vaadake oma kirjeid seal. diff --git a/chrome/locale/eu-ES/zotero/preferences.dtd b/chrome/locale/eu-ES/zotero/preferences.dtd index 6ebafbf6e..2565faffb 100644 --- a/chrome/locale/eu-ES/zotero/preferences.dtd +++ b/chrome/locale/eu-ES/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/eu-ES/zotero/zotero.properties b/chrome/locale/eu-ES/zotero/zotero.properties index 358a4f7f6..bb68a420d 100644 --- a/chrome/locale/eu-ES/zotero/zotero.properties +++ b/chrome/locale/eu-ES/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/fa/zotero/preferences.dtd b/chrome/locale/fa/zotero/preferences.dtd index 455a2a9e4..633a1ce75 100644 --- a/chrome/locale/fa/zotero/preferences.dtd +++ b/chrome/locale/fa/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/fa/zotero/zotero.properties b/chrome/locale/fa/zotero/zotero.properties index bb40fcec5..5c1abc46b 100644 --- a/chrome/locale/fa/zotero/zotero.properties +++ b/chrome/locale/fa/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=سامان‌دهی موتورهای جستجو... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/fi-FI/zotero/preferences.dtd b/chrome/locale/fi-FI/zotero/preferences.dtd index d316d5721..a798327e8 100644 --- a/chrome/locale/fi-FI/zotero/preferences.dtd +++ b/chrome/locale/fi-FI/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/fi-FI/zotero/standalone.dtd b/chrome/locale/fi-FI/zotero/standalone.dtd index da6dfe255..a8e73ad77 100644 --- a/chrome/locale/fi-FI/zotero/standalone.dtd +++ b/chrome/locale/fi-FI/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/fi-FI/zotero/zotero.properties b/chrome/locale/fi-FI/zotero/zotero.properties index 8da4df0be..c35048179 100644 --- a/chrome/locale/fi-FI/zotero/zotero.properties +++ b/chrome/locale/fi-FI/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Zotero Standalone -asennuksesi vaikuttaa olevan vioittunut epäonnistuneessa automaattipäivityksessä. Zotero saattaa jatkaa toimintaansa, mutta mahdollisten virheiden välttämiseksi suosittelemme lataamaan Zotero Standalonen uusimman version osoitteesta http://zotero.org/support/standalone mahdollisimman pian. standalone.addonInstallationFailed.title=Lisäosan asennus epäonnistui standalone.addonInstallationFailed.body=Lisäosaa "%S" ei voitu asentaa. Se saattaa olla yhteensopimaton tämän Zotero Standalone -version kanssa. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector -ongelma. connector.standaloneOpen=Tietokantaasi ei saada yhteyttä, koska Zotero Standalone on tällä hetkellä auki. Käytä Zotero Standalonea nimikkeidesi tarkasteluun. diff --git a/chrome/locale/fr-FR/zotero/preferences.dtd b/chrome/locale/fr-FR/zotero/preferences.dtd index acee8dbf5..16084c835 100644 --- a/chrome/locale/fr-FR/zotero/preferences.dtd +++ b/chrome/locale/fr-FR/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/fr-FR/zotero/standalone.dtd b/chrome/locale/fr-FR/zotero/standalone.dtd index ef3a36911..527ed949c 100644 --- a/chrome/locale/fr-FR/zotero/standalone.dtd +++ b/chrome/locale/fr-FR/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/fr-FR/zotero/zotero.properties b/chrome/locale/fr-FR/zotero/zotero.properties index 2b544f261..e3d23b43a 100644 --- a/chrome/locale/fr-FR/zotero/zotero.properties +++ b/chrome/locale/fr-FR/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Gérer les moteurs de recherche… standalone.corruptInstallation=Votre installation de Zotero Standalone semble être corrompue à cause de l'échec d'une mise à jour automatique. Bien que Zotero puisse continuer à fonctionner, afin d'éviter des bogues potentiels, veuillez télécharger dès que possible la dernière version de Zotero Standalone depuis http://zotero.org/support/standalone standalone.addonInstallationFailed.title=Échec de l'installation de l'extension standalone.addonInstallationFailed.body=L'extension "%S" ne peut pas être installée. Elle est peut-être incompatible avec cette version de Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Erreur du connecteur Zotero connector.standaloneOpen=Votre base de données est inaccessible car Zotero Standalone est actuellement ouvert. Veuillez visualiser vos documents dans Zotero Standalone. diff --git a/chrome/locale/gl-ES/zotero/preferences.dtd b/chrome/locale/gl-ES/zotero/preferences.dtd index 126a5a51b..be73f0def 100644 --- a/chrome/locale/gl-ES/zotero/preferences.dtd +++ b/chrome/locale/gl-ES/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/gl-ES/zotero/standalone.dtd b/chrome/locale/gl-ES/zotero/standalone.dtd index d91d5480a..b3224ce21 100644 --- a/chrome/locale/gl-ES/zotero/standalone.dtd +++ b/chrome/locale/gl-ES/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/gl-ES/zotero/zotero.properties b/chrome/locale/gl-ES/zotero/zotero.properties index 229dbe323..f8be0e9b9 100644 --- a/chrome/locale/gl-ES/zotero/zotero.properties +++ b/chrome/locale/gl-ES/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Xestionar as ferramentas de busca... standalone.corruptInstallation=A súa instalación de Zotero Standalone semella estar corrompida por fallos nas actualizacións automáticas. Inda que poida que Zotero siga funcionando, e co fin de evitar fallos poteriores, descargue a última versión de Zotero Standalone da páxina http://zotero.org/support/standalone en canto poida. standalone.addonInstallationFailed.title=Fallou a instalación do engadido standalone.addonInstallationFailed.body=Non se puido instalar o engadido «%S». Podería ser incompatible con esta versión do Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Erro do conector de Zotero connector.standaloneOpen=A súa base de datos non se puido acceder xa que neste momento está aberto Zotero. Vexa os seus elementos empregando Zotero Standalone. diff --git a/chrome/locale/he-IL/zotero/preferences.dtd b/chrome/locale/he-IL/zotero/preferences.dtd index f3346d1a6..c292e0643 100644 --- a/chrome/locale/he-IL/zotero/preferences.dtd +++ b/chrome/locale/he-IL/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/he-IL/zotero/standalone.dtd b/chrome/locale/he-IL/zotero/standalone.dtd index 964754a02..eab2bffcf 100644 --- a/chrome/locale/he-IL/zotero/standalone.dtd +++ b/chrome/locale/he-IL/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/he-IL/zotero/zotero.properties b/chrome/locale/he-IL/zotero/zotero.properties index 515bcaa3f..6f863682f 100644 --- a/chrome/locale/he-IL/zotero/zotero.properties +++ b/chrome/locale/he-IL/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/hr-HR/zotero/preferences.dtd b/chrome/locale/hr-HR/zotero/preferences.dtd index 46834b1b0..3dd89d77b 100644 --- a/chrome/locale/hr-HR/zotero/preferences.dtd +++ b/chrome/locale/hr-HR/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/hr-HR/zotero/zotero.properties b/chrome/locale/hr-HR/zotero/zotero.properties index e88d80c55..6ed16aa96 100644 --- a/chrome/locale/hr-HR/zotero/zotero.properties +++ b/chrome/locale/hr-HR/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/hu-HU/zotero/preferences.dtd b/chrome/locale/hu-HU/zotero/preferences.dtd index fdcd44567..62c400342 100644 --- a/chrome/locale/hu-HU/zotero/preferences.dtd +++ b/chrome/locale/hu-HU/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/hu-HU/zotero/zotero.properties b/chrome/locale/hu-HU/zotero/zotero.properties index 0055cecb8..f9b32b73b 100644 --- a/chrome/locale/hu-HU/zotero/zotero.properties +++ b/chrome/locale/hu-HU/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/id-ID/zotero/preferences.dtd b/chrome/locale/id-ID/zotero/preferences.dtd index 3026d6b16..443bdad9d 100644 --- a/chrome/locale/id-ID/zotero/preferences.dtd +++ b/chrome/locale/id-ID/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/id-ID/zotero/standalone.dtd b/chrome/locale/id-ID/zotero/standalone.dtd index 55e14d719..4fe02a3bd 100644 --- a/chrome/locale/id-ID/zotero/standalone.dtd +++ b/chrome/locale/id-ID/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/id-ID/zotero/zotero.properties b/chrome/locale/id-ID/zotero/zotero.properties index 4eefcdf43..b84d9f49b 100644 --- a/chrome/locale/id-ID/zotero/zotero.properties +++ b/chrome/locale/id-ID/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Kelola Mesin Pencarian... standalone.corruptInstallation=Instalasi Zotero Standalone Anda tampak mengalami kerusakan yang diakibatkan oleh kegagalan pemutakhiran secara automatis. Meskipun Zotero dapat tetap berfungsi, untuk menghindari bug-bug potensial, silakan unduh versi terbaru Zotero Standalone dari http://zotero.org/support/standalone sesegera mungkin. standalone.addonInstallationFailed.title=Instalasi Pengaya Gagal standalone.addonInstallationFailed.body=Pengaya "%S" tidak dapat diinstal. Pengaya mungkin tidak kompatibel dengan versi Zotero Standalone saat ini. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Konektor Zotero Mengalami Kesalahan connector.standaloneOpen=Database Anda tidak dapat diakses karena Zotero Standalone Anda sedang terbuka. Silakan lihat item-item Anda di dalam Zotero Standalone. diff --git a/chrome/locale/is-IS/zotero/preferences.dtd b/chrome/locale/is-IS/zotero/preferences.dtd index 489f79c49..4564aedb9 100644 --- a/chrome/locale/is-IS/zotero/preferences.dtd +++ b/chrome/locale/is-IS/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/is-IS/zotero/zotero.properties b/chrome/locale/is-IS/zotero/zotero.properties index 9993ad43c..61966a8fb 100644 --- a/chrome/locale/is-IS/zotero/zotero.properties +++ b/chrome/locale/is-IS/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/it-IT/zotero/preferences.dtd b/chrome/locale/it-IT/zotero/preferences.dtd index 5fc8ae9d7..65f358012 100644 --- a/chrome/locale/it-IT/zotero/preferences.dtd +++ b/chrome/locale/it-IT/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/it-IT/zotero/standalone.dtd b/chrome/locale/it-IT/zotero/standalone.dtd index 8d8c9af93..a09724f3d 100644 --- a/chrome/locale/it-IT/zotero/standalone.dtd +++ b/chrome/locale/it-IT/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/it-IT/zotero/zotero.properties b/chrome/locale/it-IT/zotero/zotero.properties index 1d0ca03da..3be098c9f 100644 --- a/chrome/locale/it-IT/zotero/zotero.properties +++ b/chrome/locale/it-IT/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=L'installazione di Zotero Standalone sembra essere corrotta in seguito a un aggiornamento automatico non andato a buon fine. Nonostante Zotero possa continuare a funzionare, per evitare possibili problemi, scaricare l'ultima versione di Zotero Standalone da http://zotero.org/support/standalone il più presto possibile. standalone.addonInstallationFailed.title=Installazione dell'estensione non riuscita standalone.addonInstallationFailed.body=Non è stato possibile installare l'estensione "%S". Potrebbe essere incompatibile con questa versione di Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Errore di Zotero Connector connector.standaloneOpen=Non è possibile accedere al database perché Zotero Standalone è attualmente in esecuzione. Consultare i propri dati con Zotero Standalone. diff --git a/chrome/locale/ja-JP/zotero/preferences.dtd b/chrome/locale/ja-JP/zotero/preferences.dtd index 1216fb006..741af16fc 100644 --- a/chrome/locale/ja-JP/zotero/preferences.dtd +++ b/chrome/locale/ja-JP/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/ja-JP/zotero/standalone.dtd b/chrome/locale/ja-JP/zotero/standalone.dtd index 8dde26de6..b4c1d5332 100644 --- a/chrome/locale/ja-JP/zotero/standalone.dtd +++ b/chrome/locale/ja-JP/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/ja-JP/zotero/zotero.properties b/chrome/locale/ja-JP/zotero/zotero.properties index 93cdcff28..05d3e3c03 100644 --- a/chrome/locale/ja-JP/zotero/zotero.properties +++ b/chrome/locale/ja-JP/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=所在確認エンジンの管理... standalone.corruptInstallation=インストール済みのスタンドアローン版 Zotero は自動更新の失敗により損傷した模様です。Firefox 版 Zotero はそれでも機能しますが、潜在的なバグを避けるために最新版のスタンドアローン版 Zotero を http://zotero.org/support/standalone から直ちにダウンロードして下さい。 standalone.addonInstallationFailed.title=アドオンのインストールに失敗しました standalone.addonInstallationFailed.body=アドオン "%S" をインストールすることができませんでした。このバージョンのスタンドアローン版 Zotero とは互換性がない恐れがあります。 +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero コネクタのエラー connector.standaloneOpen=スタンドアローン版 Zotero が現在立ち上がっているため、 あなたのデータベースにアクセスすることができません。アイテムはスタンドアローン版 Zotero の中で閲覧してください。 diff --git a/chrome/locale/km/zotero/preferences.dtd b/chrome/locale/km/zotero/preferences.dtd index 1b59e5b5c..8e93df472 100644 --- a/chrome/locale/km/zotero/preferences.dtd +++ b/chrome/locale/km/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/km/zotero/standalone.dtd b/chrome/locale/km/zotero/standalone.dtd index 2cf88d8a8..0517a7a19 100644 --- a/chrome/locale/km/zotero/standalone.dtd +++ b/chrome/locale/km/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/km/zotero/zotero.properties b/chrome/locale/km/zotero/zotero.properties index 560a3a8fa..9deef5df8 100644 --- a/chrome/locale/km/zotero/zotero.properties +++ b/chrome/locale/km/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=គ្រប់គ្រងម៉ាស៊ីនស standalone.corruptInstallation=ការដំឡើងហ្ស៊ូតេរ៉ូស្វ័យដំណើរការរបស់អ្នកបានខូចដោយសារតែស្វ័យទំនើបកម្មបរាជ័យ។ ខណៈដែលហ្ស៊ូតេរ៉ូបន្តដំណើរការ ដើម្បីចៀសវាងកំហុស​ដែល​​អាច​កើតមាន សូមធ្វើការទាញយកកំណែថ្មីបំផុតនៃហ្ស៊ូតេរ៉ូស្វ័យ​ដំណើរការពី http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=ការដំឡើងកម្មវិធីកម្ជាប់បានបរាជ័យ standalone.addonInstallationFailed.body=កម្មវិធីកម្ជាប់ "%S" មិនអាចដំឡើងបានទេ។ កម្មវិធីនេះមានវិសមិតភាពជា​មួយ​ហ្ស៊ូតេរ៉ូស្វ័យ​ដំណើរ​ការ។ +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=កម្ជាប់ហ្ស៊ូតេរ៉ូបានជួបបញ្ហា connector.standaloneOpen=ទិន្នន័យរបស់អ្នកមិនអាចចូលមើលបានទេ ដោយសារតែហ្ស៊ូតេរ៉ូស្វ័យ​ដំណើរការនៅបើកនៅឡើយ។ សូមមើលឯកសាររបស់អ្នកនៅក្នុង​ហ្ស៊ូតេរ៉ូ​ស្វ័យ​ដំណើរការ។ diff --git a/chrome/locale/ko-KR/zotero/preferences.dtd b/chrome/locale/ko-KR/zotero/preferences.dtd index f822e9639..9a102b815 100644 --- a/chrome/locale/ko-KR/zotero/preferences.dtd +++ b/chrome/locale/ko-KR/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/ko-KR/zotero/standalone.dtd b/chrome/locale/ko-KR/zotero/standalone.dtd index a2bdc69e7..670cb39c7 100644 --- a/chrome/locale/ko-KR/zotero/standalone.dtd +++ b/chrome/locale/ko-KR/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/ko-KR/zotero/zotero.properties b/chrome/locale/ko-KR/zotero/zotero.properties index a6405d8ad..00c274bb9 100644 --- a/chrome/locale/ko-KR/zotero/zotero.properties +++ b/chrome/locale/ko-KR/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Zotero Standalone의 설치가 자동 업데이트 실패로 인해 손상된 것 같습니다. Zotero가 실행된다고 해도 잠재적인 오류가 있을 수 있으니, 가능한 한 빨리 http://zotero.org/support/standalone에서 Zotero Standalone의 최신 버전을 다운 받으시기 바랍니다. standalone.addonInstallationFailed.title=애드-온 설치 실패 standalone.addonInstallationFailed.body="%S" 애드-온가 설치되지 않았습니다. 해당 애드-온이 Zotero Standalone의 현재 버전과 맞지 않을 수 있습니다. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero 커넥터 오류 connector.standaloneOpen=Zotero Standalone이 실행중이기 때문에 데이터베이스 접근에 실패했습니다. Zotero Standalone에서 항목을 보시기 바랍니다. diff --git a/chrome/locale/mn-MN/zotero/preferences.dtd b/chrome/locale/mn-MN/zotero/preferences.dtd index 5203b23b2..fcd0d027a 100644 --- a/chrome/locale/mn-MN/zotero/preferences.dtd +++ b/chrome/locale/mn-MN/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/mn-MN/zotero/zotero.properties b/chrome/locale/mn-MN/zotero/zotero.properties index b05224d01..1c83b9bce 100644 --- a/chrome/locale/mn-MN/zotero/zotero.properties +++ b/chrome/locale/mn-MN/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/nb-NO/zotero/preferences.dtd b/chrome/locale/nb-NO/zotero/preferences.dtd index 83151f3f1..5378d3845 100644 --- a/chrome/locale/nb-NO/zotero/preferences.dtd +++ b/chrome/locale/nb-NO/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/nb-NO/zotero/zotero.properties b/chrome/locale/nb-NO/zotero/zotero.properties index 618fd7330..f3de19620 100644 --- a/chrome/locale/nb-NO/zotero/zotero.properties +++ b/chrome/locale/nb-NO/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/nl-NL/zotero/preferences.dtd b/chrome/locale/nl-NL/zotero/preferences.dtd index 820ac8ee0..3c91aaa2d 100644 --- a/chrome/locale/nl-NL/zotero/preferences.dtd +++ b/chrome/locale/nl-NL/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/nl-NL/zotero/standalone.dtd b/chrome/locale/nl-NL/zotero/standalone.dtd index da8ea332d..d1063b910 100644 --- a/chrome/locale/nl-NL/zotero/standalone.dtd +++ b/chrome/locale/nl-NL/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/nl-NL/zotero/zotero.properties b/chrome/locale/nl-NL/zotero/zotero.properties index 9a30db83f..747d83967 100644 --- a/chrome/locale/nl-NL/zotero/zotero.properties +++ b/chrome/locale/nl-NL/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Opzoekmechanismes beheren… standalone.corruptInstallation=Uw Zotero Stand-Alone-installatie lijkt beschadigd te zijn door een mislukte automatische update. Hoewel Zotero kan blijven werken, is het aan te raden om zo snel mogelijk de nieuwste versie van Zotero Stand-Alone te downloaden vanaf http://zotero.org/support/standalone om bugs te voorkomen. standalone.addonInstallationFailed.title=Add-on-installatie mislukt standalone.addonInstallationFailed.body=De add-on "%S" kon niet geïnstalleerd worden. Het kan incompatibel zijn met deze versie van Zotero Stand-Alone +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector-fout connector.standaloneOpen=Er is geen toegang mogelijk tot uw database omdat Zotero Stand-Alone is geopend. Bekijk uw objecten in Zotero Stand-Alone. diff --git a/chrome/locale/nn-NO/zotero/preferences.dtd b/chrome/locale/nn-NO/zotero/preferences.dtd index 539e03336..c5ecb25f4 100644 --- a/chrome/locale/nn-NO/zotero/preferences.dtd +++ b/chrome/locale/nn-NO/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/nn-NO/zotero/standalone.dtd b/chrome/locale/nn-NO/zotero/standalone.dtd index 63822d0e2..1f9b2b9b1 100644 --- a/chrome/locale/nn-NO/zotero/standalone.dtd +++ b/chrome/locale/nn-NO/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/nn-NO/zotero/zotero.properties b/chrome/locale/nn-NO/zotero/zotero.properties index a0cf69f1e..7466d5d56 100644 --- a/chrome/locale/nn-NO/zotero/zotero.properties +++ b/chrome/locale/nn-NO/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines… standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/pl-PL/zotero/preferences.dtd b/chrome/locale/pl-PL/zotero/preferences.dtd index d44bccbfc..06cd73c53 100644 --- a/chrome/locale/pl-PL/zotero/preferences.dtd +++ b/chrome/locale/pl-PL/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/pl-PL/zotero/standalone.dtd b/chrome/locale/pl-PL/zotero/standalone.dtd index a9c329420..29a762f9c 100644 --- a/chrome/locale/pl-PL/zotero/standalone.dtd +++ b/chrome/locale/pl-PL/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/pl-PL/zotero/zotero.properties b/chrome/locale/pl-PL/zotero/zotero.properties index 004cce188..2de3c4d06 100644 --- a/chrome/locale/pl-PL/zotero/zotero.properties +++ b/chrome/locale/pl-PL/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Zarządzanie silnikami wyszukiwania... standalone.corruptInstallation=Twoja instalacja samodzielnego programu Zotero jest prawdopodobnie uszkodzona z powodu nieprawidłowej automatycznej aktualizacji. Mimo tego Zotero może działać, jednak aby uniknąć potencjalnych błędów, proszę jak najszybciej pobrać najnowszą wersję samodzielnego programu Zotero ze strony http://zotero.org/support/standalone. standalone.addonInstallationFailed.title=Instalacja dodatku nie powiodła się. standalone.addonInstallationFailed.body=Nie można zainstalować dodatku "%S". Może on być niezgodny z tą wersją samodzielnego programu Zotero. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Błąd połączenia Zotero connector.standaloneOpen=Nie można uzyskać dostępu do twojej bazy danych, ponieważ samodzielny program Zotero jest uruchomiony. Możesz przeglądać swoje zbiory w samodzielnym programie Zotero. diff --git a/chrome/locale/pt-BR/zotero/preferences.dtd b/chrome/locale/pt-BR/zotero/preferences.dtd index d5a09ea02..555358a94 100644 --- a/chrome/locale/pt-BR/zotero/preferences.dtd +++ b/chrome/locale/pt-BR/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/pt-BR/zotero/standalone.dtd b/chrome/locale/pt-BR/zotero/standalone.dtd index 472d61a61..b05bbc8ed 100644 --- a/chrome/locale/pt-BR/zotero/standalone.dtd +++ b/chrome/locale/pt-BR/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/pt-BR/zotero/zotero.properties b/chrome/locale/pt-BR/zotero/zotero.properties index 78a2ed09c..25ec8fa11 100644 --- a/chrome/locale/pt-BR/zotero/zotero.properties +++ b/chrome/locale/pt-BR/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Sua instalação do Zotero Standalone parece estar corrompida devido a uma falha na atualização automática. Embora o Zotero cotinue a funcionar, para evitar bugs potenciais, por favor, faça o quanto antes o download da última versão do Zotero Standalone em http://zotero.org/support/standalone. standalone.addonInstallationFailed.title=A instalação da extensão falhou standalone.addonInstallationFailed.body=Essa extensão "%S" não pode ser instalada. Ela pode ser incompatível com essa versão do Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Falha do conector do Zotero connector.standaloneOpen=Sua base de dados não pode ser acessada porque o Zotero Standalone está aberto no momento. Por favor, veja seus itens no Zotero Standalone. diff --git a/chrome/locale/pt-PT/zotero/preferences.dtd b/chrome/locale/pt-PT/zotero/preferences.dtd index a78e66ad4..b0994035a 100644 --- a/chrome/locale/pt-PT/zotero/preferences.dtd +++ b/chrome/locale/pt-PT/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/pt-PT/zotero/standalone.dtd b/chrome/locale/pt-PT/zotero/standalone.dtd index 064204ee0..ef01c441d 100644 --- a/chrome/locale/pt-PT/zotero/standalone.dtd +++ b/chrome/locale/pt-PT/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/pt-PT/zotero/zotero.properties b/chrome/locale/pt-PT/zotero/zotero.properties index 96f19278f..2b3692e58 100644 --- a/chrome/locale/pt-PT/zotero/zotero.properties +++ b/chrome/locale/pt-PT/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=A sua instância do Zotero Standalone parece estar corrompida devido a uma auto-actualização falhada. Apesar de o Zotero continuar a funcionar, para evitar possíveis erros, descarregue a última versão do Zotero Standalone a partir de http://zotero.org/support/standalone e instale-a logo que possível. standalone.addonInstallationFailed.title=Instalação da Extensão Falhou standalone.addonInstallationFailed.body=Não foi possível instalar a extensão "%S". É possível que não seja compatível com esta versão do Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Erro no Conector Zotero connector.standaloneOpen=Não foi possível aceder à sua base de dados, pois o Zotero Standalone está aberto. Por favor veja os seus itens nessa aplicação. diff --git a/chrome/locale/ro-RO/zotero/preferences.dtd b/chrome/locale/ro-RO/zotero/preferences.dtd index 962fd1466..974981a09 100644 --- a/chrome/locale/ro-RO/zotero/preferences.dtd +++ b/chrome/locale/ro-RO/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/ro-RO/zotero/standalone.dtd b/chrome/locale/ro-RO/zotero/standalone.dtd index 91c838919..705441fe4 100644 --- a/chrome/locale/ro-RO/zotero/standalone.dtd +++ b/chrome/locale/ro-RO/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/ro-RO/zotero/zotero.properties b/chrome/locale/ro-RO/zotero/zotero.properties index 56aab53e2..1ea4488e1 100644 --- a/chrome/locale/ro-RO/zotero/zotero.properties +++ b/chrome/locale/ro-RO/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Administrează motoarele de căutare de informații.. standalone.corruptInstallation=Instalarea ta a programului Zotero Standalone pare a fi coruptă datorită unei erori de autoactualizare. Chiar dacă Zotero ar putea funcționa, pentru a evida potențialele erori, te rog să descarci ultima versiune a programului Zotero Standalone de la http://zotero.org/support/standalone cât mai curând posibil. standalone.addonInstallationFailed.title=Instalarea extensiei a eșuat standalone.addonInstallationFailed.body=Extensia "%S" nu a putut fi instalată. Poate că este incompatibilă cu această versiune a programului Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Eroare la conectorul Zotero connector.standaloneOpen=Baza ta de date nu poate fi accesată fiindcă Zotero Standalone este deschis. Te rog să-ți vizualizezi înregistrările în Zotero Standalone. diff --git a/chrome/locale/ru-RU/zotero/preferences.dtd b/chrome/locale/ru-RU/zotero/preferences.dtd index 050ba7a48..dfa236994 100644 --- a/chrome/locale/ru-RU/zotero/preferences.dtd +++ b/chrome/locale/ru-RU/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/ru-RU/zotero/standalone.dtd b/chrome/locale/ru-RU/zotero/standalone.dtd index 0f7a28884..5147d1e4f 100644 --- a/chrome/locale/ru-RU/zotero/standalone.dtd +++ b/chrome/locale/ru-RU/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/ru-RU/zotero/zotero.properties b/chrome/locale/ru-RU/zotero/zotero.properties index 607754e93..e08ca79ab 100644 --- a/chrome/locale/ru-RU/zotero/zotero.properties +++ b/chrome/locale/ru-RU/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Диспетчер систем поиска… standalone.corruptInstallation=Установленное Автономное Zotero вероятно было повреждено в результате неудавшегося авто-обновления. Хотя Zotero может продолжать работать, чтобы избежать потенциальных проблем, пожалуйста, как можно скорее загрузите последнюю версию Автономного Zotero c http://zotero.org/support/standalone. standalone.addonInstallationFailed.title=Не получилось установить дополнение standalone.addonInstallationFailed.body=Дополнение "%S" не может быть установлено. Вероятно оно несовместимо с этой версией Zotero. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Ошибка соединения Zotero connector.standaloneOpen=Ваша база данных недоступна, поскольку открыто Автономное Zotero. Пожалуйста, посмотрите ваши документы в Автономном Zotero. diff --git a/chrome/locale/sk-SK/zotero/preferences.dtd b/chrome/locale/sk-SK/zotero/preferences.dtd index f7e354da8..bc9880e3b 100644 --- a/chrome/locale/sk-SK/zotero/preferences.dtd +++ b/chrome/locale/sk-SK/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/sk-SK/zotero/standalone.dtd b/chrome/locale/sk-SK/zotero/standalone.dtd index e03bab08b..f9cf0d157 100644 --- a/chrome/locale/sk-SK/zotero/standalone.dtd +++ b/chrome/locale/sk-SK/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/sk-SK/zotero/zotero.properties b/chrome/locale/sk-SK/zotero/zotero.properties index 33a0b90e8..ae4a991e4 100644 --- a/chrome/locale/sk-SK/zotero/zotero.properties +++ b/chrome/locale/sk-SK/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Spravovať vyhľadávacie motory... standalone.corruptInstallation=Inštalácia vášho Samostatného Zotera je zrejme porušená kvôli nezdarenej automatickej aktualizácii. Aj keď Zotero môže naďalej fungovať, vyhnite sa radšej možným poruchám a stiahnite si prosím čím skôr najnovšiu verziu Samostatného Zotera zo stránky http://zotero.org/support/standalone. standalone.addonInstallationFailed.title=Inštalácia doplnku zlyhala standalone.addonInstallationFailed.body=Doplnok "%S" sa nedá nainštalovať. Pravdepodobne nie je kompatibilný s terajšou verziou Samostatného Zotera. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Chyba spojovníka s Zoterom connector.standaloneOpen=Nedá sa vojsť do vašej databázy, pretože Samostatné Zotero je práve otvorené. Prezrite si vaše položky prosím v Samostatnom Zotere. diff --git a/chrome/locale/sl-SI/zotero/preferences.dtd b/chrome/locale/sl-SI/zotero/preferences.dtd index 3bf1d50f2..ef2fb013b 100644 --- a/chrome/locale/sl-SI/zotero/preferences.dtd +++ b/chrome/locale/sl-SI/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/sl-SI/zotero/standalone.dtd b/chrome/locale/sl-SI/zotero/standalone.dtd index d3264a184..c8c16a50f 100644 --- a/chrome/locale/sl-SI/zotero/standalone.dtd +++ b/chrome/locale/sl-SI/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/sl-SI/zotero/zotero.properties b/chrome/locale/sl-SI/zotero/zotero.properties index a45c0c579..60688327a 100644 --- a/chrome/locale/sl-SI/zotero/zotero.properties +++ b/chrome/locale/sl-SI/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Upravljaja s pogoni iskanja ... standalone.corruptInstallation=Vaša namestitev samostojnega Zotero Standalone je najbrž okvarjena zaradi neuspele samodejne posodobitve. Čeprav bo morda Zotero še naprej deloval, v izogib morebitnim težavam čim prej prenesite najnovejšo različico samostojnega Zotero Standalone z naslova http://zotero.org/support/standalone. standalone.addonInstallationFailed.title=Namestitev dodatka ni uspela standalone.addonInstallationFailed.body=Dodatka »%S« ni mogoče namestiti. Morda je nezdružljiv s to različico Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Napaka povezave Zotero connector.standaloneOpen=Dostop do vaše zbirke podatkov ni možen, ker je trenutno odprt Zotero Standalone. Predmete si zato oglejte v njem. diff --git a/chrome/locale/sr-RS/zotero/preferences.dtd b/chrome/locale/sr-RS/zotero/preferences.dtd index 81336e64c..a1ccc2b66 100644 --- a/chrome/locale/sr-RS/zotero/preferences.dtd +++ b/chrome/locale/sr-RS/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/sr-RS/zotero/zotero.properties b/chrome/locale/sr-RS/zotero/zotero.properties index a07d39bae..e64899535 100644 --- a/chrome/locale/sr-RS/zotero/zotero.properties +++ b/chrome/locale/sr-RS/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/sv-SE/zotero/preferences.dtd b/chrome/locale/sv-SE/zotero/preferences.dtd index 7443a057c..1e9c9fd5a 100644 --- a/chrome/locale/sv-SE/zotero/preferences.dtd +++ b/chrome/locale/sv-SE/zotero/preferences.dtd @@ -22,14 +22,14 @@ - + - + @@ -63,7 +63,7 @@ - + @@ -75,7 +75,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/sv-SE/zotero/standalone.dtd b/chrome/locale/sv-SE/zotero/standalone.dtd index 837d65b9e..a28163e23 100644 --- a/chrome/locale/sv-SE/zotero/standalone.dtd +++ b/chrome/locale/sv-SE/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/sv-SE/zotero/timeline.properties b/chrome/locale/sv-SE/zotero/timeline.properties index 6f752cbfe..e807259e2 100644 --- a/chrome/locale/sv-SE/zotero/timeline.properties +++ b/chrome/locale/sv-SE/zotero/timeline.properties @@ -1,6 +1,6 @@ general.title=Zotero tidslinje general.filter=Filtrera: -general.highlight=Framhäv +general.highlight=Framhäv: general.clearAll=Radera allt general.jumpToYear=Hoppa till år: general.firstBand=Första strecket: @@ -18,4 +18,4 @@ interval.century=Århundrade interval.millennium=Årtusende dateType.published=Publiceringsdatum -dateType.modified=Senaste ändringsdatum +dateType.modified=Ändringsdatum diff --git a/chrome/locale/sv-SE/zotero/zotero.dtd b/chrome/locale/sv-SE/zotero/zotero.dtd index ce658bb6e..325d6627e 100644 --- a/chrome/locale/sv-SE/zotero/zotero.dtd +++ b/chrome/locale/sv-SE/zotero/zotero.dtd @@ -93,7 +93,7 @@ - + @@ -209,7 +209,7 @@ - + diff --git a/chrome/locale/sv-SE/zotero/zotero.properties b/chrome/locale/sv-SE/zotero/zotero.properties index 173a1d8cd..eb93c0855 100644 --- a/chrome/locale/sv-SE/zotero/zotero.properties +++ b/chrome/locale/sv-SE/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Hantera söktjänster... standalone.corruptInstallation=Din Zotero Standalone-installation tycks vara trasig på grund av en misslyckad automatisk uppdatering. Även om Zotero kan köras bör du så snart som möjligt ladda hem den senaste versionen av Zotero Standalone från http://zotero.org/support/standalone . standalone.addonInstallationFailed.title=Installation av tillägg misslyckades standalone.addonInstallationFailed.body=Tillägget "%S" installerades inte. Det kanske inte fungerar med denna version av Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector-fel connector.standaloneOpen=Din databas kan inte nås eftersom Zotero Standalone är aktivt. Använd Zotero Standalone för att se dina källor. diff --git a/chrome/locale/th-TH/zotero/preferences.dtd b/chrome/locale/th-TH/zotero/preferences.dtd index 62c89a816..93cdb8309 100644 --- a/chrome/locale/th-TH/zotero/preferences.dtd +++ b/chrome/locale/th-TH/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/th-TH/zotero/standalone.dtd b/chrome/locale/th-TH/zotero/standalone.dtd index 3dd5f3a7a..8e17fb477 100644 --- a/chrome/locale/th-TH/zotero/standalone.dtd +++ b/chrome/locale/th-TH/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/th-TH/zotero/zotero.properties b/chrome/locale/th-TH/zotero/zotero.properties index 92014135a..d531f8553 100644 --- a/chrome/locale/th-TH/zotero/zotero.properties +++ b/chrome/locale/th-TH/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=จัดการเครื่องประม standalone.corruptInstallation=การติดตั้ง Zotero แบบสแตนด์อะโลนของคุณเกิดการวิบัติเนื่องจากการปรับรุ่นแบบอัตโนมัติล้มเหลว ระหว่างที่ Zotero อาจทำงานต่อเนื่อง เพื่อหลีกเลี่ยงจุดบกพร่อง กรุณาดาวน์โหลด Zotero แบบสแตนด์อะโลนรุ่นล่าสุดจาก http://zotero.org/support/standalone โดยเร็วที่สุด standalone.addonInstallationFailed.title=ติดตั้งโปรแกรมเสริมล้มเหลว standalone.addonInstallationFailed.body=โปรแกรมเสริม "%S" ยังไม่ได้ติดตั้ง ซึ่งอาจเข้ากันไม่ได้กับรุ่นของ Zotero สแตนด์อะโลน +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=ตัวเชื่อมต่อ Zotero ผิดพลาด connector.standaloneOpen=ฐานข้อมูลของคุณไม่สามารถเข้าถึงได้ เพราะ Zotero แบบสแตนด์อะโลนกำลังเปิดใช้อยู่ โปรดดูรายการของคุณใน Zotero แบบสแตนด์อะโลน diff --git a/chrome/locale/tr-TR/zotero/preferences.dtd b/chrome/locale/tr-TR/zotero/preferences.dtd index a1d786477..78bb10445 100644 --- a/chrome/locale/tr-TR/zotero/preferences.dtd +++ b/chrome/locale/tr-TR/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -60,9 +60,9 @@ - - - + + + @@ -76,7 +76,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/tr-TR/zotero/standalone.dtd b/chrome/locale/tr-TR/zotero/standalone.dtd index 362d3c915..512f4397f 100644 --- a/chrome/locale/tr-TR/zotero/standalone.dtd +++ b/chrome/locale/tr-TR/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/tr-TR/zotero/zotero.dtd b/chrome/locale/tr-TR/zotero/zotero.dtd index 54220214a..e197cb77a 100644 --- a/chrome/locale/tr-TR/zotero/zotero.dtd +++ b/chrome/locale/tr-TR/zotero/zotero.dtd @@ -5,7 +5,7 @@ - + @@ -58,17 +58,17 @@ - + - - + + - + @@ -139,7 +139,7 @@ - + @@ -147,7 +147,7 @@ - + @@ -212,7 +212,7 @@ - + diff --git a/chrome/locale/tr-TR/zotero/zotero.properties b/chrome/locale/tr-TR/zotero/zotero.properties index c10150156..310b2143a 100644 --- a/chrome/locale/tr-TR/zotero/zotero.properties +++ b/chrome/locale/tr-TR/zotero/zotero.properties @@ -11,7 +11,7 @@ general.restartRequiredForChange=Değişikliğin etkili olabilmesi için %S yeni general.restartRequiredForChanges=Değişikliklerin etkili olabilmesi için %S yeniden başlatılmalıdır. general.restartNow=Şimdi yeniden başlat general.restartLater=Sonra yeniden başlat. -general.restartApp=Restart %S +general.restartApp=Yeniden başlat %S general.quitApp=Quit %S general.errorHasOccurred=Bir hata meydana geldi. general.unknownErrorOccurred=Bilinmeyen bir hata oluştu. @@ -41,13 +41,13 @@ general.seeForMoreInformation=Daha fazla bilgi için bakınız: %S general.enable=Seçilir Kıl: general.disable=Seçilemez Kıl general.remove=Kaldır -general.reset=Reset +general.reset=Sıfırla general.hide=Sakla general.quit=Quit -general.useDefault=Use Default +general.useDefault=Varsayılanı Kullan general.openDocumentation=Bilgilemeyi Aç general.numMore=%S more… -general.openPreferences=Open Preferences +general.openPreferences=Tercihleri Aç general.operationInProgress=Zotero işlemi çalışıyor. general.operationInProgress.waitUntilFinished=Lütfen bitene kadar bekleyiniz. @@ -102,7 +102,7 @@ dataDir.useProfileDir=Firefox profil dizinini kullan dataDir.selectDir=Zotero veri dizini seç dataDir.selectedDirNonEmpty.title=Dizin Boş Değil dataDir.selectedDirNonEmpty.text=Seçtiğiniz dizin boş değil ve Zotero veri dizini olarak görülmüyor.\n\nHerşeye rağmen bu dizinde Zotero dosyalarını oluşturmak istermisiniz? -dataDir.selectedDirEmpty.title=Directory Empty +dataDir.selectedDirEmpty.title=Dizin Boş dataDir.selectedDirEmpty.text=The directory you selected is empty. To move an existing Zotero data directory, you will need to manually move files from the existing data directory to the new location after %1$S has closed. dataDir.selectedDirEmpty.useNewDir=Use the new directory? dataDir.moveFilesToNewLocation=Be sure to move files from your existing Zotero data directory to the new location before reopening %1$S. @@ -633,7 +633,7 @@ fulltext.indexState.partial=Bölümsel exportOptions.exportNotes=Notları Dışarı Aktar exportOptions.exportFileData=Dosyaları Dışarı Aktar -exportOptions.useJournalAbbreviation=Use Journal Abbreviation +exportOptions.useJournalAbbreviation=Dergi Kısaltması Kullan charset.UTF8withoutBOM=Unicode (BOM'suz UTF-8) charset.autoDetect=(otomatik algıla) @@ -649,8 +649,8 @@ citation.multipleSources=Çoklu Kaynaklar... citation.singleSource=Tek Kaynak... citation.showEditor=Editörü Göster... citation.hideEditor=Editörü Gizle... -citation.citations=Citations -citation.notes=Notes +citation.citations=Alıntılar +citation.notes=Notlar report.title.default=Zotero Rapor report.parentItem=Üst Eser: @@ -736,7 +736,7 @@ styles.abbreviations.title=Load Abbreviations styles.abbreviations.parseError=The abbreviations file "%1$S" is not valid JSON. styles.abbreviations.missingInfo=The abbreviations file "%1$S" does not specify a complete info block. -sync.sync=Sync +sync.sync=Eşle sync.cancel=Eşlemeyi İptal Et sync.openSyncPreferences=Eşleme Tercihlerini Aç... sync.resetGroupAndSync=Grubu Sıfırla ve Eşle @@ -764,7 +764,7 @@ sync.error.copyChangedItems=Eğer değişiklikleri başka bir yere kopyalamak ve sync.error.manualInterventionRequired=Otomatik eşleme bir çelişki ile sonuçlandı bu elle müdahaleyi gerektiriyor. sync.error.clickSyncIcon=Elle eşleme için eşleme simgesine tıklayın. sync.error.invalidClock=The system clock is set to an invalid time. You will need to correct this to sync with the Zotero server. -sync.error.sslConnectionError=SSL connection error +sync.error.sslConnectionError=SSL bağlantı hatası sync.error.checkConnection=Error connecting to server. Check your Internet connection. sync.error.emptyResponseServer=Empty response from server. sync.error.invalidCharsFilename=The filename '%S' contains invalid characters.\n\nRename the file and try again. If you rename the file via the OS, you will need to relink it in Zotero. @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Tek Başına Zotero kurulumunuz başarısız bir otomatik güncelleme nedeni ile bozulmuş gözüküyor. Zotero çalışmaya devam edebilse de, olabilecek hataları önleyebilmek için, lütfen Tek Başına Zotero'nun en yeni sürümünü en kısa zamanda http://zotero.org/support/standalone adresinden indiriniz. standalone.addonInstallationFailed.title=Eklenti Kurulması Başarısızlıkla Sonuçlandı standalone.addonInstallationFailed.body=Bu eklenti, "%S", kurulamadı. Tek Başına Zotero'nun bu sürümü ile uyumsuz olabilir. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Bağlayıcısı Hatası connector.standaloneOpen=Tek Başına Zotero şu an açık olduğundan, veritabanınıza ulaşılamıyor. Eserlere lütfen Tek Başına Zotero'da bakınız. diff --git a/chrome/locale/vi-VN/zotero/preferences.dtd b/chrome/locale/vi-VN/zotero/preferences.dtd index 5d99aa203..3dba38dab 100644 --- a/chrome/locale/vi-VN/zotero/preferences.dtd +++ b/chrome/locale/vi-VN/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/vi-VN/zotero/zotero.properties b/chrome/locale/vi-VN/zotero/zotero.properties index b2290260a..425da22a3 100644 --- a/chrome/locale/vi-VN/zotero/zotero.properties +++ b/chrome/locale/vi-VN/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=Your Zotero Standalone installation appears to be corrupted due to a failed auto-update. While Zotero may continue to function, to avoid potential bugs, please download the latest version of Zotero Standalone from http://zotero.org/support/standalone as soon as possible. standalone.addonInstallationFailed.title=Add-on Installation Failed standalone.addonInstallationFailed.body=The add-on "%S" could not be installed. It may be incompatible with this version of Zotero Standalone. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero Connector Error connector.standaloneOpen=Your database cannot be accessed because Zotero Standalone is currently open. Please view your items in Zotero Standalone. diff --git a/chrome/locale/zh-CN/zotero/preferences.dtd b/chrome/locale/zh-CN/zotero/preferences.dtd index 2e5d3df17..58d4d7f39 100644 --- a/chrome/locale/zh-CN/zotero/preferences.dtd +++ b/chrome/locale/zh-CN/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/zh-CN/zotero/standalone.dtd b/chrome/locale/zh-CN/zotero/standalone.dtd index 2c6317b22..212205fba 100644 --- a/chrome/locale/zh-CN/zotero/standalone.dtd +++ b/chrome/locale/zh-CN/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/zh-CN/zotero/zotero.properties b/chrome/locale/zh-CN/zotero/zotero.properties index c6ee4b8ff..6b5d3ba1e 100644 --- a/chrome/locale/zh-CN/zotero/zotero.properties +++ b/chrome/locale/zh-CN/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=管理检索引擎... standalone.corruptInstallation=由于自动更新失败, Zotero 独立版安装已经损坏. Zotero可能仍然可以运行, 不过为了避免可能的问题, 请尽快从 http://zotero.org/support/standalone 上下载最新的版本. standalone.addonInstallationFailed.title=插件安装失败 standalone.addonInstallationFailed.body="%S"插件无法安装, 它可能与此版本的 Zotero 独立版不兼容. +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero连接器错误 connector.standaloneOpen=由于 Zotero 独立版正在运行, 您无法对数据库进行操作. 请在Zotero 独立版中浏览您的条目. diff --git a/chrome/locale/zh-TW/zotero/preferences.dtd b/chrome/locale/zh-TW/zotero/preferences.dtd index b8c108d6d..4d947b522 100644 --- a/chrome/locale/zh-TW/zotero/preferences.dtd +++ b/chrome/locale/zh-TW/zotero/preferences.dtd @@ -22,7 +22,7 @@ - + @@ -126,16 +126,16 @@ + - - + + - diff --git a/chrome/locale/zh-TW/zotero/standalone.dtd b/chrome/locale/zh-TW/zotero/standalone.dtd index 8074515c8..278e404db 100644 --- a/chrome/locale/zh-TW/zotero/standalone.dtd +++ b/chrome/locale/zh-TW/zotero/standalone.dtd @@ -54,7 +54,7 @@ - + diff --git a/chrome/locale/zh-TW/zotero/zotero.properties b/chrome/locale/zh-TW/zotero/zotero.properties index ca311fb31..90c15554d 100644 --- a/chrome/locale/zh-TW/zotero/zotero.properties +++ b/chrome/locale/zh-TW/zotero/zotero.properties @@ -934,6 +934,10 @@ locate.manageLocateEngines=Manage Lookup Engines... standalone.corruptInstallation=您的 Zotero 獨立版安裝看來因自動更新失敗而有毀損。雖然 Zotero 可能仍可以運作,要避免可能潛在的問題,請儘快自 http://zotero.org/support/standalone 下載最新版 Zotero 獨立版。 standalone.addonInstallationFailed.title=擴充套件安裝失敗 standalone.addonInstallationFailed.body=無法安裝擴充套件 "%S"。可能是因為不相容於目前的 Zotero 獨立版版本。 +standalone.rootWarning=You appear to be running Zotero Standalone as root. This is insecure and may prevent Zotero from functioning when launched from your user account.\n\nIf you wish to install an automatic update, modify the Zotero program directory to be writeable by your user account. +standalone.rootWarning.exit=Exit +standalone.rootWarning.continue=Continue +standalone.updateMessage=A recommended update is available, but you do not have permission to install it. To update automatically, modify the Zotero program directory to be writeable by your user account. connector.error.title=Zotero 資料庫連結器錯誤 connector.standaloneOpen=無法存取您的資料庫,因為 Zotero 獨立版目前是開啟的。請於 Zotero 獨立版檢視您的項目。 From 5b09b1e2bec2c18844e61752333a783bb4bb6b0a Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 6 Aug 2013 15:23:04 -0400 Subject: [PATCH 06/20] Update submodules, repotime, and versions --- chrome/content/zotero/xpcom/zotero.js | 2 +- install.rdf | 2 +- resource/schema/repotime.txt | 2 +- styles | 2 +- translators | 2 +- update.rdf | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 450e1c13e..d8be90daf 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -39,7 +39,7 @@ const ZOTERO_CONFIG = { BOOKMARKLET_ORIGIN : 'https://www.zotero.org', HTTP_BOOKMARKLET_ORIGIN : 'http://www.zotero.org', BOOKMARKLET_URL: 'https://www.zotero.org/bookmarklet/', - VERSION: "4.0.8.SOURCE" + VERSION: "4.0.10.SOURCE" }; // Commonly used imports accessible anywhere diff --git a/install.rdf b/install.rdf index 42656216e..74350e697 100644 --- a/install.rdf +++ b/install.rdf @@ -6,7 +6,7 @@ zotero@chnm.gmu.edu Zotero - 4.0.9.SOURCE + 4.0.10.SOURCE Center for History and New Media
George Mason University
Dan Cohen Sean Takats diff --git a/resource/schema/repotime.txt b/resource/schema/repotime.txt index 1b610cc67..21d52fef6 100644 --- a/resource/schema/repotime.txt +++ b/resource/schema/repotime.txt @@ -1 +1 @@ -2013-07-22 02:55:00 +2013-08-06 03:30:00 diff --git a/styles b/styles index c536a2c5c..d7eaec6c1 160000 --- a/styles +++ b/styles @@ -1 +1 @@ -Subproject commit c536a2c5c28ca465b511733a849ae452822fd363 +Subproject commit d7eaec6c1e691b661facc0b4db491a1052c3bf1a diff --git a/translators b/translators index 10e7c43ed..330bcfa0a 160000 --- a/translators +++ b/translators @@ -1 +1 @@ -Subproject commit 10e7c43ed0e70cdccebf575d4cdccd81b8914ffe +Subproject commit 330bcfa0ab1c501b71d82d56b1cad88523cea722 diff --git a/update.rdf b/update.rdf index d7c271be7..e761ab111 100644 --- a/update.rdf +++ b/update.rdf @@ -7,7 +7,7 @@ - 4.0.9.SOURCE + 4.0.10.SOURCE {ec8030f7-c20a-464f-9b0e-13a3a9e97384} From 795211fb403263547b046a14298c03eb55f3bf21 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 6 Aug 2013 15:49:26 -0400 Subject: [PATCH 07/20] Focus Close button by default in About pane --- chrome/content/zotero/about.xul | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/about.xul b/chrome/content/zotero/about.xul index 7f06013e2..76f5ed097 100644 --- a/chrome/content/zotero/about.xul +++ b/chrome/content/zotero/about.xul @@ -10,7 +10,7 @@ orient="vertical" buttons="accept" buttonlabelaccept="&zotero.about.close;" - onload="moveToAlertPosition(); sizeToContent();" + onload="moveToAlertPosition(); sizeToContent(); document.documentElement.getButton('accept').focus();" ondialogaccept="return true;">