Update locales from Transifex
This commit is contained in:
parent
88b1e10b44
commit
4077428b4e
27 changed files with 1531 additions and 76 deletions
18
chrome/content/zotero/components/foo.jsx
Normal file
18
chrome/content/zotero/components/foo.jsx
Normal file
|
@ -0,0 +1,18 @@
|
|||
import React, { useState } from 'react';
|
||||
|
||||
function Foo() {
|
||||
// Declare a new state variable, which we'll call "count"
|
||||
const [count, setCount] = useState(0);
|
||||
Zotero.debug("RUNNING FOO");
|
||||
|
||||
return (
|
||||
<div>
|
||||
<p>You clicked {count} times</p>
|
||||
<button onClick={() => setCount(count + 1)}>
|
||||
Click me
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
module.exports = Foo;
|
1
chrome/content/zotero/components/watch_components
Executable file
1
chrome/content/zotero/components/watch_components
Executable file
|
@ -0,0 +1 @@
|
|||
fswatch -o . | xargs -n1 -I{} sh -c 'rsync -av --delete ./ ~/react-app/tmp/; find ~/react-app/tmp -name "*.jsx" -exec perl -pi -e "print \"import Zotero from \\\"zotero\\\"\; \/\/ eslint-disable-line no-unused-vars\n\" if $. == 1" \{\} \; ; rsync -av --delete ~/react-app/tmp/ ~/react-app/src/components/;' _
|
17
chrome/content/zotero/test.xul
Normal file
17
chrome/content/zotero/test.xul
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://zotero/skin/zotero.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://zotero/skin/about.css" type="text/css"?>
|
||||
<!DOCTYPE window SYSTEM "chrome://zotero/locale/about.dtd">
|
||||
|
||||
<window
|
||||
id="zotero-about"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
orient="vertical"
|
||||
buttons="accept">
|
||||
|
||||
<script src="include.js"/>
|
||||
|
||||
<!--<iframe type="content" src="test2.html"/>-->
|
||||
<iframe type="content" src="zotero://pdf.js/pdf/1/FZD2PBSY"/>
|
||||
</window>
|
22
chrome/content/zotero/test2.html
Normal file
22
chrome/content/zotero/test2.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<html>
|
||||
<body>
|
||||
Hello
|
||||
<script>
|
||||
alert(window);
|
||||
var str = '';
|
||||
for (let key of Object.keys(ChromeUtils)) {
|
||||
str += key + '\n';
|
||||
}
|
||||
alert(str);
|
||||
Components.utils.import("resource://gre/modules/osfile.jsm")
|
||||
|
||||
|
||||
let decoder = new TextDecoder(); // This decoder can be reused for several reads
|
||||
OS.File.remove("/Users/dan/Desktop/refs2.bib");
|
||||
|
||||
//const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
||||
//var ps = Services.prompt;
|
||||
//ps.alert(null, "Title", "Test");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
1296
chrome/content/zotero/xpcom/data/dataObject.js2
Normal file
1296
chrome/content/zotero/xpcom/data/dataObject.js2
Normal file
File diff suppressed because it is too large
Load diff
98
chrome/content/zotero/xpcom/undo.js
Normal file
98
chrome/content/zotero/xpcom/undo.js
Normal file
|
@ -0,0 +1,98 @@
|
|||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2019 Corporation for Digital Scholarship
|
||||
Vienna, Virginia, USA
|
||||
https://www.zotero.org
|
||||
|
||||
This file is part of Zotero.
|
||||
|
||||
Zotero is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Zotero is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
Zotero.UndoStack = function (maxUndo) {
|
||||
this.maxUndo = maxUndo || 20;
|
||||
this._stack = [];
|
||||
}
|
||||
|
||||
Zotero.UndoStack.prototype = {
|
||||
_index: 0,
|
||||
|
||||
addBatch: function (name, steps) {
|
||||
// Remove forward from the current index and from the beginning to stay below the max size
|
||||
var start = Math.max((this._index + 1) - this.maxUndo, 0);
|
||||
this._stack = this._stack.slice(start, this._index);
|
||||
|
||||
this._stack.push({ name, steps });
|
||||
this._index = this._stack.length;
|
||||
|
||||
this._update();
|
||||
},
|
||||
|
||||
undo: async function () {
|
||||
var steps = this._stack[--this._index].steps;
|
||||
for (let step of steps) {
|
||||
await step.undo();
|
||||
}
|
||||
this._update();
|
||||
},
|
||||
|
||||
redo: async function () {
|
||||
var batch = this._stack[this._index++].steps;
|
||||
for (let step of steps) {
|
||||
await step.redo();
|
||||
}
|
||||
this._update();
|
||||
},
|
||||
|
||||
clear: function () {
|
||||
this._stack = [];
|
||||
this._index = 0;
|
||||
this._update();
|
||||
},
|
||||
|
||||
_update: function () {
|
||||
var win = Zotero.getTopWindow();
|
||||
if (!win) {
|
||||
return;
|
||||
}
|
||||
var doc = win.document;
|
||||
var undoMenuItem = doc.getElementById('menu_undo');
|
||||
var redoMenuItem = doc.getElementById('menu_redo');
|
||||
var undoCmd = doc.getElementById('cmd_undo');
|
||||
var redoCmd = doc.getElementById('cmd_redo');
|
||||
var undoStep = this._stack[this._index - 1];
|
||||
var redoStep = this._stack[this._index];
|
||||
|
||||
if (undo) {
|
||||
undoMenuItem.label = undoStep ? Zotero.getString('general.undoX', undoStep.name) : null;
|
||||
undoCmd.removeAttribute('disabled');
|
||||
}
|
||||
else {
|
||||
undoMenuItem.label = Zotero.getString('general.undo');
|
||||
undoCmd.setAttribute('disabled', 'disabled');
|
||||
}
|
||||
|
||||
if (redoStep) {
|
||||
redoMenuItem.label = redo ? Zotero.getString('general.redoX', redoStep.name) : null;
|
||||
redoCmd.removeAttribute('disabled');
|
||||
}
|
||||
else {
|
||||
redoMenuItem.label = Zotero.getString('general.redo');
|
||||
redoCmd.setAttribute('disabled', 'disabled');
|
||||
}
|
||||
}
|
||||
};
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Press %S to upgrade now.
|
|||
upgrade.dbUpdateRequired=The Zotero database must be updated.
|
||||
upgrade.integrityCheckFailed=Your Zotero database must be repaired before the upgrade can continue.
|
||||
upgrade.loadDBRepairTool=Load Database Repair Tool
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=If you continue to receive this message, restart your computer.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -597,7 +597,7 @@ ingester.scrapeErrorDescription.linkText=Řešení problémů s překladači
|
|||
ingester.scrapeErrorDescription.previousError=Ukládání selhalo z důvodu předchozí chyby v Zoteru.
|
||||
|
||||
ingester.importFile.title=Importovat soubor
|
||||
ingester.importFile.text=Chcete importovat soubor "%S"?\n\nPoložky budou přidány do nové kolekce.
|
||||
ingester.importFile.text=Chcete importovat soubor "%S"?
|
||||
ingester.importFile.intoNewCollection=Vložit do nové kolekce
|
||||
|
||||
ingester.lookup.performing=Provádí se vyhledávání...
|
||||
|
|
|
@ -254,7 +254,7 @@ pane.collections.menu.export.feed=Feed exportieren...
|
|||
pane.collections.menu.createBib.collection=Bibliografie aus Sammlung erstellen...
|
||||
pane.collections.menu.createBib.savedSearch=Literaturverzeichnis aus gespeicherter Suche erstellen...
|
||||
pane.collections.menu.createBib.feed=Literaturverzeichnis aus Feed erstellen...
|
||||
pane.collections.showCollectionInLibrary=Show Collection in Library
|
||||
pane.collections.showCollectionInLibrary=Sammlung in Bibliothek anzeigen
|
||||
|
||||
pane.collections.menu.generateReport.collection=Bericht aus Sammlung erstellen...
|
||||
pane.collections.menu.generateReport.savedSearch=Bericht aus gespeicherter Suche erstellen...
|
||||
|
@ -364,7 +364,7 @@ pane.item.notes.delete.confirm=Sind Sie sicher, dass Sie diese Notiz löschen m
|
|||
pane.item.notes.count.zero=%S Notizen:
|
||||
pane.item.notes.count.singular=%S Notiz:
|
||||
pane.item.notes.count.plural=%S Notizen:
|
||||
pane.item.notes.editingInWindow=Editing in separate window
|
||||
pane.item.notes.editingInWindow=In einem neuen Fenster bearbeiten
|
||||
pane.item.attachments.rename.title=Neuer Titel:
|
||||
pane.item.attachments.rename.renameAssociatedFile=Zugehörige Datei umbenennen
|
||||
pane.item.attachments.rename.error=Beim Umbenennen der Datei trat ein Fehler auf.
|
||||
|
@ -656,9 +656,9 @@ zotero.preferences.sync.reset.restoreFromServer=Alle Daten des verwendeten Zoter
|
|||
zotero.preferences.sync.reset.replaceLocalData=Lokale Daten ersetzen
|
||||
zotero.preferences.sync.reset.restartToComplete=Firefox muss neugestartet werden, um den Wiederherstellungsprozess abzuschließen.
|
||||
zotero.preferences.sync.reset.restoreToServer=%1$S will replace data in “%2$S” on %3$S with data from this computer.
|
||||
zotero.preferences.sync.reset.restoreToServer.button=Replace Data in Online Library
|
||||
zotero.preferences.sync.reset.fileSyncHistory=On the next sync, %1$S will check all attachment files in “%2$S” against the storage service. Any remote attachment files that are missing locally will be downloaded, and local attachment files missing remotely will be uploaded.\n\nThis option is not necessary during normal usage.
|
||||
zotero.preferences.sync.reset.fileSyncHistory.cleared=The file sync history for “%S” has been cleared.
|
||||
zotero.preferences.sync.reset.restoreToServer.button=Daten in Online-Bibliothek ersetzen
|
||||
zotero.preferences.sync.reset.fileSyncHistory=Bei der nächsten Synchronisation wird %1$S alle Dateianhänge in "%2$S" mit dem Speicherdienst vergleichen. Alle Dateianhänge auf dem entfernten Speicher die auf dem lokalen System fehlen werden heruntergeladen, alle lokal vorhandenen Dateianhänge die auf dem entfernten Speicher fehlen werden hochgeladen.\n\nDiese Option ist im normalen Betrieb nicht erforderlich.
|
||||
zotero.preferences.sync.reset.fileSyncHistory.cleared=Die Verlaufsgeschichte der Dateisynchronisierung von "%S" wurde zurückgesetzt
|
||||
|
||||
zotero.preferences.search.rebuildIndex=Index neu aufbauen
|
||||
zotero.preferences.search.rebuildWarning=Wollen Sie den gesamten Index neu aufbauen? Dies kann eine Weile dauern.\n\nUm nur die noch nicht indizierten Einträge zu indizieren, verwenden Sie %S.
|
||||
|
@ -898,10 +898,10 @@ integration.citationChanged.description=Wenn Sie "Ja" auswählen, wird Zotero di
|
|||
integration.citationChanged.edit=Sie haben Veränderungen an dieser Zitation vorgenommen, nachdem sie von Zotero erstellt wurde. Das Editieren wird Ihre Veränderungen löschen. Wollen Sie fortsetzen?
|
||||
integration.citationChanged.original=Original: %S
|
||||
integration.citationChanged.modified=Geändert: %S
|
||||
integration.delayCitationUpdates.alert.text1=Updating citations in this document is taking a long time. Would you like to disable automatic citation updates?
|
||||
integration.delayCitationUpdates.alert.text1=Zitationen in diesem Dokument zu aktualisieren braucht lange. Möchten sie die automatische Aktualisierung von Zitationen deaktivieren?
|
||||
integration.delayCitationUpdates.alert.text2.toolbar=Sie müssen auf Aktualisieren in der Zotero-Werkzeugleiste klicken, nachdem Sie die Zitationen eingefügt haben.
|
||||
integration.delayCitationUpdates.alert.text2.tab=Sie müssen auf Aktualisieren im Zotero-Reiter klicken, nachdem Sie die Zitationen eingefügt haben.
|
||||
integration.delayCitationUpdates.alert.text3=You can change this setting later in the document preferences.
|
||||
integration.delayCitationUpdates.alert.text3=Sie können diese Einstellungen später in den Dokument Einstellungen ändern
|
||||
integration.delayCitationUpdates.bibliography.toolbar=Automatische Updates der Zitationen sind deaktiviert. Um das Literaturverzeichnis anzuzeigen, klicken Sie auf Aktualisieren in der Zotero-Werkzeugleiste.
|
||||
integration.delayCitationUpdates.bibliography.tab=Automatische Updates der Zitationen sind deaktiviert. Um das Literaturverzeichnis anzuzeigen, klicken Sie auf Aktualisieren im Zotero-Reiter.
|
||||
integration.importDocument.title=Transferiertes Dokument
|
||||
|
@ -960,12 +960,12 @@ sync.error.checkConnection=Fehler bei der Verbindung zum Server. Überprüfen Si
|
|||
sync.error.emptyResponseServer=Inhaltsleere Serverantwort
|
||||
sync.error.invalidCharsFilename=Der Dateiname '%S' enthäte ungültige Zeichen. \n \n Bennen Sie die Datei um und versuchen Sie es erneut. Wenn Sie die Datei außerhalb von zotero, z. B. im Explorer bzw. Finder usw. umbennen, dann müssen Sie in Zotero die Verknüpfungen neu herstellen.
|
||||
sync.error.apiKeyInvalid=%S konnte ihren Account nicht authentifizieren. Bitte geben Sie ihre Kontendaten neu ein.
|
||||
sync.error.collectionTooLong=The collection name “%S” is too long to sync. Shorten the name and sync again.
|
||||
sync.error.collectionTooLong=Der Name der Sammlung "%S" ist zu lang für die Synchronisierung. Bitte den Namen kürzen und erneut synchronisieren.
|
||||
sync.error.fieldTooLong=The %1$S value “%2$S” in one of your items is too long to sync. Shorten the field and sync again.
|
||||
sync.error.creatorTooLong=The creator name “%S” in one of your items is too long to sync. Shorten the field and sync again.
|
||||
sync.error.noteEmbeddedImage=Notes with embedded images cannot currently be synced. Syncing of embedded images may be supported in a future version.
|
||||
sync.error.noteTooLong=The note “%S” is too long to sync. Shorten the note and sync again.
|
||||
sync.error.reportSiteIssuesToForums=If you receive this message repeatedly for items saved from a particular site, you can report this issue in the %S Forums.
|
||||
sync.error.creatorTooLong=Der Name des Urhebers "%S" in einem Ihrer Einträge ist zu lang für die Synchronisierung. Bitte den Namen kürzen und erneut synchronisieren.
|
||||
sync.error.noteEmbeddedImage=Notizen mit eingebetteten Bildern können zur Zeit nicht synchronisiert werden. Die Synchronisation von eingebetteten Bildern wird vielleicht in einer zukünftigen Version unterstützt.
|
||||
sync.error.noteTooLong=Die Notiz "$S" ist zu lang für die Synchronisation. Bitte die Notiz kürzen und erneut synchronisieren.
|
||||
sync.error.reportSiteIssuesToForums=Wenn Sie diese Nachricht wiederholt für von einer bestimmten Seite gespeicherte Einträge erhalten, können sie den Fall im %S Forum melden.
|
||||
sync.error.invalidDataError=Einige Daten in %S konnten nicht heruntergeladen werden. Möglicherweise wurden es mit einer neueren Version von %S gespeichert.
|
||||
sync.error.invalidDataError.otherData=Andere Daten werden weiterhin synchronisiert.
|
||||
|
||||
|
@ -1011,7 +1011,7 @@ sync.conflict.chooseThisVersion=Diese Version auswählen
|
|||
sync.status.notYetSynced=Noch nicht synchronisiert
|
||||
sync.status.lastSync=Letzte Synchronisierung:
|
||||
sync.status.waiting=Waiting for other operations to finish
|
||||
sync.status.preparing=Preparing sync
|
||||
sync.status.preparing=Synchronisation wird vorbereitet
|
||||
sync.status.loggingIn=Einloggen auf dem Sync-Server
|
||||
sync.status.gettingUpdatedData=Aktualisierte Daten vom Sync-Server empfangen
|
||||
sync.status.processingUpdatedData=Aktualisierte Daten vom Sync-Server verarbeiten
|
||||
|
|
|
@ -92,8 +92,8 @@
|
|||
<!ENTITY zotero.items.menu.attach.note "Προσθήκη σημείωσης">
|
||||
<!ENTITY zotero.items.menu.attach "Προσθήκη προσαρτήματος">
|
||||
<!ENTITY zotero.items.menu.attach.link.uri "Προσάρτηση Συνδέσμου προς το URI...">
|
||||
<!ENTITY zotero.items.menu.attach.file "Attach Stored Copy of File...">
|
||||
<!ENTITY zotero.items.menu.attach.fileLink "Attach Link to File...">
|
||||
<!ENTITY zotero.items.menu.attach.file "Attach Stored Copy of File…">
|
||||
<!ENTITY zotero.items.menu.attach.fileLink "Attach Link to File…">
|
||||
|
||||
<!ENTITY zotero.items.menu.restoreToLibrary "Αποκατάσταση στην Βιβλιοθήκη">
|
||||
<!ENTITY zotero.items.menu.duplicateItem "Δημιουργία Διπλότυπου για το Στοιχείο">
|
||||
|
@ -119,8 +119,8 @@
|
|||
<!ENTITY zotero.toolbar.actions.label "Ενέργειες">
|
||||
<!ENTITY zotero.toolbar.import.label "Εισαγωγή">
|
||||
<!ENTITY zotero.toolbar.importFromClipboard "Εισαγωγή από την προσωρινή μνήμη">
|
||||
<!ENTITY zotero.toolbar.export.label "Export Library...">
|
||||
<!ENTITY zotero.toolbar.rtfScan.label "RTF Scan...">
|
||||
<!ENTITY zotero.toolbar.export.label "Export Library…">
|
||||
<!ENTITY zotero.toolbar.rtfScan.label "RTF Scan…">
|
||||
<!ENTITY zotero.toolbar.timeline.label "Δημιουργία χρονοδιαγράμματος">
|
||||
<!ENTITY zotero.toolbar.preferences.label "Προτιμήσεις...">
|
||||
<!ENTITY zotero.toolbar.supportAndDocumentation "Υποστήριξη και Τεκμηρίωση">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<!ENTITY zotero.toolbar.note.standalone "Νέα αυτόνομη σημείωση">
|
||||
<!ENTITY zotero.toolbar.note.child "Προσθήκη θυγατρικής σημείωσης">
|
||||
<!ENTITY zotero.toolbar.lookup "Εντοπισμός μέσω ταυτοποιητή...">
|
||||
<!ENTITY zotero.toolbar.attachment.linked "Link to File...">
|
||||
<!ENTITY zotero.toolbar.attachment.linked "Link to File…">
|
||||
<!ENTITY zotero.toolbar.attachment.add "Αποθήκευση αντιγράφου του αρχείου...">
|
||||
<!ENTITY zotero.toolbar.attachment.weblink "Αποθήκευση Συνδέσμου στην Τρέχουσα Σελίδα">
|
||||
<!ENTITY zotero.toolbar.attachment.snapshot "Λήψη Στιγμιότυπου της Τρέχουσας Σελίδας">
|
||||
|
@ -163,8 +163,8 @@
|
|||
<!ENTITY zotero.tagSelector.deleteAutomaticInLibrary "Delete Automatic Tags in This Library…">
|
||||
<!ENTITY zotero.tagSelector.clearAll "Αποεπιλογή όλων">
|
||||
<!ENTITY zotero.tagSelector.assignColor "Απόδοση χρώματος...">
|
||||
<!ENTITY zotero.tagSelector.renameTag "Rename Tag...">
|
||||
<!ENTITY zotero.tagSelector.deleteTag "Delete Tag...">
|
||||
<!ENTITY zotero.tagSelector.renameTag "Rename Tag…">
|
||||
<!ENTITY zotero.tagSelector.deleteTag "Delete Tag…">
|
||||
|
||||
<!ENTITY zotero.tagColorChooser.title "Επιλέξτε χρώμα ετικέτας και θέση">
|
||||
<!ENTITY zotero.tagColorChooser.color "Χρώμα:">
|
||||
|
@ -209,7 +209,7 @@
|
|||
<!ENTITY zotero.import.createCollection "Τοποθετήστε τις εισαγόμενες συλλογές και τα αντικείμενα σε νέα συλλογή">
|
||||
<!ENTITY zotero.import.fileHandling "Χειρισμός Αρχείων">
|
||||
|
||||
<!ENTITY zotero.exportOptions.title "Export...">
|
||||
<!ENTITY zotero.exportOptions.title "Export…">
|
||||
<!ENTITY zotero.exportOptions.format.label "Μορφή:">
|
||||
<!ENTITY zotero.exportOptions.translatorOptions.label "Επιλογές μεταφραστή">
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Πατήστε %S για να αναβαθμίσετε τ
|
|||
upgrade.dbUpdateRequired=Η βάση δεδομένων του Zotero πρέπει να αναβαθμιστεί.
|
||||
upgrade.integrityCheckFailed=Η βάση δεδομένων του Zotero πρέπει να επισκευασθεί πριν προχωρήσει η αναβάθμιση.
|
||||
upgrade.loadDBRepairTool=Φόρτωση Εργαλείου Επισκευής Βάσης Δεδομένων
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=Αν συνεχίσετε να λαμβάνεται το μήνυμα αυτό, επανεκκινήστε τον υπολογιστή σας.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -263,9 +263,9 @@ pane.collections.menu.generateReport.feed=Generate Report from Feed…
|
|||
pane.collections.menu.refresh.feed=Refresh Feed
|
||||
|
||||
pane.tagSelector.rename.title=Aldatu estekaren izena
|
||||
pane.tagSelector.rename.message=Sar ezazu izen berria.\n\n Esteka dagozkion item guztietan aldatuko da.
|
||||
pane.tagSelector.rename.message=Sar ezazu izen berria.\n\nEsteka dagozkion item guztietan aldatuko da.
|
||||
pane.tagSelector.delete.title=Ezabatu esteka
|
||||
pane.tagSelector.delete.message=Benetan ezabatu esteka?\n\n Esteka dagozkion item guztietatik kenduko da.
|
||||
pane.tagSelector.delete.message=Benetan ezabatu esteka?\n\nEsteka dagozkion item guztietatik kenduko da.
|
||||
pane.tagSelector.deleteAutomatic.title=Delete Automatic Tags
|
||||
pane.tagSelector.deleteAutomatic.message=Are you sure you want to delete %1$S automatic tag in this library?;Are you sure you want to delete %1$S automatic tags in this library?
|
||||
pane.tagSelector.numSelected.none=Estekarik hautatu gabe
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Paina %S päivittääksesi nyt.
|
|||
upgrade.dbUpdateRequired=Zoteron tietokanta on päivitettävä.
|
||||
upgrade.integrityCheckFailed=Zotero-tietokantasi on korjattava ennen päivityksen jatkamista.
|
||||
upgrade.loadDBRepairTool=Lataa tietokannan korjaustyökalu
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=Jos saat toistuvasti tämän viestin, käynnistä tietokone uudelleen.
|
||||
upgrade.nonupgradeableDB1=Zotero löysi vanhan tietokannan jota ei voi päivittää yhteensopivaksi tämän Zoteron version kanssa.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Prema agora %S para actualizar .
|
|||
upgrade.dbUpdateRequired=A base de datos de Zotero ten que ser actualizada.
|
||||
upgrade.integrityCheckFailed=Tense que reparar a súa base de datos de Zotero antes de que se poida continuar a actualización.
|
||||
upgrade.loadDBRepairTool=Cargar a ferramenta de reparación da base de datos
|
||||
upgrade.couldNotMigrate=Zotero non puido migrar todos os arquivos necesarios. \nPeche os ficheiros abertos e reinicie %S para tentar a actualización de novo.
|
||||
upgrade.couldNotMigrate=Zotero non puido migrar todos os arquivos necesarios.\nPeche os ficheiros abertos e reinicie %S para tentar a actualización de novo.
|
||||
upgrade.couldNotMigrate.restart=Reinicie o ordenador se continúa a recibir esta mensaxe.
|
||||
upgrade.nonupgradeableDB1=Atopouse unha base de datos doutra versión de Zotero que non se pode actualizar para que funcione con esta versión de Zotero.
|
||||
upgrade.nonupgradeableDB2=Para poder continuar e crear unha nova base de datos, primeiro anova a base de datos empregando Zotero %S ou elimina o cartafol os datos de Zotero
|
||||
|
@ -348,7 +348,7 @@ pane.item.markAsRead=Marcar como lido
|
|||
pane.item.markAsUnread=Marcar como sen ler
|
||||
pane.item.addTo=Engadir a «%S»
|
||||
pane.item.showInMyPublications=Mostrar nas publicacións
|
||||
pane.item.hideFromMyPublications=Agochar
|
||||
pane.item.hideFromMyPublications=Hide from My Publications
|
||||
pane.item.changeType.title=Cambiar o tipo de elemento
|
||||
pane.item.changeType.text=Está seguro de que quere cambiar o tipo de elemento?\n\nPerderanse os seguintes campos:
|
||||
pane.item.defaultFirstName=primeiro
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Press %S to upgrade now.
|
|||
upgrade.dbUpdateRequired=יש לעדכן את בסיס הנתונים של זוטרו.
|
||||
upgrade.integrityCheckFailed=Your Zotero database must be repaired before the upgrade can continue.
|
||||
upgrade.loadDBRepairTool=Load Database Repair Tool
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=If you continue to receive this message, restart your computer.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Press %S to upgrade now.
|
|||
upgrade.dbUpdateRequired=The Zotero database must be updated.
|
||||
upgrade.integrityCheckFailed=Your Zotero database must be repaired before the upgrade can continue.
|
||||
upgrade.loadDBRepairTool=Load Database Repair Tool
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=If you continue to receive this message, restart your computer.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -18,8 +18,8 @@ general.unknownErrorOccurred=Ismeretlen hiba.
|
|||
general.invalidResponseServer=Érvénytelen válasz a szervertől.
|
||||
general.tryAgainLater=Kérem, próbálkozzon újra néhány perc múlva.
|
||||
general.serverError=A szerver hibába fordult. Kérem próbálja újra.
|
||||
general.pleaseRestart=Indítsa újra a Firefoxot.
|
||||
general.pleaseRestartAndTryAgain=Indítsa újra a Firefoxot és próbálja meg újra.
|
||||
general.pleaseRestart=Please restart %S.
|
||||
general.pleaseRestartAndTryAgain=Please restart %S and try again.
|
||||
general.checkForUpdate=Frissítések keresése
|
||||
general.checkForUpdates=Frissítések keresése
|
||||
general.actionCannotBeUndone=Ez a művelet nem vonható vissza.
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector hiba
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=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.
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Ýtið á %S til að uppfæra núna.
|
|||
upgrade.dbUpdateRequired=Uppfæra þarf Zotero gagnagrunninn.
|
||||
upgrade.integrityCheckFailed=Það verður að laga Zotero gagnagrunninn áður en uppfærslan getur haldið áfram.
|
||||
upgrade.loadDBRepairTool=Hlaða inn verkfæri til viðgerða á gagnagrunni
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=Ef þú heldur áfram að fá þessi skilaboð skaltu endurræsa tölvuna þína.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
|
|
@ -597,7 +597,7 @@ ingester.scrapeErrorDescription.linkText=Troubleshooting Translator Issues
|
|||
ingester.scrapeErrorDescription.previousError=Processo di salvataggio non riuscito a causa di un precedente errore di Zotero.
|
||||
|
||||
ingester.importFile.title=Importa File
|
||||
ingester.importFile.text=Importare il file "%S"?\n\nElementi saranno aggiunti ad una nuova collezione.
|
||||
ingester.importFile.text=Importare il file "%S"?
|
||||
ingester.importFile.intoNewCollection=Importa in una nuova collezione
|
||||
|
||||
ingester.lookup.performing=Esecuzione ricerca...
|
||||
|
@ -661,7 +661,7 @@ zotero.preferences.sync.reset.fileSyncHistory=On the next sync, %1$S will check
|
|||
zotero.preferences.sync.reset.fileSyncHistory.cleared=The file sync history for “%S” has been cleared.
|
||||
|
||||
zotero.preferences.search.rebuildIndex=Ricrea indicizzazione
|
||||
zotero.preferences.search.rebuildWarning=Ricreare l'intera indicizzazione? L'operazione potrebbe richiedere alcuni minuti.\n Per processare solo gli elementi non indicizzati, selezionare '%S'
|
||||
zotero.preferences.search.rebuildWarning=Ricreare l'intera indicizzazione? L'operazione potrebbe richiedere alcuni minuti.\n\nPer processare solo gli elementi non indicizzati, selezionare '%S'
|
||||
zotero.preferences.search.clearIndex=Azzera indicizzazione
|
||||
zotero.preferences.search.clearWarning=Dopo l'azzeramento dell'indicizzazione non sarà più possibile ricercare gli allegati,\n\n né sarà più possibile indicizzare i collegamenti se non visitando nuovamente la pagina web. Per mantenere i collegamenti selezionare '%S'
|
||||
zotero.preferences.search.clearNonLinkedURLs=Elimina tutto tranne i collegamenti web
|
||||
|
|
|
@ -1165,8 +1165,8 @@ connector.name=%S 중계기
|
|||
connector.error.title=Zotero 커넥터 오류
|
||||
|
||||
firstRunGuidance.authorMenu=편집자나 번역자 등을 입력할 수도 있습니다. 작가 탭의 메뉴에서 편집자나 번역가 등을 선택하시면 됩니다.
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Zotero를 열려면 'Z' 버튼을 클릭하거나, %S 키보드 단축키를 사용하세요.
|
||||
firstRunGuidance.toolbarButton.upgrade=이제 Zotero 아이콘을 Firefox 도구모음에서 찾을 수 있습니다. Zotero를 열려면 'Z' 버튼을 클릭하거나, %S 키보드 단축키를 사용하세요.
|
||||
firstRunGuidance.saveButton=이 버튼을 누르면 어떤 웹페이지든 Zotero 라이브러리에 저장합니다. 어떤 페이지에서는, Zotero가 저자와 날짜를 포함한 모든 세부사항을 저장할 수 있습니다.
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Press %S to upgrade now.
|
|||
upgrade.dbUpdateRequired=The Zotero database must be updated.
|
||||
upgrade.integrityCheckFailed=Your Zotero database must be repaired before the upgrade can continue.
|
||||
upgrade.loadDBRepairTool=Load Database Repair Tool
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=If you continue to receive this message, restart your computer.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Velg %S for å oppgradere nå.
|
|||
upgrade.dbUpdateRequired=Zotero-databasen må oppdateres.
|
||||
upgrade.integrityCheckFailed=Zotero-databasen må repareres før oppgraderingen kan fortsette.
|
||||
upgrade.loadDBRepairTool=Last inn databasereparasjonsverktøy
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=Hvis du fortsetter å få denne meldingen, start datamaskinen din på nytt.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
@ -663,7 +663,7 @@ zotero.preferences.sync.reset.fileSyncHistory.cleared=The file sync history for
|
|||
zotero.preferences.search.rebuildIndex=Generer register på nytt
|
||||
zotero.preferences.search.rebuildWarning=Vil du generere registeret på nytt? Dette kan ta en stund.\n\nHvis du bare vil registrere elementer som ikke allerede er registrert, bruk %S.
|
||||
zotero.preferences.search.clearIndex=Tøm registeret
|
||||
zotero.preferences.search.clearWarning=Når registeret er tømt, vil vedlagt materiale ikke lenger være søkbart.\n\n Internett-lenker kan kun registreres på nytt ved å besøke den enkelte nettsiden. For å beholde Internett-lenker, velg %S.
|
||||
zotero.preferences.search.clearWarning=Når registeret er tømt, vil vedlagt materiale ikke lenger være søkbart.\n\nInternett-lenker kan kun registreres på nytt ved å besøke den enkelte nettsiden. For å beholde Internett-lenker, velg %S.
|
||||
zotero.preferences.search.clearNonLinkedURLs=Tøm alt unntatt Internett-lenker
|
||||
zotero.preferences.search.indexUnindexed=Registrer uregistrerte elementer
|
||||
zotero.preferences.export.quickCopy.citationStyles=Citation Styles
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -663,7 +663,7 @@ zotero.preferences.sync.reset.fileSyncHistory.cleared=The file sync history for
|
|||
zotero.preferences.search.rebuildIndex=Generer register på nytt
|
||||
zotero.preferences.search.rebuildWarning=Vil du generera registret på nytt? Dette kan ta eit bel.\n\nHvis du berre vil registrera element som ikkje allereie er registrert, bruk %S.
|
||||
zotero.preferences.search.clearIndex=Tøm registret
|
||||
zotero.preferences.search.clearWarning=Når registret er tømt, vil vedlagd material ikkje lenger vera søkbart.\n\n Internett-lenkjer kan berre registrerast på nytt ved å vitja den einskilde nettsida. For å halda på Internett-lenkjer, vel %S.
|
||||
zotero.preferences.search.clearWarning=Når registret er tømt, vil vedlagd material ikkje lenger vera søkbart.\n\nInternett-lenkjer kan berre registrerast på nytt ved å vitja den einskilde nettsida. For å halda på Internett-lenkjer, vel %S.
|
||||
zotero.preferences.search.clearNonLinkedURLs=Tøm alt unntatt Internett-lenkjar
|
||||
zotero.preferences.search.indexUnindexed=Registrer uregistrerte element
|
||||
zotero.preferences.export.quickCopy.citationStyles=Citation Styles
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync servar
|
|||
sync.status.gettingUpdatedData=Får oppdaterte data frå synkroniseringstenaren
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Lastar opp data til synkroniseringstenaren
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Synkroniserar filer
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
|
@ -103,7 +103,7 @@ upgrade.advanceMessage=Ấn %S để nâng cấp ngay bây giờ.
|
|||
upgrade.dbUpdateRequired=The Zotero database must be updated.
|
||||
upgrade.integrityCheckFailed=Your Zotero database must be repaired before the upgrade can continue.
|
||||
upgrade.loadDBRepairTool=Load Database Repair Tool
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart Firefox to try the upgrade again.
|
||||
upgrade.couldNotMigrate=Zotero could not migrate all necessary files.\nPlease close any open attachment files and restart %S to try the upgrade again.
|
||||
upgrade.couldNotMigrate.restart=If you continue to receive this message, restart your computer.
|
||||
upgrade.nonupgradeableDB1=Zotero found an old database that cannot be upgraded to work with this version of Zotero.
|
||||
upgrade.nonupgradeableDB2=To continue, upgrade your database using Zotero %S first or delete your Zotero data directory to start with a new database.
|
||||
|
@ -1016,7 +1016,7 @@ sync.status.loggingIn=Logging in to sync server
|
|||
sync.status.gettingUpdatedData=Getting updated data from sync server
|
||||
sync.status.processingUpdatedData=Processing updated data
|
||||
sync.status.uploadingData=Uploading data to sync server
|
||||
sync.status.uploadAccepted=Upload accepted — waiting for sync server
|
||||
sync.status.uploadAccepted=Upload accepted \u2014 waiting for sync server
|
||||
sync.status.syncingFiles=Syncing files
|
||||
sync.status.syncingFilesInLibrary=Syncing files in %S
|
||||
sync.status.syncingFilesInLibraryWithRemaining=Syncing files in %1$S (%2$S remaining);Syncing files in %1$S (%2$S remaining)
|
||||
|
@ -1165,8 +1165,8 @@ connector.name=%S Connector
|
|||
connector.error.title=Zotero Connector Error
|
||||
|
||||
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.quickFormat=Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 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-\u2193 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=Click the ‘Z’ button to open Zotero, or use the %S keyboard shortcut.
|
||||
firstRunGuidance.toolbarButton.upgrade=The Zotero icon can now be found in the Firefox toolbar. Click the icon to open Zotero, or use the %S keyboard shortcut.
|
||||
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.
|
||||
|
|
3
chrome/skin/default/zotero/extensionsOverlay.css
Normal file
3
chrome/skin/default/zotero/extensionsOverlay.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.addon-view .legacy-warning {
|
||||
display: none;
|
||||
}
|
Loading…
Reference in a new issue