From f73e45a5dccfb43d774031f5466261ccf8dd189b Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 22 Jan 2010 06:48:31 +0000 Subject: [PATCH] Restore Quick Start Guide item for new installations --- chrome/content/zotero/xpcom/schema.js | 21 ++++++++------------ chrome/locale/af-ZA/zotero/zotero.properties | 2 -- chrome/locale/ar/zotero/zotero.properties | 2 -- chrome/locale/bg-BG/zotero/zotero.properties | 2 -- chrome/locale/ca-AD/zotero/zotero.properties | 2 -- chrome/locale/cs-CZ/zotero/zotero.properties | 2 -- chrome/locale/da-DK/zotero/zotero.properties | 2 -- chrome/locale/de-AT/zotero/zotero.properties | 2 -- chrome/locale/de-CH/zotero/zotero.properties | 2 -- chrome/locale/de-DE/zotero/zotero.properties | 2 -- chrome/locale/el-GR/zotero/zotero.properties | 2 -- chrome/locale/en-US/zotero/zotero.properties | 4 ++-- chrome/locale/es-ES/zotero/zotero.properties | 2 -- chrome/locale/et-EE/zotero/zotero.properties | 2 -- chrome/locale/fi-FI/zotero/zotero.properties | 2 -- chrome/locale/fr-FR/zotero/zotero.properties | 2 -- chrome/locale/gl-ES/zotero/zotero.properties | 2 -- chrome/locale/he-IL/zotero/zotero.properties | 2 -- chrome/locale/hr-HR/zotero/zotero.properties | 2 -- chrome/locale/hu-HU/zotero/zotero.properties | 2 -- chrome/locale/is-IS/zotero/zotero.properties | 2 -- chrome/locale/it-IT/zotero/zotero.properties | 2 -- chrome/locale/ja-JP/zotero/zotero.properties | 2 -- chrome/locale/ko-KR/zotero/zotero.properties | 2 -- chrome/locale/mn-MN/zotero/zotero.properties | 2 -- chrome/locale/nb-NO/zotero/zotero.properties | 2 -- chrome/locale/nl-NL/zotero/zotero.properties | 2 -- chrome/locale/pl-PL/zotero/zotero.properties | 2 -- chrome/locale/pt-BR/zotero/zotero.properties | 2 -- chrome/locale/pt-PT/zotero/zotero.properties | 2 -- chrome/locale/ro-RO/zotero/zotero.properties | 2 -- chrome/locale/ru-RU/zotero/zotero.properties | 2 -- chrome/locale/sk-SK/zotero/zotero.properties | 2 -- chrome/locale/sl-SI/zotero/zotero.properties | 2 -- chrome/locale/sr-RS/zotero/zotero.properties | 2 -- chrome/locale/sv-SE/zotero/zotero.properties | 2 -- chrome/locale/th-TH/zotero/zotero.properties | 2 -- chrome/locale/tr-TR/zotero/zotero.properties | 2 -- chrome/locale/vi-VN/zotero/zotero.properties | 2 -- chrome/locale/zh-CN/zotero/zotero.properties | 2 -- chrome/locale/zh-TW/zotero/zotero.properties | 2 -- 41 files changed, 10 insertions(+), 93 deletions(-) diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js index 2928234e5a..c5f4be9034 100644 --- a/chrome/content/zotero/xpcom/schema.js +++ b/chrome/content/zotero/xpcom/schema.js @@ -1038,15 +1038,14 @@ Zotero.Schema = new function(){ _updateDBVersion('triggers', _getSchemaSQLVersion('triggers')); if (!Zotero.Schema.skipDefaultData) { - /* // Quick Start Guide web page item - var sql = "INSERT INTO items VALUES(1, 13, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, NULL, 'ABCD1234')"; + var sql = "INSERT INTO items VALUES(1, 13, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, NULL, 'ABCD2345')"; Zotero.DB.query(sql); var sql = "INSERT INTO itemDataValues VALUES (1, ?)"; - Zotero.DB.query(sql, Zotero.localeJoin(["Zotero", "\u2014", Zotero.getString('install.quickStartGuide')])); + Zotero.DB.query(sql, Zotero.getString('install.quickStartGuide')); var sql = "INSERT INTO itemData VALUES (1, 110, 1)"; Zotero.DB.query(sql); - var sql = "INSERT INTO itemDataValues VALUES (2, 'http://www.zotero.org/support/quick_start_guide')"; + var sql = "INSERT INTO itemDataValues VALUES (2, 'http://zotero.org/support/quick_start_guide')"; Zotero.DB.query(sql); var sql = "INSERT INTO itemData VALUES (1, 1, 2)"; Zotero.DB.query(sql); @@ -1058,24 +1057,20 @@ Zotero.Schema = new function(){ // CHNM as creator var sql = "INSERT INTO creatorData VALUES (1, '', 'Center for History and New Media', '', 1, NULL)"; Zotero.DB.query(sql); - var sql = "INSERT INTO creators VALUES (1, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, NULL, 'ABCD1234')"; + var sql = "INSERT INTO creators VALUES (1, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, NULL, 'ABCD2345')"; Zotero.DB.query(sql); var sql = "INSERT INTO itemCreators VALUES (1, 1, 1, 0)"; Zotero.DB.query(sql); // Welcome note - var sql = "INSERT INTO items VALUES(2, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, NULL, 'ABCD2345')"; + var sql = "INSERT INTO items VALUES(2, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, NULL, 'ABCD3456')"; Zotero.DB.query(sql); var welcomeTitle = Zotero.getString('install.quickStartGuide.message.welcome'); - var welcomeMsg = '

' + Zotero.localeJoin([ - welcomeTitle, Zotero.getString('install.quickStartGuide.message.clickViewPage') - ]) - + '

' - + Zotero.getString('install.quickStartGuide.message.thanks') - + '

'; + var welcomeMsg = '

' + welcomeTitle + '

' + + '

' + Zotero.getString('install.quickStartGuide.message.view') + '

' + + '

' + Zotero.getString('install.quickStartGuide.message.thanks') + '

'; var sql = "INSERT INTO itemNotes VALUES (2, 1, ?, ?)"; Zotero.DB.query(sql, [welcomeMsg, welcomeTitle]); - */ } Zotero.DB.commitTransaction(); diff --git a/chrome/locale/af-ZA/zotero/zotero.properties b/chrome/locale/af-ZA/zotero/zotero.properties index 0fe87cd905..61d5ab66c0 100644 --- a/chrome/locale/af-ZA/zotero/zotero.properties +++ b/chrome/locale/af-ZA/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/ar/zotero/zotero.properties b/chrome/locale/ar/zotero/zotero.properties index 876cf867ca..cd3a721331 100644 --- a/chrome/locale/ar/zotero/zotero.properties +++ b/chrome/locale/ar/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=دليل الإستخدام السريع install.quickStartGuide.message.welcome=مرحباً بك في زوتيرو -install.quickStartGuide.message.clickViewPage=انقر على زر "عرض الصفحة" في الأعلى لزيارة دليل الإستخدام السريع وتعلم كيفية البدء في جمع، وتنظيم، وتوثيق أبحاثك. install.quickStartGuide.message.thanks=شكراً لتنصيبك لِزوتيرو upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/bg-BG/zotero/zotero.properties b/chrome/locale/bg-BG/zotero/zotero.properties index be40729a76..88cb827d75 100644 --- a/chrome/locale/bg-BG/zotero/zotero.properties +++ b/chrome/locale/bg-BG/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Операция на Зотеро е активна general.operationInProgress.waitUntilFinished=Моля изчакайте докато приключи. general.operationInProgress.waitUntilFinishedAndTryAgain=Моля изчакайте докато приключи и опитайте отново. -install.quickStartGuide=Кратко ръководство за начинаещи install.quickStartGuide.message.welcome=Добре дошли в Зотеро! -install.quickStartGuide.message.clickViewPage=Натиснете бутона "Разглеждане на страницата" за да посетите краткото ръководство за начинаещи и научите как да започнете да събирате, управлявате и цитирате вашите литературни източници. install.quickStartGuide.message.thanks=Благодаря, че инсталирахте Зотеро. upgrade.failed.title=Надграждането не успя diff --git a/chrome/locale/ca-AD/zotero/zotero.properties b/chrome/locale/ca-AD/zotero/zotero.properties index 2ab9b3055c..eee7d3f391 100644 --- a/chrome/locale/ca-AD/zotero/zotero.properties +++ b/chrome/locale/ca-AD/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Guia d'inici ràpid install.quickStartGuide.message.welcome=Benvingut a Zotero -install.quickStartGuide.message.clickViewPage=Clica el botó "Veure la pàgina" per visitar la nostra guia d'inici ràpid i aprendre com començar a col·leccionar, gestionar i citar la teva recerca. install.quickStartGuide.message.thanks=Gràcies per instal·lar Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/cs-CZ/zotero/zotero.properties b/chrome/locale/cs-CZ/zotero/zotero.properties index f70603e4b5..ecf9fa2afe 100644 --- a/chrome/locale/cs-CZ/zotero/zotero.properties +++ b/chrome/locale/cs-CZ/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Právě probíhá operace se Zoterem. general.operationInProgress.waitUntilFinished=Počkejte prosím dokud neskončí. general.operationInProgress.waitUntilFinishedAndTryAgain=Počkejte prosím dokud neskončí a poté to zkuste znovu. -install.quickStartGuide=Rychlý průvodce install.quickStartGuide.message.welcome=Vítejte v Zotero! -install.quickStartGuide.message.clickViewPage=Pro zobrazení našeho Rychlého průvodce klikněte výše na tlačí­tko "Prohlédnout stránku" a naučte se jak začít získávat a spravovat citace a následně citovat Váš výzkum. install.quickStartGuide.message.thanks=Děkujeme, že jste si nainstalovali Zotero. upgrade.failed.title=Aktualizace selhala diff --git a/chrome/locale/da-DK/zotero/zotero.properties b/chrome/locale/da-DK/zotero/zotero.properties index c5113d9310..ae6faa348b 100644 --- a/chrome/locale/da-DK/zotero/zotero.properties +++ b/chrome/locale/da-DK/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/de-AT/zotero/zotero.properties b/chrome/locale/de-AT/zotero/zotero.properties index 38c7a23c1e..379752af07 100644 --- a/chrome/locale/de-AT/zotero/zotero.properties +++ b/chrome/locale/de-AT/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/de-CH/zotero/zotero.properties b/chrome/locale/de-CH/zotero/zotero.properties index 4765174a4b..dae14a1dc2 100644 --- a/chrome/locale/de-CH/zotero/zotero.properties +++ b/chrome/locale/de-CH/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/de-DE/zotero/zotero.properties b/chrome/locale/de-DE/zotero/zotero.properties index c69a572f23..58ce2d0c47 100644 --- a/chrome/locale/de-DE/zotero/zotero.properties +++ b/chrome/locale/de-DE/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Zotero ist beschäftigt. general.operationInProgress.waitUntilFinished=Bitte warten Sie. general.operationInProgress.waitUntilFinishedAndTryAgain=Bitte warten Sie und versuchen Sie es dann erneut. -install.quickStartGuide=Schnelleinstieg install.quickStartGuide.message.welcome=Willkommen bei Zotero! -install.quickStartGuide.message.clickViewPage=Klicken Sie auf den "Seite anzeigen"-Button, um zu unserem Schnelleinstieg zu gelangen. Dort lernen Sie, wie Sie Ihre Quellen sammeln, verwalten und zitieren. install.quickStartGuide.message.thanks=Vielen Dank, dass Sie Zotero installiert haben. upgrade.failed.title=Upgrade fehlgeschlagen diff --git a/chrome/locale/el-GR/zotero/zotero.properties b/chrome/locale/el-GR/zotero/zotero.properties index 0fe87cd905..61d5ab66c0 100644 --- a/chrome/locale/el-GR/zotero/zotero.properties +++ b/chrome/locale/el-GR/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/en-US/zotero/zotero.properties b/chrome/locale/en-US/zotero/zotero.properties index 822423026c..ed2e7b8d41 100644 --- a/chrome/locale/en-US/zotero/zotero.properties +++ b/chrome/locale/en-US/zotero/zotero.properties @@ -38,9 +38,9 @@ general.operationInProgress = A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished = Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain = Please wait until it has finished and try again. -install.quickStartGuide = Quick Start Guide +install.quickStartGuide = Zotero Quick Start Guide install.quickStartGuide.message.welcome = Welcome to Zotero! -install.quickStartGuide.message.clickViewPage = Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. +install.quickStartGuide.message.view = View the Quick Start Guide to learn how to begin collecting, managing, citing, and sharing your research sources. install.quickStartGuide.message.thanks = Thanks for installing Zotero. upgrade.failed.title = Upgrade Failed diff --git a/chrome/locale/es-ES/zotero/zotero.properties b/chrome/locale/es-ES/zotero/zotero.properties index 6c23416aae..e95646781b 100644 --- a/chrome/locale/es-ES/zotero/zotero.properties +++ b/chrome/locale/es-ES/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Una operación de Zotero se encuentra en progreso. general.operationInProgress.waitUntilFinished=Espera hasta que termine. general.operationInProgress.waitUntilFinishedAndTryAgain=Espera hasta que termine y prueba de nuevo. -install.quickStartGuide=Guía rápida install.quickStartGuide.message.welcome=¡Bienvenido a Zotero! -install.quickStartGuide.message.clickViewPage=Pulsa el botón "Ver página" para visitar nuestra guía rápida y ver cómo empezar a recolectar, gestionar, y citar tu investigación. install.quickStartGuide.message.thanks=Gracias por instalar Zotero. upgrade.failed.title=Ha fallado la actualización diff --git a/chrome/locale/et-EE/zotero/zotero.properties b/chrome/locale/et-EE/zotero/zotero.properties index 0fe87cd905..61d5ab66c0 100644 --- a/chrome/locale/et-EE/zotero/zotero.properties +++ b/chrome/locale/et-EE/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/fi-FI/zotero/zotero.properties b/chrome/locale/fi-FI/zotero/zotero.properties index 16c12dbbdf..323656179c 100644 --- a/chrome/locale/fi-FI/zotero/zotero.properties +++ b/chrome/locale/fi-FI/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Tervetuloa Zoteroon! -install.quickStartGuide.message.clickViewPage=Napsauta yläpuolelta painiketta "Katso sivua" tutustuaksesi Pika-aloitusoppaaseemme ja oppiaksesi kuinka kokoat ja järjestelet tutkimuksesi lähdeviitteineen. install.quickStartGuide.message.thanks=Kiitos että asensit Zoteron. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/fr-FR/zotero/zotero.properties b/chrome/locale/fr-FR/zotero/zotero.properties index ee7e0e78af..cec8bcee13 100644 --- a/chrome/locale/fr-FR/zotero/zotero.properties +++ b/chrome/locale/fr-FR/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Une opération Zotero est actuellement en cours. general.operationInProgress.waitUntilFinished=Veuillez attendre jusqu'à ce qu'elle soit terminée. general.operationInProgress.waitUntilFinishedAndTryAgain=Veuillez attendre jusqu'à ce qu'elle soit terminée et réessayez. -install.quickStartGuide=Guide rapide pour débuter install.quickStartGuide.message.welcome=Bienvenue dans Zotero ! -install.quickStartGuide.message.clickViewPage=Cliquez sur le bouton "Afficher la page" ci-dessus pour consulter notre guide rapide et apprendre à collecter, gérer et citer vos recherches. install.quickStartGuide.message.thanks=Merci d'avoir installé Zotero. upgrade.failed.title=La mise à niveau a échoué. diff --git a/chrome/locale/gl-ES/zotero/zotero.properties b/chrome/locale/gl-ES/zotero/zotero.properties index 2dda820181..03fdea7aec 100644 --- a/chrome/locale/gl-ES/zotero/zotero.properties +++ b/chrome/locale/gl-ES/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Está en marcha unha operación Zotero general.operationInProgress.waitUntilFinished=Por favor, agarde ata que teña terminado. general.operationInProgress.waitUntilFinishedAndTryAgain=Por favor, agarde ata que teña acabado e ténteo de novo. -install.quickStartGuide=Guía de Inicio Rápido install.quickStartGuide.message.welcome=Benvido a Zotero! -install.quickStartGuide.message.clickViewPage=Prema no botón "Ver Páxina" de arriba para visitar a nosa Guía de Inicio Rápido e aprender como comezar a recollida, xestión, e a citar referencias da súa investigación. install.quickStartGuide.message.thanks=Grazas por instalar Zotero. upgrade.failed.title=Non se puido actualizar diff --git a/chrome/locale/he-IL/zotero/zotero.properties b/chrome/locale/he-IL/zotero/zotero.properties index caacef03d0..7a8e15edda 100644 --- a/chrome/locale/he-IL/zotero/zotero.properties +++ b/chrome/locale/he-IL/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=!Zotero-ברוכים הבאים ל -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/hr-HR/zotero/zotero.properties b/chrome/locale/hr-HR/zotero/zotero.properties index 0fe87cd905..61d5ab66c0 100644 --- a/chrome/locale/hr-HR/zotero/zotero.properties +++ b/chrome/locale/hr-HR/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/hu-HU/zotero/zotero.properties b/chrome/locale/hu-HU/zotero/zotero.properties index d7e7619cad..d556f05d5d 100644 --- a/chrome/locale/hu-HU/zotero/zotero.properties +++ b/chrome/locale/hu-HU/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero dolgozik. general.operationInProgress.waitUntilFinished=Kérjük várjon, amíg a művelet befejeződik. general.operationInProgress.waitUntilFinishedAndTryAgain=Kérjük várjon, amíg a művelet befejeződik, és próbálja meg újra. -install.quickStartGuide=Használati útmutató install.quickStartGuide.message.welcome=Üdvözli a Zotero! -install.quickStartGuide.message.clickViewPage=Az Oldal megtekintése gombra kattintva elolvashatja a Használati útmutatót. A dokumentum elmagyarázza, hogyan gyűjthet és rendszerezhet hivatkozásokat, illetve hogy hogyan használhatja fel a hivatkozásokat kutatása során. install.quickStartGuide.message.thanks=Köszönjük, hogy telepítette a Zoterot. upgrade.failed.title=A frissítés sikertelen diff --git a/chrome/locale/is-IS/zotero/zotero.properties b/chrome/locale/is-IS/zotero/zotero.properties index 53e668257e..fc2339a761 100644 --- a/chrome/locale/is-IS/zotero/zotero.properties +++ b/chrome/locale/is-IS/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/it-IT/zotero/zotero.properties b/chrome/locale/it-IT/zotero/zotero.properties index b876730f91..d635740c76 100644 --- a/chrome/locale/it-IT/zotero/zotero.properties +++ b/chrome/locale/it-IT/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Cenni preliminari install.quickStartGuide.message.welcome=Benvenuti su Zotero. -install.quickStartGuide.message.clickViewPage=Premere il pulsante Visualizza pagina per visualizzare la pagina dei Cenni preliminari contenente informazioni sull'uso delle collezioni, dei metodi di gestione e di citazione delle ricerche effettuate con Zotero. install.quickStartGuide.message.thanks=Grazie per aver installato Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/ja-JP/zotero/zotero.properties b/chrome/locale/ja-JP/zotero/zotero.properties index 8b898320ab..2f47fc8e51 100644 --- a/chrome/locale/ja-JP/zotero/zotero.properties +++ b/chrome/locale/ja-JP/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=クィック・スタート・ガイド install.quickStartGuide.message.welcome=Zoteroにようこそ! -install.quickStartGuide.message.clickViewPage=クィック・スタート・ガイドのページに行くために上の「ページを表示」のボタンをクリックして、あなたのリサーチの収集・管理・引用の方法を見てください。 install.quickStartGuide.message.thanks=Zoteroをインストールしていただいてありがとうございました。 upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/ko-KR/zotero/zotero.properties b/chrome/locale/ko-KR/zotero/zotero.properties index ab1a0da168..91e2a66c04 100644 --- a/chrome/locale/ko-KR/zotero/zotero.properties +++ b/chrome/locale/ko-KR/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=끝날때까지 기다려주세요. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=빠른 시작 길잡이 install.quickStartGuide.message.welcome=Zotero 사용을 환영합니다! -install.quickStartGuide.message.clickViewPage=빠른 시작 길잡이 페이지에 방문해 "페이지 표시" 버튼을 클릭하십시오. 연구를 수집하고, 관리하고, 인용을 어떻게 시작하는지 방법을 배울 수 있을 것입니다. install.quickStartGuide.message.thanks=Zotero를 설치해 주셔서 감사합니다. upgrade.failed.title=업그레이드 실패 diff --git a/chrome/locale/mn-MN/zotero/zotero.properties b/chrome/locale/mn-MN/zotero/zotero.properties index b74e99d5ef..e865951aa0 100644 --- a/chrome/locale/mn-MN/zotero/zotero.properties +++ b/chrome/locale/mn-MN/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Зотерод тавтай морил! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Зотеро суулгасанд баярлалаа. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/nb-NO/zotero/zotero.properties b/chrome/locale/nb-NO/zotero/zotero.properties index ce0410543f..b2e9fee3f9 100644 --- a/chrome/locale/nb-NO/zotero/zotero.properties +++ b/chrome/locale/nb-NO/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Rask innføring install.quickStartGuide.message.welcome=Velkommen til Zotero! -install.quickStartGuide.message.clickViewPage=Klikk "Vis side"-knappen over for å finne Hurtigstartguiden og lær hvordan du kan samle inn, håndtere og sitere forskningen din. install.quickStartGuide.message.thanks=Takk for at du installerte Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/nl-NL/zotero/zotero.properties b/chrome/locale/nl-NL/zotero/zotero.properties index 6885c49975..cc8dab7af9 100644 --- a/chrome/locale/nl-NL/zotero/zotero.properties +++ b/chrome/locale/nl-NL/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Zotero is bezig. general.operationInProgress.waitUntilFinished=Wacht tot Zotero klaar is. general.operationInProgress.waitUntilFinishedAndTryAgain=Wacht tot Zotero klaar is en probeer het opnieuw. -install.quickStartGuide=Beknopte handleiding install.quickStartGuide.message.welcome=Welkom bij Zotero! -install.quickStartGuide.message.clickViewPage=Klik op de "Pagina tonen"-knop om de Beknopte handleiding te bekijken en leer hoe u kunt beginnen met verzamelen, organiseren en citeren. install.quickStartGuide.message.thanks=Bedankt voor het installeren van Zotero. upgrade.failed.title=Opwaarderen is mislukt diff --git a/chrome/locale/pl-PL/zotero/zotero.properties b/chrome/locale/pl-PL/zotero/zotero.properties index c9dd4e03fd..298588be57 100644 --- a/chrome/locale/pl-PL/zotero/zotero.properties +++ b/chrome/locale/pl-PL/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Przewodnik "Szybki start" install.quickStartGuide.message.welcome=Witaj w Zotero! -install.quickStartGuide.message.clickViewPage=Naciśnij znajdujący się powyżej przycisk "Wyświetl stronę", aby przejść do naszego przewodnika "Szybki start" i dowiedzieć się jak rozpocząć zbieranie, zarządzanie i używanie swoich zasobów wyszukiwania. install.quickStartGuide.message.thanks=Dziękujemy za zainstalowanie Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/pt-BR/zotero/zotero.properties b/chrome/locale/pt-BR/zotero/zotero.properties index 5a8894a2a8..51b2c647b8 100644 --- a/chrome/locale/pt-BR/zotero/zotero.properties +++ b/chrome/locale/pt-BR/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Quick Start Guide install.quickStartGuide.message.welcome=Welcome to Zotero! -install.quickStartGuide.message.clickViewPage=Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research. install.quickStartGuide.message.thanks=Thanks for installing Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/pt-PT/zotero/zotero.properties b/chrome/locale/pt-PT/zotero/zotero.properties index 5ead293f89..b61a7cb5b6 100644 --- a/chrome/locale/pt-PT/zotero/zotero.properties +++ b/chrome/locale/pt-PT/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Está em curso uma operação do Zotero. general.operationInProgress.waitUntilFinished=Por favor espere que termine. general.operationInProgress.waitUntilFinishedAndTryAgain=Por favor espere que termine e tente de novo. -install.quickStartGuide=Guia de Iniciação Rápida install.quickStartGuide.message.welcome=Bem-vindo ao Zotero! -install.quickStartGuide.message.clickViewPage=Carregue no botão "Ver Página" acima para ver o Guia de Iniciação Rápida e aprender a recolher, gerir e citar as suas referências. install.quickStartGuide.message.thanks=Obrigado por instalar o Zotero. upgrade.failed.title=Actualização Falhou diff --git a/chrome/locale/ro-RO/zotero/zotero.properties b/chrome/locale/ro-RO/zotero/zotero.properties index ac8f5f86ab..7f59f7e3d0 100644 --- a/chrome/locale/ro-RO/zotero/zotero.properties +++ b/chrome/locale/ro-RO/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=O operațiune Zotero este în momentul de față în general.operationInProgress.waitUntilFinished=Te rog să aștepți până se încheie. general.operationInProgress.waitUntilFinishedAndTryAgain=Te rog așteaptă până se încheie, apoi încearcă din nou. -install.quickStartGuide=Ghid rapid install.quickStartGuide.message.welcome=Bine ai venit la Zotero! -install.quickStartGuide.message.clickViewPage=Fă clic pe butonul „Vizualizare pagină”, situat mai sus, pentru a vizita Ghidul nostru rapid și pentru a învăța cum să începi colectarea, utilizarea și citarea în munca ta de cercetare. install.quickStartGuide.message.thanks=Mulțumim pentru că ai instalat Zotero. upgrade.failed.title=Actualizare eșuată diff --git a/chrome/locale/ru-RU/zotero/zotero.properties b/chrome/locale/ru-RU/zotero/zotero.properties index 267ad676b1..0b87fcfdc7 100644 --- a/chrome/locale/ru-RU/zotero/zotero.properties +++ b/chrome/locale/ru-RU/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=В настоящий момент Zotero выпол general.operationInProgress.waitUntilFinished=Пожалуйста, подождите, пока оно закончится. general.operationInProgress.waitUntilFinishedAndTryAgain=Пожалуйста, подождите, пока оно закончится, и попробуйте снова. -install.quickStartGuide=Первые Шаги в Zotero install.quickStartGuide.message.welcome=Добро Пожаловать! -install.quickStartGuide.message.clickViewPage=Нажмите выше кнопку "Посмотреть Страницу", чтобы перейти в раздел "Первые Шаги в Zotero" и научиться собирать, управлять и вставлять цитаты в ваше исследование. install.quickStartGuide.message.thanks=Спасибо за установку Zotero. upgrade.failed.title=Обновление Не Удалось. diff --git a/chrome/locale/sk-SK/zotero/zotero.properties b/chrome/locale/sk-SK/zotero/zotero.properties index 5f35c3a313..ada12a41d8 100644 --- a/chrome/locale/sk-SK/zotero/zotero.properties +++ b/chrome/locale/sk-SK/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Rýchly sprievodca install.quickStartGuide.message.welcome=Vitajte v Zotere! -install.quickStartGuide.message.clickViewPage=Pre zobrazenie Rýchleho sprievodcu kliknite na hore tlačidlo "Prezrieť stránku" a naučte sa ako začať získavať a spravovať citácie a ako ich následne použiť pri vašom výskume. install.quickStartGuide.message.thanks=Ďakujeme, že ste si nainštalovali Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/sl-SI/zotero/zotero.properties b/chrome/locale/sl-SI/zotero/zotero.properties index cf46a69ff0..798b638d32 100644 --- a/chrome/locale/sl-SI/zotero/zotero.properties +++ b/chrome/locale/sl-SI/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Trenutno je v teku operacija Zotero. general.operationInProgress.waitUntilFinished=Počakajte, da se dokonča. general.operationInProgress.waitUntilFinishedAndTryAgain=Počakajte, da se dokonča, in poskusite znova. -install.quickStartGuide=Hitri vodnik install.quickStartGuide.message.welcome=Dobrodošli v Zotero! -install.quickStartGuide.message.clickViewPage=Kliknite zgornji gumb "Pokaži stran", če želite obiskati naš Hitri vodnik in se naučiti, kako začeti zbirati, upravljati in citirati svoje raziskovanje. install.quickStartGuide.message.thanks=Hvala, ker ste namestili Zotero. upgrade.failed.title=Posodobitev ni uspela diff --git a/chrome/locale/sr-RS/zotero/zotero.properties b/chrome/locale/sr-RS/zotero/zotero.properties index 23916b74a6..3651193d7f 100644 --- a/chrome/locale/sr-RS/zotero/zotero.properties +++ b/chrome/locale/sr-RS/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Водич за брзи почетак install.quickStartGuide.message.welcome=Добродошли у Зотеро! -install.quickStartGuide.message.clickViewPage=Кликните на дугме "Преглед странице" како би посетили наш Водич за брзи почетак и научили како започети скупљање, уређивање и цитирање вашег истраживачког рада. install.quickStartGuide.message.thanks=Хвала што сте инсталирали Зотеро. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/sv-SE/zotero/zotero.properties b/chrome/locale/sv-SE/zotero/zotero.properties index f9897b0cb6..89fcc39081 100644 --- a/chrome/locale/sv-SE/zotero/zotero.properties +++ b/chrome/locale/sv-SE/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Snabbhjälp install.quickStartGuide.message.welcome=Välkommen till Zotero! -install.quickStartGuide.message.clickViewPage=Klicka på "Visa sida"-knappen oven för att besöka vår Snabbstartguide och lär dig hur du kommer igång med att samla, organisera och citera din forskning. install.quickStartGuide.message.thanks=Tack för att du installerat Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/th-TH/zotero/zotero.properties b/chrome/locale/th-TH/zotero/zotero.properties index a0cb19a92f..6f9bc47b9d 100644 --- a/chrome/locale/th-TH/zotero/zotero.properties +++ b/chrome/locale/th-TH/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=คู่มือการใช้งานเบื้องต้น install.quickStartGuide.message.welcome=ยินดีต้อนรับสู่โซแทโร -install.quickStartGuide.message.clickViewPage=คลิกที่ปุ่ม "แสดงหน้า" ด้านบน เพื่อเข้าชมคู่มือการใช้งานเบื้องต้น และเรียนรู้วิธีการรวมรวบ จัดการ และอ้างอิงงานวิจัย install.quickStartGuide.message.thanks=ขอบคุณที่ติดตั้งโซแทโร upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/tr-TR/zotero/zotero.properties b/chrome/locale/tr-TR/zotero/zotero.properties index 7995f2463d..910f9633d9 100644 --- a/chrome/locale/tr-TR/zotero/zotero.properties +++ b/chrome/locale/tr-TR/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Çabuk Başlama Rehberi install.quickStartGuide.message.welcome=Zotero'ya Hoşgeldiniz! -install.quickStartGuide.message.clickViewPage=Araştırma için nasıl yayın biriktirilir, yönetilir ve kaynak gösterilir öğrenmek ve Çabuk Başlangıç Rehberini ziyaret etmek için yukarıdaki "Sayfayı Gör" tuşuna tıklayınız. install.quickStartGuide.message.thanks=Zotero'yu kurduğunuz için teşekkürler. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/vi-VN/zotero/zotero.properties b/chrome/locale/vi-VN/zotero/zotero.properties index c75a563f64..851702117f 100644 --- a/chrome/locale/vi-VN/zotero/zotero.properties +++ b/chrome/locale/vi-VN/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=Cuốn Chỉ Dẫn Nhanh install.quickStartGuide.message.welcome=Chào mừng bạn đến với Zotero! -install.quickStartGuide.message.clickViewPage=Ấn vào nút "Xem Trang" ở trên để mở Cuốn Chỉ Dẫn Nhanh của chúng tôi và học cách thu thập, quản lý, và trích dẫn các tài liệu nghiên cứu của bạn. install.quickStartGuide.message.thanks=Cảm ơn bạn đã cài đặt Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/zh-CN/zotero/zotero.properties b/chrome/locale/zh-CN/zotero/zotero.properties index 89abd98ccd..d931d1cfc1 100644 --- a/chrome/locale/zh-CN/zotero/zotero.properties +++ b/chrome/locale/zh-CN/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=A Zotero operation is currently in progress. general.operationInProgress.waitUntilFinished=Please wait until it has finished. general.operationInProgress.waitUntilFinishedAndTryAgain=Please wait until it has finished and try again. -install.quickStartGuide=快速入门指南 install.quickStartGuide.message.welcome=欢迎使用Zotero! -install.quickStartGuide.message.clickViewPage=请点击上方"查看页面"按钮, 访问我们的快速入门指南. 来学习如何来收集, 管理及引用文献. install.quickStartGuide.message.thanks=谢谢您安装Zotero. upgrade.failed.title=Upgrade Failed diff --git a/chrome/locale/zh-TW/zotero/zotero.properties b/chrome/locale/zh-TW/zotero/zotero.properties index f61d32ecf5..3c4e3d6962 100644 --- a/chrome/locale/zh-TW/zotero/zotero.properties +++ b/chrome/locale/zh-TW/zotero/zotero.properties @@ -38,9 +38,7 @@ general.operationInProgress=Zotero 有動作正在進行中。 general.operationInProgress.waitUntilFinished=請稍候,直到動作完成。 general.operationInProgress.waitUntilFinishedAndTryAgain=請稍候,直到動作完成後,再試一次。 -install.quickStartGuide=快速入門指南 install.quickStartGuide.message.welcome=歡迎來到 Zotero! -install.quickStartGuide.message.clickViewPage=按上面的「觀看網頁」鈕來造訪我們的快速入門指南以學習如何開始收集、管理、與引用你的研究。 install.quickStartGuide.message.thanks=感謝你安裝 Zotero。 upgrade.failed.title=升級失敗