From b05f1d29aa7d1b2c383537df7f40d5d00635610e Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 6 Feb 2016 04:59:15 -0500 Subject: [PATCH 1/7] Backport better incompatible-DB-version handling from 2177a000ea Implements #891 for 4.0 --- chrome/content/zotero/xpcom/db.js | 6 ++++ chrome/content/zotero/xpcom/schema.js | 16 +++++++--- chrome/content/zotero/xpcom/zotero.js | 33 +++++++++++++++----- chrome/locale/en-US/zotero/zotero.properties | 3 +- resource/config.js | 1 + 5 files changed, 46 insertions(+), 13 deletions(-) diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js index d7eafc064..993d28c4c 100644 --- a/chrome/content/zotero/xpcom/db.js +++ b/chrome/content/zotero/xpcom/db.js @@ -1298,3 +1298,9 @@ Zotero.DBConnection.prototype._getTypedValue = function (statement, i) { // Initialize main database connection Zotero.DB = new Zotero.DBConnection('zotero'); + +Zotero.DB.IncompatibleVersionException = function (msg, dbClientVersion) { + this.message = msg; + this.dbClientVersion = dbClientVersion; +} +Zotero.DB.IncompatibleVersionException.prototype = Object.create(Error.prototype); diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js index 71ea7ad84..11482d7b4 100644 --- a/chrome/content/zotero/xpcom/schema.js +++ b/chrome/content/zotero/xpcom/schema.js @@ -1554,8 +1554,12 @@ Zotero.Schema = new function(){ return true; } - throw ("Zotero '" + schema + "' DB version (" + dbVersion - + ") is newer than SQL file (" + schemaVersion + ")"); + let dbClientVersion = Zotero.DB.valueQuery( + "SELECT value FROM settings WHERE setting='client' AND key='lastCompatibleVersion'" + ); + let msg = "Database is incompatible with this Zotero version " + + `(${schema}: ${schemaVersion} > ${dbVersion})` + throw new Zotero.DB.IncompatibleVersionException(msg, dbClientVersion); } @@ -1937,8 +1941,12 @@ Zotero.Schema = new function(){ return false; } else if (fromVersion > toVersion) { - throw new Error("Zotero user data DB version is newer than SQL file " - + "(" + toVersion + " < " + fromVersion + ")"); + let dbClientVersion = Zotero.DB.valueQuery( + "SELECT value FROM settings WHERE setting='client' AND key='lastCompatibleVersion'" + ); + let msg = "Database is incompatible with this Zotero version " + + `(user data: ${fromVersion} > ${toVersion})` + throw new Zotero.DB.IncompatibleVersionException(msg, dbClientVersion); } Zotero.debug('Updating user data tables from version ' + fromVersion + ' to ' + toVersion); diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 191729ae2..c6d257665 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -610,20 +610,23 @@ Components.utils.import("resource://gre/modules/Services.jsm"); var updated = Zotero.Schema.updateSchema(); } catch (e) { - if (e.toString().match('newer than SQL file')) { - let versions = e.toString().match(/\((\d+) < (\d+)\)/); + if (e instanceof Zotero.DB.IncompatibleVersionException) { let kbURL = "https://www.zotero.org/support/kb/newer_db_version"; - let msg = Zotero.getString('startupError.zoteroVersionIsOlder') + " " - + Zotero.getString('startupError.zoteroVersionIsOlder.upgrade') + "\n\n" + let msg = (e.dbClientVersion + ? Zotero.getString('startupError.incompatibleDBVersion', + [Zotero.clientName, e.dbClientVersion]) + : Zotero.getString('startupError.zoteroVersionIsOlder')) + "\n\n" + Zotero.getString('startupError.zoteroVersionIsOlder.current', Zotero.version) - + (versions ? " (" + versions[1] + " < " + versions[2] + ")" : "") + "\n\n" - + Zotero.getString('general.seeForMoreInformation', kbURL); + + "\n\n" + + Zotero.getString('startupError.zoteroVersionIsOlder.upgrade', + ZOTERO_CONFIG.DOMAIN_NAME); Zotero.startupError = msg; _startupErrorHandler = function() { var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"] .getService(Components.interfaces.nsIPromptService); var buttonFlags = (ps.BUTTON_POS_0) * (ps.BUTTON_TITLE_IS_STRING) + (ps.BUTTON_POS_1) * (ps.BUTTON_TITLE_CANCEL) + + (ps.BUTTON_POS_2) * (ps.BUTTON_TITLE_IS_STRING) + ps.BUTTON_POS_0_DEFAULT; var index = ps.confirmEx( @@ -632,10 +635,13 @@ Components.utils.import("resource://gre/modules/Services.jsm"); Zotero.startupError, buttonFlags, Zotero.getString('general.checkForUpdate'), - null, null, null, {} + null, + Zotero.getString('general.moreInformation'), + null, + {} ); - // "Check for updates" button + // "Check for Update" button if(index === 0) { if(Zotero.isStandalone) { Components.classes["@mozilla.org/embedcomp/window-watcher;1"] @@ -680,6 +686,17 @@ Components.utils.import("resource://gre/modules/Services.jsm"); ); } } + // Load More Info page + else if (index == 2) { + let io = Components.classes['@mozilla.org/network/io-service;1'] + .getService(Components.interfaces.nsIIOService); + let uri = io.newURI(kbURL, null, null); + let handler = Components.classes['@mozilla.org/uriloader/external-protocol-service;1'] + .getService(Components.interfaces.nsIExternalProtocolService) + .getProtocolHandlerInfo('http'); + handler.preferredAction = Components.interfaces.nsIHandlerInfo.useSystemDefault; + handler.launchWithURI(uri, null); + } }; } else { diff --git a/chrome/locale/en-US/zotero/zotero.properties b/chrome/locale/en-US/zotero/zotero.properties index fae17e946..a9311ccc1 100644 --- a/chrome/locale/en-US/zotero/zotero.properties +++ b/chrome/locale/en-US/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox = If Firefox with the Zotero extension is open, pl startupError.databaseCannotBeOpened = The Zotero database cannot be opened. startupError.checkPermissions = Make sure you have read and write permissions for all files in the Zotero data directory. startupError.zoteroVersionIsOlder = This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade = Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion = This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current = Current version: %S +startupError.zoteroVersionIsOlder.upgrade = Please upgrade to the latest version from %S. startupError.databaseUpgradeError = Database upgrade error date.relative.secondsAgo.one = 1 second ago diff --git a/resource/config.js b/resource/config.js index cc147308c..552195b61 100644 --- a/resource/config.js +++ b/resource/config.js @@ -1,6 +1,7 @@ var ZOTERO_CONFIG = { GUID: 'zotero@chnm.gmu.edu', CLIENT_NAME: 'Zotero', + DOMAIN_NAME: 'zotero.org', REPOSITORY_URL: 'https://repo.zotero.org/repo/', REPOSITORY_CHECK_INTERVAL: 86400, // 24 hours REPOSITORY_RETRY_INTERVAL: 3600, // 1 hour From 6f1905bcfcc05f4ee92178ce2b9205ff6d5ac131 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 6 Feb 2016 05:09:11 -0500 Subject: [PATCH 2/7] Merge new English strings --- chrome/locale/af-ZA/zotero/zotero.properties | 3 ++- chrome/locale/ar/zotero/zotero.properties | 3 ++- chrome/locale/bg-BG/zotero/zotero.properties | 3 ++- chrome/locale/ca-AD/zotero/zotero.properties | 3 ++- chrome/locale/cs-CZ/zotero/zotero.properties | 3 ++- chrome/locale/da-DK/zotero/zotero.properties | 3 ++- chrome/locale/de/zotero/zotero.properties | 3 ++- chrome/locale/el-GR/zotero/zotero.properties | 3 ++- chrome/locale/es-ES/zotero/zotero.properties | 3 ++- chrome/locale/et-EE/zotero/zotero.properties | 3 ++- chrome/locale/eu-ES/zotero/zotero.properties | 3 ++- chrome/locale/fa/zotero/zotero.properties | 3 ++- chrome/locale/fi-FI/zotero/zotero.properties | 3 ++- chrome/locale/fr-FR/zotero/zotero.properties | 3 ++- chrome/locale/gl-ES/zotero/zotero.properties | 3 ++- chrome/locale/he-IL/zotero/zotero.properties | 3 ++- chrome/locale/hr-HR/zotero/zotero.properties | 3 ++- chrome/locale/hu-HU/zotero/zotero.properties | 3 ++- chrome/locale/id-ID/zotero/zotero.properties | 3 ++- chrome/locale/is-IS/zotero/zotero.properties | 3 ++- chrome/locale/it-IT/zotero/zotero.properties | 3 ++- chrome/locale/ja-JP/zotero/zotero.properties | 3 ++- chrome/locale/km/zotero/zotero.properties | 3 ++- chrome/locale/ko-KR/zotero/zotero.properties | 3 ++- chrome/locale/lt-LT/zotero/zotero.properties | 3 ++- chrome/locale/mn-MN/zotero/zotero.properties | 3 ++- chrome/locale/nb-NO/zotero/zotero.properties | 3 ++- chrome/locale/nl-NL/zotero/zotero.properties | 3 ++- chrome/locale/nn-NO/zotero/zotero.properties | 3 ++- chrome/locale/pl-PL/zotero/zotero.properties | 3 ++- chrome/locale/pt-BR/zotero/zotero.properties | 3 ++- chrome/locale/pt-PT/zotero/zotero.properties | 3 ++- chrome/locale/ro-RO/zotero/zotero.properties | 3 ++- chrome/locale/ru-RU/zotero/zotero.properties | 3 ++- chrome/locale/sk-SK/zotero/zotero.properties | 3 ++- chrome/locale/sl-SI/zotero/zotero.properties | 3 ++- chrome/locale/sr-RS/zotero/zotero.properties | 3 ++- chrome/locale/sv-SE/zotero/zotero.properties | 3 ++- chrome/locale/th-TH/zotero/zotero.properties | 3 ++- chrome/locale/tr-TR/zotero/zotero.properties | 3 ++- chrome/locale/uk-UA/zotero/zotero.properties | 3 ++- chrome/locale/vi-VN/zotero/zotero.properties | 3 ++- chrome/locale/zh-CN/zotero/zotero.properties | 3 ++- chrome/locale/zh-TW/zotero/zotero.properties | 3 ++- 44 files changed, 88 insertions(+), 44 deletions(-) diff --git a/chrome/locale/af-ZA/zotero/zotero.properties b/chrome/locale/af-ZA/zotero/zotero.properties index 31364ddb6..d401afd4c 100644 --- a/chrome/locale/af-ZA/zotero/zotero.properties +++ b/chrome/locale/af-ZA/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/ar/zotero/zotero.properties b/chrome/locale/ar/zotero/zotero.properties index db2f28461..9e4d5300f 100644 --- a/chrome/locale/ar/zotero/zotero.properties +++ b/chrome/locale/ar/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=إذا كان متصفح فايرفوكس مع امت startupError.databaseCannotBeOpened=لا يمكن فتح قاعدة بيانات زوتيرو. startupError.checkPermissions=تأكد أن لديك أذونات القراءة والكتابة لجميع الملفات الموجودة في مجلد بيانات زوتيرو. startupError.zoteroVersionIsOlder=هذا الإصدار من زوتيرو أقدم من الإصدار السابق استخدامه مع قاعدة بياناتك. -startupError.zoteroVersionIsOlder.upgrade=الرجاء الترقية إلى أحدث إصدار من موقع zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=الإصدار الحالي: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=خطأ في ترقية قاعدة البيانات date.relative.secondsAgo.one=مضت ثانية واحدة diff --git a/chrome/locale/bg-BG/zotero/zotero.properties b/chrome/locale/bg-BG/zotero/zotero.properties index fea581acc..fad270a86 100644 --- a/chrome/locale/bg-BG/zotero/zotero.properties +++ b/chrome/locale/bg-BG/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=Базата дани на зотеро не може да бъде отворена. startupError.checkPermissions=Убедете се, че имате разрешение да четете и записвате във всички файлове намиращи се в папката с дани на Зотеро. startupError.zoteroVersionIsOlder=Тази версия на Зотеро е по-стара от последната версия с която сте ползвали вашата база дани. -startupError.zoteroVersionIsOlder.upgrade=Моля надградете с последната версия от zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=настоящата версия е: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Грешка при надграждането на базата дани date.relative.secondsAgo.one=Преди една секунда diff --git a/chrome/locale/ca-AD/zotero/zotero.properties b/chrome/locale/ca-AD/zotero/zotero.properties index 89eb662cd..50748444f 100644 --- a/chrome/locale/ca-AD/zotero/zotero.properties +++ b/chrome/locale/ca-AD/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Si Firefox amb l'extensió Zotero és obert, tanqueu i startupError.databaseCannotBeOpened=La base de dades de Zotero no es pot obrir. startupError.checkPermissions=Assegure-vos que heu llegit els permisos per a tots els fitxers al directori de dades del Zotero. startupError.zoteroVersionIsOlder=Aquesta versió de Zotero és més vella que la darrera versió què s'utilitzà amb la teva base de dades. -startupError.zoteroVersionIsOlder.upgrade=Si us plau, actualitzeu a la darrera versió de zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versió actual: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Error d'actualització de la base de dades date.relative.secondsAgo.one=Fa 1 segon diff --git a/chrome/locale/cs-CZ/zotero/zotero.properties b/chrome/locale/cs-CZ/zotero/zotero.properties index 3ace87a38..b1e446c1a 100644 --- a/chrome/locale/cs-CZ/zotero/zotero.properties +++ b/chrome/locale/cs-CZ/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Pokud je otevřen Firefox s přídavkem Zotero, zavře startupError.databaseCannotBeOpened=Databáze Zotera nemohla být otevřena. startupError.checkPermissions=Ujistěte se, že máte všechna práva pro čtení a zápis souborů do datového adresáře Zotera. startupError.zoteroVersionIsOlder=Tato verze Zotera je starší než ta, která byla naposledy použita s vaší databází. -startupError.zoteroVersionIsOlder.upgrade=Prosím, aktualizujte na poslední verzi ze zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Aktuální verze je: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Chyba při aktualizaci databáze date.relative.secondsAgo.one=před 1 sekundou diff --git a/chrome/locale/da-DK/zotero/zotero.properties b/chrome/locale/da-DK/zotero/zotero.properties index efc9ccebf..be4e56e0b 100644 --- a/chrome/locale/da-DK/zotero/zotero.properties +++ b/chrome/locale/da-DK/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Hvis Zotero er aktiv i Firefox, så luk Zotero ned der startupError.databaseCannotBeOpened=Zotero-databasen kan ikke åbnes. startupError.checkPermissions=Sørg for at have læse- og skrive-rettigheder til alle filer i Zoteros datamappe. startupError.zoteroVersionIsOlder=Denne version af Zotero er ældre end den, der sidst blev anvendt med din database. -startupError.zoteroVersionIsOlder.upgrade=Du bør opgradere til den nyeste version fra zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Den aktuelle version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Der opstod en fejl ved opgraderingen af databasen date.relative.secondsAgo.one=for 1 sekund siden diff --git a/chrome/locale/de/zotero/zotero.properties b/chrome/locale/de/zotero/zotero.properties index 1553dc82b..6539e2a84 100644 --- a/chrome/locale/de/zotero/zotero.properties +++ b/chrome/locale/de/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Wenn Firefox mit der Zotero-Erweiterung offen ist, sch startupError.databaseCannotBeOpened=Die Zotero-Datenbank kann nicht geöffnet werden. startupError.checkPermissions=Stellen Sie sicher, dass sie Lese- und Schreibrechte für alle Dateien im Zotero-Datenverzeichnis haben. startupError.zoteroVersionIsOlder=Diese Version von Zotero ist älter als die Version, die zuletzt mit Ihrer Datenbank verwendet wurde. -startupError.zoteroVersionIsOlder.upgrade=Bitte upgraden Sie auf die neueste Version von zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Aktuelle Version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Datenbank-Upgrade-Fehler date.relative.secondsAgo.one=vor einer Sekunde diff --git a/chrome/locale/el-GR/zotero/zotero.properties b/chrome/locale/el-GR/zotero/zotero.properties index dc63165d0..2b68bbc5f 100644 --- a/chrome/locale/el-GR/zotero/zotero.properties +++ b/chrome/locale/el-GR/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/es-ES/zotero/zotero.properties b/chrome/locale/es-ES/zotero/zotero.properties index bf9e8a5ab..3500160e3 100644 --- a/chrome/locale/es-ES/zotero/zotero.properties +++ b/chrome/locale/es-ES/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Si Firefox con la extensión de Zotero está abierto, startupError.databaseCannotBeOpened=No puedo abrir la base de datos de Zotero. startupError.checkPermissions=Asegúrate de tener permiso de lectura y escritura en el directorio de datos de Zotero. startupError.zoteroVersionIsOlder=Esta versión de Zotero es anterior a la versión usada con tu base de datos. -startupError.zoteroVersionIsOlder.upgrade=Actualízalo a la última versión en zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versión actual: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Error de actualización de la base de datos date.relative.secondsAgo.one=Hace 1 segundo diff --git a/chrome/locale/et-EE/zotero/zotero.properties b/chrome/locale/et-EE/zotero/zotero.properties index 5a323f625..b75542903 100644 --- a/chrome/locale/et-EE/zotero/zotero.properties +++ b/chrome/locale/et-EE/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Kui Zotero Firefox on avatud, siis palun sulgege see j startupError.databaseCannotBeOpened=Zotero andmebaasi ei õnnestu avada. startupError.checkPermissions=Tehke kindlaks, kas teil on lubatud lugeda ja kirjutada kõiki faile Zotero kataloogis. startupError.zoteroVersionIsOlder=Praegune versioon Zoterost on vanem kui see versioon, mida kasutasite viimati andmebaasiga. -startupError.zoteroVersionIsOlder.upgrade=Palun uuendage kõige uuemale versioonile zotero.org lehelt. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Praegune versioon: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Andmebaasi uuendamise viga date.relative.secondsAgo.one=1 sekund tagasi diff --git a/chrome/locale/eu-ES/zotero/zotero.properties b/chrome/locale/eu-ES/zotero/zotero.properties index 8cd4f204f..1f8b6eb7f 100644 --- a/chrome/locale/eu-ES/zotero/zotero.properties +++ b/chrome/locale/eu-ES/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=Zotero datu-basea ezin izan da ireki. startupError.checkPermissions=Egiaztatu zure irakur eta idazteko baimenak Zotero fitxategiei dagokionez. startupError.zoteroVersionIsOlder=Zotero-ren bertsio hau zaharragoa da zure datu-basearekin lan egin duena baino. -startupError.zoteroVersionIsOlder.upgrade=Mesedez, eguneratu Zotero zotero.org gunea erabiliz. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Oraingo bertsioa: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Eguneratze-errore bat datu-basean date.relative.secondsAgo.one=orain dela segundo bat diff --git a/chrome/locale/fa/zotero/zotero.properties b/chrome/locale/fa/zotero/zotero.properties index 66faaa762..6501d6f04 100644 --- a/chrome/locale/fa/zotero/zotero.properties +++ b/chrome/locale/fa/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=اگر فایرفاکس با افزونه زوترو startupError.databaseCannotBeOpened=دادگان زوترو باز نمی‌شود. startupError.checkPermissions=مطئمن شوید که اجازه خواندن و نوشتن همه پرونده‌ها در پوشه داده‌های زوترو را دارید. startupError.zoteroVersionIsOlder=نگارش این نسخه از زوترو قدیمی‌تر از نسخه‌ای است که آخرین بار برای دسترسی به دادگان استفاده شده است. -startupError.zoteroVersionIsOlder.upgrade=لطفا آخرین نگارش را از وب‌گاه zotero.org نصب کنید. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=نگارش فعلی: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=خطا در ارتقای دادگان date.relative.secondsAgo.one=یک ثانیه پیش diff --git a/chrome/locale/fi-FI/zotero/zotero.properties b/chrome/locale/fi-FI/zotero/zotero.properties index 89d82a217..cd4a8f930 100644 --- a/chrome/locale/fi-FI/zotero/zotero.properties +++ b/chrome/locale/fi-FI/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Jos Firefoxin Zotero-liitännäinen on auki, sulje se startupError.databaseCannotBeOpened=Zotero-tietokantaa ei voida avata. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=Tämä Zotero-versio on vanhempi kuin se, jolla tietokantaa viimeksi käytettiin. -startupError.zoteroVersionIsOlder.upgrade=Hae uusin versio osoitteesta zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Nykyinen versio: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Tietokannan päivitysvirhe date.relative.secondsAgo.one=1 sekunti sitten diff --git a/chrome/locale/fr-FR/zotero/zotero.properties b/chrome/locale/fr-FR/zotero/zotero.properties index 571f3e5fa..3d9b4e169 100644 --- a/chrome/locale/fr-FR/zotero/zotero.properties +++ b/chrome/locale/fr-FR/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Si Firefox avec l'extension Zotero est ouvert, veuille startupError.databaseCannotBeOpened=La base de données de Zotero ne peut pas être ouverte. startupError.checkPermissions=Assurez-vous d'avoir des droits en lecture et écriture pour tous les fichiers dans le répertoire de données de Zotero. startupError.zoteroVersionIsOlder=Cette version de Zotero est plus ancienne que la version utilisée la dernière fois avec votre base de données. -startupError.zoteroVersionIsOlder.upgrade=Veuillez mettre à niveau avec la version la plus récente sur zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Version actuelle : %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Erreur de mise à niveau de la base de données date.relative.secondsAgo.one=il y a 1 seconde diff --git a/chrome/locale/gl-ES/zotero/zotero.properties b/chrome/locale/gl-ES/zotero/zotero.properties index dd1c67ff6..8cb34827f 100644 --- a/chrome/locale/gl-ES/zotero/zotero.properties +++ b/chrome/locale/gl-ES/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Se Firefox está aberto co engadido de Zotero, pécheo startupError.databaseCannotBeOpened=Non pode abrirse a base de datos Zotero. startupError.checkPermissions=Asegúrese de ter permisos de lectura e escritura para todos os ficheiros no directorio de datos Zotero. startupError.zoteroVersionIsOlder=Esta versión do Zotero é máis vella que a versión utilizada por última vez coa súa base de datos. -startupError.zoteroVersionIsOlder.upgrade=Por favor, actualice a versión máis recente de zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versión actual: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Erro de actualización da base de datos date.relative.secondsAgo.one=1 segundo atrás diff --git a/chrome/locale/he-IL/zotero/zotero.properties b/chrome/locale/he-IL/zotero/zotero.properties index 119e91d7c..9caa7a8f0 100644 --- a/chrome/locale/he-IL/zotero/zotero.properties +++ b/chrome/locale/he-IL/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/hr-HR/zotero/zotero.properties b/chrome/locale/hr-HR/zotero/zotero.properties index 31364ddb6..d401afd4c 100644 --- a/chrome/locale/hr-HR/zotero/zotero.properties +++ b/chrome/locale/hr-HR/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/hu-HU/zotero/zotero.properties b/chrome/locale/hu-HU/zotero/zotero.properties index 0dde36e47..1324f3eba 100644 --- a/chrome/locale/hu-HU/zotero/zotero.properties +++ b/chrome/locale/hu-HU/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Ha a Firefox a Zotero bővítménnyel fut, kérem zár startupError.databaseCannotBeOpened=A Zotero adatbázist nem lehet megnyitni. startupError.checkPermissions=Győződjön meg róla, hogy a Zotero az adatkönyvtár valamennyi fájlját írni és olvasni tudja. startupError.zoteroVersionIsOlder=A Zotero ezen változata régebbi, mint amit az adatbázis használ. -startupError.zoteroVersionIsOlder.upgrade=Frissítsen a legújabb változatra a zotero.org oldalon. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=A jelenlegi verzió: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Adatbázis frissítése hiba date.relative.secondsAgo.one=1 másodperccel ezelőtt diff --git a/chrome/locale/id-ID/zotero/zotero.properties b/chrome/locale/id-ID/zotero/zotero.properties index 82f3f3778..16e3aadec 100644 --- a/chrome/locale/id-ID/zotero/zotero.properties +++ b/chrome/locale/id-ID/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Jika Firefox dengan ekstensi Zotero sedang terbuka, mo startupError.databaseCannotBeOpened=Database Zotero tidak dapat dibuka. startupError.checkPermissions=Pastikan Anda telah membaca dan menulis izin untuk semua berkas di dalam direktori data Zotero. startupError.zoteroVersionIsOlder=Versi Zotero ini lebih lama dibandingkan dengan versi yang terakhir digunakan dengan database Anda. -startupError.zoteroVersionIsOlder.upgrade=Mohon upgrade menjadi versi terbaru dari zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versi saat ini: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Terjadi kesalahan dalam meng-upgrade database date.relative.secondsAgo.one=1 detik yang lalu diff --git a/chrome/locale/is-IS/zotero/zotero.properties b/chrome/locale/is-IS/zotero/zotero.properties index 6f630d640..b9f48b03b 100644 --- a/chrome/locale/is-IS/zotero/zotero.properties +++ b/chrome/locale/is-IS/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Ef Firefox með Zotero viðbótinni er opið, vinsamle startupError.databaseCannotBeOpened=Ekki reyndist hægt að opna Zotero gagnagrunninn. startupError.checkPermissions=Þú verður að tryggja að þú hafir hvoru tveggja les- og skrifaðgang að öllum skrám í Zotero gagnamöppunni. startupError.zoteroVersionIsOlder=Þessi útgáfa af Zotero er eldri en útgáfan sem síðast var notuð með gagnagrunni þínum. -startupError.zoteroVersionIsOlder.upgrade=Vinsamlegast uppfærðu í nýjustu útgáfuna frá zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Núverandi útgáfa: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Villa við uppfærslu á gagnagrunni date.relative.secondsAgo.one=Fyrir 1 sekúndu síðan diff --git a/chrome/locale/it-IT/zotero/zotero.properties b/chrome/locale/it-IT/zotero/zotero.properties index 728a38ead..633d35745 100644 --- a/chrome/locale/it-IT/zotero/zotero.properties +++ b/chrome/locale/it-IT/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Se è in esecuzione Firefox con l'estensione Zotero, c startupError.databaseCannotBeOpened=Impossibile accedere al database di Zotero. startupError.checkPermissions=Accertarsi di avere accesso in lettura e scrittura per tutti i file nel percorso di salvataggio dati di Zotero. startupError.zoteroVersionIsOlder=Questa versione di Zotero è meno recente rispetto all'ultima versione utilizzata per accedere al database. -startupError.zoteroVersionIsOlder.upgrade=Aggiornare all'ultima versione da zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versione attuale: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Errore nell'aggiornamento del database di Zotero date.relative.secondsAgo.one=1 secondo fa diff --git a/chrome/locale/ja-JP/zotero/zotero.properties b/chrome/locale/ja-JP/zotero/zotero.properties index 94b225d05..e92b998e5 100644 --- a/chrome/locale/ja-JP/zotero/zotero.properties +++ b/chrome/locale/ja-JP/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=もし Firefox 版 Zotero が開いている場合は startupError.databaseCannotBeOpened=Zotero データベースを開くことができません。 startupError.checkPermissions=あなたが Zotero データ保存フォルダ内のすべてのファイルに対して読み取り権限と書き込み権限を持つことを確認してください。 startupError.zoteroVersionIsOlder=このバージョンの Zotero は、最後にあなたのデータベースを使用した Zotero よりも古いバージョンです。 -startupError.zoteroVersionIsOlder.upgrade=zotero.org から最新版へと更新してください。 +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=現在のバージョン: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=データベース更新のエラー date.relative.secondsAgo.one=1 秒前 diff --git a/chrome/locale/km/zotero/zotero.properties b/chrome/locale/km/zotero/zotero.properties index 4e3246df7..c6311f331 100644 --- a/chrome/locale/km/zotero/zotero.properties +++ b/chrome/locale/km/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=ប្រសិនបើហ្វៃអ៊ើហ្វ startupError.databaseCannotBeOpened=ទិន្នន័យហ្ស៊ូតេរ៉ូមិនអាចបើកបាន។ startupError.checkPermissions=បញ្ជាក់ថា អ្នកបានអាននិងមានការអនុញ្ញាតចូលមើលគ្រប់ឯកសារដែល​មាននៅក្នុងថតទិន្នន័យហ្ស៊ូតេរ៉ូ។ startupError.zoteroVersionIsOlder=កម្មវីធីហ្ស៊ូតេរ៉ូនេះចាស់ជាងប្រភេទកំណែដែលអ្នកបានប្រើក្នុងទិន្នន័យរបស់អ្នក។ -startupError.zoteroVersionIsOlder.upgrade=សូមធ្វើទំនើបកម្មប្រភេទកំណែថ្មីបំផុតពីគេហទំព័រ zotero.org ។ +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=កំណែថ្មីទំនើបបំផុតគឺ: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=ទំនើបកម្មទិន្នន័យមានកំហុសឆ្គងកើតឡើង។ date.relative.secondsAgo.one=១ វិនាទីកន្លងមកហើយ diff --git a/chrome/locale/ko-KR/zotero/zotero.properties b/chrome/locale/ko-KR/zotero/zotero.properties index ffccf8502..be66dd7de 100644 --- a/chrome/locale/ko-KR/zotero/zotero.properties +++ b/chrome/locale/ko-KR/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Zotero 확장기능이 작동하는 Firefox가 실행 startupError.databaseCannotBeOpened=Zotero 데이터베이스를 열 수 없습니다. startupError.checkPermissions=Zotero 자료 디렉토리 내 모든 파일을 읽고 쓸 수 있는 권한을 가지고 있는지 확실하게 확인하세요. startupError.zoteroVersionIsOlder=이 버전의 Zotero는 데이터베이스가 마지막으로 사용된 버전보다 오래되었습니다. -startupError.zoteroVersionIsOlder.upgrade=zotero.org로부터 최신버전으로 업그레이드 해주세요. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=현재 버전: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=데이터베이스 업그레이드 오류 date.relative.secondsAgo.one=1초 전 diff --git a/chrome/locale/lt-LT/zotero/zotero.properties b/chrome/locale/lt-LT/zotero/zotero.properties index 1957fe70e..4f274c0af 100644 --- a/chrome/locale/lt-LT/zotero/zotero.properties +++ b/chrome/locale/lt-LT/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Jei Firefox naršyklė su Zotero papildiniu atverta, u startupError.databaseCannotBeOpened=Nepavyksta atverti Zotero duomenų bazės. startupError.checkPermissions=Įsitikinkite, ar turite leidimą rašyti ir skaityti failus iš Zotero duomenų katalogo. startupError.zoteroVersionIsOlder=Naudojate Zotero versiją, kuri yra senesnė nei paskutinį kartą su jūsų duomenimis naudotoji. -startupError.zoteroVersionIsOlder.upgrade=Siūlome įdiegti naujausią versiją iš zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Dabartinė versija: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Klaida atnaujinant duomenų bazę date.relative.secondsAgo.one=prieš 1 sekundę diff --git a/chrome/locale/mn-MN/zotero/zotero.properties b/chrome/locale/mn-MN/zotero/zotero.properties index 2fb7704af..1fc529ccd 100644 --- a/chrome/locale/mn-MN/zotero/zotero.properties +++ b/chrome/locale/mn-MN/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/nb-NO/zotero/zotero.properties b/chrome/locale/nb-NO/zotero/zotero.properties index 9ce63e267..171632a9a 100644 --- a/chrome/locale/nb-NO/zotero/zotero.properties +++ b/chrome/locale/nb-NO/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/nl-NL/zotero/zotero.properties b/chrome/locale/nl-NL/zotero/zotero.properties index ee399cca9..428a49a23 100644 --- a/chrome/locale/nl-NL/zotero/zotero.properties +++ b/chrome/locale/nl-NL/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Sluit Firefox (met Zotero voor Firefox) als dit geopen startupError.databaseCannotBeOpened=De Zotero-database kan niet geopend worden. startupError.checkPermissions=Zorg ervoor dat u lees- en schrijf-toegangsrechten heeft voor alle bestanden in de Zotero-opslagmap. startupError.zoteroVersionIsOlder=Deze versie van Zotero is ouder dan de hiervoor met uw database gebruikte versie. -startupError.zoteroVersionIsOlder.upgrade=Werk Zotero bij naar de nieuwste versie via zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Huidige versie: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database-bijwerkingsfout date.relative.secondsAgo.one=1 seconde geleden diff --git a/chrome/locale/nn-NO/zotero/zotero.properties b/chrome/locale/nn-NO/zotero/zotero.properties index 8f98adbfd..b2790e2f6 100644 --- a/chrome/locale/nn-NO/zotero/zotero.properties +++ b/chrome/locale/nn-NO/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Dersom Firefox med Zotero køyrer, må Firefox avslutt startupError.databaseCannotBeOpened=Klarte ikkje opna Zotero-databasen startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=Denne versjonen av Zotero er eldre enn den siste som vart brukt med databasen din. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latast version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Denne versjonen: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Feil ved oppgradering av database date.relative.secondsAgo.one=1 sekund sidan diff --git a/chrome/locale/pl-PL/zotero/zotero.properties b/chrome/locale/pl-PL/zotero/zotero.properties index 1070bbc52..6093b8014 100644 --- a/chrome/locale/pl-PL/zotero/zotero.properties +++ b/chrome/locale/pl-PL/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Jeśli otwarty jest Firefox z dodatkiem Zotero, prosz startupError.databaseCannotBeOpened=Nie można otworzyć bazy danych Zotero. startupError.checkPermissions=Upewnij się, że masz prawo odczytu oraz zapisu do wszystkich plików w katalogu danych Zotero. startupError.zoteroVersionIsOlder=Ta wersja Zostero jest starsza niż wersja ostatnio użyta z twoją bazą danych. -startupError.zoteroVersionIsOlder.upgrade=Proszę zaktualizować do najnowszej wersji z witryny zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Aktualna wersja: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Błąd aktualizacji bazy danych date.relative.secondsAgo.one=1 sekunda temu diff --git a/chrome/locale/pt-BR/zotero/zotero.properties b/chrome/locale/pt-BR/zotero/zotero.properties index 3da6712a7..a4b63dde6 100644 --- a/chrome/locale/pt-BR/zotero/zotero.properties +++ b/chrome/locale/pt-BR/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Se o Firefox com a extensão do Zotero estiver aberto, startupError.databaseCannotBeOpened=O banco de dados Zotero nao pode ser aberto. startupError.checkPermissions=Certifique-se de ter permissão de leitura e escrita para todos os arquivos no diretório de dados Zotero. startupError.zoteroVersionIsOlder=Essa versão Zotero é mais antiga que a versão usada pela última vez com seu banco de dados. -startupError.zoteroVersionIsOlder.upgrade=Por favor, obtenha a versão mais recente em zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versão atual: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Erro de atualização de banco de dados date.relative.secondsAgo.one=1 segundo atrás diff --git a/chrome/locale/pt-PT/zotero/zotero.properties b/chrome/locale/pt-PT/zotero/zotero.properties index e5c72e580..3f7c5c885 100644 --- a/chrome/locale/pt-PT/zotero/zotero.properties +++ b/chrome/locale/pt-PT/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Se o Firefox com a extensão Zotero estiver aberto, po startupError.databaseCannotBeOpened=Não foi possível abrir a base de dados do Zotero. startupError.checkPermissions=Assegure-se de que tem permissões de leitura e escrita em todos os arquivos da pasta de dados do Zotero. startupError.zoteroVersionIsOlder=Esta versão do Zotero é mais antiga que a versão usada da última vez que acedeu à base de dados. -startupError.zoteroVersionIsOlder.upgrade=Por favor actualize o Zotero para a última versão disponível em zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versão actual: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Erro de actualização da base de dados date.relative.secondsAgo.one=há 1 segundo diff --git a/chrome/locale/ro-RO/zotero/zotero.properties b/chrome/locale/ro-RO/zotero/zotero.properties index 6d3236cd1..a5c1f54f2 100644 --- a/chrome/locale/ro-RO/zotero/zotero.properties +++ b/chrome/locale/ro-RO/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Dacă Firexof conținând extensia Zotero este deschis startupError.databaseCannotBeOpened=Baza de date Zotero nu poate fi deschisă. startupError.checkPermissions=Asigură-te că ai permisiuni de citire și scriere pentru toate fișierele din dosarul cu date Zotero. startupError.zoteroVersionIsOlder=Această versiune de Zotero este mai veche decât cea folosită ultima dată cu baza ta de date. -startupError.zoteroVersionIsOlder.upgrade=Te rog să actualizezi la ultima versiune de la zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Versiune curentă: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Eroare la actualizarea bazei de date date.relative.secondsAgo.one=cu o secundă în urmă diff --git a/chrome/locale/ru-RU/zotero/zotero.properties b/chrome/locale/ru-RU/zotero/zotero.properties index 33f7988d5..8b7084eed 100644 --- a/chrome/locale/ru-RU/zotero/zotero.properties +++ b/chrome/locale/ru-RU/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Если открыт Firefox c расширением startupError.databaseCannotBeOpened=Не получилось открыть базу данных Zotero. startupError.checkPermissions=Убедитесь, что у вас есть разрешение на чтение и запись для всех файлов в папке с данными Zotero. startupError.zoteroVersionIsOlder=Данная версия Zotero более ранняя чем та, что последний раз использовалась с вашей базой данных. -startupError.zoteroVersionIsOlder.upgrade=Пожалуйста, обновите до последней версии с zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Текущая версия: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Ошибка обновления базы данных date.relative.secondsAgo.one=1 секунда назад diff --git a/chrome/locale/sk-SK/zotero/zotero.properties b/chrome/locale/sk-SK/zotero/zotero.properties index 61d5cfba3..de4f5b5aa 100644 --- a/chrome/locale/sk-SK/zotero/zotero.properties +++ b/chrome/locale/sk-SK/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Ak je Firefox s Zoterom otvorený, zatvorte ho prosím startupError.databaseCannotBeOpened=Zotero databázu nie je možné otvoriť. startupError.checkPermissions=Uistite sa, že máte právo čítať aj zapisovať do všetkých súborov v dátovom priečinku Zotera. startupError.zoteroVersionIsOlder=Táto verzia Zotera je staršia než verzia, ktorú ste naposledy použili s vašou databázou. -startupError.zoteroVersionIsOlder.upgrade=Prosím aktualizujte rozšírenie na najnovšiu verziu zo stránok zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Aktuálna verzia:%S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Chyba pri aktualizácii databázy date.relative.secondsAgo.one=pred 1 sekundou diff --git a/chrome/locale/sl-SI/zotero/zotero.properties b/chrome/locale/sl-SI/zotero/zotero.properties index 0fffb34e2..680f2a20e 100644 --- a/chrome/locale/sl-SI/zotero/zotero.properties +++ b/chrome/locale/sl-SI/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Če je odprt Firefox z razširitvijo Zotero, ga zaprit startupError.databaseCannotBeOpened=Zbirke podatkov Zotero ni mogoče odpreti. startupError.checkPermissions=Preverite, da imate pravice branja in pisanja za vse datoteke v podatkovni mapi Zotera. startupError.zoteroVersionIsOlder=Ta različica Zotera je starejša od različice, s katero ste nazadnje obdelovali zbirko podatkov. -startupError.zoteroVersionIsOlder.upgrade=Posodobite jo na najnovejšo različico, ki jo najdete na zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Trenutna različica: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Napaka nadgradnje zbirke podatkov date.relative.secondsAgo.one=pred 1 sekundo diff --git a/chrome/locale/sr-RS/zotero/zotero.properties b/chrome/locale/sr-RS/zotero/zotero.properties index 4efa66746..a0e682e1e 100644 --- a/chrome/locale/sr-RS/zotero/zotero.properties +++ b/chrome/locale/sr-RS/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/sv-SE/zotero/zotero.properties b/chrome/locale/sv-SE/zotero/zotero.properties index 7015b9b51..8c0464ead 100644 --- a/chrome/locale/sv-SE/zotero/zotero.properties +++ b/chrome/locale/sv-SE/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Om Firefox med Zotero är aktivt så stäng den och st startupError.databaseCannotBeOpened=Zoteros databas kunde inte öppnas. startupError.checkPermissions=Försäkra dig om att du har läs- och skrivrättigheter till alla filer i Zoteros datakatalog. startupError.zoteroVersionIsOlder=Denna Zoteroversion är äldre än den senaste versionen som användes med din databas. -startupError.zoteroVersionIsOlder.upgrade=Uppgradera till den senaste versionen på zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Nuvarande version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Fel när databasen uppgraderades date.relative.secondsAgo.one=1 sekund sen diff --git a/chrome/locale/th-TH/zotero/zotero.properties b/chrome/locale/th-TH/zotero/zotero.properties index 18bd54fc3..2907cff8a 100644 --- a/chrome/locale/th-TH/zotero/zotero.properties +++ b/chrome/locale/th-TH/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=ถ้าคุณเปิดใช้โปรแก startupError.databaseCannotBeOpened=ฐานข้อมูลของ Zotero ไม่สามารถเปิดได้ startupError.checkPermissions=แน่ใจว่าคุณได้อ่านและเขียนการอนุญาตสำหรับทุกแฟ้มในสารบบของ Zotero startupError.zoteroVersionIsOlder=Zotero รุ่นนี้เก่ากว่ารุ่นของฐานข้อมูลที่คุณใช้ครั้งล่าสุด -startupError.zoteroVersionIsOlder.upgrade=กรุณาปรับเป็นรุ่นล่าสุดจาก zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=รุ่นปัจจุบัน: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=การปรับรุ่นฐานข้อมูลผิดพลาด date.relative.secondsAgo.one=1 วินาทีก่อน diff --git a/chrome/locale/tr-TR/zotero/zotero.properties b/chrome/locale/tr-TR/zotero/zotero.properties index e91f775fd..812311ba4 100644 --- a/chrome/locale/tr-TR/zotero/zotero.properties +++ b/chrome/locale/tr-TR/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Eğer Zotero eklentili Firefox'unuz açık ise, lütfe startupError.databaseCannotBeOpened=Zotero veritabanı açılamadı. startupError.checkPermissions=Zotero veri dizinindeki tüm dosyalar için yazma iznine sahip olup olmadığınıza emin olunuz. startupError.zoteroVersionIsOlder=Zotero'nun bu sürümü veritabanınızda en son kullandığınız sürümden daha eskidir. -startupError.zoteroVersionIsOlder.upgrade=Lütfen zotero.org'dan indirerek, sürümünüzü en yenisine yükseltiniz. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Şimdiki sürüm: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Veritabanı yükseltme hatası date.relative.secondsAgo.one=1 saniye önce diff --git a/chrome/locale/uk-UA/zotero/zotero.properties b/chrome/locale/uk-UA/zotero/zotero.properties index b99217b06..1fae77507 100644 --- a/chrome/locale/uk-UA/zotero/zotero.properties +++ b/chrome/locale/uk-UA/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=Якщо Firefox з доповленням Zotero ві startupError.databaseCannotBeOpened=База даних Zotero не може бути відкрита. startupError.checkPermissions=Переконайтеся, що ви маєте дозволи на читання і запис для всіх файлів в каталозі даних Zotero. startupError.zoteroVersionIsOlder=Ця версія Zotero старіша ніж версія, що була використана з цією базою даних останнього разу. -startupError.zoteroVersionIsOlder.upgrade=Будь ласка, оновіть до останньої версії з zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Поточна версія: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Помилка оновлення бази даних date.relative.secondsAgo.one=1 секунда тому diff --git a/chrome/locale/vi-VN/zotero/zotero.properties b/chrome/locale/vi-VN/zotero/zotero.properties index 9436337bd..edbf4e189 100644 --- a/chrome/locale/vi-VN/zotero/zotero.properties +++ b/chrome/locale/vi-VN/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=If Firefox with the Zotero extension is open, please c startupError.databaseCannotBeOpened=The Zotero database cannot be opened. startupError.checkPermissions=Make sure you have read and write permissions to all files in the Zotero data directory. startupError.zoteroVersionIsOlder=This version of Zotero is older than the version last used with your database. -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from zotero.org. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=Current version: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=Database upgrade error date.relative.secondsAgo.one=1 second ago diff --git a/chrome/locale/zh-CN/zotero/zotero.properties b/chrome/locale/zh-CN/zotero/zotero.properties index 89f4c6c14..d62efe3bd 100644 --- a/chrome/locale/zh-CN/zotero/zotero.properties +++ b/chrome/locale/zh-CN/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=如果安装有 Zotero 插件的Firefox正在运行, startupError.databaseCannotBeOpened=无法打开 Zotero 数据库. startupError.checkPermissions=请确保您拥有 Zotero 数据目录下所有文件的读写权限. startupError.zoteroVersionIsOlder=当前的 Zotero 版本比最后一次使用数据库的 Zotero 版本低. -startupError.zoteroVersionIsOlder.upgrade=请到 zotero.org 升级到最新版. +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=当前版本: %S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=数据库升级错误 date.relative.secondsAgo.one=1 秒前 diff --git a/chrome/locale/zh-TW/zotero/zotero.properties b/chrome/locale/zh-TW/zotero/zotero.properties index bb9155a6a..94ed111e0 100644 --- a/chrome/locale/zh-TW/zotero/zotero.properties +++ b/chrome/locale/zh-TW/zotero/zotero.properties @@ -133,8 +133,9 @@ startupError.closeFirefox=如果有安裝 Zotero 附加元件的 Firefox 已經 startupError.databaseCannotBeOpened=無法開啟 Zotero 資料庫。 startupError.checkPermissions=請確認有讀取與寫入 Zotero 資料庫所在資料夾的權限。 startupError.zoteroVersionIsOlder=這個 Zotero 的版本比上次用於資料庫的版本還舊。 -startupError.zoteroVersionIsOlder.upgrade=請透過 zotero.org 更新到最新版。 +startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. startupError.zoteroVersionIsOlder.current=目前版本:%S +startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. startupError.databaseUpgradeError=資料庫升級失敗 date.relative.secondsAgo.one=1 秒鐘前 From 1cf5d164041c7a12569c6f7a0427a386302c659c Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 8 Feb 2016 19:28:05 -0500 Subject: [PATCH 3/7] Create CONTRIBUTING.md --- CONTRIBUTING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..c4b643af0 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,11 @@ +# Contributing to Zotero + +## Bug Reports and Feature Requests + +In order to keep product discussions open to as many people as possible, Zotero does not use GitHub Issues for bug reports or feature requests. Please use the [Zotero Forums](https://forums.zotero.org) to report problems and suggest changes. + +For confirmed bugs or agreed-upon changes, new issues will be created in the relevant repositories on GitHub by Zotero developers. + +## Working with Zotero Code + +See [Zotero Source Code](https://www.zotero.org/support/dev/source_code). From dd334ac4135cf23663c239abc40f3e4deaa8cc10 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 8 Feb 2016 23:47:55 -0500 Subject: [PATCH 4/7] Merge locales from Transifex --- chrome/locale/cs-CZ/zotero/csledit.dtd | 4 +- chrome/locale/cs-CZ/zotero/cslpreview.dtd | 16 +++--- chrome/locale/cs-CZ/zotero/preferences.dtd | 4 +- chrome/locale/cs-CZ/zotero/zotero.dtd | 2 +- chrome/locale/cs-CZ/zotero/zotero.properties | 52 ++++++++++---------- chrome/locale/de/zotero/zotero.properties | 4 +- chrome/locale/fi-FI/zotero/zotero.properties | 2 +- chrome/locale/fr-FR/zotero/zotero.properties | 4 +- chrome/locale/hu-HU/zotero/zotero.properties | 2 +- chrome/locale/ja-JP/zotero/zotero.properties | 42 ++++++++-------- chrome/locale/lt-LT/zotero/zotero.properties | 4 +- chrome/locale/pl-PL/zotero/zotero.dtd | 4 +- chrome/locale/pl-PL/zotero/zotero.properties | 6 +-- chrome/locale/sk-SK/zotero/zotero.properties | 4 +- chrome/locale/sv-SE/zotero/zotero.properties | 4 +- chrome/locale/tr-TR/zotero/zotero.properties | 4 +- chrome/locale/uk-UA/zotero/zotero.properties | 4 +- 17 files changed, 81 insertions(+), 81 deletions(-) diff --git a/chrome/locale/cs-CZ/zotero/csledit.dtd b/chrome/locale/cs-CZ/zotero/csledit.dtd index 88f6c4c83..8b09ccf6b 100644 --- a/chrome/locale/cs-CZ/zotero/csledit.dtd +++ b/chrome/locale/cs-CZ/zotero/csledit.dtd @@ -1,3 +1,3 @@ - + - + diff --git a/chrome/locale/cs-CZ/zotero/cslpreview.dtd b/chrome/locale/cs-CZ/zotero/cslpreview.dtd index 04396166e..4aa8b83a1 100644 --- a/chrome/locale/cs-CZ/zotero/cslpreview.dtd +++ b/chrome/locale/cs-CZ/zotero/cslpreview.dtd @@ -1,9 +1,9 @@ - + - - - - - - - + + + + + + + diff --git a/chrome/locale/cs-CZ/zotero/preferences.dtd b/chrome/locale/cs-CZ/zotero/preferences.dtd index 44b101c5b..caf1cac8e 100644 --- a/chrome/locale/cs-CZ/zotero/preferences.dtd +++ b/chrome/locale/cs-CZ/zotero/preferences.dtd @@ -107,7 +107,7 @@ - + @@ -145,7 +145,7 @@ - + diff --git a/chrome/locale/cs-CZ/zotero/zotero.dtd b/chrome/locale/cs-CZ/zotero/zotero.dtd index 6aed802d0..eab7c5eee 100644 --- a/chrome/locale/cs-CZ/zotero/zotero.dtd +++ b/chrome/locale/cs-CZ/zotero/zotero.dtd @@ -165,7 +165,7 @@ - + diff --git a/chrome/locale/cs-CZ/zotero/zotero.properties b/chrome/locale/cs-CZ/zotero/zotero.properties index b1e446c1a..c2727817c 100644 --- a/chrome/locale/cs-CZ/zotero/zotero.properties +++ b/chrome/locale/cs-CZ/zotero/zotero.properties @@ -55,7 +55,7 @@ general.numMore=%S dalších... general.openPreferences=Otevřít předvolby general.keys.ctrlShift=Ctrl+Shift+ general.keys.cmdShift=Cmd+Shift+ -general.dontShowAgain=Don’t Show Again +general.dontShowAgain=Již nezobrazovat general.operationInProgress=Právě probíhá operace se Zoterem. general.operationInProgress.waitUntilFinished=Počkejte prosím, dokud neskončí. @@ -252,8 +252,8 @@ pane.item.duplicates.onlySameItemType=Sloučené položky musí být všechny st pane.item.changeType.title=Změnit typ položky pane.item.changeType.text=Jste si jisti, že chcete změnit typ této položky?\n\nNásledující pole budou ztracena: -pane.item.defaultFirstName=první -pane.item.defaultLastName=poslední +pane.item.defaultFirstName=jméno +pane.item.defaultLastName=příjmení pane.item.defaultFullName=plné jméno pane.item.switchFieldMode.one=Přepnout na jedno pole pane.item.switchFieldMode.two=Přepnout na více polí @@ -485,8 +485,8 @@ save.error.cannotAddFilesToCollection=Do aktuálně vybrané kolekce nemůžete ingester.saveToZotero=Uložit do Zotera ingester.saveToZoteroUsing=Uložit do Zotera pomocí "%S" -ingester.saveToZoteroAsWebPageWithSnapshot=Save to Zotero as Web Page (with snapshot) -ingester.saveToZoteroAsWebPageWithoutSnapshot=Save to Zotero as Web Page (without snapshot) +ingester.saveToZoteroAsWebPageWithSnapshot=Uložit do Zotera jako webovou stránku (se snímkem) +ingester.saveToZoteroAsWebPageWithoutSnapshot=Uložit do Zotera jako webovou stránku (bez snímku) ingester.scraping=Ukládá se položka... ingester.scrapingTo=Ukládám do ingester.scrapeComplete=Položka uložena @@ -681,22 +681,22 @@ citation.showEditor=Zobrazit editor... citation.hideEditor=Skrýt editor... citation.citations=Citace citation.notes=Poznámky -citation.locator.page=Page -citation.locator.book=Book -citation.locator.chapter=Chapter -citation.locator.column=Column -citation.locator.figure=Figure -citation.locator.folio=Folio -citation.locator.issue=Issue -citation.locator.line=Line -citation.locator.note=Note +citation.locator.page=Stránka +citation.locator.book=Kniha +citation.locator.chapter=Kapitola +citation.locator.column=Sloupec +citation.locator.figure=Obrázek +citation.locator.folio=Složka +citation.locator.issue=Číslo +citation.locator.line=Řádek +citation.locator.note=Poznámka citation.locator.opus=Opus -citation.locator.paragraph=Paragraph -citation.locator.part=Part -citation.locator.section=Section -citation.locator.subverbo=Sub verbo -citation.locator.volume=Volume -citation.locator.verse=Verse +citation.locator.paragraph=Odstavec +citation.locator.part=Část +citation.locator.section=Sekce +citation.locator.subverbo=Pod heslem +citation.locator.volume=Ročník +citation.locator.verse=Verš report.title.default=Zotero report report.parentItem=Rodičovská položka: @@ -802,9 +802,9 @@ sync.error.invalidLogin.text=Synchronizační server Zotera nerozpoznal vaše u sync.error.enterPassword=Prosím zadejte heslo. sync.error.loginManagerInaccessible=Zotero nemůže přistoupit k vašim přihlašovacím údajům. sync.error.checkMasterPassword=Pokud používáte hlavní heslo v %S, ujistěte se, že jste jej zadali správně. -sync.error.corruptedLoginManager=This could also be due to a corrupted %1$S logins database. To check, close %1$S, remove cert8.db, key3.db, and logins.json from your %1$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences. -sync.error.loginManagerCorrupted1=Zotero cannot access your login information, possibly due to a corrupted %S logins database. -sync.error.loginManagerCorrupted2=Close %1$S, remove cert8.db, key3.db, and logins.json from your %2$S profile directory, and re-enter your Zotero login information in the Sync pane of the Zotero preferences. +sync.error.corruptedLoginManager=Toto může být zapříčiněno poškozením databáze přihlašovacích údajů %1$S. Zkuste zavřít %1$S, smažte cert8.db, key3.db a logins.json ze složky s vaším profilem %1$S a zadejte znovu své přihlašovací údaje do Zotera na panelu Sync v nastavení Zotera. +sync.error.loginManagerCorrupted1=Zotero nemůže přistoupit k vašim přihlašovacím údajům, může to být z důvodu poškozené databáze přihlašovacích údajů %S. +sync.error.loginManagerCorrupted2=Zavřete %1$S, smažte cert8.db, key3.db a logins.json ze složky s vaším profilem %2$S a zadejte znovu své přihlašovací údaje do Zotera na panelu Sync v nastavení Zotera. sync.error.syncInProgress=Synchronizace už probíhá. sync.error.syncInProgress.wait=Počkejte, dokud předchozí synchronizace neskončí, nebo restartujte Firefox. sync.error.writeAccessLost=Nemáte nadále práva k zápisu do Zotero skupiny '%S' a položky které jste přidali nemohou být synchronizovány na server. @@ -966,7 +966,7 @@ file.accessError.message.windows=Zkontrolujte, že soubor není právě použív file.accessError.message.other=Zkontrolujte, že soubor není používán a že má nastavena práva k zápisu. file.accessError.restart=Může pomoci i restartování počítače nebo deaktivace bezpečnostního softwaru. file.accessError.showParentDir=Zobrazit rodičovský adresář -file.error.cannotAddShortcut=Shortcut files cannot be added directly. Please select the original file. +file.error.cannotAddShortcut=Soubory se zkratkami není možné přidat přímo. Prosím vyberte původní soubor. lookup.failure.title=Vyhledání se nezdařilo lookup.failure.description=Zotero nedokázalo najít záznam odpovídající specifikovanému identifikátoru. Prosím ověřte správnost identifikátoru a zkuste to znovu. @@ -1005,9 +1005,9 @@ connector.loadInProgress=Zotero Standalone bylo spuštěno, ale není přístupn firstRunGuidance.authorMenu=Zotero umožňuje zvolit i editory a překladatele. Volbou v tomto menu můžete změnit autora na editora či překladatele. firstRunGuidance.quickFormat=Napište název, nebo autora k nimž hledáte citaci.\n\n Když si vyberete, kliknutím na bublinu, nebo stiskem Ctrl-\u2193 můžete přidat čísla stran, prefixy, či sufixy. Číslo stránky můžete vložit přímo k vašim vyhledávaným výrazům.\n\nCitace můžete editovat přímo ve vašem textovém procesoru. firstRunGuidance.quickFormatMac=Napište název, nebo autora k nimž hledáte citaci.\n\n Když si vyberete, kliknutím na bublinu, nebo stiskem Ctrl-\u2193 můžete přidat čísla stran, prefixy, či sufixy. Číslo stránky můžete vložit přímo k vašim vyhledávaným výrazům.\n\nCitace můžete editovat přímo ve vašem textovém procesoru. -firstRunGuidance.toolbarButton.new=Zotero otevřete kliknutím sem, nebo použitím klávesové zkratky %S +firstRunGuidance.toolbarButton.new=Zotero otevřete kliknutím na tlačítko „Z“, nebo použijte klávesovou zkratku %S. firstRunGuidance.toolbarButton.upgrade=Ikona Zotero se nyní nachází v Panelu nástrojů Firefoxu. Zotero otevřete kliknutím na ikonu, nebo stisknutím %S. -firstRunGuidance.saveButton=Click this button to save any web page to your Zotero library. On some pages, Zotero will be able to save full details, including author and date. +firstRunGuidance.saveButton=Kliknutím na toto tlačítko uložíte jakoukoliv stránku do knihovny Zotero. Z některých stránek Zotero dokáže uložit i podrobnosti včetně autora a data. styles.bibliography=Bibliografie styles.editor.save=Uložit citační styl. diff --git a/chrome/locale/de/zotero/zotero.properties b/chrome/locale/de/zotero/zotero.properties index 6539e2a84..908d38d75 100644 --- a/chrome/locale/de/zotero/zotero.properties +++ b/chrome/locale/de/zotero/zotero.properties @@ -133,9 +133,9 @@ startupError.closeFirefox=Wenn Firefox mit der Zotero-Erweiterung offen ist, sch startupError.databaseCannotBeOpened=Die Zotero-Datenbank kann nicht geöffnet werden. startupError.checkPermissions=Stellen Sie sicher, dass sie Lese- und Schreibrechte für alle Dateien im Zotero-Datenverzeichnis haben. startupError.zoteroVersionIsOlder=Diese Version von Zotero ist älter als die Version, die zuletzt mit Ihrer Datenbank verwendet wurde. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Die %1$S Datenbank benötigt %1$S %2$S oder höher. startupError.zoteroVersionIsOlder.current=Aktuelle Version: %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Bitte upgraden Sie auf die neueste Version von %S. startupError.databaseUpgradeError=Datenbank-Upgrade-Fehler date.relative.secondsAgo.one=vor einer Sekunde diff --git a/chrome/locale/fi-FI/zotero/zotero.properties b/chrome/locale/fi-FI/zotero/zotero.properties index cd4a8f930..44a7b4e37 100644 --- a/chrome/locale/fi-FI/zotero/zotero.properties +++ b/chrome/locale/fi-FI/zotero/zotero.properties @@ -1005,7 +1005,7 @@ connector.loadInProgress=Zotero Standalone on käynnistettiin, mutta se ei ole k firstRunGuidance.authorMenu=Zoterossa voit myös määritellä teoksen toimittajat ja kääntäjät. Voit muuttaa kirjoittajan toimittajaksi tai kääntäjäksi tästä valikosta. firstRunGuidance.quickFormat=Kirjoita otsikko tai tekijä etsiäksesi viitettä.\n\nKun olet tehnyt valinnan, klikkaa kuplaa tai paina Ctrl-\u2193 lisätäksesi sivunumerot sekä etu- ja jälkiliitteet. Voit myös sisällyttää sivunumeron hakutermien mukana lisätäksesi sen suoraan.\n\nVoit muokata sitaatteja suoraan tekstinkäsittelyohjelman asiakirjassa. firstRunGuidance.quickFormatMac=Kirjoita otsikko tai tekijä etsiäksesi viitettä.\n\nKun olet tehnyt valinnan, klikkaa kuplaa tai paina Ctrl-\u2193 lisätäksesi sivunumerot sekä etu- ja jälkiliitteet. Voit myös sisällyttää sivunumeron hakutermien mukana lisätäksesi sen suoraan.\n\nVoit muokata sitaatteja suoraan tekstinkäsittelyohjelman asiakirjassa. -firstRunGuidance.toolbarButton.new=Paina tästä avataksesi Zoteron, tai käyttää %S-näppäinoikotietä. +firstRunGuidance.toolbarButton.new=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut. firstRunGuidance.toolbarButton.upgrade=Zoteron kuvake on nyt Firefoxin työkalurivillä. Paina kuvaketta avataksesi Zoteron, tai käytä %S-näppäinoikotietä. firstRunGuidance.saveButton=Click this button to save any web page to your Zotero library. On some pages, Zotero will be able to save full details, including author and date. diff --git a/chrome/locale/fr-FR/zotero/zotero.properties b/chrome/locale/fr-FR/zotero/zotero.properties index 3d9b4e169..45a75aabc 100644 --- a/chrome/locale/fr-FR/zotero/zotero.properties +++ b/chrome/locale/fr-FR/zotero/zotero.properties @@ -133,9 +133,9 @@ startupError.closeFirefox=Si Firefox avec l'extension Zotero est ouvert, veuille startupError.databaseCannotBeOpened=La base de données de Zotero ne peut pas être ouverte. startupError.checkPermissions=Assurez-vous d'avoir des droits en lecture et écriture pour tous les fichiers dans le répertoire de données de Zotero. startupError.zoteroVersionIsOlder=Cette version de Zotero est plus ancienne que la version utilisée la dernière fois avec votre base de données. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Cette base de données %1$S nécessite %1$S %2$S ou ultérieur. startupError.zoteroVersionIsOlder.current=Version actuelle : %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Veuillez mettre à niveau avec la dernière version sur %S. startupError.databaseUpgradeError=Erreur de mise à niveau de la base de données date.relative.secondsAgo.one=il y a 1 seconde diff --git a/chrome/locale/hu-HU/zotero/zotero.properties b/chrome/locale/hu-HU/zotero/zotero.properties index 1324f3eba..d6e902f05 100644 --- a/chrome/locale/hu-HU/zotero/zotero.properties +++ b/chrome/locale/hu-HU/zotero/zotero.properties @@ -1005,7 +1005,7 @@ connector.loadInProgress=A Zotero Standalone-t elindult, de nem elérhető. Ha h firstRunGuidance.authorMenu=Zotero lets you specify editors and translators, too. You can turn an author into an editor or translator by selecting from this menu. firstRunGuidance.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document. firstRunGuidance.quickFormatMac=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-↓ to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly.\n\nYou can edit citations directly in the word processor document. -firstRunGuidance.toolbarButton.new=A Zotero megnyitásához kattintásához kattintson ide, vagy használja a %S billentyűparancsot. +firstRunGuidance.toolbarButton.new=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut. firstRunGuidance.toolbarButton.upgrade=A Zotero ikon mostantól a Firefox eszköztárán található. A Zotero megnyitásához kattintson az ikonra, vagy használja a %S gyorsbillentyűt. firstRunGuidance.saveButton=Click this button to save any web page to your Zotero library. On some pages, Zotero will be able to save full details, including author and date. diff --git a/chrome/locale/ja-JP/zotero/zotero.properties b/chrome/locale/ja-JP/zotero/zotero.properties index e92b998e5..685172c78 100644 --- a/chrome/locale/ja-JP/zotero/zotero.properties +++ b/chrome/locale/ja-JP/zotero/zotero.properties @@ -89,9 +89,9 @@ errorReport.advanceMessage=Zotero 開発者へ報告するためには %S を押 errorReport.stepsToReproduce=再現手順: errorReport.expectedResult=期待される結果: errorReport.actualResult=実際の結果: -errorReport.noNetworkConnection=ネットワークへ接続していません。 -errorReport.invalidResponseRepository=レポジトリからの応答が不正です。 -errorReport.repoCannotBeContacted=レポジトリに接触することができません。 +errorReport.noNetworkConnection=ネットワークへ接続していません +errorReport.invalidResponseRepository=レポジトリからの応答が不正です +errorReport.repoCannotBeContacted=レポジトリに接続することができません。 attachmentBasePath.selectDir=基本ディレクトリを選択して下さい。 @@ -108,7 +108,7 @@ attachmentBasePath.clearBasePath.button=基本ディレクトリの設定を消 dataDir.notFound=Zotero データ保存フォルダが見つかりませんでした。 dataDir.previousDir=前のフォルダ: -dataDir.useProfileDir=Firefox プロファイルのフォルダを使用する +dataDir.useProfileDir=%S プロファイルのフォルダを使用する dataDir.selectDir=Zotero のデータ保存フォルダを選択してください dataDir.selectedDirNonEmpty.title=選択されたフォルダは空ではありません dataDir.selectedDirNonEmpty.text=選択されたフォルダは空ではなく、Zoteroのデータ保存フォルダではないようです。\n\nこのフォルダにZoteroのファイルを作成してよろしいですか? @@ -133,9 +133,9 @@ startupError.closeFirefox=もし Firefox 版 Zotero が開いている場合は startupError.databaseCannotBeOpened=Zotero データベースを開くことができません。 startupError.checkPermissions=あなたが Zotero データ保存フォルダ内のすべてのファイルに対して読み取り権限と書き込み権限を持つことを確認してください。 startupError.zoteroVersionIsOlder=このバージョンの Zotero は、最後にあなたのデータベースを使用した Zotero よりも古いバージョンです。 -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=この %1$S データベースは %1$S %2$S 以降 を必要とします。 startupError.zoteroVersionIsOlder.current=現在のバージョン: %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=%S から最新ヴァージョンに更新してください。. startupError.databaseUpgradeError=データベース更新のエラー date.relative.secondsAgo.one=1 秒前 @@ -206,9 +206,9 @@ pane.items.trash.multiple=選択されたアイテムをゴミ箱に移動して pane.items.delete.title=削除 pane.items.delete=選択されたアイテムを削除してよろしいですか? pane.items.delete.multiple=選択されたアイテムを削除してよろしいですか? -pane.items.remove.title=コレクションから取り除く -pane.items.remove=選択されたアイテムをこのコレクションから取り除いてもよろしいですか? -pane.items.remove.multiple=選択された複数のアイテムをこのコレクションから取り除いてもよろしいですか? +pane.items.remove.title=コレクションから除外する +pane.items.remove=選択されたアイテムをこのコレクションから除外してもよろしいですか? +pane.items.remove.multiple=選択された複数のアイテムをこのコレクションから除外してもよろしいですか? pane.items.menu.remove=コレクションからアイテムを取り除く... pane.items.menu.remove.multiple=コレクションから複数のアイテムを取り除く... pane.items.menu.moveToTrash=アイテムをゴミ箱に入れる... @@ -274,7 +274,7 @@ pane.item.attachments.count.zero=添付ファイル(%S): pane.item.attachments.count.singular=添付ファイル(%S): pane.item.attachments.count.plural=添付ファイル(%S): pane.item.attachments.select=ファイルを選択 -pane.item.attachments.PDF.installTools.title=PDFツールがインストールされていません。 +pane.item.attachments.PDF.installTools.title=PDFツールがインストールされていません pane.item.attachments.PDF.installTools.text=この機能を利用するには、Zotero 環境設定において、PDF ツールをまずインストールする必要があります。 pane.item.attachments.filename=ファイル名 pane.item.noteEditor.clickHere=ここをクリック @@ -314,7 +314,7 @@ itemTypes.email=電子メール itemTypes.map=地図 itemTypes.blogPost=ブログ記事 itemTypes.instantMessage=インスタントメッセージ -itemTypes.forumPost=掲示板への書き込み +itemTypes.forumPost=掲示板への投稿 itemTypes.audioRecording=録音 itemTypes.presentation=プレゼンテーション itemTypes.videoRecording=録画 @@ -485,7 +485,7 @@ save.error.cannotAddFilesToCollection=現在選択中のコレクションへは ingester.saveToZotero=Zotero に保存 ingester.saveToZoteroUsing="%S"を使って Zotero に保存する -ingester.saveToZoteroAsWebPageWithSnapshot=ウェブページとしてZoteroに保存する (スナップショット付) +ingester.saveToZoteroAsWebPageWithSnapshot=ウェブページとして Zotero に保存する (スナップショット含む) ingester.saveToZoteroAsWebPageWithoutSnapshot=ウェブページとしてZoteroに保存する(スナップショット無し) ingester.scraping=アイテムを保存しています... ingester.scrapingTo=保存先 @@ -501,7 +501,7 @@ ingester.importReferRISDialog.checkMsg=このサイトについては常に許 ingester.importFile.title=ファイルをインポート ingester.importFile.text=ファイル"%S"をインポートしますか?\n\nアイテムは新しいコレクションへと追加されます。 -ingester.importFile.intoNewCollection=新しいコレクションへ取り込む +ingester.importFile.intoNewCollection=新しいコレクションへインポートする ingester.lookup.performing=所在確認を実行中... ingester.lookup.error=このアイテムの所在確認を実行中にエラーが発生しました。 @@ -768,23 +768,23 @@ integration.citationChanged.description="YES"をクリックすると、他の integration.citationChanged.edit=Zotero がこの出典表記を生成してから、あなたはこれに変更を加えました。編集をするとこの変更内容を消去することになります。続けてもよろしいですか? styles.install.title=引用スタイルをインストールする -styles.install.unexpectedError="%1$S"をインストール中に予期せぬエラーが生じました。 +styles.install.unexpectedError="%1$S"をインストール中に予期せぬエラーが生じました styles.installStyle=スタイル"%1$S"を%2$Sからインストールしますか? styles.updateStyle=既存のスタイル"%1$S"を、%3$S からの"%2$S"で更新しますか? styles.installed=スタイル"%S"が正常にインストールされました。 -styles.installError=%S は有効なスタイル定義ファイルではないようです。 -styles.validationWarning="%S" は有効な CSL 1.0 ではないため、Zotero では正しく動作しない恐れがあります。\n\nそれでも続けますか? +styles.installError=%S は有効なスタイル定義ファイルではありません。 +styles.validationWarning="%S" は有効な CSL 1.0.1 ではないため、Zotero では正しく動作しない恐れがあります。\n\nそれでも続行しますか? styles.installSourceError=%1$S は、 %2$S にある不正 CSLファイル、または存在しない CSL ファイルをソースとして参照しています。 styles.deleteStyle=本当にスタイル "%1$S"を削除してもよろしいですか? styles.deleteStyles=本当に選択されたスタイルを削除してもよろしいですか? styles.abbreviations.title=雑誌略誌名を読み込む -styles.abbreviations.parseError=雑誌略誌名ファイル "%1$S" は正当な JSON ではありません。 -styles.abbreviations.missingInfo=雑誌略誌名ファイル "%1$S" は完全な情報ブロックを特定しません。 +styles.abbreviations.parseError=雑誌略誌名ファイル "%1$S" は有効な JSON ではありません。 +styles.abbreviations.missingInfo=雑誌略誌名ファイル "%1$S" は完全な情報ブロックを特定していません。 sync.sync=同期 sync.cancel=同期をキャンセル -sync.openSyncPreferences=同期の環境設定を開く... +sync.openSyncPreferences=同期の環境設定を開く sync.resetGroupAndSync=グループと同期をリセットする sync.removeGroupsAndSync=グループと同期を取り除く sync.localObject=ローカル(手元)のオブジェクト @@ -800,7 +800,7 @@ sync.error.passwordNotSet=パスワードが指定されていません sync.error.invalidLogin=ユーザーネームまたはパスワードが不正です sync.error.invalidLogin.text=Zotero 同期サーバーはあなたのユーザー名とパスワードを受け付けませんでした。\n \n Zotero 環境設定の同期設定において zotero.org へのログイン情報を正確に入力したかご確認下さい。 sync.error.enterPassword=パスワードを入力してください -sync.error.loginManagerInaccessible=あなたのログイン情報にアクセスできません。 +sync.error.loginManagerInaccessible=Zotero はあなたのログイン情報にアクセスできません。 sync.error.checkMasterPassword=%Sでマスターパスワードを設定している場合、これを正しく入力したか確認してださい。 sync.error.corruptedLoginManager=これも %1$S ログインデータベースが壊れているからかもしれません。確認するためには、%1$Sを閉じて、 あなたの %2$S プロファイルディレクトリから cert8.db、key3.dbと logins.json を除去し、あなたの Zotero ログイン情報をZotero環境設定の同期タブに再入力してください。 sync.error.loginManagerCorrupted1=Zotero はあなたのログイン情報にアクセスすることができません。%S ログインデータベースが壊れているのかもしれません。 @@ -1012,7 +1012,7 @@ firstRunGuidance.saveButton=このボタンをクリックしてどんなウェ styles.bibliography=参考文献目録 styles.editor.save=引用スタイルを保存する styles.editor.warning.noItems=Zoteroのアイテムが選択されていません。 -styles.editor.warning.parseError=スタイルの文法エラー: +styles.editor.warning.parseError=引用スタイルの文法エラー: styles.editor.warning.renderError=出典表記と参考文献目録の生成時にエラー styles.editor.output.individualCitations=個別の出典表記 styles.editor.output.singleCitation=単一の出典表記 (with position "first") diff --git a/chrome/locale/lt-LT/zotero/zotero.properties b/chrome/locale/lt-LT/zotero/zotero.properties index 4f274c0af..e38c48b16 100644 --- a/chrome/locale/lt-LT/zotero/zotero.properties +++ b/chrome/locale/lt-LT/zotero/zotero.properties @@ -133,9 +133,9 @@ startupError.closeFirefox=Jei Firefox naršyklė su Zotero papildiniu atverta, u startupError.databaseCannotBeOpened=Nepavyksta atverti Zotero duomenų bazės. startupError.checkPermissions=Įsitikinkite, ar turite leidimą rašyti ir skaityti failus iš Zotero duomenų katalogo. startupError.zoteroVersionIsOlder=Naudojate Zotero versiją, kuri yra senesnė nei paskutinį kartą su jūsų duomenimis naudotoji. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Ši %1$S duomenų bazė reikalauja %1$S %2$S arba vėlesnės. startupError.zoteroVersionIsOlder.current=Dabartinė versija: %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Prašome atnaujinti iki naujausios versijos nuo %S. startupError.databaseUpgradeError=Klaida atnaujinant duomenų bazę date.relative.secondsAgo.one=prieš 1 sekundę diff --git a/chrome/locale/pl-PL/zotero/zotero.dtd b/chrome/locale/pl-PL/zotero/zotero.dtd index 6c8e06d93..e4d5e74cc 100644 --- a/chrome/locale/pl-PL/zotero/zotero.dtd +++ b/chrome/locale/pl-PL/zotero/zotero.dtd @@ -140,7 +140,7 @@ - + @@ -241,7 +241,7 @@ - + diff --git a/chrome/locale/pl-PL/zotero/zotero.properties b/chrome/locale/pl-PL/zotero/zotero.properties index 6093b8014..31e660422 100644 --- a/chrome/locale/pl-PL/zotero/zotero.properties +++ b/chrome/locale/pl-PL/zotero/zotero.properties @@ -117,7 +117,7 @@ dataDir.selectedDirEmpty.text=Wybrany katalog jest pusty. Aby przenieść istnie dataDir.selectedDirEmpty.useNewDir=Użyć nowego katalogu? dataDir.moveFilesToNewLocation=Upewnij się, że pliki z twojego istniejącego katalogu danych Zotero zostały przeniesione w nowe miejsce, zanim ponownie otworzysz %1$S. dataDir.incompatibleDbVersion.title=Niepasująca wersja bazy danych -dataDir.incompatibleDbVersion.text=The currently selected data directory is not compatible with Zotero Standalone, which can share a database only with Zotero for Firefox 2.1b3 or later.\n\nUpgrade to the latest version of Zotero for Firefox first or select a different data directory for use with Zotero Standalone. +dataDir.incompatibleDbVersion.text=Aktualnie wybrany katalog danych nie jest zgodny z Zotero Standalone, ponieważ może on współdzielić bazy danych tylko z Zotero dla Firefoksa 2.1b3 lub nowszym.\n\nProszę najpierw uaktualnić Zotero dla Firefoksa do najnowszej wersji lub wybrać inny katalog danych do użycia z Zotero Standalone. dataDir.standaloneMigration.title=Znaleziono istniejącą bibliotekę Zotero dataDir.standaloneMigration.description=Wygląda na to, że pierwszy raz używasz %1$S. Czy chcesz aby %1$S zaimportował ustawienia z %2$S i użył twojego istniejącego katalogu danych? dataDir.standaloneMigration.multipleProfiles=%1$S będzie dzielić swój katalog danych z najczęściej ostatnio używanym profilem. @@ -133,9 +133,9 @@ startupError.closeFirefox=Jeśli otwarty jest Firefox z dodatkiem Zotero, prosz startupError.databaseCannotBeOpened=Nie można otworzyć bazy danych Zotero. startupError.checkPermissions=Upewnij się, że masz prawo odczytu oraz zapisu do wszystkich plików w katalogu danych Zotero. startupError.zoteroVersionIsOlder=Ta wersja Zostero jest starsza niż wersja ostatnio użyta z twoją bazą danych. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Ta baza danych %1$S wymaga %1$S w wersji %2$S lub nowszej. startupError.zoteroVersionIsOlder.current=Aktualna wersja: %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Proszę uaktualnić do najnowszej wersji z %S. startupError.databaseUpgradeError=Błąd aktualizacji bazy danych date.relative.secondsAgo.one=1 sekunda temu diff --git a/chrome/locale/sk-SK/zotero/zotero.properties b/chrome/locale/sk-SK/zotero/zotero.properties index de4f5b5aa..514b55f97 100644 --- a/chrome/locale/sk-SK/zotero/zotero.properties +++ b/chrome/locale/sk-SK/zotero/zotero.properties @@ -133,9 +133,9 @@ startupError.closeFirefox=Ak je Firefox s Zoterom otvorený, zatvorte ho prosím startupError.databaseCannotBeOpened=Zotero databázu nie je možné otvoriť. startupError.checkPermissions=Uistite sa, že máte právo čítať aj zapisovať do všetkých súborov v dátovom priečinku Zotera. startupError.zoteroVersionIsOlder=Táto verzia Zotera je staršia než verzia, ktorú ste naposledy použili s vašou databázou. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Táto databáza %1$S vyžaduje %1$S %2$S alebo novšie. startupError.zoteroVersionIsOlder.current=Aktuálna verzia:%S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Aktualizujte, prosím, na najnovšiu verziu zo %S. startupError.databaseUpgradeError=Chyba pri aktualizácii databázy date.relative.secondsAgo.one=pred 1 sekundou diff --git a/chrome/locale/sv-SE/zotero/zotero.properties b/chrome/locale/sv-SE/zotero/zotero.properties index 8c0464ead..14e7014d4 100644 --- a/chrome/locale/sv-SE/zotero/zotero.properties +++ b/chrome/locale/sv-SE/zotero/zotero.properties @@ -133,9 +133,9 @@ startupError.closeFirefox=Om Firefox med Zotero är aktivt så stäng den och st startupError.databaseCannotBeOpened=Zoteros databas kunde inte öppnas. startupError.checkPermissions=Försäkra dig om att du har läs- och skrivrättigheter till alla filer i Zoteros datakatalog. startupError.zoteroVersionIsOlder=Denna Zoteroversion är äldre än den senaste versionen som användes med din databas. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Den här %1$S databasen kräver %1$S %2$S eller senare. startupError.zoteroVersionIsOlder.current=Nuvarande version: %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Uppgradera till den senaste versionen från %S. startupError.databaseUpgradeError=Fel när databasen uppgraderades date.relative.secondsAgo.one=1 sekund sen diff --git a/chrome/locale/tr-TR/zotero/zotero.properties b/chrome/locale/tr-TR/zotero/zotero.properties index 812311ba4..629d31a15 100644 --- a/chrome/locale/tr-TR/zotero/zotero.properties +++ b/chrome/locale/tr-TR/zotero/zotero.properties @@ -133,9 +133,9 @@ startupError.closeFirefox=Eğer Zotero eklentili Firefox'unuz açık ise, lütfe startupError.databaseCannotBeOpened=Zotero veritabanı açılamadı. startupError.checkPermissions=Zotero veri dizinindeki tüm dosyalar için yazma iznine sahip olup olmadığınıza emin olunuz. startupError.zoteroVersionIsOlder=Zotero'nun bu sürümü veritabanınızda en son kullandığınız sürümden daha eskidir. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Bu %1$S veritabanı %1$S %2$S ya da sonraki sürümleri gerektirmektedir startupError.zoteroVersionIsOlder.current=Şimdiki sürüm: %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Lütfen %S adresinden indirerek, sürümünüzü en yenisine yükseltiniz. startupError.databaseUpgradeError=Veritabanı yükseltme hatası date.relative.secondsAgo.one=1 saniye önce diff --git a/chrome/locale/uk-UA/zotero/zotero.properties b/chrome/locale/uk-UA/zotero/zotero.properties index 1fae77507..d58329175 100644 --- a/chrome/locale/uk-UA/zotero/zotero.properties +++ b/chrome/locale/uk-UA/zotero/zotero.properties @@ -133,9 +133,9 @@ startupError.closeFirefox=Якщо Firefox з доповленням Zotero ві startupError.databaseCannotBeOpened=База даних Zotero не може бути відкрита. startupError.checkPermissions=Переконайтеся, що ви маєте дозволи на читання і запис для всіх файлів в каталозі даних Zotero. startupError.zoteroVersionIsOlder=Ця версія Zotero старіша ніж версія, що була використана з цією базою даних останнього разу. -startupError.incompatibleDBVersion=This %1$S database requires %1$S %2$S or later. +startupError.incompatibleDBVersion=Ця база даних %1$S потребує %1$S %2$S або новішого. startupError.zoteroVersionIsOlder.current=Поточна версія: %S -startupError.zoteroVersionIsOlder.upgrade=Please upgrade to the latest version from %S. +startupError.zoteroVersionIsOlder.upgrade=Будь ласка, оновіть до останньої версії з %S. startupError.databaseUpgradeError=Помилка оновлення бази даних date.relative.secondsAgo.one=1 секунда тому From 3afc50bbf6b6c26c4b309a10ad7dded7a73a6c6c Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 8 Feb 2016 23:49:14 -0500 Subject: [PATCH 5/7] Update maxVersion --- install.rdf | 2 +- update.rdf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install.rdf b/install.rdf index 543dcd04b..18de1dc0d 100644 --- a/install.rdf +++ b/install.rdf @@ -25,7 +25,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 31.0 - 44.* + 45.* diff --git a/update.rdf b/update.rdf index 514071073..0dd6e1991 100644 --- a/update.rdf +++ b/update.rdf @@ -12,7 +12,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 31.0 - 44.* + 45.* http://download.zotero.org/extension/zotero.xpi sha1: From 88f1636d0890f89edb6490d9357376ff88397df2 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 10 Feb 2016 03:20:55 -0500 Subject: [PATCH 6/7] Toolbar icon tweaks - Fix spacing on Windows and Linux in latest Firefox versions - Tweak icon colors on Windows and OS X - Adjust Z SVG to take up full height, so Z is a full 16px instead of 14px with slight anti-aliasing - Use generated PNGs instead of SVG for Z toolbar icons, to remove the need for complicated size rules - Add separate platform-specific .svg files that are used by a zotero-build script, make-z-icons, to generate the Z PNGs; the main SVG is still used directly in the menu panel and customization palette, with platform media queries to determine the coloring --- .../content/zotero-platform/mac/overlay.css | 10 +- .../mac/zotero-z-16px-australis.png | Bin 0 -> 712 bytes .../mac/zotero-z-32px-australis.png | Bin 0 -> 1287 bytes .../content/zotero-platform/unix/overlay.css | 21 +-- .../unix/zotero-z-16px-australis.png | Bin 0 -> 761 bytes .../unix/zotero-z-32px-australis.png | Bin 0 -> 1493 bytes .../content/zotero-platform/win/overlay.css | 29 +-- .../win/zotero-z-16px-australis.png | Bin 0 -> 773 bytes .../win/zotero-z-32px-australis.png | Bin 0 -> 1445 bytes .../zotero/zotero-z-32px-australis-mac.svg | 157 ++++++++++++++++ .../zotero/zotero-z-32px-australis-unix.svg | 157 ++++++++++++++++ .../zotero/zotero-z-32px-australis-win.svg | 159 ++++++++++++++++ .../zotero/zotero-z-32px-australis.svg | 171 +++++++++++++++--- chrome/skin/default/zotero/zotero.css | 19 +- 14 files changed, 638 insertions(+), 85 deletions(-) create mode 100644 chrome/content/zotero-platform/mac/zotero-z-16px-australis.png create mode 100644 chrome/content/zotero-platform/mac/zotero-z-32px-australis.png create mode 100644 chrome/content/zotero-platform/unix/zotero-z-16px-australis.png create mode 100644 chrome/content/zotero-platform/unix/zotero-z-32px-australis.png create mode 100644 chrome/content/zotero-platform/win/zotero-z-16px-australis.png create mode 100644 chrome/content/zotero-platform/win/zotero-z-32px-australis.png create mode 100644 chrome/skin/default/zotero/zotero-z-32px-australis-mac.svg create mode 100644 chrome/skin/default/zotero/zotero-z-32px-australis-unix.svg create mode 100644 chrome/skin/default/zotero/zotero-z-32px-australis-win.svg diff --git a/chrome/content/zotero-platform/mac/overlay.css b/chrome/content/zotero-platform/mac/overlay.css index 016661926..10bd317a4 100644 --- a/chrome/content/zotero-platform/mac/overlay.css +++ b/chrome/content/zotero-platform/mac/overlay.css @@ -2,14 +2,6 @@ As of Fx36, the built-in Mac styles don't properly handle a menu-button within a combined button, so we need this ungodly mess. */ -/* Necessary to keep 32px icons from being rendered at full size */ -#zotero-toolbar-main-button[cui-areatype="toolbar"] > .toolbarbutton-icon, -#zotero-toolbar-main-button-single[cui-areatype="toolbar"] > .toolbarbutton-icon, -#zotero-toolbar-save-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-button > .toolbarbutton-icon, -#zotero-toolbar-save-button-single[cui-areatype="toolbar"] > .toolbarbutton-menubutton-button > .toolbarbutton-icon { - height: 16px; -} - #zotero-toolbar-buttons[cui-areatype="toolbar"] > separator, #zotero-toolbar-save-button[cui-areatype="toolbar"]:not(:hover) > .toolbarbutton-menubutton-dropmarker::before, #zotero-toolbar-buttons[cui-areatype="toolbar"]:hover > #zotero-toolbar-save-button { @@ -36,7 +28,7 @@ } #zotero-toolbar-save-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-button { - min-width: 26px; + min-width: 27px; padding-left: 1px; padding-right: 1px; } diff --git a/chrome/content/zotero-platform/mac/zotero-z-16px-australis.png b/chrome/content/zotero-platform/mac/zotero-z-16px-australis.png new file mode 100644 index 0000000000000000000000000000000000000000..97e9279236a71d14ecd0deeea87a8ddf17e0fc14 GIT binary patch literal 712 zcmV;(0yq7MP)s2w)gMk6_UEeed@6R#jEatREn8n!HG-(>{PfB;7Ui#4M-G4 zN>Tx6Od=uz0A7!PYI4-O7qUR+!}0YDKkl1w@z6SUUX z*FTaR6_FH40pL2F&e+!0R^jsUGG}H~RfU1Q0Jr@UbV-Ksp6>MY^kJz~dR?p4mQ^(cK%8^knVFf- zo12@(TrT&WWV?R?{9T)JbaXVnx3{-luh(Cws-J*oXJ=3H`TV{;zlz8Y0IfS3kaXp8`SH%qPN~^!E&@oK znKm-BN2@w%WOfbB*w)Vc=ZZ85Dh_%4vx^)HX4m+e}Dgzh;#)2%q+LEvT{N)N7BUyLjW|h(9FW*z|1U+qNsLwc=%LA zZW0$Vp69u4w=4Z83qWEQ60NAJk?;EhB!>Xp^fYkJF^VEHvk3o%s`hf{96ird0O@`g uBIn$-=Xp?7*Y|;XVP;HLAlVcV0>B?}lP|FhA!w-p000074MO8to3L(LUE|9u}O}i_~ zhm&H`q)yVt<9UaLr|I}RErGkSrFZ9^^Uk|--W@?4Bn5y>OiWx3f*=qPg+mIGu3D|$ zy?OKI6ab0{AFP=~o+jyMv)Qcg`$v^hroGhTg>$ZMt-VDuEh2jW>TLu_S^z_tOeUz+ zYQx4D13(S|pY?jZp3P>501N?$NJbA-Nbb^z$Y461_MLMkUON;5#u)g%?*kYBumhk5 zfB=v@XCY~nQW66n1~>qSQc8?53VK>Oe`uZFFXFeXEs{MT zB!whJge2MNfj-ewy+-Nglq3NHaARX*zXw5Z%k#XH)>;FAbFOdU8#iu@mCNN!KN78x zd<`9d+S#*bzaV);L;{jl8gg_iDgg9_3m0CwcJ11Wj{@9AKtw{4J0$-CP$QWFVB(W# zBM=iai;IhIT)A@PwJ3_ZVUQ%PwY8)Jwh;gj0;tABHqq<@O$6eDH0REpJ9+*3^|zdJ zHi{ypRC`Z5=QuJlQk|Zj{wnS(Ci@_%Ktys6KrL|(wCy}T4!y9j@XpfG(z^hLlu|ZE zZ_Ve($VjzVEPk2G<$goMfFi^u)T#hP#KnJm>1ocKIWxPyzW$yu=1HYg8l7E}K@e=0 zN~QCYlas#!*h0ev>q!ES=xQ!16t=W@AU0IUP}8^Df; z)Vtk=eZdQb!rQlR-~KS2PCw<8ev{AVe*&-yV4dV05xLh2ejo)%>bbeOe7Riy*joDx zfUe-a@82&J3g71Q`5$BOH2@nic)hhY&_@B1dVYTX^_7*CPqfz0Dy0T`fbX3?efqnp zsi~_61qT4#3%pn?zPhrq@|iK_Xdm#}sZ*yePESw&0AN)_)&Sh;2M%;mAl~`QOG`_i zYOSABN)4b(w_9t&6DLkwnwgo|2Pe59BD?*-fet-DQkP1lmzI~8KleQEd8O1K0Mo(d zXpE`P%*=d0J3D&`4`sh2BD?6}CCO+iN>VQ@EF6nvAMXPm9Y22ja-mST2%rq0EFv2K zb^%14e7{rdOG;9a^mDn~Ri)Gm*4iQGob71v07pkhE92wie^jg0yPKPvTjg?jXKQOK z+}_@HQ53a-Z)|Kt%gf8}w-Rd`N(ToAkJM_lfga!hfJ&wEM5R(W=A7G$qNwJabDrlh zlgYH@hG7^5LGUL4pJbTygQl@uL zB3UKrI*sL;r0;p24#Tk55CSwNT>#KZDIJ4!O}5smR4SDsISAk$8drZaf%uNsA|lSY z&Xrn793%+ .toolbarbutton-menubutton-button { padding-left: 0; } @@ -78,7 +64,6 @@ toolbar[id="nav-bar"] #zotero-toolbar-buttons > separator { width: 1px; height: 18px; -moz-margin-end: -1px; - background-image: var(--toolbarbutton-combined-backgroundimage); background-clip: padding-box; background-position: center; background-repeat: no-repeat; @@ -162,10 +147,6 @@ toolbar:not([id="nav-bar"]) #zotero-toolbar-buttons separator { @media (min-resolution: 1.5dppx) { - #zotero-toolbar .toolbarbutton-icon { - width: 16px; - } - #zotero-tb-sync > .toolbarbutton-icon { width: 20px; } diff --git a/chrome/content/zotero-platform/unix/zotero-z-16px-australis.png b/chrome/content/zotero-platform/unix/zotero-z-16px-australis.png new file mode 100644 index 0000000000000000000000000000000000000000..f41c74f530111f1720720e833d67407f04c349e2 GIT binary patch literal 761 zcmVJ$z<~0dmb0#ghceN&-3GV?m345;O@r+`L`F&NE^W`Y0!1mP|MKnO+vC?imm zRs+xgFqb9CJo9vXGCQ%H9RQ*co}CtgnVIDb3&ALNavlq(07=o$gw+v@keaUtj-P(gl)*Bm#&>M@Ow&x9+^3W&KDf=cJrG zm1THLGMxed97#$f_ay}YaX1`yKEHkY1ICqCin8E5T%}sjPit?z`4NEQvj&x<1i%2q zy}iBem-p^{SYPR0D{G2e-nCj$tGQ0dKLlLfJ7=R5s;b!O)H8RKv4oD6$J!{$cloZWDlEyfG*lb{0o(e0JTyrL?fZ9QoCWp zf(1&uZKYIz<4}m>#ADCA_wN0&m^b!}{Tw^OoP|A_H*>$=^Ev08cScYKNdX`S4<0%{ zJ~7r%RmBd4_uhXw|HZY>KK=A502C4SuGzlN8IsYR`|lc^+>!ppk{_fI5NPcZwu! zTqK!@NC!Z%!2rnsKsvH}xUp;3&@I*)E2`hw0=;KZxMFB{DFu)Ma3o!iLO%g3B6Smo zk+sGeW3AZ%15P{vA`HU_Kn*|(Kn7rg0U>FPLPS-JszAPb4UDP~R;*P85Rg=nwS!j; zly9o;K-Qauh$t}FSv%J0TZOVZvGpYo?>*@~9Xwg}jf#-+&sJq4*-w9i0Rr&5(&S%_ zB)k|!VQh?;uKUeTB^)3|zWn0yzA$YJ8Dnm$g#EXn2avt-+G}r<92b!W$v{M;98y&w z0L<*{?89?mZ~z2AqMyQ66#JVnC)pzTe*hWD7=UHB5E~4X#_T)qz4yd_{`+||s;89# z-g|oI=%vW|C*TGH0CE7=OCwjyYdzrs17#uYxpQwnbLp$A#~LF;0RSb~&A9BI-oJLc zb^YO=9r`1?*|5J4`UyCa9ROK*yHsXgmcyJmbLK?`(aX1vPNY^%plZ~p8DQ_cW3jw) z{TC1X_z%ry^AmIjkV9W(`UyZpeEHI?7w$7)Pn!<|7{iSVVUU7MmK_DoEOwW@erV)1hCFj*gDRQ5>r=R@De0<*`KJ z9P_N*I&}ZN?>_cu^PeOy1Na6&OGJwPUfA{^B57ZEVdi)oHeMea9T|&jwM5kfUF<#b zgmaFrv%LJkz0>bM)@=TRLlB$skD*s0q{< zS)EU%c%H4a4<5Mt&qt0N`CBPI58z5EUR0fbLjxqu>C>klr?I~o8=2Y@){~l54Xjb= zQZF<2j=3v3_f6mRm!n6IezaY2;08TF(wsbb@{ug#Z-<8W?5(A>niUOfujT~c%gj4j zc3}U$*<;6!od+-{BJ%(iwi4fzK#BdKLgU|!O^ol2YW12JV?}fjyLZf;%cu9>{=qMg zAOCAloa7Y|S>8&#l0b?5=WVCwM#sl)k85c?v}#2}Wfi-J^96m87t{Ope)#OuPk(?l z>wqYqvhi(~9lB8yXAQ-^D z<^TYp$*$cCOPvQhZFU$%+0>pNdN<`Nvo7-7eKU9Ie*hwqdH*~ZSj$DEmLy4N)L0Ut ztK)SYGy;K$<~9oAG&G5ek^;IZau%JO?YsdXC3&5suUg9u$;gNrsu5MGQty6HMV$Ar zLPNm7T7;X3ivYPs8pm-=vJPMc-ADhRf$|w|K$YG$xM@lv(Cw~XB!r@BtN{=LFzD;O z>Pg5Oso!J_p0(k&A26`C`+Xk{T#xbqxq-EO?UlfJ&z<;@;=QLQ;7s*mJFu3E2=k)7 v .toolbarbutton-menubutton-dropmarker .dropmarker-icon { @@ -46,13 +27,13 @@ toolbar[id="nav-bar"] #zotero-toolbar-buttons #zotero-toolbar-save-button > .too toolbar[id="nav-bar"] #zotero-toolbar-buttons > separator { margin-top: 11px; margin-bottom: 11px; - -moz-margin-end: -3px; + -moz-margin-start: -1px !important; + -moz-margin-end: -3px !important; } toolbar[id="nav-bar"] #zotero-toolbar-buttons > separator, toolbar[id="nav-bar"] #zotero-toolbar-buttons > #zotero-toolbar-save-button > .toolbarbutton-menubutton-dropmarker::before { width: 1px; - background-image: var(--toolbarbutton-combined-backgroundimage); } toolbar[id="nav-bar"] #zotero-toolbar-buttons > #zotero-toolbar-save-button > .toolbarbutton-menubutton-dropmarker::before { diff --git a/chrome/content/zotero-platform/win/zotero-z-16px-australis.png b/chrome/content/zotero-platform/win/zotero-z-16px-australis.png new file mode 100644 index 0000000000000000000000000000000000000000..33e095ed7e0dae80ec1abb2767eac143b0fc451b GIT binary patch literal 773 zcmV+g1N!`lP)a;IZ3K#6w`UEgpK1LJJ{ykd_u2a$5A@Eg*tm3neIx zhiJWoE^(7hHfF!?H{)S6!9il?mlQ6bA(FnOOzE7=Qx$A%s?|b+plF%@T(c&92R3Ru>2<&jd+%tisc94c^u&IB=~ltG~Xc_IQZC;%~2 zW(3Lb<}ajP?Cy5k8~=FkJXMIdl!;nOc|wY>fc}=(K8QLd^PdBR00000NkvXXu0mjf Daa?G7 literal 0 HcmV?d00001 diff --git a/chrome/content/zotero-platform/win/zotero-z-32px-australis.png b/chrome/content/zotero-platform/win/zotero-z-32px-australis.png new file mode 100644 index 0000000000000000000000000000000000000000..b62ed08e31676cf934f20c9b62aa90051ca75b83 GIT binary patch literal 1445 zcmV;W1zP%vP)lqS zR99C&BqG8iD$LBWSgbN0k2eEgBI0bH${8n_*{-dvO|9SjYy*)}g;V`k0-o3Z+mCmd zIZQ-p0A2wBX4XVh9*tI(MZy(P*7}hVAlLP(qtP-VDraWH%zjpd84x0p03upzi?vot z2t~k>!@vN0T0?7X0f-P$0-1Sd6JTZmKxu6Y!G;KeAeO!j$S?^uq_q~ztN@7I{U!3p zFBx$jKKTu~A)x=8KrxJhjV44!cLtaYFO1LvLY192zZ4K~ocmQ$@`w;pNh$L~R8WjD zH0`;v|Hh57mX}|Zb|kzY&IJURnE`mcy}hq1rB)JAxiQ8n5gGzOp6BV4Cr=)NRk6$t zg%$-qivSUM%$%&KsBnmAikTxpe*riV5i^tPx}lz)o_Ay8Q_EMat}Ut-2ft)0WtSuX zzy%No-~*Tl`m&Selb~cW8Sd`xK07**czi`oy)pt2f`I%CE*Q?8>k}OZ4ty1;%(+=U zmw-n^NdQv-WU$bJ)iX0qOiY9h9z1vD-G&IHltKt90B6HP1AX!Rd)mJ}di3zu z!6FTUBs7aakQ)7x`Qi&Zu67?g_9cK} zBKix!KgfjF&mBE4fh>4yYwL$;#=g3yr&f>@w$w@%W+21P?Y`uW=eGWQ;>6n*rIZdc z4+9tjkVIymaqb%>6HOMpt*z~J$~7J9Ha4%)QiUw7B|*$2h)gwn|8`%hdCSwko;r2v z3n7HV%)>-924J!ncu55UaMjk<_FgiX?p(Kd`zmQ!wvr@)*|IbH>bX{%D^^eY-`$S6lCo?+$ zVuA4}2|kwsvZJHp(BC5?hZ~xoDGBZj-fLRLrqOhS2u0nwKft8MTAmXkSYjMDxJg+-&}I*>+8paREepSmq;YWlJR)l z^*oPV*Ueu!kBp3DZMi9G%LBi*tg^C-BDNKRw3HyCVnGVqVZ8K8mn8UA{KMM_H&Ac#5Agdhm`WQ>x^rV#m7(N8S^ z2w~Vaz88%~mjNgXEV++-SB%WX#M0Up#Db&{RO(A1r6egqV1kr$k7E#%hZ$Rr%+XBG ztUCLUH5tLboH|dL=LSbi1O{mx&f4->6VKB4QQimV;*;M{+!ZfEfW^Qr$d+f{U@#Le zT@eN|K#Q~GLLnxE$n}IvDaIJ%InMp6Vx9j2$gDm~ry0ao00000NkvXXu0mjfc*BQ1 literal 0 HcmV?d00001 diff --git a/chrome/skin/default/zotero/zotero-z-32px-australis-mac.svg b/chrome/skin/default/zotero/zotero-z-32px-australis-mac.svg new file mode 100644 index 000000000..1a0b8dbda --- /dev/null +++ b/chrome/skin/default/zotero/zotero-z-32px-australis-mac.svg @@ -0,0 +1,157 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/chrome/skin/default/zotero/zotero-z-32px-australis-unix.svg b/chrome/skin/default/zotero/zotero-z-32px-australis-unix.svg new file mode 100644 index 000000000..f04382843 --- /dev/null +++ b/chrome/skin/default/zotero/zotero-z-32px-australis-unix.svg @@ -0,0 +1,157 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/chrome/skin/default/zotero/zotero-z-32px-australis-win.svg b/chrome/skin/default/zotero/zotero-z-32px-australis-win.svg new file mode 100644 index 000000000..f18df739c --- /dev/null +++ b/chrome/skin/default/zotero/zotero-z-32px-australis-win.svg @@ -0,0 +1,159 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/chrome/skin/default/zotero/zotero-z-32px-australis.svg b/chrome/skin/default/zotero/zotero-z-32px-australis.svg index bd61c3756..8434687ce 100644 --- a/chrome/skin/default/zotero/zotero-z-32px-australis.svg +++ b/chrome/skin/default/zotero/zotero-z-32px-australis.svg @@ -1,8 +1,56 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/chrome/skin/default/zotero/zotero.css b/chrome/skin/default/zotero/zotero.css index 884aadd01..eb1b8d562 100644 --- a/chrome/skin/default/zotero/zotero.css +++ b/chrome/skin/default/zotero/zotero.css @@ -32,7 +32,14 @@ #zotero-toolbar-main-button, #zotero-toolbar-main-button-single { - list-style-image: url("chrome://zotero/skin/zotero-z-32px-australis.svg"); + list-style-image: url("chrome://zotero-platform/content/zotero-z-16px-australis.png"); +} + +@media (min-resolution: 1.5dppx) { + #zotero-toolbar-main-button, + #zotero-toolbar-main-button-single { + list-style-image: url("chrome://zotero-platform/content/zotero-z-32px-australis.png"); + } } #zotero-toolbar-save-button, @@ -40,6 +47,13 @@ list-style-image: url("chrome://zotero/skin/treeitem-webpage.png"); } +#zotero-toolbar-main-button[cui-areatype="menu-panel"], +#zotero-toolbar-main-button-single[cui-areatype="menu-panel"], +toolbarpaletteitem[place="palette"] #zotero-toolbar-main-button, +toolbarpaletteitem[place="palette"] #zotero-toolbar-main-button-single { + list-style-image: url("chrome://zotero/skin/zotero-z-32px-australis.svg"); +} + #zotero-toolbar-save-button[cui-areatype="menu-panel"], #zotero-toolbar-save-button-single[cui-areatype="menu-panel"], toolbarpaletteitem[place="palette"] #zotero-toolbar-save-button, @@ -48,9 +62,6 @@ toolbarpaletteitem[place="palette"] #zotero-toolbar-save-button-single { } /* Show single icon for combo buttons in palette */ -toolbarpaletteitem[place="palette"] #zotero-toolbar-main-button { - list-style-image: url("chrome://zotero/skin/zotero-z-32px-australis.svg"); -} toolbarpaletteitem[place="palette"] #zotero-toolbar-buttons separator, toolbarpaletteitem[place="palette"] #zotero-toolbar-buttons #zotero-toolbar-save-button { display:none; From 5f3313d13282f38a4c31bb07e3955f00d8b828aa Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 10 Feb 2016 04:52:25 -0500 Subject: [PATCH 7/7] Restore proper sizing of toolbar icons on HiDPI Windows/Linux I guess the idea that switching to PNGs obviated the need for this was wishful thinking (though it doesn't seem to be necessary for the single buttons anymore on Linux, and it's no longer necessary on OS X, which has generally saner styling in Firefox). --- chrome/content/zotero-platform/unix/overlay.css | 8 ++++++++ chrome/content/zotero-platform/win/overlay.css | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/chrome/content/zotero-platform/unix/overlay.css b/chrome/content/zotero-platform/unix/overlay.css index 755a43c02..d858ce096 100644 --- a/chrome/content/zotero-platform/unix/overlay.css +++ b/chrome/content/zotero-platform/unix/overlay.css @@ -9,6 +9,14 @@ /* * Nav bar */ +toolbar[id="nav-bar"] #zotero-toolbar-main-button .toolbarbutton-icon { + width: 28px; +} + +toolbar[id="nav-bar"] #zotero-toolbar-save-button .toolbarbutton-icon { + width: 30px; +} + toolbar[id="nav-bar"] #zotero-toolbar-buttons #zotero-toolbar-main-button { margin-right: -1px; padding: 0; /* avoid shift on :active */ diff --git a/chrome/content/zotero-platform/win/overlay.css b/chrome/content/zotero-platform/win/overlay.css index a292230a4..d27d45ec7 100644 --- a/chrome/content/zotero-platform/win/overlay.css +++ b/chrome/content/zotero-platform/win/overlay.css @@ -10,15 +10,25 @@ * Nav bar */ toolbar[id="nav-bar"] #zotero-toolbar-main-button .toolbarbutton-icon { + width: 30px; /* 16 + 1 + 1 + 6 + 6 */ padding-left: 6px !important; padding-right: 6px !important; } toolbar[id="nav-bar"] #zotero-toolbar-save-button .toolbarbutton-icon { + width: 29px; /* 16 + 6 + 6 + 1 */ padding-left: 6px !important; padding-right: 6px !important; } +toolbar[id="nav-bar"] #zotero-toolbar-main-button-single .toolbarbutton-icon { + width: 32px; +} + +toolbar[id="nav-bar"] #zotero-toolbar-save-button-single .toolbarbutton-icon { + width: 31px; /* Compensate for border on only one side */ +} + toolbar[id="nav-bar"] #zotero-toolbar-buttons #zotero-toolbar-save-button > .toolbarbutton-menubutton-dropmarker .dropmarker-icon { padding-left: 4px; padding-right: 4px;