Merge 4.0 up to 28301ea45f
Conflicts: chrome/content/zotero/preferences/preferences_export.js chrome/content/zotero/xpcom/proxy.js
This commit is contained in:
commit
80d5b74cf3
142 changed files with 955 additions and 240 deletions
|
@ -142,6 +142,21 @@ Zotero_Preferences.Export = {
|
|||
checkbox.disabled = mode != 'bibliography';
|
||||
},
|
||||
|
||||
/**
|
||||
* Disables UI buttons when no site-specific quick copy entries are selected
|
||||
*/
|
||||
disableQuickCopySiteButtons: function () {
|
||||
document.getElementById('quickCopy-edit').disabled = true;
|
||||
document.getElementById('quickCopy-delete').disabled = true;
|
||||
},
|
||||
|
||||
/**
|
||||
* Enables UI buttons when a site-specific quick copy entry is selected
|
||||
*/
|
||||
enableQuickCopySiteButtons: function () {
|
||||
document.getElementById('quickCopy-edit').disabled = false;
|
||||
document.getElementById('quickCopy-delete').disabled = false;
|
||||
},
|
||||
|
||||
showQuickCopySiteEditor: Zotero.Promise.coroutine(function* (index) {
|
||||
var treechildren = document.getElementById('quickCopy-siteSettings-rows');
|
||||
|
@ -159,7 +174,8 @@ Zotero_Preferences.Export = {
|
|||
}
|
||||
|
||||
var io = {domain: domain, format: format, ok: false};
|
||||
window.openDialog('chrome://zotero/content/preferences/quickCopySiteEditor.xul', "zotero-preferences-quickCopySiteEditor", "chrome, modal", io);
|
||||
window.openDialog('chrome://zotero/content/preferences/quickCopySiteEditor.xul',
|
||||
"zotero-preferences-quickCopySiteEditor", "chrome,modal,centerscreen", io);
|
||||
|
||||
if (!io.ok) {
|
||||
return;
|
||||
|
@ -207,6 +223,8 @@ Zotero_Preferences.Export = {
|
|||
treeitem.appendChild(treerow);
|
||||
treechildren.appendChild(treeitem);
|
||||
}
|
||||
|
||||
this.disableQuickCopySiteButtons();
|
||||
}),
|
||||
|
||||
|
||||
|
|
|
@ -23,7 +23,10 @@
|
|||
|
||||
***** END LICENSE BLOCK *****
|
||||
-->
|
||||
<!DOCTYPE prefwindow SYSTEM "chrome://zotero/locale/preferences.dtd">
|
||||
<!DOCTYPE prefwindow [
|
||||
<!ENTITY % preferencesDTD SYSTEM "chrome://zotero/locale/preferences.dtd"> %preferencesDTD;
|
||||
<!ENTITY % zoteroDTD SYSTEM "chrome://zotero/locale/zotero.dtd"> %zoteroDTD;
|
||||
]>
|
||||
|
||||
<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
<prefpane id="zotero-prefpane-export">
|
||||
|
@ -34,6 +37,7 @@
|
|||
<label value="&zotero.preferences.quickCopy.siteEditor.setings;" control="quickCopy-siteSettings"/>
|
||||
<tree flex="1" id="quickCopy-siteSettings" hidecolumnpicker="true" rows="6" seltype="single"
|
||||
ondblclick="Zotero_Preferences.Export.showQuickCopySiteEditor(this.currentIndex)"
|
||||
onselect="Zotero_Preferences.Export.enableQuickCopySiteButtons()"
|
||||
onkeypress="if (event.keyCode == event.DOM_VK_DELETE) { Zotero_Preferences.Export.deleteSelectedQuickCopySite(); }">
|
||||
<treecols>
|
||||
<treecol id="quickCopy-urlColumn" label="&zotero.preferences.quickCopy.siteEditor.domainPath;" flex="1"/>
|
||||
|
@ -43,9 +47,13 @@
|
|||
<treechildren id="quickCopy-siteSettings-rows"/>
|
||||
</tree>
|
||||
<separator class="thin"/>
|
||||
<hbox pack="end">
|
||||
<button label="-" onclick="Zotero_Preferences.Export.deleteSelectedQuickCopySite()"/>
|
||||
<button label="+" onclick="Zotero_Preferences.Export.showQuickCopySiteEditor()"/>
|
||||
<hbox>
|
||||
<button disabled="true" id="quickCopy-edit" label="&zotero.general.edit;"
|
||||
onclick="Zotero_Preferences.Export.showQuickCopySiteEditor(document.getElementById('quickCopy-siteSettings').currentIndex)"/>
|
||||
<spacer flex="1"/>
|
||||
<button disabled="true" id="quickCopy-delete" label="-" onclick="Zotero_Preferences.Export.deleteSelectedQuickCopySite()"/>
|
||||
<button label="+"
|
||||
onclick="Zotero_Preferences.Export.showQuickCopySiteEditor()"/>
|
||||
</hbox>
|
||||
</vbox>
|
||||
</groupbox>
|
||||
|
|
|
@ -53,6 +53,8 @@
|
|||
<vbox style="margin-left: 1em">
|
||||
<checkbox id="zotero-proxies-autoRecognize" label="&zotero.preferences.proxies.autoRecognize;"
|
||||
command="zotero-proxies-update"/>
|
||||
<checkbox id="zotero-proxies-showRedirectNotification" label="&zotero.preferences.proxies.showRedirectNotification;"
|
||||
command="zotero-proxies-update"/>
|
||||
<hbox style="display: block; line-height: 1.75em">
|
||||
<checkbox id="zotero-proxies-disableByDomain-checkbox"
|
||||
label="&zotero.preferences.proxies.disableByDomain;"
|
||||
|
|
|
@ -40,6 +40,7 @@ Zotero_Preferences.Proxies = {
|
|||
var transparent = document.getElementById('zotero-proxies-transparent').checked;
|
||||
Zotero.Prefs.set("proxies.transparent", transparent);
|
||||
Zotero.Prefs.set("proxies.autoRecognize", document.getElementById('zotero-proxies-autoRecognize').checked);
|
||||
Zotero.Prefs.set("proxies.showRedirectNotification", document.getElementById('zotero-proxies-showRedirectNotification').checked);
|
||||
Zotero.Prefs.set("proxies.disableByDomainString", document.getElementById('zotero-proxies-disableByDomain-textbox').value);
|
||||
Zotero.Prefs.set("proxies.disableByDomain", document.getElementById('zotero-proxies-disableByDomain-checkbox').checked &&
|
||||
document.getElementById('zotero-proxies-disableByDomain-textbox').value != "");
|
||||
|
@ -50,8 +51,10 @@ Zotero_Preferences.Proxies = {
|
|||
document.getElementById('proxyTree-delete').disabled =
|
||||
document.getElementById('proxyTree').disabled =
|
||||
document.getElementById('zotero-proxies-autoRecognize').disabled =
|
||||
document.getElementById('zotero-proxies-showRedirectNotification').disabled =
|
||||
document.getElementById('zotero-proxies-disableByDomain-checkbox').disabled =
|
||||
document.getElementById('zotero-proxies-disableByDomain-textbox').disabled = !transparent;
|
||||
document.getElementById('zotero-proxies-disableByDomain-textbox').disabled =
|
||||
!transparent;
|
||||
},
|
||||
|
||||
|
||||
|
@ -69,7 +72,8 @@ Zotero_Preferences.Proxies = {
|
|||
showProxyEditor: function (index) {
|
||||
if(index == -1) return;
|
||||
window.openDialog('chrome://zotero/content/preferences/proxyEditor.xul',
|
||||
"zotero-preferences-proxyEditor", "chrome, modal", index !== undefined ? this._proxies[index] : null);
|
||||
"zotero-preferences-proxyEditor", "chrome,modal,centerscreen",
|
||||
index !== undefined ? this._proxies[index] : null);
|
||||
this.refreshProxyList();
|
||||
},
|
||||
|
||||
|
@ -150,6 +154,7 @@ Zotero_Preferences.Proxies = {
|
|||
document.getElementById('proxyTree-delete').disabled = true;
|
||||
document.getElementById('zotero-proxies-transparent').checked = Zotero.Prefs.get("proxies.transparent");
|
||||
document.getElementById('zotero-proxies-autoRecognize').checked = Zotero.Prefs.get("proxies.autoRecognize");
|
||||
document.getElementById('zotero-proxies-showRedirectNotification').checked = Zotero.Prefs.get("proxies.showRedirectNotification");
|
||||
document.getElementById('zotero-proxies-disableByDomain-checkbox').checked = Zotero.Prefs.get("proxies.disableByDomain");
|
||||
document.getElementById('zotero-proxies-disableByDomain-textbox').value = Zotero.Prefs.get("proxies.disableByDomainString");
|
||||
}
|
||||
|
|
|
@ -69,6 +69,8 @@ Zotero.Proxies = new function() {
|
|||
Zotero.Proxies.lastIPCheck = 0;
|
||||
Zotero.Proxies.lastIPs = "";
|
||||
Zotero.Proxies.disabledByDomain = false;
|
||||
|
||||
Zotero.Proxies.showRedirectNotification = Zotero.Prefs.get("proxies.showRedirectNotification");
|
||||
});
|
||||
|
||||
|
||||
|
@ -119,7 +121,7 @@ Zotero.Proxies = new function() {
|
|||
if(!bw) return;
|
||||
_showNotification(bw,
|
||||
Zotero.getString('proxies.notification.associated.label', [host, channel.URI.hostPort]),
|
||||
"settings", function() { _prefsOpenCallback(bw[1]) });
|
||||
[{ label: "proxies.notification.settings.button", callback: function() { _prefsOpenCallback(bw[1]); } }]);
|
||||
}
|
||||
} else {
|
||||
// otherwise, try to detect a proxy
|
||||
|
@ -144,7 +146,7 @@ Zotero.Proxies = new function() {
|
|||
// Ask to save only if automatic proxy recognition is on
|
||||
savedTransparent = _showNotification(bw,
|
||||
Zotero.getString('proxies.notification.recognized.label', [proxy.hosts[0], channel.URI.hostPort]),
|
||||
"enable", function() { _showDialog(proxy.hosts[0], channel.URI.hostPort, proxy) });
|
||||
[{ label: "proxies.notification.enable.button", callback: function() { _showDialog(proxy.hosts[0], channel.URI.hostPort, proxy); } }]);
|
||||
}
|
||||
|
||||
proxy.save();
|
||||
|
@ -246,9 +248,15 @@ Zotero.Proxies = new function() {
|
|||
|
||||
// Otherwise, redirect. Note that we save the URI we're redirecting from as the
|
||||
// referrer, since we can't make a proper redirect
|
||||
_showNotification(bw,
|
||||
Zotero.getString('proxies.notification.redirected.label', [channel.URI.hostPort, proxiedURI.hostPort]),
|
||||
"settings", function() { _prefsOpenCallback(bw[1]) });
|
||||
if(Zotero.Proxies.showRedirectNotification) {
|
||||
_showNotification(bw,
|
||||
Zotero.getString('proxies.notification.redirected.label', [channel.URI.hostPort, proxiedURI.hostPort]),
|
||||
[
|
||||
{ label: "general.dontShowAgain", callback: function() { _disableRedirectNotification(); } },
|
||||
{ label: "proxies.notification.settings.button", callback: function() { _prefsOpenCallback(bw[1]); } }
|
||||
]);
|
||||
}
|
||||
|
||||
browser.loadURIWithFlags(proxied, 0, channel.URI, null, null);
|
||||
}
|
||||
|
||||
|
@ -429,26 +437,37 @@ Zotero.Proxies = new function() {
|
|||
* Show a proxy-related notification
|
||||
* @param {Array} bw output of _getBrowserWindow
|
||||
* @param {String} label notification text
|
||||
* @param {String} button button text ("settings" or "enable")
|
||||
* @param {Function} callback callback to be executed if button is pressed
|
||||
* @param {Array} buttons dicts of button label resource string and associated callback
|
||||
*/
|
||||
function _showNotification(bw, label, button, callback) {
|
||||
function _showNotification(bw, label, buttons) {
|
||||
var browser = bw[0];
|
||||
var window = bw[1];
|
||||
|
||||
|
||||
buttons = buttons.map(function(button) {
|
||||
return {
|
||||
label: Zotero.getString(button.label),
|
||||
callback: button.callback
|
||||
}
|
||||
});
|
||||
|
||||
var listener = function() {
|
||||
var nb = window.gBrowser.getNotificationBox();
|
||||
nb.appendNotification(label,
|
||||
'zotero-proxy', 'chrome://browser/skin/Info.png', nb.PRIORITY_WARNING_MEDIUM,
|
||||
[{
|
||||
label:Zotero.getString('proxies.notification.'+button+'.button'),
|
||||
callback:callback
|
||||
}]);
|
||||
buttons);
|
||||
browser.removeEventListener("pageshow", listener, false);
|
||||
}
|
||||
|
||||
browser.addEventListener("pageshow", listener, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Disables proxy redirection notification
|
||||
*/
|
||||
function _disableRedirectNotification() {
|
||||
Zotero.Proxies.showRedirectNotification = false;
|
||||
Zotero.Prefs.set("proxies.showRedirectNotification",false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Opens preferences window
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Enable proxy redirection">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Hou bronne gesorteer">
|
||||
|
||||
<!ENTITY zotero.citation.page "Bladsy">
|
||||
<!ENTITY zotero.citation.paragraph "Paragraaf">
|
||||
<!ENTITY zotero.citation.line "Lyn">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Onderdruk outeur">
|
||||
<!ENTITY zotero.citation.prefix.label "Voorvoegsel:">
|
||||
<!ENTITY zotero.citation.suffix.label "Agtervoegsel:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=A Zotero operation is currently in progress.
|
||||
general.operationInProgress.waitUntilFinished=Please wait until it has finished.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Show Editor...
|
|||
citation.hideEditor=Hide Editor...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero Report
|
||||
report.parentItem=Parent Item:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "لمزيد من المعلومات.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "اعادة التوجيه عن طريق الوكلاء المستخدمين مسبقا">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "التعرف التلقائي على الوكلاء">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "تعطيل اعادة توجيه الوكيل عندما يحتوي اسم النطاق على ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "الوكلاء المخزنين">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "المضيف">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "الحفاظ على المصادر مرتبة">
|
||||
|
||||
<!ENTITY zotero.citation.page "صفحة">
|
||||
<!ENTITY zotero.citation.paragraph "فقرة">
|
||||
<!ENTITY zotero.citation.line "سطر">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "عدم اضافة المؤلف">
|
||||
<!ENTITY zotero.citation.prefix.label "بادئة:">
|
||||
<!ENTITY zotero.citation.suffix.label "لاحقة:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=عملية زوتيرو حاليا في التقدم.
|
||||
general.operationInProgress.waitUntilFinished=يرجى الانتظار لحين انتهاء.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=عرض المحرر...
|
|||
citation.hideEditor=إخفاء المحرر...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=تقرير زوتيرو
|
||||
report.parentItem=عنصر رئيسي:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "за повече инфромация.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Автоматично запомня ресурсите на прокситата">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Конфигурирани проксита">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Име на хост">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Запазва подредбата на източниците">
|
||||
|
||||
<!ENTITY zotero.citation.page "Страница">
|
||||
<!ENTITY zotero.citation.paragraph "Параграф">
|
||||
<!ENTITY zotero.citation.line "Ред">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Скрива автора">
|
||||
<!ENTITY zotero.citation.prefix.label "Представка:">
|
||||
<!ENTITY zotero.citation.suffix.label "Надставка:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Операция на Зотеро е активна в момента.
|
||||
general.operationInProgress.waitUntilFinished=Моля изчакайте докато приключи.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Показва редактора...
|
|||
citation.hideEditor=Скрива редактора...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Зотеро отчет
|
||||
report.parentItem=Родителски запис:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "per a més informació.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Habilita la redirecció del servidor intermediari">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Reconeix automàticament els recursos dels servidors intermediaris">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Desactiva la redirecció del servidor intermediari quan el nom del domini contingui">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Servidors intermediaris configurats">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Nom de l'amfitrió">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Mantingues les fonts ordenades">
|
||||
|
||||
<!ENTITY zotero.citation.page "Pàgina">
|
||||
<!ENTITY zotero.citation.paragraph "Paràgraf">
|
||||
<!ENTITY zotero.citation.line "Línia">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Suprimeix l'autor">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefix:">
|
||||
<!ENTITY zotero.citation.suffix.label "Sufix:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S més...
|
|||
general.openPreferences=Obre les preferències
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Una operació del Zotero està actualment en curs.
|
||||
general.operationInProgress.waitUntilFinished=Espereu fins que hagi acabat.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Mostra editor...
|
|||
citation.hideEditor=Oculta l'editor...
|
||||
citation.citations=Cites
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Informe del Zotero
|
||||
report.parentItem=Element pare:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link ".">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Automaticky přesměrovávat požadavky skrz dříve použité proxy servery.">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automaticky rozpoznávat proxované zdroje">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Vypnout proxy přesměrování, pokud má doména obsahuje ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Nastavené proxy servery">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Ponechat zdroje seřazené">
|
||||
|
||||
<!ENTITY zotero.citation.page "Stránka">
|
||||
<!ENTITY zotero.citation.paragraph "Odstavec">
|
||||
<!ENTITY zotero.citation.line "Řádek">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Potlačit autora">
|
||||
<!ENTITY zotero.citation.prefix.label "Předpona:">
|
||||
<!ENTITY zotero.citation.suffix.label "Přípona:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S dalších...
|
|||
general.openPreferences=Otevřít předvolby
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Právě probíhá operace se Zoterem.
|
||||
general.operationInProgress.waitUntilFinished=Počkejte prosím, dokud neskončí.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Zobrazit editor...
|
|||
citation.hideEditor=Skrýt editor...
|
||||
citation.citations=Citace
|
||||
citation.notes=Poznámky
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero report
|
||||
report.parentItem=Rodičovská položka:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for nærmere oplysninger.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Send forespørgsler gennem tidligere anvendte proxyer">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Anerkend automatisk ressourcer i proxyer">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Slå automatisk brug af proxyer fra når domænenavnet indeholder ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Konfigurerede proxyer">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Værtsnavn">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Sorter kilder">
|
||||
|
||||
<!ENTITY zotero.citation.page "Side">
|
||||
<!ENTITY zotero.citation.paragraph "Afsnit">
|
||||
<!ENTITY zotero.citation.line "Linie">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Undertryk forfatter/ophav">
|
||||
<!ENTITY zotero.citation.prefix.label "Præfiks:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffiks:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S mere...
|
|||
general.openPreferences=Åbn indstillinger
|
||||
general.keys.ctrlShift=Ctrl+Skift+
|
||||
general.keys.cmdShift=Cmd+Skift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=En handling i Zotero er ved at blive udført.
|
||||
general.operationInProgress.waitUntilFinished=Vent venligst til den er færdig.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Vis redaktør...
|
|||
citation.hideEditor=Skjul redaktør...
|
||||
citation.citations=Henvisninger
|
||||
citation.notes=Noter
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero-rapport
|
||||
report.parentItem=Overordnet element:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "für weitere Informationen">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Proxy-Weiterleitung aktivieren">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Proxy-Ressourcen automatisch erkennen">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Proxy-Weiterleitung de-aktivieren bei diesen Domain-Bestandteilen:">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Definierte Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -126,8 +126,8 @@
|
|||
<!ENTITY zotero.item.textTransform.titlecase "englische Titel-Großschreibung">
|
||||
<!ENTITY zotero.item.textTransform.sentencecase "englische Satz-Großschreibung">
|
||||
<!ENTITY zotero.item.creatorTransform.nameSwap "Vorname/Nachname tauschen">
|
||||
<!ENTITY zotero.item.viewOnline "View Online">
|
||||
<!ENTITY zotero.item.copyAsURL "Copy as URL">
|
||||
<!ENTITY zotero.item.viewOnline "Online anzeigen">
|
||||
<!ENTITY zotero.item.copyAsURL "Als URL kopieren">
|
||||
|
||||
<!ENTITY zotero.toolbar.newNote "Neue Notiz">
|
||||
<!ENTITY zotero.toolbar.note.standalone "Neue eigenständige Notiz">
|
||||
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Quellen sortiert halten">
|
||||
|
||||
<!ENTITY zotero.citation.page "Seite">
|
||||
<!ENTITY zotero.citation.paragraph "Absatz">
|
||||
<!ENTITY zotero.citation.line "Zeile">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Autor unterdrücken">
|
||||
<!ENTITY zotero.citation.prefix.label "Präfix:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffix:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S mehr...
|
|||
general.openPreferences=Einstellungen Öffnen
|
||||
general.keys.ctrlShift=Strg+Umschalt+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Zotero ist beschäftigt.
|
||||
general.operationInProgress.waitUntilFinished=Bitte warten Sie, bis der Vorgang abgeschlossen ist.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Editor anzeigen...
|
|||
citation.hideEditor=Editor verbergen...
|
||||
citation.citations=Zitationen
|
||||
citation.notes=Notizen
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero-Bericht
|
||||
report.parentItem=Übergeordneter Eintrag:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "για περισσότερες πληροφορίες.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Ενεργοποίηση της ανακατεύθυνσης διαμεσολαβητή">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Αυτόματη αναγνώριση διαμεσολαβημένων πόρων">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Να απενεργοποιείται η ανακατεύθυνση διαμεσολαβητή όταν η περιοχή μου περιέχει">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Προσαρμοσμένους διαμεσολαβητές">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Κεντρικό όνομα διακομιστή">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Διατήρηση της ταξινόμησης των πηγών">
|
||||
|
||||
<!ENTITY zotero.citation.page "Σελίδα">
|
||||
<!ENTITY zotero.citation.paragraph "Παράγραφος">
|
||||
<!ENTITY zotero.citation.line "Γραμμή">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Σύμπτυξη συγγραφέα">
|
||||
<!ENTITY zotero.citation.prefix.label "Πρόθεμα:">
|
||||
<!ENTITY zotero.citation.suffix.label "Επίθημα:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Αυτή τη στιγμή εκτελείται κάποια λειτουργία Zotero.
|
||||
general.operationInProgress.waitUntilFinished=Παρακαλώ περιμένετε έως ότου ολοκληρωθεί.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Show Editor...
|
|||
citation.hideEditor=Hide Editor...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero Report
|
||||
report.parentItem=Parent Item:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Enable proxy redirection">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore = %S more…
|
|||
general.openPreferences = Open Preferences
|
||||
general.keys.ctrlShift = Ctrl+Shift+
|
||||
general.keys.cmdShift = Cmd+Shift+
|
||||
general.dontShowAgain = Don’t Show Again
|
||||
|
||||
general.operationInProgress = A Zotero operation is currently in progress.
|
||||
general.operationInProgress.waitUntilFinished = Please wait until it has finished.
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "para mayor información.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Habilitar el redireccionamiento del servidor proxy">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automáticamente reconocer recursos proxificados">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Deshabilitar el redireccionamiento del servidor proxy cuando el nombre del dominio contenga">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Servidores proxies configurados">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Nombre del sistema">
|
||||
|
|
|
@ -126,8 +126,8 @@
|
|||
<!ENTITY zotero.item.textTransform.titlecase "Capitalización De Título">
|
||||
<!ENTITY zotero.item.textTransform.sentencecase "Capitalización de oración">
|
||||
<!ENTITY zotero.item.creatorTransform.nameSwap "Intercambiar Nombre/Apellido">
|
||||
<!ENTITY zotero.item.viewOnline "View Online">
|
||||
<!ENTITY zotero.item.copyAsURL "Copy as URL">
|
||||
<!ENTITY zotero.item.viewOnline "Ver en línea">
|
||||
<!ENTITY zotero.item.copyAsURL "Copiar como URL">
|
||||
|
||||
<!ENTITY zotero.toolbar.newNote "Nueva nota">
|
||||
<!ENTITY zotero.toolbar.note.standalone "Nueva nota independiente">
|
||||
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Mantener las fuentes ordenadas">
|
||||
|
||||
<!ENTITY zotero.citation.page "Página">
|
||||
<!ENTITY zotero.citation.paragraph "Párrafo">
|
||||
<!ENTITY zotero.citation.line "Línea">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Omitir el autor">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefijo:">
|
||||
<!ENTITY zotero.citation.suffix.label "Sufijo:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S más…
|
|||
general.openPreferences=Abrir preferencias
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Una operación de Zotero se encuentra en progreso.
|
||||
general.operationInProgress.waitUntilFinished=Espera hasta que termine.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Mostrar editor...
|
|||
citation.hideEditor=Ocultar editor...
|
||||
citation.citations=Citas
|
||||
citation.notes=Notas
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Informe de Zotero
|
||||
report.parentItem=Ítem contenedor:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link ".">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Pidada meeles prokside kaudu kasutatavad allikad">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Tuvastada prokside kaudu külastatavad lehed automaatselt">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Proksile ümbersuunamine peatada, kui domeeninimi sisaldab ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Konfigureeritud proksid">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostinimi">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Hoida allikad sorteeritud">
|
||||
|
||||
<!ENTITY zotero.citation.page "Lehekülg">
|
||||
<!ENTITY zotero.citation.paragraph "Paragrahv">
|
||||
<!ENTITY zotero.citation.line "Rida">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Peida autor">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefiks:">
|
||||
<!ENTITY zotero.citation.suffix.label "Sufiks:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Zotero parajasti toimetab.
|
||||
general.operationInProgress.waitUntilFinished=Palun oodake kuni see lõpeb.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Toimetaja näidata...
|
|||
citation.hideEditor=Toimetaja peita...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero raport
|
||||
report.parentItem=Ülemkirje:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Automatically remember proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Iturriak ordenaturik mantendu">
|
||||
|
||||
<!ENTITY zotero.citation.page "orr.">
|
||||
<!ENTITY zotero.citation.paragraph "Parrafo">
|
||||
<!ENTITY zotero.citation.line "Errenkada">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Ezkutatu autorea">
|
||||
<!ENTITY zotero.citation.prefix.label "Aurretik:">
|
||||
<!ENTITY zotero.citation.suffix.label "Atzetik:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Zotero lanean ari da.
|
||||
general.operationInProgress.waitUntilFinished=Itxaren ezazu bukatu arte.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Erakutsi Editorea...
|
|||
citation.hideEditor=Ezkutatu Editorea...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero Txostena
|
||||
report.parentItem=Item Gurasoa:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "را ببینید.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "فعال کردن هدایت به پیشکار">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "به خاطر سپردن منابعی که نیاز به پیشکار دارند به صورت خودکار">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "غیرفعال کردن هدایت به پیشکار در زمانی که نام دامنه شامل این عبارت باشد ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "پیشکارهای تنظیم شده">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "نام میزبان">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "مرتب نگه داشتن منابع">
|
||||
|
||||
<!ENTITY zotero.citation.page "صفحه">
|
||||
<!ENTITY zotero.citation.paragraph "پاراگراف">
|
||||
<!ENTITY zotero.citation.line "خط">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "حذف نام نویسنده">
|
||||
<!ENTITY zotero.citation.prefix.label "پیشوند:">
|
||||
<!ENTITY zotero.citation.suffix.label "پسوند:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=بازکردن تنظیمات
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=زوترو در حال انجام کاری است.
|
||||
general.operationInProgress.waitUntilFinished=لطفا تا زمان اتمام آن صبر کنید.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=نمایش ویرایشگر...
|
|||
citation.hideEditor=نهفتن ویرایشگر ...
|
||||
citation.citations=Citations
|
||||
citation.notes=یادداشتها
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=گزارش زوترو
|
||||
report.parentItem=آیتم مادر:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "lisätietoja.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Käytä välityspalvelinta uudelleenohjaukseen">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Tunnista välitetyt resurssit automaattisesti">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Poista käytöstä välitetty uudelleenohjaus, kun palvelinnimessä on">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Konfiguroidut välityspalvelimet">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Palvelimen nimi">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Pidä lähteet lajiteltuna">
|
||||
|
||||
<!ENTITY zotero.citation.page "Sivu">
|
||||
<!ENTITY zotero.citation.paragraph "Kappale">
|
||||
<!ENTITY zotero.citation.line "Rivi">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Piilota tekijä">
|
||||
<!ENTITY zotero.citation.prefix.label "Etuliite:">
|
||||
<!ENTITY zotero.citation.suffix.label "Jälkiliite:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S lisää...
|
|||
general.openPreferences=Avaa asetukset
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Zoteron toimenpide on käynnissä.
|
||||
general.operationInProgress.waitUntilFinished=Odota, kunnes se valmis.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Show Editor...
|
|||
citation.hideEditor=Hide Editor...
|
||||
citation.citations=Sitaati
|
||||
citation.notes=Muistiinpanot
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero-raportti
|
||||
report.parentItem=Ylänimike:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "pour plus d'information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Activer la redirection par un serveur mandataire (proxy)">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Reconnaître automatiquement les ressources passant par un serveur mandataire">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Désactiver la redirection par un serveur mandataire lorsque mon nom de domaine contient ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Serveurs mandataires configurés">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Adresse Internet">
|
||||
|
|
|
@ -126,8 +126,8 @@
|
|||
<!ENTITY zotero.item.textTransform.titlecase "Initiales En Majuscules">
|
||||
<!ENTITY zotero.item.textTransform.sentencecase "Lettre capitale en début de phrase">
|
||||
<!ENTITY zotero.item.creatorTransform.nameSwap "Inverser prénom/nom">
|
||||
<!ENTITY zotero.item.viewOnline "View Online">
|
||||
<!ENTITY zotero.item.copyAsURL "Copy as URL">
|
||||
<!ENTITY zotero.item.viewOnline "Afficher en ligne">
|
||||
<!ENTITY zotero.item.copyAsURL "Copier comme un lien">
|
||||
|
||||
<!ENTITY zotero.toolbar.newNote "Nouvelle note">
|
||||
<!ENTITY zotero.toolbar.note.standalone "Nouvelle note indépendante">
|
||||
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Conserver les sources en ordre alphabétique">
|
||||
|
||||
<!ENTITY zotero.citation.page "Page">
|
||||
<!ENTITY zotero.citation.paragraph "Paragraphe">
|
||||
<!ENTITY zotero.citation.line "Ligne">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Supprimer l'auteur">
|
||||
<!ENTITY zotero.citation.prefix.label "Préfixe :">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffixe :">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S autres…
|
|||
general.openPreferences=Ouvrir les Préférences
|
||||
general.keys.ctrlShift=Ctrl+Maj+
|
||||
general.keys.cmdShift=Cmd+Maj+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Une opération Zotero est actuellement en cours.
|
||||
general.operationInProgress.waitUntilFinished=Veuillez attendre jusqu'à ce qu'elle soit terminée.
|
||||
|
@ -122,7 +123,7 @@ dataDir.standaloneMigration.description=Il semble que cela soit votre première
|
|||
dataDir.standaloneMigration.multipleProfiles=%1$S partagera son répertoire de données avec le dernier profil utilisé.
|
||||
dataDir.standaloneMigration.selectCustom=Répertoire de données personnalisé…
|
||||
|
||||
app.standalone=Zotero Standalone (autonome)
|
||||
app.standalone=Zotero Standalone
|
||||
app.firefox=Zotero pour Firefox
|
||||
|
||||
startupError=Une erreur s'est produite lors du démarrage de Zotero.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Montrer l'éditeur…
|
|||
citation.hideEditor=Cacher l'éditeur…
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Rapport Zotero
|
||||
report.parentItem=Document parent :
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "para máis información.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Activar o redireccionamento por proxy">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Recoñecer automaticamente os recursos en proxy">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Desactivar as redireccións proxy cando o meu dominio conteña">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Proxies configurados">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Manter as fontes ordenadas">
|
||||
|
||||
<!ENTITY zotero.citation.page "Páxina">
|
||||
<!ENTITY zotero.citation.paragraph "Parágrafo">
|
||||
<!ENTITY zotero.citation.line "Liña">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Eliminar o autor">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefixo:">
|
||||
<!ENTITY zotero.citation.suffix.label "Sufixo:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S máis...
|
|||
general.openPreferences=Abrir as preferencias
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Está en marcha unha operación Zotero
|
||||
general.operationInProgress.waitUntilFinished=Agarde ata que teña acabado.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Mostrar o editor
|
|||
citation.hideEditor=Agochar o editor
|
||||
citation.citations=Citacións
|
||||
citation.notes=Notas
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Informe de Zotero
|
||||
report.parentItem=Artigo pai:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Transparently redirect requests through previously used proxies">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Keep Sources Sorted">
|
||||
|
||||
<!ENTITY zotero.citation.page "עמוד">
|
||||
<!ENTITY zotero.citation.paragraph "פיסקה">
|
||||
<!ENTITY zotero.citation.line "שורה">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Suppress Author">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefix:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffix:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=A Zotero operation is currently in progress.
|
||||
general.operationInProgress.waitUntilFinished=Please wait until it has finished.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=הצג עורך...
|
|||
citation.hideEditor=הסתר עורך...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero Report
|
||||
report.parentItem=Parent Item:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Transparently redirect requests through previously used proxies">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Keep Sources Sorted">
|
||||
|
||||
<!ENTITY zotero.citation.page "Page">
|
||||
<!ENTITY zotero.citation.paragraph "Paragraph">
|
||||
<!ENTITY zotero.citation.line "Line">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Suppress Author">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefix:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffix:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=A Zotero operation is currently in progress.
|
||||
general.operationInProgress.waitUntilFinished=Please wait until it has finished.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Show Editor...
|
|||
citation.hideEditor=Hide Editor...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero Report
|
||||
report.parentItem=Parent Item:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "további információkért.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Emlékezzen a proxyn keresztül megtekintett erőforrásokra">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Proxy-források automatikus felismerése">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Proxy átirányítás tiltása, ha a domén nevem tartalmaz">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Proxyk">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Host neve">
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<!ENTITY zotero.general.ok "OK">
|
||||
<!ENTITY zotero.general.cancel "Mégse">
|
||||
<!ENTITY zotero.general.refresh "Refresh">
|
||||
<!ENTITY zotero.general.saveAs "Save As…">
|
||||
<!ENTITY zotero.general.saveAs "Mentés másként…">
|
||||
|
||||
<!ENTITY zotero.errorReport.title "Zotero hibajelentés">
|
||||
<!ENTITY zotero.errorReport.unrelatedMessages "Tartalmazhat a Zotero-tól független üzeneteket.">
|
||||
|
@ -127,7 +127,7 @@
|
|||
<!ENTITY zotero.item.textTransform.sentencecase "Mondatkezdő">
|
||||
<!ENTITY zotero.item.creatorTransform.nameSwap "Swap First/Last Names">
|
||||
<!ENTITY zotero.item.viewOnline "View Online">
|
||||
<!ENTITY zotero.item.copyAsURL "Copy as URL">
|
||||
<!ENTITY zotero.item.copyAsURL "Másolás URL-ként">
|
||||
|
||||
<!ENTITY zotero.toolbar.newNote "Új jegyzet">
|
||||
<!ENTITY zotero.toolbar.note.standalone "Új önálló jegyzet">
|
||||
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Források sorbarendezése">
|
||||
|
||||
<!ENTITY zotero.citation.page "Oldal">
|
||||
<!ENTITY zotero.citation.paragraph "Bekezdés">
|
||||
<!ENTITY zotero.citation.line "Sor">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Szerző figyelmen kívül hagyása">
|
||||
<!ENTITY zotero.citation.prefix.label "Előtag:">
|
||||
<!ENTITY zotero.citation.suffix.label "Utótag:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Beállítások megnyitása
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=A Zotero dolgozik.
|
||||
general.operationInProgress.waitUntilFinished=Kérjük várjon, amíg a művelet befejeződik.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Szerkesztő megjelenítése...
|
|||
citation.hideEditor=Szerkesztő elrejtése...
|
||||
citation.citations=Hivatkozások
|
||||
citation.notes=Jegyzetek
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero jelentés
|
||||
report.parentItem=Szülő elem:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "untuk informasi lebih lanjut.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Aktifkan pengalihan proksi">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Kenali secara automatis sumber-sumber yang terproksi">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Nonaktifkan pengalihan proksi ketika nama domain saya mengandung">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Proksi Terkonfigurasi">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Nama Host">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Tetap Urutkan Sumber-sumber">
|
||||
|
||||
<!ENTITY zotero.citation.page "Halaman">
|
||||
<!ENTITY zotero.citation.paragraph "Paragraf">
|
||||
<!ENTITY zotero.citation.line "Garis">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Sembunyikan Nama Penulis">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefiks:">
|
||||
<!ENTITY zotero.citation.suffix.label "Sufiks:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Operasi Zotero sedang berjalan saat ini.
|
||||
general.operationInProgress.waitUntilFinished=Mohon tunggu sampai selesai
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Tunjukkan Editor...
|
|||
citation.hideEditor=Sembunyikan Editor
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Laporan Zotero
|
||||
report.parentItem=Item Induk:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "til frekari upplýsinga.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Virkja framvísun leppa">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Sjálvirk auðkenning á leppagögnum">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Afvirkja framvísun leppa þegar mitt nafn á léni inniheldur">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Stilltir leppar">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Nafn hýsitölvu">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Raða uppruna">
|
||||
|
||||
<!ENTITY zotero.citation.page "Blaðsíða">
|
||||
<!ENTITY zotero.citation.paragraph "Málsgrein">
|
||||
<!ENTITY zotero.citation.line "Lína">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Fela höfund">
|
||||
<!ENTITY zotero.citation.prefix.label "Forskeyti:">
|
||||
<!ENTITY zotero.citation.suffix.label "Viðskeyti:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S fleiri...
|
|||
general.openPreferences=Opna kjörstillingar
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Zotero aðgerð er í núna í vinnslu.
|
||||
general.operationInProgress.waitUntilFinished=Vinsamlegast bíðið þar til henni er lokið.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Show Editor...
|
|||
citation.hideEditor=Hide Editor...
|
||||
citation.citations=Tilvitnanir
|
||||
citation.notes=Athugasemd
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero skýrsla
|
||||
report.parentItem=Móðurfærsla:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "per maggiori informazioni.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Abilita il reindirizzamento tramite proxy">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Riconosci automaticamente le risorse accessibili tramite proxy">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disabilita la rediredizione tramite proxy se il mio domain name contiene">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Proxy configurati">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Mantieni l'ordinamento delle fonti">
|
||||
|
||||
<!ENTITY zotero.citation.page "Pagina">
|
||||
<!ENTITY zotero.citation.paragraph "Capoverso">
|
||||
<!ENTITY zotero.citation.line "Riga">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Ometti autore">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefisso:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffisso:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=altri %S...
|
|||
general.openPreferences=Apri le impostazioni
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Un processo di Zotero è in esecuzione
|
||||
general.operationInProgress.waitUntilFinished=Attendere sino al completamento
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Visualizza editor...
|
|||
citation.hideEditor=Nascondi editor...
|
||||
citation.citations=Citazioni
|
||||
citation.notes=Note
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Rapporto Zotero
|
||||
report.parentItem=Elemento principale:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "をご覧ください。">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "プロキシ転送を有効化する">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "自動的にプロキシ・リソースを認識する">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "私のドメイン名が次を含むときは、プロキシ転送を無効化する: ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "設定済みのプロキシ">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "ホスト名">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "参考文献の順序を維持">
|
||||
|
||||
<!ENTITY zotero.citation.page "ページ">
|
||||
<!ENTITY zotero.citation.paragraph "段落">
|
||||
<!ENTITY zotero.citation.line "行">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "著者名の非表示">
|
||||
<!ENTITY zotero.citation.prefix.label "接頭辞:">
|
||||
<!ENTITY zotero.citation.suffix.label "接尾辞:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=さらに%S個...
|
|||
general.openPreferences=環境設定を開く
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=既に Zotero 処理が進行中です。
|
||||
general.operationInProgress.waitUntilFinished=完了するまでお待ちください。
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=編集者名を表示する...
|
|||
citation.hideEditor=編集者名を表示しない...
|
||||
citation.citations=出典表記
|
||||
citation.notes=メモ
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero レポート
|
||||
report.parentItem=親アイテム:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "សម្រាប់ព័ត៌មានបន្ថែម។">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "អាចប្តូរទិសសិទ្ធិប្រទាន">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "ប្រភពសិទ្ធិប្រទានដែលទទួលស្គាល់ដោយស្វ័យប្រវត្តិ">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "សិទ្ធិប្រទានមិនអាចប្តូរទិសបាន កាលណាឈ្មោះដែនរបស់ខ្ញុំមាននៅក្នុង">
|
||||
<!ENTITY zotero.preferences.proxies.configured "សិទ្ធិប្រទានដែលបានកំណត់រចនាសម្ព័ន្ធ">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "ឈ្មោះម៉ាស៊ីន">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "បែងចែកប្រភពតាមប្រភេទ">
|
||||
|
||||
<!ENTITY zotero.citation.page "ទំព័រ">
|
||||
<!ENTITY zotero.citation.paragraph "កថាខណ្ឌ">
|
||||
<!ENTITY zotero.citation.line "បន្ទាត់">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "អ្នកនិពន្ធ">
|
||||
<!ENTITY zotero.citation.prefix.label "បុព្វបទ:">
|
||||
<!ENTITY zotero.citation.suffix.label "បច្ច័យ:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S បន្ថែម…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=ហ្ស៊ូតេរ៉ូកំពុងដំណើរការឥលូវនេះ។
|
||||
general.operationInProgress.waitUntilFinished=សូមរង់ចាំរហូតដល់ដំណើរការបានបញ្ចប់។
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=បង្ហាញកំណែតម្រូវ...
|
|||
citation.hideEditor=លាក់កំណែតម្រូវ...
|
||||
citation.citations=អាគតដ្ឋាន
|
||||
citation.notes=ចំណាំ
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=របាយការណ៍ហ្ស៊ូតេរ៉ូ
|
||||
report.parentItem=តត្តកម្មៈ
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "를 참고하세요.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "이전에 사용한 프록시를 통해 투명하게 요청 재지정">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "자동으로 프록시 자원을 인식">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "지정된 프록시">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "호스트명">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "원본 정렬 유지">
|
||||
|
||||
<!ENTITY zotero.citation.page "페이지">
|
||||
<!ENTITY zotero.citation.paragraph "단락">
|
||||
<!ENTITY zotero.citation.line "행">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "저자 숨기기">
|
||||
<!ENTITY zotero.citation.prefix.label "접두사:">
|
||||
<!ENTITY zotero.citation.suffix.label "접미사:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Zotero 작업이 현재 진행중입니다.
|
||||
general.operationInProgress.waitUntilFinished=끝날때까지 기다려주세요.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=편집기 표시...
|
|||
citation.hideEditor=편집기 감추기...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero 보고서
|
||||
report.parentItem=근원 항목:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link ".">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Įgalinti įgaliotojo serverio nukreipimą">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatiškai aptikti įgaliotųjų serverių šaltinius">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Uždrauti įgaliotojo serverio nukreipimą, jei mano srities pavadinime yra">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Sukonfigūruoti įgaliotieji serveriai">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Serveris">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Šaltinius automatiškai rikiuoti">
|
||||
|
||||
<!ENTITY zotero.citation.page "Puslapis">
|
||||
<!ENTITY zotero.citation.paragraph "Pastraipa">
|
||||
<!ENTITY zotero.citation.line "Eilutė">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Nerodyti autoriaus">
|
||||
<!ENTITY zotero.citation.prefix.label "Priešdėlis:">
|
||||
<!ENTITY zotero.citation.suffix.label "Priesaga:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=dar %S...
|
|||
general.openPreferences=Atverti nuostatas
|
||||
general.keys.ctrlShift=Vald+Lyg2+
|
||||
general.keys.cmdShift=Meta+Lyg2+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Šiuo metu Zotero atlieka tam tikrus veiksmus.
|
||||
general.operationInProgress.waitUntilFinished=Palaukite, kol bus baigta.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Rodyti rengyklę...
|
|||
citation.hideEditor=Slėpti rengyklę...
|
||||
citation.citations=Citavimai
|
||||
citation.notes=Pastabos
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero ataskaita
|
||||
report.parentItem=Viršesnis įrašas:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Transparently redirect requests through previously used proxies">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Keep Sources Sorted">
|
||||
|
||||
<!ENTITY zotero.citation.page "Хуудас">
|
||||
<!ENTITY zotero.citation.paragraph "Paragraph">
|
||||
<!ENTITY zotero.citation.line "Шугам">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Suppress Author">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefix:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffix:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=A Zotero operation is currently in progress.
|
||||
general.operationInProgress.waitUntilFinished=Please wait until it has finished.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Show Editor...
|
|||
citation.hideEditor=Hide Editor...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero Report
|
||||
report.parentItem=Parent Item:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Transparently redirect requests through previously used proxies">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Behold sortering av kildene">
|
||||
|
||||
<!ENTITY zotero.citation.page "Side">
|
||||
<!ENTITY zotero.citation.paragraph "Avsnitt">
|
||||
<!ENTITY zotero.citation.line "Linje">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Utelat forfatter">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefiks:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffiks:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=A Zotero operation is currently in progress.
|
||||
general.operationInProgress.waitUntilFinished=Please wait until it has finished.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Vis behandler...
|
|||
citation.hideEditor=Skjul behandler...
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero-rapport
|
||||
report.parentItem=Overordnet element:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "voor meer informatie.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Proxy-omleiding inschakelen">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Proxy-omleiding niet gebruiken wanneer mijn domeinnaam ... bevat:">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Ingestelde proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Bronnen gesorteerd houden">
|
||||
|
||||
<!ENTITY zotero.citation.page "Pagina">
|
||||
<!ENTITY zotero.citation.paragraph "Paragraaf">
|
||||
<!ENTITY zotero.citation.line "Regel">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Auteur weglaten">
|
||||
<!ENTITY zotero.citation.prefix.label "Voorvoegsel:">
|
||||
<!ENTITY zotero.citation.suffix.label "Achtervoegsel:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S te gaan...
|
|||
general.openPreferences=Open Voorkeuren
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Zotero is bezig met het uitvoeren van een proces.
|
||||
general.operationInProgress.waitUntilFinished=Wacht tot proces klaar is.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Editor tonen…
|
|||
citation.hideEditor=Editor verbergen…
|
||||
citation.citations=Verwijzingen
|
||||
citation.notes=Aantekeningen
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero-rapport
|
||||
report.parentItem=Hoofditem:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "for more information.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Transparently redirect requests through previously used proxies">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatically recognize proxied resources">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Disable proxy redirection when my domain name contains ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Configured Proxies">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Hostname">
|
||||
|
|
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Hald på sortering av kjeldene">
|
||||
|
||||
<!ENTITY zotero.citation.page "Side">
|
||||
<!ENTITY zotero.citation.paragraph "Avsnitt">
|
||||
<!ENTITY zotero.citation.line "Linje">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Utelat forfattar">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefiks:">
|
||||
<!ENTITY zotero.citation.suffix.label "Suffiks:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S more…
|
|||
general.openPreferences=Open Preferences
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Ei Zotero-handling foregår
|
||||
general.operationInProgress.waitUntilFinished=Please wait until it vert hatt finished.
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Vis handsamar …
|
|||
citation.hideEditor=Skjul handsamar …
|
||||
citation.citations=Citations
|
||||
citation.notes=Notes
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Zotero-rapport
|
||||
report.parentItem=Overordna element:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "aby uzyskać więcej informacji.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Niewidocznie przekierowuj żądania za pomocą poprzednio używanych serwerów proxy">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Automatycznie rozpoznaj zasoby proxy">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Wyłącz przekierowanie proxy jeśli moja nazwa domeny zawiera ">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Skonfigurowane serwery proxy">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Nazwa hosta">
|
||||
|
|
|
@ -126,8 +126,8 @@
|
|||
<!ENTITY zotero.item.textTransform.titlecase "Kapitaliki">
|
||||
<!ENTITY zotero.item.textTransform.sentencecase "Jak w zdaniu">
|
||||
<!ENTITY zotero.item.creatorTransform.nameSwap "Zamień imię i nazwisko">
|
||||
<!ENTITY zotero.item.viewOnline "View Online">
|
||||
<!ENTITY zotero.item.copyAsURL "Copy as URL">
|
||||
<!ENTITY zotero.item.viewOnline "Pokaż online">
|
||||
<!ENTITY zotero.item.copyAsURL "Kopiuj jako URL">
|
||||
|
||||
<!ENTITY zotero.toolbar.newNote "Nowa notatka">
|
||||
<!ENTITY zotero.toolbar.note.standalone "Nowa osobna notatka">
|
||||
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Zachowuj źródło posortowane">
|
||||
|
||||
<!ENTITY zotero.citation.page "Strona">
|
||||
<!ENTITY zotero.citation.paragraph "Rozdział">
|
||||
<!ENTITY zotero.citation.line "Wiersz">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Ukryj autora">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefiks:">
|
||||
<!ENTITY zotero.citation.suffix.label "Sufiks:">
|
||||
|
|
|
@ -55,6 +55,7 @@ general.numMore=%S więcej...
|
|||
general.openPreferences=Otwórz ustawienia
|
||||
general.keys.ctrlShift=Ctrl+Shift+
|
||||
general.keys.cmdShift=Cmd+Shift+
|
||||
general.dontShowAgain=Don’t Show Again
|
||||
|
||||
general.operationInProgress=Operacja Zotero jest aktualnie w trakcie.
|
||||
general.operationInProgress.waitUntilFinished=Proszę poczekać na zakończenie.
|
||||
|
@ -95,14 +96,14 @@ errorReport.repoCannotBeContacted=Nie można połączyć się z repozytorium
|
|||
|
||||
attachmentBasePath.selectDir=Wybierz katalog podstawowy
|
||||
attachmentBasePath.chooseNewPath.title=Potwierdź nowy katalog podstawowy
|
||||
attachmentBasePath.chooseNewPath.message=Linked file attachments below this directory will be saved using relative paths.
|
||||
attachmentBasePath.chooseNewPath.message=Połączone pliki załączników w tym katalogu będą zapisywane z użyciem ścieżek względnych.
|
||||
attachmentBasePath.chooseNewPath.existingAttachments.singular=W nowym katalogu podstawowym znaleziono jeden istniejący załącznik.
|
||||
attachmentBasePath.chooseNewPath.existingAttachments.plural=W nowym katalogu podstawowym znaleziono %S istniejących załączników.
|
||||
attachmentBasePath.chooseNewPath.button=Zmień katalog podstawowy
|
||||
attachmentBasePath.clearBasePath.title=Przywróć absolutne ścieżki
|
||||
attachmentBasePath.clearBasePath.message=New linked file attachments will be saved using absolute paths.
|
||||
attachmentBasePath.clearBasePath.existingAttachments.singular=One existing attachment within the old base directory will be converted to use an absolute path.
|
||||
attachmentBasePath.clearBasePath.existingAttachments.plural=%S existing attachments within the old base directory will be converted to use absolute paths.
|
||||
attachmentBasePath.clearBasePath.message=Nowe połączone pliki załączników będą zapisywane z użyciem ścieżek absolutnych.
|
||||
attachmentBasePath.clearBasePath.existingAttachments.singular=Jeden istniejący załącznik w starym katalogu bazowym będzie zmieniony w celu używania ścieżki absolutnej.
|
||||
attachmentBasePath.clearBasePath.existingAttachments.plural=%S istniejących załączników w starym katalogu bazowym będzie zmienionych w celu używania ścieżek absolutnych.
|
||||
attachmentBasePath.clearBasePath.button=Wyczyść ustawienia katalogu podstawowego
|
||||
|
||||
dataDir.notFound=Nie można znaleźć katalogu danych Zotero.
|
||||
|
@ -223,8 +224,8 @@ pane.items.menu.recognizePDF=Pobierz metadane dla pliku PDF
|
|||
pane.items.menu.recognizePDF.multiple=Pobierz metadane dla plików PDF
|
||||
pane.items.menu.createParent=Utwórz element nadrzędny z wybranego elementu
|
||||
pane.items.menu.createParent.multiple=Utwórz elementy nadrzędne z wybranych elementów
|
||||
pane.items.menu.renameAttachments=Zmień nazwę pliku na podst. metadanych rodzica
|
||||
pane.items.menu.renameAttachments.multiple=Zmień nazwy plików na podst. metadanych rodzica
|
||||
pane.items.menu.renameAttachments=Zmień nazwę pliku na podstawie metadanych rodzica
|
||||
pane.items.menu.renameAttachments.multiple=Zmień nazwy plików na podstawie metadanych rodzica
|
||||
pane.items.showItemInLibrary=Pokaż elementy w Bibliotece
|
||||
|
||||
pane.items.letter.oneParticipant=List do %S
|
||||
|
@ -677,6 +678,22 @@ citation.showEditor=Wyświetl redaktora
|
|||
citation.hideEditor=Ukryj redaktora
|
||||
citation.citations=Cytowania
|
||||
citation.notes=Notatki
|
||||
citation.locator.page=Page
|
||||
citation.locator.book=Book
|
||||
citation.locator.chapter=Chapter
|
||||
citation.locator.column=Column
|
||||
citation.locator.figure=Figure
|
||||
citation.locator.folio=Folio
|
||||
citation.locator.issue=Issue
|
||||
citation.locator.line=Line
|
||||
citation.locator.note=Note
|
||||
citation.locator.opus=Opus
|
||||
citation.locator.paragraph=Paragraph
|
||||
citation.locator.part=Part
|
||||
citation.locator.section=Section
|
||||
citation.locator.subverbo=Sub verbo
|
||||
citation.locator.volume=Volume
|
||||
citation.locator.verse=Verse
|
||||
|
||||
report.title.default=Raport Zotero
|
||||
report.parentItem=Element nadrzędny:
|
||||
|
|
|
@ -144,6 +144,7 @@
|
|||
<!ENTITY zotero.preferences.proxies.desc_after_link "para maiores informações.">
|
||||
<!ENTITY zotero.preferences.proxies.transparent "Habilitar redirecionamento de proxy">
|
||||
<!ENTITY zotero.preferences.proxies.autoRecognize "Reconhecer automaticamente as fontes com proxy">
|
||||
<!ENTITY zotero.preferences.proxies.showRedirectNotification "Show notification when redirecting through a proxy">
|
||||
<!ENTITY zotero.preferences.proxies.disableByDomain "Desabilitar redirecionamento por proxy quando meu nome de domínio conter">
|
||||
<!ENTITY zotero.preferences.proxies.configured "Proxies configurados">
|
||||
<!ENTITY zotero.preferences.proxies.hostname "Nome do host">
|
||||
|
@ -181,7 +182,7 @@
|
|||
<!ENTITY zotero.preferences.dataDir.reveal "Exibir diretório de dados">
|
||||
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.caption "Anexo Relacionado Diretório Base">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.message "Zotero utilizará caminhos parentes para arquivos anexados com link dentro do diretório base, permitindo assim que você acesse arquivos em diferentes computadores conquanto que a estrutura de arquivos do diretório base permaneça o mesma.">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.message "Zotero utilizará caminhos relativos para anexos de arquivos a partir do diretório base, permitindo o acesso a esses arquivos em diferentes computadores, desde que a estrutura dos arquivos dentro do diretório base permaneça a mesma">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.basePath "Diretório base:">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.selectBasePath "Escolha...">
|
||||
<!ENTITY zotero.preferences.attachmentBaseDir.resetBasePath "Reverter para Caminhos Absolutos...">
|
||||
|
@ -201,6 +202,6 @@
|
|||
<!ENTITY zotero.preferences.debugOutputLogging.submitToServer "Enviar ao servidor Zotero">
|
||||
|
||||
<!ENTITY zotero.preferences.openAboutConfig "Abrir about:config">
|
||||
<!ENTITY zotero.preferences.openCSLEdit "Abrir editor de estilos">
|
||||
<!ENTITY zotero.preferences.openCSLPreview "Abrir visualização de estilos">
|
||||
<!ENTITY zotero.preferences.openCSLEdit "Abrir o editor de estilos">
|
||||
<!ENTITY zotero.preferences.openCSLPreview "Abrir a visualização de estilos">
|
||||
<!ENTITY zotero.preferences.openAboutMemory "Abrir about:memory">
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<!ENTITY zotero.search.searchInLibrary "Procurar na biblioteca:">
|
||||
|
||||
<!ENTITY zotero.search.joinMode.prefix "Comparar">
|
||||
<!ENTITY zotero.search.joinMode.prefix "Corresponder a">
|
||||
<!ENTITY zotero.search.joinMode.any "qualquer">
|
||||
<!ENTITY zotero.search.joinMode.all "tudo">
|
||||
<!ENTITY zotero.search.joinMode.suffix "do seguinte:">
|
||||
<!ENTITY zotero.search.joinMode.suffix "o seguinte:">
|
||||
|
||||
<!ENTITY zotero.search.recursive.label "Pesquisar subcoleções">
|
||||
<!ENTITY zotero.search.noChildren "Mostrar apenas itens no nível mais alto">
|
||||
<!ENTITY zotero.search.includeParentsAndChildren "Incluir itens em níveis acima e abaixo dos items localizados">
|
||||
<!ENTITY zotero.search.includeParentsAndChildren "Incluir itens dos níveis acima e abaixo aos itens correspondentes">
|
||||
|
||||
<!ENTITY zotero.search.textModes.phrase "Frase">
|
||||
<!ENTITY zotero.search.textModes.phraseBinary "Frase (incluindo arquivos binários)">
|
||||
|
|
|
@ -1,50 +1,50 @@
|
|||
<!ENTITY zotero.general.optional "(Opcional)">
|
||||
<!ENTITY zotero.general.note "Nota:">
|
||||
<!ENTITY zotero.general.selectAll "Selecionar tudo">
|
||||
<!ENTITY zotero.general.selectAll "Marcar tudo">
|
||||
<!ENTITY zotero.general.deselectAll "Desmarcar tudo">
|
||||
<!ENTITY zotero.general.edit "Editar">
|
||||
<!ENTITY zotero.general.delete "Excluir">
|
||||
<!ENTITY zotero.general.ok "OK">
|
||||
<!ENTITY zotero.general.cancel "Cancelar">
|
||||
<!ENTITY zotero.general.refresh "Refresh">
|
||||
<!ENTITY zotero.general.saveAs "Save As…">
|
||||
<!ENTITY zotero.general.refresh "Atualizar">
|
||||
<!ENTITY zotero.general.saveAs "Salvar como...">
|
||||
|
||||
<!ENTITY zotero.errorReport.title "Relatório de erros do Zotero">
|
||||
<!ENTITY zotero.errorReport.unrelatedMessages "Pode incluir mensagens não relacionadas ao Zotero.">
|
||||
<!ENTITY zotero.errorReport.submissionInProgress "Por favor, aguarde enquanto o relatório de erro é enviado.">
|
||||
<!ENTITY zotero.errorReport.submitted "Seu relatório de erro foi enviado.">
|
||||
<!ENTITY zotero.errorReport.reportID "Número de identificação do relatório:">
|
||||
<!ENTITY zotero.errorReport.postToForums "Por favor, envie uma mensagem para os fóruns Zotero (forums.zotero.org) com o número de identificação do relatório, uma descrição do problema, e quaiquer passos necessários para reproduzi-lo.">
|
||||
<!ENTITY zotero.errorReport.notReviewed "Relatórios de erro geralmente não são analisados a não ser que sejam mencionados nos fóruns.">
|
||||
<!ENTITY zotero.errorReport.submissionInProgress "Por favor, aguarde enquanto o relatório de erros é enviado.">
|
||||
<!ENTITY zotero.errorReport.submitted "Seu relatório de erros foi enviado.">
|
||||
<!ENTITY zotero.errorReport.reportID "Identificação do relatório:">
|
||||
<!ENTITY zotero.errorReport.postToForums "Por favor, envie uma mensagem para os fóruns Zotero (forums.zotero.org) com a identificação do relatório, uma descrição do problema e todos os passos necessários para reproduzi-lo.">
|
||||
<!ENTITY zotero.errorReport.notReviewed "Relatórios de erro não são analisados a não ser que sejam mencionados nos fóruns.">
|
||||
|
||||
<!ENTITY zotero.upgrade.title "Guia de atualização do Zotero">
|
||||
<!ENTITY zotero.upgrade.title "Assistente de atualização do Zotero">
|
||||
<!ENTITY zotero.upgrade.newVersionInstalled "Você instalou uma versão nova de Zotero.">
|
||||
<!ENTITY zotero.upgrade.upgradeRequired "Seu banco de dados Zotero deve ser atualizado para funcionar com a nova versão.">
|
||||
<!ENTITY zotero.upgrade.autoBackup "Será feita uma cópia de segurança automática de seu banco de dados atual antes que qualquer alteração seja efetivada.">
|
||||
<!ENTITY zotero.upgrade.majorUpgrade "Esta é uma atualização extensa.">
|
||||
<!ENTITY zotero.upgrade.upgradeRequired "O banco de dados do seu Zotero deve ser atualizado para funcionar com a nova versão.">
|
||||
<!ENTITY zotero.upgrade.autoBackup "Será feita uma cópia de segurança automática de seu banco de dados atual antes de efetuar qualquer alteração.">
|
||||
<!ENTITY zotero.upgrade.majorUpgrade "Esta é uma atualização maior.">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeBeforeLink "Certifique-se de ter revisado as">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeLink "instruções de atualização">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeAfterLink "antes de continuar">
|
||||
<!ENTITY zotero.upgrade.majorUpgradeAfterLink "antes de continuar.">
|
||||
<!ENTITY zotero.upgrade.upgradeInProgress "Por favor, aguarde o término do processo de atualização. Isso pode levar alguns minutos.">
|
||||
<!ENTITY zotero.upgrade.upgradeSucceeded "Seu banco de dados Zotero foi atualizado com sucesso.">
|
||||
<!ENTITY zotero.upgrade.upgradeSucceeded "O banco de dados do seu Zotero foi atualizado com sucesso.">
|
||||
<!ENTITY zotero.upgrade.changeLogBeforeLink "Por favor, veja">
|
||||
<!ENTITY zotero.upgrade.changeLogLink "o registro de mudanças">
|
||||
<!ENTITY zotero.upgrade.changeLogAfterLink "para descobrir o que há de novo.">
|
||||
|
||||
<!ENTITY zotero.contextMenu.addTextToCurrentNote "Adicionar seleção à nota Zotero">
|
||||
<!ENTITY zotero.contextMenu.addTextToNewNote "Criar item e nota Zotero a partir da seleção">
|
||||
<!ENTITY zotero.contextMenu.saveLinkAsItem "Salvar link como item Zotero">
|
||||
<!ENTITY zotero.contextMenu.saveImageAsItem "Salvar imagem como item Zotero">
|
||||
<!ENTITY zotero.contextMenu.addTextToCurrentNote "Adicionar a seleção como uma nota do Zotero">
|
||||
<!ENTITY zotero.contextMenu.addTextToNewNote "Criar item e nota do Zotero a partir da seleção">
|
||||
<!ENTITY zotero.contextMenu.saveLinkAsItem "Salvar o link como um item do Zotero">
|
||||
<!ENTITY zotero.contextMenu.saveImageAsItem "Salvar a imagem como um item do Zotero">
|
||||
|
||||
<!ENTITY zotero.tabs.info.label "Informação">
|
||||
<!ENTITY zotero.tabs.notes.label "Notas">
|
||||
<!ENTITY zotero.tabs.attachments.label "Anexos">
|
||||
<!ENTITY zotero.tabs.tags.label "Marcadores">
|
||||
<!ENTITY zotero.tabs.tags.label "Etiquetas">
|
||||
<!ENTITY zotero.tabs.related.label "Relacionados">
|
||||
<!ENTITY zotero.notes.separate "Editar em uma janela separada">
|
||||
|
||||
<!ENTITY zotero.toolbar.duplicate.label "Mostrar itens duplicados">
|
||||
<!ENTITY zotero.collections.showUnfiledItems "Mostrar itens sem coleção">
|
||||
<!ENTITY zotero.toolbar.duplicate.label "Mostrar duplicações">
|
||||
<!ENTITY zotero.collections.showUnfiledItems "Mostrar itens sem coleções">
|
||||
|
||||
<!ENTITY zotero.items.itemType "Tipo do item">
|
||||
<!ENTITY zotero.items.type_column "Tipo de item">
|
||||
|
@ -54,11 +54,11 @@
|
|||
<!ENTITY zotero.items.year_column "Ano">
|
||||
<!ENTITY zotero.items.publisher_column "Editor">
|
||||
<!ENTITY zotero.items.publication_column "Publicação">
|
||||
<!ENTITY zotero.items.journalAbbr_column "Periódico">
|
||||
<!ENTITY zotero.items.journalAbbr_column "Abreviatura do periódico">
|
||||
<!ENTITY zotero.items.language_column "Idioma">
|
||||
<!ENTITY zotero.items.accessDate_column "Accesso em">
|
||||
<!ENTITY zotero.items.accessDate_column "Acessado em">
|
||||
<!ENTITY zotero.items.libraryCatalog_column "Catálogo de biblioteca">
|
||||
<!ENTITY zotero.items.callNumber_column "Núm. chamada">
|
||||
<!ENTITY zotero.items.callNumber_column "Número de chamada">
|
||||
<!ENTITY zotero.items.rights_column "Direitos">
|
||||
<!ENTITY zotero.items.dateAdded_column "Data de adição">
|
||||
<!ENTITY zotero.items.dateModified_column "Data de modificação">
|
||||
|
@ -77,23 +77,23 @@
|
|||
<!ENTITY zotero.items.genre_column "Gênero">
|
||||
<!ENTITY zotero.items.system_column "Sistema">
|
||||
<!ENTITY zotero.items.moreColumns.label "Mais colunas">
|
||||
<!ENTITY zotero.items.restoreColumnOrder.label "Restaurar ordem das colunas">
|
||||
<!ENTITY zotero.items.restoreColumnOrder.label "Restaurar a ordem das colunas">
|
||||
|
||||
<!ENTITY zotero.items.menu.showInLibrary "Mostrar na biblioteca">
|
||||
<!ENTITY zotero.items.menu.attach.note "Adicionar nota">
|
||||
<!ENTITY zotero.items.menu.attach "Adicionar anexo">
|
||||
<!ENTITY zotero.items.menu.attach.snapshot "Anexar imagem de página corrente">
|
||||
<!ENTITY zotero.items.menu.attach.link "Anexar link para página corrente">
|
||||
<!ENTITY zotero.items.menu.attach.snapshot "Anexar instantâneo de página atual">
|
||||
<!ENTITY zotero.items.menu.attach.link "Anexar link para a página atual">
|
||||
<!ENTITY zotero.items.menu.attach.link.uri "Anexar endereço para URI...">
|
||||
<!ENTITY zotero.items.menu.attach.file "Anexar cópia armazenada de arquivo...">
|
||||
<!ENTITY zotero.items.menu.attach.fileLink "Anexar link ao arquivo...">
|
||||
<!ENTITY zotero.items.menu.attach.file "Anexar cópia armazenada do arquivo...">
|
||||
<!ENTITY zotero.items.menu.attach.fileLink "Anexar link para o arquivo...">
|
||||
|
||||
<!ENTITY zotero.items.menu.restoreToLibrary "Restaurar para a biblioteca">
|
||||
<!ENTITY zotero.items.menu.duplicateItem "Duplicar item">
|
||||
<!ENTITY zotero.items.menu.mergeItems "Fundir itens...">
|
||||
<!ENTITY zotero.items.menu.mergeItems "Mesclar itens...">
|
||||
|
||||
<!ENTITY zotero.duplicatesMerge.versionSelect "Escolha a versão do ítem para usar como elemento principal:">
|
||||
<!ENTITY zotero.duplicatesMerge.fieldSelect "Selecione campos para evitar outras versões do ítem:">
|
||||
<!ENTITY zotero.duplicatesMerge.versionSelect "Escolha a versão do item a ser utilizada como mestre:">
|
||||
<!ENTITY zotero.duplicatesMerge.fieldSelect "Selecione os campos a serem mantidos das outras versões do item:">
|
||||
|
||||
<!ENTITY zotero.toolbar.newItem.label "Novo item">
|
||||
<!ENTITY zotero.toolbar.moreItemTypes.label "Mais">
|
||||
|
@ -101,33 +101,33 @@
|
|||
<!ENTITY zotero.toolbar.lookup.label "Adicionar item(ns) segundo identificador">
|
||||
<!ENTITY zotero.toolbar.removeItem.label "Remover item...">
|
||||
<!ENTITY zotero.toolbar.newCollection.label "Nova coleção...">
|
||||
<!ENTITY zotero.toolbar.newGroup "New Group...">
|
||||
<!ENTITY zotero.toolbar.newSubcollection.label "Nova sub coleção...">
|
||||
<!ENTITY zotero.toolbar.newGroup "Novo grupo...">
|
||||
<!ENTITY zotero.toolbar.newSubcollection.label "Nova subcoleção...">
|
||||
<!ENTITY zotero.toolbar.newSavedSearch.label "Nova pesquisa salva...">
|
||||
<!ENTITY zotero.toolbar.emptyTrash.label "Esvaziar lixeira">
|
||||
<!ENTITY zotero.toolbar.tagSelector.label "Mostrar/Esconder seletor de tag">
|
||||
<!ENTITY zotero.toolbar.emptyTrash.label "Esvaziar a lixeira">
|
||||
<!ENTITY zotero.toolbar.tagSelector.label "Exibir/ocultar o seletor de etiqueta">
|
||||
<!ENTITY zotero.toolbar.actions.label "Ações">
|
||||
<!ENTITY zotero.toolbar.import.label "Importar...">
|
||||
<!ENTITY zotero.toolbar.importFromClipboard "Importar da Área de transferência">
|
||||
<!ENTITY zotero.toolbar.export.label "Exportar biblioteca...">
|
||||
<!ENTITY zotero.toolbar.rtfScan.label "RTF Scan...">
|
||||
<!ENTITY zotero.toolbar.importFromClipboard "Importar da área de transferência">
|
||||
<!ENTITY zotero.toolbar.export.label "Exportar a biblioteca...">
|
||||
<!ENTITY zotero.toolbar.rtfScan.label "Vasculhar arquivo RTF...">
|
||||
<!ENTITY zotero.toolbar.timeline.label "Criar uma cronologia">
|
||||
<!ENTITY zotero.toolbar.preferences.label "Preferências...">
|
||||
<!ENTITY zotero.toolbar.supportAndDocumentation "Suporte e documentação">
|
||||
<!ENTITY zotero.toolbar.about.label "Sobre Zotero">
|
||||
<!ENTITY zotero.toolbar.about.label "Sobre o Zotero">
|
||||
<!ENTITY zotero.toolbar.advancedSearch "Pesquisa avançada">
|
||||
<!ENTITY zotero.toolbar.tab.tooltip "Alterar modo de aba">
|
||||
<!ENTITY zotero.toolbar.tab.tooltip "Alternar modo de aba">
|
||||
<!ENTITY zotero.toolbar.openURL.label "Localizar">
|
||||
<!ENTITY zotero.toolbar.openURL.tooltip "Encontrar através de sua biblioteca local">
|
||||
<!ENTITY zotero.toolbar.openURL.tooltip "Encontrar na sua biblioteca local">
|
||||
|
||||
<!ENTITY zotero.item.add "Adicionar">
|
||||
<!ENTITY zotero.item.attachment.file.show "Mostrar arquivos">
|
||||
<!ENTITY zotero.item.textTransform "Transformar texto">
|
||||
<!ENTITY zotero.item.attachment.file.show "Exibir o arquivo">
|
||||
<!ENTITY zotero.item.textTransform "Transformar o texto">
|
||||
<!ENTITY zotero.item.textTransform.titlecase "Iniciais Em Maiúsculo">
|
||||
<!ENTITY zotero.item.textTransform.sentencecase "Maiúscula no início da frase">
|
||||
<!ENTITY zotero.item.creatorTransform.nameSwap "Swap First/Last Names">
|
||||
<!ENTITY zotero.item.viewOnline "View Online">
|
||||
<!ENTITY zotero.item.copyAsURL "Copy as URL">
|
||||
<!ENTITY zotero.item.creatorTransform.nameSwap "Trocar Primeiro/Último Nomes">
|
||||
<!ENTITY zotero.item.viewOnline "Ver Online">
|
||||
<!ENTITY zotero.item.copyAsURL "Copiar como URL">
|
||||
|
||||
<!ENTITY zotero.toolbar.newNote "Nova nota">
|
||||
<!ENTITY zotero.toolbar.note.standalone "Nova nota standalone">
|
||||
|
@ -189,9 +189,6 @@
|
|||
|
||||
<!ENTITY zotero.citation.keepSorted.label "Manter fontes ordenadas">
|
||||
|
||||
<!ENTITY zotero.citation.page "Página">
|
||||
<!ENTITY zotero.citation.paragraph "Parágrafo">
|
||||
<!ENTITY zotero.citation.line "Linha">
|
||||
<!ENTITY zotero.citation.suppressAuthor.label "Omitir o nome do autor">
|
||||
<!ENTITY zotero.citation.prefix.label "Prefixo:">
|
||||
<!ENTITY zotero.citation.suffix.label "Sufixo:">
|
||||
|
@ -289,6 +286,6 @@
|
|||
<!ENTITY zotero.downloadManager.saveToLibrary.description "Anexos não podem ser salvos na biblioteca selecionada. Esse documento será salvo em sua biblioteca.">
|
||||
<!ENTITY zotero.downloadManager.noPDFTools.description "Para utilizar esse recurso você deve primeiro instalar as ferramentas de PDF nas preferências do Zotero.">
|
||||
|
||||
<!ENTITY zotero.attachLink.title "Attach Link to URI">
|
||||
<!ENTITY zotero.attachLink.title "Anexar Link para URI">
|
||||
<!ENTITY zotero.attachLink.label.link "Link:">
|
||||
<!ENTITY zotero.attachLink.label.title "Title:">
|
||||
<!ENTITY zotero.attachLink.label.title "Título:">
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue