mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Added view source button
This commit is contained in:
7
.github/ISSUE_TEMPLATE/translate.yml
vendored
7
.github/ISSUE_TEMPLATE/translate.yml
vendored
@@ -24,13 +24,15 @@ body:
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "en",
|
"language": "en",
|
||||||
"direction": "ltr",
|
"direction": "ltr",
|
||||||
|
"action.edit": "Edit this page",
|
||||||
|
"action.skip": "Skip to content",
|
||||||
|
"action.view": "View source of this page",
|
||||||
"announce.dismiss": "Don't show this again",
|
"announce.dismiss": "Don't show this again",
|
||||||
"clipboard.copy": "Copy to clipboard",
|
"clipboard.copy": "Copy to clipboard",
|
||||||
"clipboard.copied": "Copied to clipboard",
|
"clipboard.copied": "Copied to clipboard",
|
||||||
"consent.accept": "Accept",
|
"consent.accept": "Accept",
|
||||||
"consent.manage": "Manage settings",
|
"consent.manage": "Manage settings",
|
||||||
"consent.reject": "Reject",
|
"consent.reject": "Reject",
|
||||||
"edit.link": "Edit this page",
|
|
||||||
"footer": "Footer",
|
"footer": "Footer",
|
||||||
"footer.next": "Next",
|
"footer.next": "Next",
|
||||||
"footer.previous": "Previous",
|
"footer.previous": "Previous",
|
||||||
@@ -52,10 +54,9 @@ body:
|
|||||||
"search.result.term.missing": "Missing",
|
"search.result.term.missing": "Missing",
|
||||||
"select.language": "Select language",
|
"select.language": "Select language",
|
||||||
"select.version": "Select version",
|
"select.version": "Select version",
|
||||||
"skip.link": "Skip to content",
|
"source": "Go to repository",
|
||||||
"source.file.date.created": "Created",
|
"source.file.date.created": "Created",
|
||||||
"source.file.date.updated": "Last update",
|
"source.file.date.updated": "Last update",
|
||||||
"source.link": "Go to repository",
|
|
||||||
"tabs": "Tabs",
|
"tabs": "Tabs",
|
||||||
"toc": "Table of contents",
|
"toc": "Table of contents",
|
||||||
"top": "Back to top"
|
"top": "Back to top"
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
{#-
|
|
||||||
This file was automatically generated - do not edit
|
|
||||||
-#}
|
|
||||||
{% if page.edit_url %}
|
|
||||||
{% set edit = "https://github.com/squidfunk/mkdocs-material/edit" %}
|
|
||||||
{% set view = "https://raw.githubusercontent.com/squidfunk/mkdocs-material" %}
|
|
||||||
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link') }}" class="md-content__button md-icon">
|
|
||||||
{% include ".icons/material/file-edit-outline.svg" %}
|
|
||||||
</a>
|
|
||||||
<a href="{{ page.edit_url | replace(edit, view) }}" title="View source of this page" class="md-content__button md-icon">
|
|
||||||
{% include ".icons/material/file-eye-outline.svg" %}
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
1
material/assets/stylesheets/extra.07698e60.min.css
vendored
Normal file
1
material/assets/stylesheets/extra.07698e60.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/extra.07698e60.min.css.map
Normal file
1
material/assets/stylesheets/extra.07698e60.min.css.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -92,7 +92,7 @@
|
|||||||
{% if page.toc | first is defined %}
|
{% if page.toc | first is defined %}
|
||||||
{% set skip = page.toc | first %}
|
{% set skip = page.toc | first %}
|
||||||
<a href="{{ skip.url | url }}" class="md-skip">
|
<a href="{{ skip.url | url }}" class="md-skip">
|
||||||
{{ lang.t("skip.link") }}
|
{{ lang.t("action.skip") }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% if page.meta and page.meta.ᴴₒᴴₒᴴₒ %}
|
{% if page.meta and page.meta.ᴴₒᴴₒᴴₒ %}
|
||||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/extra.c507a49a.min.css' | url }}">
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/extra.07698e60.min.css' | url }}">
|
||||||
<script src="{{ 'assets/javascripts/extra/bundle.f719a234.min.js' | url }}" defer></script>
|
<script src="{{ 'assets/javascripts/extra/bundle.f719a234.min.js' | url }}" defer></script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -2,8 +2,16 @@
|
|||||||
This file was automatically generated - do not edit
|
This file was automatically generated - do not edit
|
||||||
-#}
|
-#}
|
||||||
{% if page.edit_url %}
|
{% if page.edit_url %}
|
||||||
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link') }}" class="md-content__button md-icon">
|
{% if "content.action.edit" in features %}
|
||||||
{% set icon = config.theme.icon.edit or "material/pencil" %}
|
<a href="{{ page.edit_url }}" title="{{ lang.t('action.edit') }}" class="md-content__button md-icon">
|
||||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
{% set icon = config.theme.icon.edit or "material/file-edit-outline" %}
|
||||||
</a>
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% if "content.action.view" in features %}
|
||||||
|
<a href="{{ page.edit_url | replace(edit, view) }}" title="{{ lang.t('action.view') }}" class="md-content__button md-icon">
|
||||||
|
{% set icon = config.theme.icon.view or "material/file-eye-outline" %}
|
||||||
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "af",
|
"language": "af",
|
||||||
|
"action.edit": "Wysig hierdie bladsy",
|
||||||
|
"action.skip": "Slaan oor na inhoud",
|
||||||
"clipboard.copy": "Kopieer na knipbord",
|
"clipboard.copy": "Kopieer na knipbord",
|
||||||
"clipboard.copied": "gekopieer na knipbord",
|
"clipboard.copied": "gekopieer na knipbord",
|
||||||
"edit.link": "Wysig hierdie bladsy",
|
|
||||||
"footer.next": "Volgende",
|
"footer.next": "Volgende",
|
||||||
"footer.previous": "Vorige",
|
"footer.previous": "Vorige",
|
||||||
"meta.comments": "Kommentaar",
|
"meta.comments": "Kommentaar",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Geen ooreenstemmende dokumente",
|
"search.result.none": "Geen ooreenstemmende dokumente",
|
||||||
"search.result.one": "1 ooreenstemmende dokument",
|
"search.result.one": "1 ooreenstemmende dokument",
|
||||||
"search.result.other": "# ooreenstemmende dokumente",
|
"search.result.other": "# ooreenstemmende dokumente",
|
||||||
"skip.link": "Slaan oor na inhoud",
|
"source": "Slaan oor na inhoud",
|
||||||
"source.file.date.created": "Geskep",
|
"source.file.date.created": "Geskep",
|
||||||
"source.file.date.updated": "Laaste opdatering",
|
"source.file.date.updated": "Laaste opdatering",
|
||||||
"source.link": "Slaan oor na inhoud",
|
|
||||||
"toc": "Inhoudsopgawe"
|
"toc": "Inhoudsopgawe"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -4,9 +4,10 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ar",
|
"language": "ar",
|
||||||
"direction": "rtl",
|
"direction": "rtl",
|
||||||
|
"action.edit": "عدل الصفحة",
|
||||||
|
"action.skip": "انتقل إلى المحتوى",
|
||||||
"clipboard.copy": "نسخ إلى الحافظة",
|
"clipboard.copy": "نسخ إلى الحافظة",
|
||||||
"clipboard.copied": "تم النسخ الى الحافظة",
|
"clipboard.copied": "تم النسخ الى الحافظة",
|
||||||
"edit.link": "عدل الصفحة",
|
|
||||||
"footer.next": "التالية",
|
"footer.next": "التالية",
|
||||||
"footer.previous": "السابقة",
|
"footer.previous": "السابقة",
|
||||||
"meta.comments": "التعليقات",
|
"meta.comments": "التعليقات",
|
||||||
@@ -17,9 +18,8 @@
|
|||||||
"search.result.none": "لا توجد نتائج",
|
"search.result.none": "لا توجد نتائج",
|
||||||
"search.result.one": "نتائج البحث مستند واحد",
|
"search.result.one": "نتائج البحث مستند واحد",
|
||||||
"search.result.other": "نتائج البحث # مستندات",
|
"search.result.other": "نتائج البحث # مستندات",
|
||||||
"skip.link": "انتقل إلى المحتوى",
|
"source": "اذهب إلى المصدر",
|
||||||
"source.file.date.created": "خلقت",
|
"source.file.date.created": "خلقت",
|
||||||
"source.file.date.updated": "اخر تحديث",
|
"source.file.date.updated": "اخر تحديث",
|
||||||
"source.link": "اذهب إلى المصدر",
|
|
||||||
"toc": "جدول المحتويات"
|
"toc": "جدول المحتويات"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "bg",
|
"language": "bg",
|
||||||
|
"action.edit": "Редактирай тази страница",
|
||||||
|
"action.skip": "Към съдържанието",
|
||||||
"clipboard.copy": "Копирай",
|
"clipboard.copy": "Копирай",
|
||||||
"clipboard.copied": "Копирано",
|
"clipboard.copied": "Копирано",
|
||||||
"edit.link": "Редактирай тази страница",
|
|
||||||
"footer": "Долен колонтитул",
|
"footer": "Долен колонтитул",
|
||||||
"footer.next": "Следваща",
|
"footer.next": "Следваща",
|
||||||
"footer.previous": "Предишна",
|
"footer.previous": "Предишна",
|
||||||
@@ -22,10 +23,9 @@
|
|||||||
"search.result.other": "# резултата",
|
"search.result.other": "# резултата",
|
||||||
"search.result.more.one": "още 1 на тази страница",
|
"search.result.more.one": "още 1 на тази страница",
|
||||||
"search.result.more.other": "още # на тази страница",
|
"search.result.more.other": "още # на тази страница",
|
||||||
"skip.link": "Към съдържанието",
|
"source": "Към хранилището",
|
||||||
"source.file.date.created": "Създаден",
|
"source.file.date.created": "Създаден",
|
||||||
"source.file.date.updated": "Последна промяна",
|
"source.file.date.updated": "Последна промяна",
|
||||||
"source.link": "Към хранилището",
|
|
||||||
"tabs": "Табове",
|
"tabs": "Табове",
|
||||||
"toc": "Съдържание"
|
"toc": "Съдържание"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "bn",
|
"language": "bn",
|
||||||
|
"action.edit": "এই পেজ এডিট করুন",
|
||||||
|
"action.skip": "কনটেন্টে যান",
|
||||||
"clipboard.copy": "ক্লিপবোর্ডে কপি করুন",
|
"clipboard.copy": "ক্লিপবোর্ডে কপি করুন",
|
||||||
"clipboard.copied": "ক্লিপবোর্ডে কপি হয়েছে",
|
"clipboard.copied": "ক্লিপবোর্ডে কপি হয়েছে",
|
||||||
"edit.link": "এই পেজ এডিট করুন",
|
|
||||||
"footer": "ফুটার",
|
"footer": "ফুটার",
|
||||||
"footer.next": "পরে",
|
"footer.next": "পরে",
|
||||||
"footer.previous": "পূর্ববর্তী",
|
"footer.previous": "পূর্ববর্তী",
|
||||||
@@ -20,10 +21,9 @@
|
|||||||
"search.result.none": "কিছু পাওয়া যায়নি",
|
"search.result.none": "কিছু পাওয়া যায়নি",
|
||||||
"search.result.one": "১ টা ডকুমেন্ট",
|
"search.result.one": "১ টা ডকুমেন্ট",
|
||||||
"search.result.other": "# টা ডকুমেন্ট",
|
"search.result.other": "# টা ডকুমেন্ট",
|
||||||
"skip.link": "কনটেন্টে যান",
|
"source": "রিপোজিটরিতে যান",
|
||||||
"source.file.date.created": "তৈরি হয়েছে",
|
"source.file.date.created": "তৈরি হয়েছে",
|
||||||
"source.file.date.updated": "শেষ আপডেট",
|
"source.file.date.updated": "শেষ আপডেট",
|
||||||
"source.link": "রিপোজিটরিতে যান",
|
|
||||||
"tabs": "ট্যাব",
|
"tabs": "ট্যাব",
|
||||||
"toc": "টেবিল অফ কনটেন্ট"
|
"toc": "টেবিল অফ কনটেন্ট"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ca",
|
"language": "ca",
|
||||||
|
"action.edit": "Edita aquesta pàgina",
|
||||||
|
"action.skip": "Salta el contingut",
|
||||||
"clipboard.copy": "Còpia al porta-retalls",
|
"clipboard.copy": "Còpia al porta-retalls",
|
||||||
"clipboard.copied": "Copiat al porta-retalls",
|
"clipboard.copied": "Copiat al porta-retalls",
|
||||||
"edit.link": "Edita aquesta pàgina",
|
|
||||||
"footer.next": "Següent",
|
"footer.next": "Següent",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
"meta.comments": "Comentaris",
|
"meta.comments": "Comentaris",
|
||||||
@@ -15,9 +16,8 @@
|
|||||||
"search.result.none": "Cap document coincideix",
|
"search.result.none": "Cap document coincideix",
|
||||||
"search.result.one": "1 document coincident",
|
"search.result.one": "1 document coincident",
|
||||||
"search.result.other": "# documents coincidents",
|
"search.result.other": "# documents coincidents",
|
||||||
"skip.link": "Salta el contingut",
|
"source": "Ves al repositori",
|
||||||
"source.file.date.created": "Creada",
|
"source.file.date.created": "Creada",
|
||||||
"source.file.date.updated": "Darrera actualització",
|
"source.file.date.updated": "Darrera actualització",
|
||||||
"source.link": "Ves al repositori",
|
|
||||||
"toc": "Taula de continguts"
|
"toc": "Taula de continguts"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "cs",
|
"language": "cs",
|
||||||
|
"action.edit": "Upravit tuto stránku",
|
||||||
|
"action.skip": "Přeskočit obsah",
|
||||||
"clipboard.copy": "Kopírovat do schránky",
|
"clipboard.copy": "Kopírovat do schránky",
|
||||||
"clipboard.copied": "Zkopírováno do schránky",
|
"clipboard.copied": "Zkopírováno do schránky",
|
||||||
"edit.link": "Upravit tuto stránku",
|
|
||||||
"footer.next": "Další",
|
"footer.next": "Další",
|
||||||
"footer.previous": "Předchozí",
|
"footer.previous": "Předchozí",
|
||||||
"meta.comments": "Komentáře",
|
"meta.comments": "Komentáře",
|
||||||
@@ -15,9 +16,8 @@
|
|||||||
"search.result.none": "Nenalezeny žádné dokumenty",
|
"search.result.none": "Nenalezeny žádné dokumenty",
|
||||||
"search.result.one": "Nalezený dokument: 1",
|
"search.result.one": "Nalezený dokument: 1",
|
||||||
"search.result.other": "Nalezené dokumenty: #",
|
"search.result.other": "Nalezené dokumenty: #",
|
||||||
"skip.link": "Přeskočit obsah",
|
"source": "Přejít do repozitáře",
|
||||||
"source.file.date.created": "Vytvořeno",
|
"source.file.date.created": "Vytvořeno",
|
||||||
"source.file.date.updated": "Poslední aktualizace",
|
"source.file.date.updated": "Poslední aktualizace",
|
||||||
"source.link": "Přejít do repozitáře",
|
|
||||||
"toc": "Obsah"
|
"toc": "Obsah"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "da",
|
"language": "da",
|
||||||
|
"action.edit": "Redigér denne side",
|
||||||
|
"action.skip": "Gå til indholdet",
|
||||||
"clipboard.copy": "Kopiér til udklipsholderen",
|
"clipboard.copy": "Kopiér til udklipsholderen",
|
||||||
"clipboard.copied": "Kopieret til udklipsholderen",
|
"clipboard.copied": "Kopieret til udklipsholderen",
|
||||||
"edit.link": "Redigér denne side",
|
|
||||||
"footer.next": "Næste",
|
"footer.next": "Næste",
|
||||||
"footer.previous": "Forrige",
|
"footer.previous": "Forrige",
|
||||||
"meta.comments": "Kommentarer",
|
"meta.comments": "Kommentarer",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Ingen resultater fundet",
|
"search.result.none": "Ingen resultater fundet",
|
||||||
"search.result.one": "1 resultat",
|
"search.result.one": "1 resultat",
|
||||||
"search.result.other": "# resultater",
|
"search.result.other": "# resultater",
|
||||||
"skip.link": "Gå til indholdet",
|
"source": "Åbn arkiv",
|
||||||
"source.file.date.created": "Oprettet",
|
"source.file.date.created": "Oprettet",
|
||||||
"source.file.date.updated": "Sidste ændring",
|
"source.file.date.updated": "Sidste ændring",
|
||||||
"source.link": "Åbn arkiv",
|
|
||||||
"toc": "Indholdsfortegnelse"
|
"toc": "Indholdsfortegnelse"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,13 +3,15 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "de",
|
"language": "de",
|
||||||
|
"action.edit": "Seite editieren",
|
||||||
|
"action.skip": "Zum Inhalt",
|
||||||
|
"action.view": "Quellcode der Seite anzeigen",
|
||||||
"announce.dismiss": "Nicht mehr anzeigen",
|
"announce.dismiss": "Nicht mehr anzeigen",
|
||||||
"clipboard.copy": "In Zwischenablage kopieren",
|
"clipboard.copy": "In Zwischenablage kopieren",
|
||||||
"clipboard.copied": "In Zwischenablage kopiert",
|
"clipboard.copied": "In Zwischenablage kopiert",
|
||||||
"consent.accept": "Akzeptieren",
|
"consent.accept": "Akzeptieren",
|
||||||
"consent.manage": "Einstellungen",
|
"consent.manage": "Einstellungen",
|
||||||
"consent.reject": "Ablehnen",
|
"consent.reject": "Ablehnen",
|
||||||
"edit.link": "Seite editieren",
|
|
||||||
"footer": "Fußzeile",
|
"footer": "Fußzeile",
|
||||||
"footer.next": "Weiter",
|
"footer.next": "Weiter",
|
||||||
"footer.previous": "Zurück",
|
"footer.previous": "Zurück",
|
||||||
@@ -32,10 +34,9 @@
|
|||||||
"search.result.term.missing": "Es fehlt",
|
"search.result.term.missing": "Es fehlt",
|
||||||
"select.language": "Sprache wechseln",
|
"select.language": "Sprache wechseln",
|
||||||
"select.version": "Version auswählen",
|
"select.version": "Version auswählen",
|
||||||
"skip.link": "Zum Inhalt",
|
"source": "Zum Repository",
|
||||||
"source.file.date.created": "Erstellt",
|
"source.file.date.created": "Erstellt",
|
||||||
"source.file.date.updated": "Letztes Update",
|
"source.file.date.updated": "Letztes Update",
|
||||||
"source.link": "Zum Repository",
|
|
||||||
"tabs": "Hauptnavigation",
|
"tabs": "Hauptnavigation",
|
||||||
"toc": "Inhaltsverzeichnis",
|
"toc": "Inhaltsverzeichnis",
|
||||||
"top": "Zurück zum Seitenanfang"
|
"top": "Zurück zum Seitenanfang"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "el",
|
"language": "el",
|
||||||
|
"action.edit": "Επεξεργασία αυτής της σελίδας",
|
||||||
|
"action.skip": "Μετάβαση στο περιεχόμενο",
|
||||||
"clipboard.copy": "Αντιγραφή στο πρόχειρο",
|
"clipboard.copy": "Αντιγραφή στο πρόχειρο",
|
||||||
"clipboard.copied": "Αντιγράφηκε στο πρόχειρο",
|
"clipboard.copied": "Αντιγράφηκε στο πρόχειρο",
|
||||||
"edit.link": "Επεξεργασία αυτής της σελίδας",
|
|
||||||
"footer": "Υποσέλιδο",
|
"footer": "Υποσέλιδο",
|
||||||
"footer.next": "Επόμενο",
|
"footer.next": "Επόμενο",
|
||||||
"footer.previous": "Προηγούμενο",
|
"footer.previous": "Προηγούμενο",
|
||||||
@@ -27,10 +28,9 @@
|
|||||||
"search.result.term.missing": "Λείπει",
|
"search.result.term.missing": "Λείπει",
|
||||||
"select.language": "Επιλογή γλώσσας",
|
"select.language": "Επιλογή γλώσσας",
|
||||||
"select.version": "Επιλογή έκδοσης",
|
"select.version": "Επιλογή έκδοσης",
|
||||||
"skip.link": "Μετάβαση στο περιεχόμενο",
|
"source": "Μετάβαση στο αποθετήριο",
|
||||||
"source.file.date.created": "Δημιουργήθηκε",
|
"source.file.date.created": "Δημιουργήθηκε",
|
||||||
"source.file.date.updated": "τελευταία ενημέρωση",
|
"source.file.date.updated": "τελευταία ενημέρωση",
|
||||||
"source.link": "Μετάβαση στο αποθετήριο",
|
|
||||||
"tabs": "Καρτέλες",
|
"tabs": "Καρτέλες",
|
||||||
"toc": "Πίνακας περιεχομένων",
|
"toc": "Πίνακας περιεχομένων",
|
||||||
"top": "Επιστροφή στην αρχή"
|
"top": "Επιστροφή στην αρχή"
|
||||||
|
|||||||
@@ -4,13 +4,15 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "en",
|
"language": "en",
|
||||||
"direction": "ltr",
|
"direction": "ltr",
|
||||||
|
"action.edit": "Edit this page",
|
||||||
|
"action.skip": "Skip to content",
|
||||||
|
"action.view": "View source of this page",
|
||||||
"announce.dismiss": "Don't show this again",
|
"announce.dismiss": "Don't show this again",
|
||||||
"clipboard.copy": "Copy to clipboard",
|
"clipboard.copy": "Copy to clipboard",
|
||||||
"clipboard.copied": "Copied to clipboard",
|
"clipboard.copied": "Copied to clipboard",
|
||||||
"consent.accept": "Accept",
|
"consent.accept": "Accept",
|
||||||
"consent.manage": "Manage settings",
|
"consent.manage": "Manage settings",
|
||||||
"consent.reject": "Reject",
|
"consent.reject": "Reject",
|
||||||
"edit.link": "Edit this page",
|
|
||||||
"footer": "Footer",
|
"footer": "Footer",
|
||||||
"footer.next": "Next",
|
"footer.next": "Next",
|
||||||
"footer.previous": "Previous",
|
"footer.previous": "Previous",
|
||||||
@@ -35,10 +37,9 @@
|
|||||||
"search.result.term.missing": "Missing",
|
"search.result.term.missing": "Missing",
|
||||||
"select.language": "Select language",
|
"select.language": "Select language",
|
||||||
"select.version": "Select version",
|
"select.version": "Select version",
|
||||||
"skip.link": "Skip to content",
|
"source": "Go to repository",
|
||||||
"source.file.date.created": "Created",
|
"source.file.date.created": "Created",
|
||||||
"source.file.date.updated": "Last update",
|
"source.file.date.updated": "Last update",
|
||||||
"source.link": "Go to repository",
|
|
||||||
"tabs": "Tabs",
|
"tabs": "Tabs",
|
||||||
"toc": "Table of contents",
|
"toc": "Table of contents",
|
||||||
"top": "Back to top"
|
"top": "Back to top"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "eo",
|
"language": "eo",
|
||||||
|
"action.edit": "Redakti ĉi tiun paĝon",
|
||||||
|
"action.skip": "Saltu al enhavo",
|
||||||
"clipboard.copy": "Kopii al tondujo",
|
"clipboard.copy": "Kopii al tondujo",
|
||||||
"clipboard.copied": "Kopiado al klipo",
|
"clipboard.copied": "Kopiado al klipo",
|
||||||
"edit.link": "Redakti ĉi tiun paĝon",
|
|
||||||
"footer": "Piedlinio",
|
"footer": "Piedlinio",
|
||||||
"footer.next": "Sekva",
|
"footer.next": "Sekva",
|
||||||
"footer.previous": "Antaŭa",
|
"footer.previous": "Antaŭa",
|
||||||
@@ -20,10 +21,9 @@
|
|||||||
"search.result.none": "Neniuj kongruaj dokumentoj",
|
"search.result.none": "Neniuj kongruaj dokumentoj",
|
||||||
"search.result.one": "1 kongrua dokumento",
|
"search.result.one": "1 kongrua dokumento",
|
||||||
"search.result.other": "# kongruaj dokumentoj",
|
"search.result.other": "# kongruaj dokumentoj",
|
||||||
"skip.link": "Saltu al enhavo",
|
"source": "Iru al deponejo",
|
||||||
"source.file.date.created": "Kreita",
|
"source.file.date.created": "Kreita",
|
||||||
"source.file.date.updated": "Lasta ĝisdatigo",
|
"source.file.date.updated": "Lasta ĝisdatigo",
|
||||||
"source.link": "Iru al deponejo",
|
|
||||||
"tabs": "Langetoj",
|
"tabs": "Langetoj",
|
||||||
"toc": "Enhavtabelo"
|
"toc": "Enhavtabelo"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,11 +3,12 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "es",
|
"language": "es",
|
||||||
|
"action.edit": "Editar esta página",
|
||||||
|
"action.skip": "Saltar a contenido",
|
||||||
"clipboard.copy": "Copiar al portapapeles",
|
"clipboard.copy": "Copiar al portapapeles",
|
||||||
"clipboard.copied": "Copiado al portapapeles",
|
"clipboard.copied": "Copiado al portapapeles",
|
||||||
"consent.accept": "Aceptar",
|
"consent.accept": "Aceptar",
|
||||||
"consent.manage": "Gestionar cookies",
|
"consent.manage": "Gestionar cookies",
|
||||||
"edit.link": "Editar esta página",
|
|
||||||
"footer": "Pie",
|
"footer": "Pie",
|
||||||
"footer.next": "Siguiente",
|
"footer.next": "Siguiente",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
@@ -28,10 +29,9 @@
|
|||||||
"search.result.term.missing": "Falta",
|
"search.result.term.missing": "Falta",
|
||||||
"select.language": "Seleccionar idioma",
|
"select.language": "Seleccionar idioma",
|
||||||
"select.version": "Seleccionar versión",
|
"select.version": "Seleccionar versión",
|
||||||
"skip.link": "Saltar a contenido",
|
"source": "Ir al repositorio",
|
||||||
"source.file.date.created": "Creado",
|
"source.file.date.created": "Creado",
|
||||||
"source.file.date.updated": "Última actualización",
|
"source.file.date.updated": "Última actualización",
|
||||||
"source.link": "Ir al repositorio",
|
|
||||||
"tabs": "Pestañas",
|
"tabs": "Pestañas",
|
||||||
"toc": "Tabla de contenidos",
|
"toc": "Tabla de contenidos",
|
||||||
"top": "Volver al principio"
|
"top": "Volver al principio"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "et",
|
"language": "et",
|
||||||
|
"action.edit": "Muuda seda lehte",
|
||||||
|
"action.skip": "Keri sisuni",
|
||||||
"clipboard.copy": "Kopeeri lõikelauale",
|
"clipboard.copy": "Kopeeri lõikelauale",
|
||||||
"clipboard.copied": "Kopeeritud",
|
"clipboard.copied": "Kopeeritud",
|
||||||
"edit.link": "Muuda seda lehte",
|
|
||||||
"footer.next": "Järgmine",
|
"footer.next": "Järgmine",
|
||||||
"footer.previous": "Eelmine",
|
"footer.previous": "Eelmine",
|
||||||
"meta.comments": "Kommentaarid",
|
"meta.comments": "Kommentaarid",
|
||||||
@@ -15,9 +16,8 @@
|
|||||||
"search.result.none": "Otsingule ei leitud ühtegi vastet",
|
"search.result.none": "Otsingule ei leitud ühtegi vastet",
|
||||||
"search.result.one": "Leiti üks tulemus",
|
"search.result.one": "Leiti üks tulemus",
|
||||||
"search.result.other": "Leiti # tulemust",
|
"search.result.other": "Leiti # tulemust",
|
||||||
"skip.link": "Keri sisuni",
|
"source": "Ava repositooriumis",
|
||||||
"source.file.date.created": "Loodud",
|
"source.file.date.created": "Loodud",
|
||||||
"source.file.date.updated": "Viimane uuendus",
|
"source.file.date.updated": "Viimane uuendus",
|
||||||
"source.link": "Ava repositooriumis",
|
|
||||||
"toc": "Sisukord"
|
"toc": "Sisukord"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -4,9 +4,10 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "fa",
|
"language": "fa",
|
||||||
"direction": "rtl",
|
"direction": "rtl",
|
||||||
|
"action.edit": "این صفحه را ویرایش کنید",
|
||||||
|
"action.skip": "پرش به محتویات",
|
||||||
"clipboard.copy": "کپی کردن",
|
"clipboard.copy": "کپی کردن",
|
||||||
"clipboard.copied": "کپی شد",
|
"clipboard.copied": "کپی شد",
|
||||||
"edit.link": "این صفحه را ویرایش کنید",
|
|
||||||
"footer.next": "بعدی",
|
"footer.next": "بعدی",
|
||||||
"footer.previous": "قبلی",
|
"footer.previous": "قبلی",
|
||||||
"meta.comments": "نظرات",
|
"meta.comments": "نظرات",
|
||||||
@@ -17,9 +18,8 @@
|
|||||||
"search.result.none": "سندی یافت نشد",
|
"search.result.none": "سندی یافت نشد",
|
||||||
"search.result.one": "1 سند یافت شد",
|
"search.result.one": "1 سند یافت شد",
|
||||||
"search.result.other": "# سند یافت شد",
|
"search.result.other": "# سند یافت شد",
|
||||||
"skip.link": "پرش به محتویات",
|
"source": "رفتن به مخزن",
|
||||||
"source.file.date.created": "ایجاد شده",
|
"source.file.date.created": "ایجاد شده",
|
||||||
"source.file.date.updated": "اخرین بروزرسانی",
|
"source.file.date.updated": "اخرین بروزرسانی",
|
||||||
"source.link": "رفتن به مخزن",
|
|
||||||
"toc": "فهرست موضوعات"
|
"toc": "فهرست موضوعات"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "fi",
|
"language": "fi",
|
||||||
|
"action.edit": "Muokkaa tätä sivua",
|
||||||
|
"action.skip": "Hyppää sisältöön",
|
||||||
"clipboard.copy": "Kopioi leikepöydälle",
|
"clipboard.copy": "Kopioi leikepöydälle",
|
||||||
"clipboard.copied": "Kopioitu leikepöydälle",
|
"clipboard.copied": "Kopioitu leikepöydälle",
|
||||||
"edit.link": "Muokkaa tätä sivua",
|
|
||||||
"footer.next": "Seuraava",
|
"footer.next": "Seuraava",
|
||||||
"footer.previous": "Edellinen",
|
"footer.previous": "Edellinen",
|
||||||
"meta.comments": "Kommentit",
|
"meta.comments": "Kommentit",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Ei täsmääviä dokumentteja",
|
"search.result.none": "Ei täsmääviä dokumentteja",
|
||||||
"search.result.one": "1 täsmäävä dokumentti",
|
"search.result.one": "1 täsmäävä dokumentti",
|
||||||
"search.result.other": "# täsmäävää dokumenttia",
|
"search.result.other": "# täsmäävää dokumenttia",
|
||||||
"skip.link": "Hyppää sisältöön",
|
"source": "Mene repositoryyn",
|
||||||
"source.file.date.created": "Luotu",
|
"source.file.date.created": "Luotu",
|
||||||
"source.file.date.updated": "Viimeisin päivitys",
|
"source.file.date.updated": "Viimeisin päivitys",
|
||||||
"source.link": "Mene repositoryyn",
|
|
||||||
"toc": "Sisällysluettelo"
|
"toc": "Sisällysluettelo"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,12 +3,13 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "fr",
|
"language": "fr",
|
||||||
|
"action.edit": "Editer cette page",
|
||||||
|
"action.skip": "Aller au contenu",
|
||||||
"clipboard.copy": "Copier dans le presse-papier",
|
"clipboard.copy": "Copier dans le presse-papier",
|
||||||
"clipboard.copied": "Copié dans le presse-papier",
|
"clipboard.copied": "Copié dans le presse-papier",
|
||||||
"consent.accept": "Accepter",
|
"consent.accept": "Accepter",
|
||||||
"consent.manage": "Paramétrer vos choix",
|
"consent.manage": "Paramétrer vos choix",
|
||||||
"consent.reject": "Refuser",
|
"consent.reject": "Refuser",
|
||||||
"edit.link": "Editer cette page",
|
|
||||||
"footer": "Pied de page",
|
"footer": "Pied de page",
|
||||||
"footer.next": "Suivant",
|
"footer.next": "Suivant",
|
||||||
"footer.previous": "Précédent",
|
"footer.previous": "Précédent",
|
||||||
@@ -29,10 +30,9 @@
|
|||||||
"search.result.term.missing": "Non trouvé",
|
"search.result.term.missing": "Non trouvé",
|
||||||
"select.language": "Sélectionner la langue",
|
"select.language": "Sélectionner la langue",
|
||||||
"select.version": "Sélectionner la version",
|
"select.version": "Sélectionner la version",
|
||||||
"skip.link": "Aller au contenu",
|
"source": "Aller au dépôt",
|
||||||
"source.file.date.created": "Créé",
|
"source.file.date.created": "Créé",
|
||||||
"source.file.date.updated": "Dernière mise à jour",
|
"source.file.date.updated": "Dernière mise à jour",
|
||||||
"source.link": "Aller au dépôt",
|
|
||||||
"tabs": "Onglets",
|
"tabs": "Onglets",
|
||||||
"toc": "Table des matières",
|
"toc": "Table des matières",
|
||||||
"top": "Retour en haut de la page"
|
"top": "Retour en haut de la page"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "gl",
|
"language": "gl",
|
||||||
|
"action.edit": "Editar esta páxina",
|
||||||
|
"action.skip": "Ir ao contido",
|
||||||
"clipboard.copy": "Copiar no cortapapeis",
|
"clipboard.copy": "Copiar no cortapapeis",
|
||||||
"clipboard.copied": "Copiado no cortapapeis",
|
"clipboard.copied": "Copiado no cortapapeis",
|
||||||
"edit.link": "Editar esta páxina",
|
|
||||||
"footer": "Pé",
|
"footer": "Pé",
|
||||||
"footer.next": "Seguinte",
|
"footer.next": "Seguinte",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
@@ -26,10 +27,9 @@
|
|||||||
"search.result.term.missing": "Falta",
|
"search.result.term.missing": "Falta",
|
||||||
"select.language": "Seleccionar idioma",
|
"select.language": "Seleccionar idioma",
|
||||||
"select.version": "Seleccionar version",
|
"select.version": "Seleccionar version",
|
||||||
"skip.link": "Ir ao contido",
|
"source": "Ir ao repositorio",
|
||||||
"source.file.date.created": "Creada",
|
"source.file.date.created": "Creada",
|
||||||
"source.file.date.updated": "Última actualización",
|
"source.file.date.updated": "Última actualización",
|
||||||
"source.link": "Ir ao repositorio",
|
|
||||||
"tabs": "Pestanas",
|
"tabs": "Pestanas",
|
||||||
"toc": "Táboa de contidos",
|
"toc": "Táboa de contidos",
|
||||||
"top": "Volver ao principio"
|
"top": "Volver ao principio"
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "he",
|
"language": "he",
|
||||||
"direction": "rtl",
|
"direction": "rtl",
|
||||||
|
"action.edit": "עריכת הדף הזה",
|
||||||
|
"action.skip": "לדלג לתוכן",
|
||||||
"announce.dismiss": "לא להציג את זה שוב",
|
"announce.dismiss": "לא להציג את זה שוב",
|
||||||
"clipboard.copy": "העתקה ללוח",
|
"clipboard.copy": "העתקה ללוח",
|
||||||
"clipboard.copied": "הועתק ללוח",
|
"clipboard.copied": "הועתק ללוח",
|
||||||
"consent.accept": "לקבל",
|
"consent.accept": "לקבל",
|
||||||
"consent.manage": "לנהל הגדרות",
|
"consent.manage": "לנהל הגדרות",
|
||||||
"consent.reject": "לדחות",
|
"consent.reject": "לדחות",
|
||||||
"edit.link": "עריכת הדף הזה",
|
|
||||||
"footer": "כותרת תחתונה",
|
"footer": "כותרת תחתונה",
|
||||||
"footer.next": "הבא",
|
"footer.next": "הבא",
|
||||||
"footer.previous": "הקודם",
|
"footer.previous": "הקודם",
|
||||||
@@ -33,10 +34,9 @@
|
|||||||
"search.result.term.missing": "חסר",
|
"search.result.term.missing": "חסר",
|
||||||
"select.language": "בחירת שפה",
|
"select.language": "בחירת שפה",
|
||||||
"select.version": "בחירת גרסה",
|
"select.version": "בחירת גרסה",
|
||||||
"skip.link": "לדלג לתוכן",
|
"source": "לעבור אל המאגר",
|
||||||
"source.file.date.created": "נוצר",
|
"source.file.date.created": "נוצר",
|
||||||
"source.file.date.updated": "עדכון אחרון",
|
"source.file.date.updated": "עדכון אחרון",
|
||||||
"source.link": "לעבור אל המאגר",
|
|
||||||
"tabs": "לשוניות",
|
"tabs": "לשוניות",
|
||||||
"toc": "תוכן העניינים",
|
"toc": "תוכן העניינים",
|
||||||
"top": "חזרה למעלה"
|
"top": "חזרה למעלה"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hi",
|
"language": "hi",
|
||||||
|
"action.edit": "इस पृष्ठ को संपादित करें",
|
||||||
|
"action.skip": "विषय पर बढ़ें",
|
||||||
"clipboard.copy": "क्लिपबोर्ड पर कॉपी करें",
|
"clipboard.copy": "क्लिपबोर्ड पर कॉपी करें",
|
||||||
"clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया",
|
"clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया",
|
||||||
"edit.link": "इस पृष्ठ को संपादित करें",
|
|
||||||
"footer.next": "आगामी",
|
"footer.next": "आगामी",
|
||||||
"footer.previous": "पिछला",
|
"footer.previous": "पिछला",
|
||||||
"meta.comments": "टिप्पणियाँ",
|
"meta.comments": "टिप्पणियाँ",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "कोई मिलान डॉक्यूमेंट नहीं",
|
"search.result.none": "कोई मिलान डॉक्यूमेंट नहीं",
|
||||||
"search.result.one": "1 मिलान डॉक्यूमेंट",
|
"search.result.one": "1 मिलान डॉक्यूमेंट",
|
||||||
"search.result.other": "# मिलान डाक्यूमेंट्स",
|
"search.result.other": "# मिलान डाक्यूमेंट्स",
|
||||||
"skip.link": "विषय पर बढ़ें",
|
"source": "रिपॉजिटरी पर जाएं",
|
||||||
"source.file.date.created": "बनाया था",
|
"source.file.date.created": "बनाया था",
|
||||||
"source.file.date.updated": "आखिरी अपडेट",
|
"source.file.date.updated": "आखिरी अपडेट",
|
||||||
"source.link": "रिपॉजिटरी पर जाएं",
|
|
||||||
"toc": "विषय - सूची"
|
"toc": "विषय - सूची"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hr",
|
"language": "hr",
|
||||||
|
"action.edit": "Uredi stranicu",
|
||||||
|
"action.skip": "Preskočite na sadržaj",
|
||||||
"announce.dismiss": "Ne prikazuj ovo opet",
|
"announce.dismiss": "Ne prikazuj ovo opet",
|
||||||
"clipboard.copy": "Kopirajte u međuspremnik",
|
"clipboard.copy": "Kopirajte u međuspremnik",
|
||||||
"clipboard.copied": "Kopirano u međuspremnik",
|
"clipboard.copied": "Kopirano u međuspremnik",
|
||||||
"consent.accept": "Prihvati",
|
"consent.accept": "Prihvati",
|
||||||
"consent.manage": "Upravljaj postavkama",
|
"consent.manage": "Upravljaj postavkama",
|
||||||
"consent.reject": "Odbij",
|
"consent.reject": "Odbij",
|
||||||
"edit.link": "Uredi stranicu",
|
|
||||||
"footer": "Podnožje",
|
"footer": "Podnožje",
|
||||||
"footer.next": "Sljedeće",
|
"footer.next": "Sljedeće",
|
||||||
"footer.previous": "Prethodno",
|
"footer.previous": "Prethodno",
|
||||||
@@ -31,10 +32,9 @@
|
|||||||
"search.result.term.missing": "Nedostaje",
|
"search.result.term.missing": "Nedostaje",
|
||||||
"select.language": "Odabir jezika",
|
"select.language": "Odabir jezika",
|
||||||
"select.version": "Odabir verzije",
|
"select.version": "Odabir verzije",
|
||||||
"skip.link": "Preskočite na sadržaj",
|
"source": "Idite u repozitorij",
|
||||||
"source.file.date.created": "Stvoreno",
|
"source.file.date.created": "Stvoreno",
|
||||||
"source.file.date.updated": "Zadnje ažuriranje",
|
"source.file.date.updated": "Zadnje ažuriranje",
|
||||||
"source.link": "Idite u repozitorij",
|
|
||||||
"tabs": "Kartice",
|
"tabs": "Kartice",
|
||||||
"toc": "Sadržaj",
|
"toc": "Sadržaj",
|
||||||
"top": "Vratite se na vrh"
|
"top": "Vratite se na vrh"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hu",
|
"language": "hu",
|
||||||
|
"action.edit": "Oldal szerkesztése",
|
||||||
|
"action.skip": "Kihagyás",
|
||||||
"clipboard.copy": "Másolás vágólapra",
|
"clipboard.copy": "Másolás vágólapra",
|
||||||
"clipboard.copied": "Vágólapra másolva",
|
"clipboard.copied": "Vágólapra másolva",
|
||||||
"edit.link": "Oldal szerkesztése",
|
|
||||||
"footer": "Élőláb",
|
"footer": "Élőláb",
|
||||||
"footer.next": "Következő",
|
"footer.next": "Következő",
|
||||||
"footer.previous": "Előző",
|
"footer.previous": "Előző",
|
||||||
@@ -24,10 +25,9 @@
|
|||||||
"search.result.more.one": "1 további találat az oldalon",
|
"search.result.more.one": "1 további találat az oldalon",
|
||||||
"search.result.more.other": "# további találat az oldalon",
|
"search.result.more.other": "# további találat az oldalon",
|
||||||
"search.result.term.missing": "Üres",
|
"search.result.term.missing": "Üres",
|
||||||
"skip.link": "Kihagyás",
|
"source": "Főoldalra ugrás",
|
||||||
"source.file.date.created": "Létrehozva",
|
"source.file.date.created": "Létrehozva",
|
||||||
"source.file.date.updated": "Utolsó frissítés",
|
"source.file.date.updated": "Utolsó frissítés",
|
||||||
"source.link": "Főoldalra ugrás",
|
|
||||||
"tabs": "Lapok",
|
"tabs": "Lapok",
|
||||||
"toc": "Tartalomjegyzék"
|
"toc": "Tartalomjegyzék"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hy",
|
"language": "hy",
|
||||||
|
"action.edit": "Խմբագրել այս էջը",
|
||||||
|
"action.skip": "Անցնել պարունակությանը",
|
||||||
"clipboard.copy": "Պատճենել",
|
"clipboard.copy": "Պատճենել",
|
||||||
"clipboard.copied": "Պատճենված է",
|
"clipboard.copied": "Պատճենված է",
|
||||||
"edit.link": "Խմբագրել այս էջը",
|
|
||||||
"footer": "Վերջնագիր",
|
"footer": "Վերջնագիր",
|
||||||
"footer.next": "Հաջորդը",
|
"footer.next": "Հաջորդը",
|
||||||
"footer.previous": "Նախորդը",
|
"footer.previous": "Նախորդը",
|
||||||
@@ -28,10 +29,9 @@
|
|||||||
"search.result.term.missing": "Բացակայում է",
|
"search.result.term.missing": "Բացակայում է",
|
||||||
"select.language": "Ընտրել լեզուն",
|
"select.language": "Ընտրել լեզուն",
|
||||||
"select.version": "Ընտրել տարբերակը",
|
"select.version": "Ընտրել տարբերակը",
|
||||||
"skip.link": "Անցնել պարունակությանը",
|
"source": "Դեպի պահոց",
|
||||||
"source.file.date.created": "Ստեղծված է",
|
"source.file.date.created": "Ստեղծված է",
|
||||||
"source.file.date.updated": "Վերջին թարմացումը",
|
"source.file.date.updated": "Վերջին թարմացումը",
|
||||||
"source.link": "Դեպի պահոց",
|
|
||||||
"tabs": "Ներդիրներ",
|
"tabs": "Ներդիրներ",
|
||||||
"toc": "Բովանդակություն",
|
"toc": "Բովանդակություն",
|
||||||
"top": "Վերադառնալ սկիզբ"
|
"top": "Վերադառնալ սկիզբ"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "id",
|
"language": "id",
|
||||||
|
"action.edit": "Ubah halaman ini",
|
||||||
|
"action.skip": "Lewati ke isi",
|
||||||
"clipboard.copy": "Salin ke memori",
|
"clipboard.copy": "Salin ke memori",
|
||||||
"clipboard.copied": "Tersalin ke memori",
|
"clipboard.copied": "Tersalin ke memori",
|
||||||
"edit.link": "Ubah halaman ini",
|
|
||||||
"footer.next": "Selanjutnya",
|
"footer.next": "Selanjutnya",
|
||||||
"footer.previous": "Sebelumnya",
|
"footer.previous": "Sebelumnya",
|
||||||
"meta.comments": "Komentar",
|
"meta.comments": "Komentar",
|
||||||
@@ -16,8 +17,7 @@
|
|||||||
"search.result.none": "Tidak ada dokumen yang sesuai",
|
"search.result.none": "Tidak ada dokumen yang sesuai",
|
||||||
"search.result.one": "1 dokumen ditemukan",
|
"search.result.one": "1 dokumen ditemukan",
|
||||||
"search.result.other": "# dokumen ditemukan",
|
"search.result.other": "# dokumen ditemukan",
|
||||||
"skip.link": "Lewati ke isi",
|
"source": "Menuju repositori",
|
||||||
"source.file.date.created": "Dibuat",
|
"source.file.date.created": "Dibuat",
|
||||||
"source.link": "Menuju repositori",
|
|
||||||
"toc": "Daftar isi"
|
"toc": "Daftar isi"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "is",
|
"language": "is",
|
||||||
|
"action.edit": "Ritvinna þessa síðu",
|
||||||
|
"action.skip": "Hoppa yfir í efni",
|
||||||
"clipboard.copy": "Afrita í klemmuspjald",
|
"clipboard.copy": "Afrita í klemmuspjald",
|
||||||
"clipboard.copied": "Afritað í klemmuspjald",
|
"clipboard.copied": "Afritað í klemmuspjald",
|
||||||
"edit.link": "Ritvinna þessa síðu",
|
|
||||||
"footer": "Síðufótur",
|
"footer": "Síðufótur",
|
||||||
"footer.next": "Næsta",
|
"footer.next": "Næsta",
|
||||||
"footer.previous": "Fyrra",
|
"footer.previous": "Fyrra",
|
||||||
@@ -21,10 +22,9 @@
|
|||||||
"search.result.other": "# skjöl fundust",
|
"search.result.other": "# skjöl fundust",
|
||||||
"search.result.more.one": "1 til viðbótar á þessari síðu",
|
"search.result.more.one": "1 til viðbótar á þessari síðu",
|
||||||
"search.result.more.other": "# til viðbótar á þessari síðu",
|
"search.result.more.other": "# til viðbótar á þessari síðu",
|
||||||
"skip.link": "Hoppa yfir í efni",
|
"source": "Fara í gagnahirslu (e. repository)",
|
||||||
"source.file.date.created": "Búið til",
|
"source.file.date.created": "Búið til",
|
||||||
"source.file.date.updated": "Síðasta uppfærsla",
|
"source.file.date.updated": "Síðasta uppfærsla",
|
||||||
"source.link": "Fara í gagnahirslu (e. repository)",
|
|
||||||
"tabs": "Flipar",
|
"tabs": "Flipar",
|
||||||
"toc": "Efnisyfirlit"
|
"toc": "Efnisyfirlit"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "it",
|
"language": "it",
|
||||||
|
"action.edit": "Modifica",
|
||||||
|
"action.skip": "Vai al contenuto",
|
||||||
"clipboard.copy": "Copia",
|
"clipboard.copy": "Copia",
|
||||||
"clipboard.copied": "Copiato",
|
"clipboard.copied": "Copiato",
|
||||||
"edit.link": "Modifica",
|
|
||||||
"footer": "Piede",
|
"footer": "Piede",
|
||||||
"footer.next": "Prossimo",
|
"footer.next": "Prossimo",
|
||||||
"footer.previous": "Precedente",
|
"footer.previous": "Precedente",
|
||||||
@@ -28,10 +29,9 @@
|
|||||||
"search.result.term.missing": "Non presente",
|
"search.result.term.missing": "Non presente",
|
||||||
"select.language": "Seleziona la lingua",
|
"select.language": "Seleziona la lingua",
|
||||||
"select.version": "Seleziona la versione",
|
"select.version": "Seleziona la versione",
|
||||||
"skip.link": "Vai al contenuto",
|
"source": "Apri repository",
|
||||||
"source.file.date.created": "Creata",
|
"source.file.date.created": "Creata",
|
||||||
"source.file.date.updated": "Ultimo aggiornamento",
|
"source.file.date.updated": "Ultimo aggiornamento",
|
||||||
"source.link": "Apri repository",
|
|
||||||
"tabs": "Tabs",
|
"tabs": "Tabs",
|
||||||
"toc": "Indice",
|
"toc": "Indice",
|
||||||
"top": "Torna su"
|
"top": "Torna su"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ja",
|
"language": "ja",
|
||||||
|
"action.edit": "編集",
|
||||||
|
"action.skip": "コンテンツにスキップ",
|
||||||
"clipboard.copy": "クリップボードへコピー",
|
"clipboard.copy": "クリップボードへコピー",
|
||||||
"clipboard.copied": "コピーしました",
|
"clipboard.copied": "コピーしました",
|
||||||
"edit.link": "編集",
|
|
||||||
"footer": "フッター",
|
"footer": "フッター",
|
||||||
"footer.next": "次",
|
"footer.next": "次",
|
||||||
"footer.previous": "前",
|
"footer.previous": "前",
|
||||||
@@ -26,10 +27,9 @@
|
|||||||
"search.result.more.one": "このページ内にもう1件見つかりました",
|
"search.result.more.one": "このページ内にもう1件見つかりました",
|
||||||
"search.result.more.other": "このページ内にあと#件見つかりました",
|
"search.result.more.other": "このページ内にあと#件見つかりました",
|
||||||
"search.result.term.missing": "検索に含まれない",
|
"search.result.term.missing": "検索に含まれない",
|
||||||
"skip.link": "コンテンツにスキップ",
|
"source": "リポジトリへ",
|
||||||
"source.file.date.created": "作成した",
|
"source.file.date.created": "作成した",
|
||||||
"source.file.date.updated": "最終更新日",
|
"source.file.date.updated": "最終更新日",
|
||||||
"source.link": "リポジトリへ",
|
|
||||||
"tabs": "タブ",
|
"tabs": "タブ",
|
||||||
"toc": "目次"
|
"toc": "目次"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ka",
|
"language": "ka",
|
||||||
|
"action.edit": "გვერდის რედარქირება",
|
||||||
|
"action.skip": "კონტენტზე გადასვლა",
|
||||||
"clipboard.copy": "კოპირება",
|
"clipboard.copy": "კოპირება",
|
||||||
"clipboard.copied": "კოპირებულია",
|
"clipboard.copied": "კოპირებულია",
|
||||||
"edit.link": "გვერდის რედარქირება",
|
|
||||||
"footer.next": "შემდეგი",
|
"footer.next": "შემდეგი",
|
||||||
"footer.previous": "წინა",
|
"footer.previous": "წინა",
|
||||||
"meta.comments": "კომენტარები",
|
"meta.comments": "კომენტარები",
|
||||||
@@ -20,10 +21,9 @@
|
|||||||
"search.result.other": "მოიძებნა # დოკუმენტი",
|
"search.result.other": "მოიძებნა # დოკუმენტი",
|
||||||
"search.result.more.one": "კიდევ 1 ამ გვერდზე",
|
"search.result.more.one": "კიდევ 1 ამ გვერდზე",
|
||||||
"search.result.more.other": "კიდევ # ამ გვერდზე",
|
"search.result.more.other": "კიდევ # ამ გვერდზე",
|
||||||
"skip.link": "კონტენტზე გადასვლა",
|
"source": "საცავში გადასვლა",
|
||||||
"source.file.date.created": "შეიქმნა",
|
"source.file.date.created": "შეიქმნა",
|
||||||
"source.file.date.updated": "ბოლო განახლება",
|
"source.file.date.updated": "ბოლო განახლება",
|
||||||
"source.link": "საცავში გადასვლა",
|
|
||||||
"tabs": "ტაბები",
|
"tabs": "ტაბები",
|
||||||
"toc": "სარჩევი"
|
"toc": "სარჩევი"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ko",
|
"language": "ko",
|
||||||
|
"action.edit": "이 페이지를 편집",
|
||||||
|
"action.skip": "콘텐츠로 이동",
|
||||||
"clipboard.copy": "클립보드로 복사",
|
"clipboard.copy": "클립보드로 복사",
|
||||||
"clipboard.copied": "클립보드에 복사됨",
|
"clipboard.copied": "클립보드에 복사됨",
|
||||||
"edit.link": "이 페이지를 편집",
|
|
||||||
"footer.next": "다음",
|
"footer.next": "다음",
|
||||||
"footer.previous": "이전",
|
"footer.previous": "이전",
|
||||||
"meta.comments": "댓글",
|
"meta.comments": "댓글",
|
||||||
@@ -25,10 +26,9 @@
|
|||||||
"search.result.term.missing": "포함되지 않은 검색어",
|
"search.result.term.missing": "포함되지 않은 검색어",
|
||||||
"select.language": "언어설정",
|
"select.language": "언어설정",
|
||||||
"select.version": "버전 선택",
|
"select.version": "버전 선택",
|
||||||
"skip.link": "콘텐츠로 이동",
|
"source": "저장소로 이동",
|
||||||
"source.file.date.created": "작성일",
|
"source.file.date.created": "작성일",
|
||||||
"source.file.date.updated": "마지막 업데이트",
|
"source.file.date.updated": "마지막 업데이트",
|
||||||
"source.link": "저장소로 이동",
|
|
||||||
"toc": "목차",
|
"toc": "목차",
|
||||||
"top": "맨위로"
|
"top": "맨위로"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "lt",
|
"language": "lt",
|
||||||
|
"action.edit": "Redaguoti šį puslapį",
|
||||||
|
"action.skip": "Pereiti prie turinio",
|
||||||
"clipboard.copy": "Kopijuoti į iškarpinę",
|
"clipboard.copy": "Kopijuoti į iškarpinę",
|
||||||
"clipboard.copied": "Nukopijuota į iškarpinę",
|
"clipboard.copied": "Nukopijuota į iškarpinę",
|
||||||
"edit.link": "Redaguoti šį puslapį",
|
|
||||||
"footer": "Poraštė",
|
"footer": "Poraštė",
|
||||||
"footer.next": "Sekantis",
|
"footer.next": "Sekantis",
|
||||||
"footer.previous": "Ankstesnis",
|
"footer.previous": "Ankstesnis",
|
||||||
@@ -28,10 +29,9 @@
|
|||||||
"search.result.term.missing": "Nerasta",
|
"search.result.term.missing": "Nerasta",
|
||||||
"select.language": "Pasirinkti kalbą",
|
"select.language": "Pasirinkti kalbą",
|
||||||
"select.version": "Pasrinkti versiją",
|
"select.version": "Pasrinkti versiją",
|
||||||
"skip.link": "Pereiti prie turinio",
|
"source": "Eiti į saugyklą",
|
||||||
"source.file.date.created": "Sukurta",
|
"source.file.date.created": "Sukurta",
|
||||||
"source.file.date.updated": "Paskutinis atnaujinimas",
|
"source.file.date.updated": "Paskutinis atnaujinimas",
|
||||||
"source.link": "Eiti į saugyklą",
|
|
||||||
"tabs": "Skirtukai",
|
"tabs": "Skirtukai",
|
||||||
"toc": "Turinys",
|
"toc": "Turinys",
|
||||||
"top": "Grįžti į viršų"
|
"top": "Grįžti į viršų"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "lv",
|
"language": "lv",
|
||||||
|
"action.edit": "Rediģēt šo lapu",
|
||||||
|
"action.skip": "Pāriet uz saturu",
|
||||||
"clipboard.copy": "Kopēt starpliktuvē",
|
"clipboard.copy": "Kopēt starpliktuvē",
|
||||||
"clipboard.copied": "Kopēts starpliktuvē",
|
"clipboard.copied": "Kopēts starpliktuvē",
|
||||||
"edit.link": "Rediģēt šo lapu",
|
|
||||||
"footer": "Kājene",
|
"footer": "Kājene",
|
||||||
"footer.next": "Nākamais",
|
"footer.next": "Nākamais",
|
||||||
"footer.previous": "Iepriekšējais",
|
"footer.previous": "Iepriekšējais",
|
||||||
@@ -25,10 +26,9 @@
|
|||||||
"search.result.term.missing": "Trūkstošs",
|
"search.result.term.missing": "Trūkstošs",
|
||||||
"select.language": "Izvēlies valodu",
|
"select.language": "Izvēlies valodu",
|
||||||
"select.version": "Izvēlies versiju",
|
"select.version": "Izvēlies versiju",
|
||||||
"skip.link": "Pāriet uz saturu",
|
"source": "Doties uz repozitoriju",
|
||||||
"source.file.date.created": "Izveidots",
|
"source.file.date.created": "Izveidots",
|
||||||
"source.file.date.updated": "Pēdējoreiz atjaunots",
|
"source.file.date.updated": "Pēdējoreiz atjaunots",
|
||||||
"source.link": "Doties uz repozitoriju",
|
|
||||||
"tabs": "Cilnes",
|
"tabs": "Cilnes",
|
||||||
"toc": "Satura rādītājs",
|
"toc": "Satura rādītājs",
|
||||||
"top": "Atpakaļ uz augšu"
|
"top": "Atpakaļ uz augšu"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "mk",
|
"language": "mk",
|
||||||
|
"action.edit": "Уредете ја оваа страница",
|
||||||
|
"action.skip": "Прескокнете до содржината",
|
||||||
"clipboard.copy": "Копирај во таблата",
|
"clipboard.copy": "Копирај во таблата",
|
||||||
"clipboard.copied": "Копирано",
|
"clipboard.copied": "Копирано",
|
||||||
"edit.link": "Уредете ја оваа страница",
|
|
||||||
"footer": "Подножје",
|
"footer": "Подножје",
|
||||||
"footer.next": "Следно",
|
"footer.next": "Следно",
|
||||||
"footer.previous": "Претходно",
|
"footer.previous": "Претходно",
|
||||||
@@ -26,10 +27,9 @@
|
|||||||
"search.result.term.missing": "Недостасува",
|
"search.result.term.missing": "Недостасува",
|
||||||
"select.language": "Изберете јазик",
|
"select.language": "Изберете јазик",
|
||||||
"select.version": "Изберете верзија",
|
"select.version": "Изберете верзија",
|
||||||
"skip.link": "Прескокнете до содржината",
|
"source": "Одете до складиштето",
|
||||||
"source.file.date.created": "Создаден",
|
"source.file.date.created": "Создаден",
|
||||||
"source.file.date.updated": "Последно ажурирање",
|
"source.file.date.updated": "Последно ажурирање",
|
||||||
"source.link": "Одете до складиштето",
|
|
||||||
"tabs": "Јазичиња",
|
"tabs": "Јазичиња",
|
||||||
"toc": "Содржина",
|
"toc": "Содржина",
|
||||||
"top": "Вратете се на почетокот"
|
"top": "Вратете се на почетокот"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "mn",
|
"language": "mn",
|
||||||
|
"action.edit": "Хуудас засварлах",
|
||||||
|
"action.skip": "Агуулгыг алгасах",
|
||||||
"clipboard.copy": "Хуулах",
|
"clipboard.copy": "Хуулах",
|
||||||
"clipboard.copied": "Санах ойд хуулах",
|
"clipboard.copied": "Санах ойд хуулах",
|
||||||
"edit.link": "Хуудас засварлах",
|
|
||||||
"footer": "Хөл",
|
"footer": "Хөл",
|
||||||
"footer.next": "Дараах",
|
"footer.next": "Дараах",
|
||||||
"footer.previous": "Өмнөх",
|
"footer.previous": "Өмнөх",
|
||||||
@@ -22,10 +23,9 @@
|
|||||||
"search.result.other": "# Тохирох баримт бичиг",
|
"search.result.other": "# Тохирох баримт бичиг",
|
||||||
"search.result.more.one": "1 илүү хуудас байна",
|
"search.result.more.one": "1 илүү хуудас байна",
|
||||||
"search.result.more.other": "# илүү хуудас байна",
|
"search.result.more.other": "# илүү хуудас байна",
|
||||||
"skip.link": "Агуулгыг алгасах",
|
"source": "Хадгалах сан руу очих",
|
||||||
"source.file.date.created": "Үүсгэсэн",
|
"source.file.date.created": "Үүсгэсэн",
|
||||||
"source.file.date.updated": "Сүүлийн шинэчлэлт",
|
"source.file.date.updated": "Сүүлийн шинэчлэлт",
|
||||||
"source.link": "Хадгалах сан руу очих",
|
|
||||||
"tabs": "Табууд",
|
"tabs": "Табууд",
|
||||||
"toc": "Агуулга"
|
"toc": "Агуулга"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ms",
|
"language": "ms",
|
||||||
|
"action.edit": "Edit halaman ini",
|
||||||
|
"action.skip": "Langkau tajuk talian",
|
||||||
"clipboard.copy": "Salin ke papan keratan",
|
"clipboard.copy": "Salin ke papan keratan",
|
||||||
"clipboard.copied": "Disalin ke papan keratan",
|
"clipboard.copied": "Disalin ke papan keratan",
|
||||||
"edit.link": "Edit halaman ini",
|
|
||||||
"footer": "Pengaki",
|
"footer": "Pengaki",
|
||||||
"footer.next" : "Seterusnya",
|
"footer.next" : "Seterusnya",
|
||||||
"footer.previous": "Sebelumnya",
|
"footer.previous": "Sebelumnya",
|
||||||
@@ -25,10 +26,9 @@
|
|||||||
"search.result.term.missing": "Hilang",
|
"search.result.term.missing": "Hilang",
|
||||||
"select.language": "Pilih bahasa",
|
"select.language": "Pilih bahasa",
|
||||||
"select.version": "Pilih versi",
|
"select.version": "Pilih versi",
|
||||||
"skip.link": "Langkau tajuk talian",
|
"source": "tajuk talian asal",
|
||||||
"source.file.date.created": "tarikh fil asal dicipta",
|
"source.file.date.created": "tarikh fil asal dicipta",
|
||||||
"source.file.date.updated": "Tarikh fil dikemas kini",
|
"source.file.date.updated": "Tarikh fil dikemas kini",
|
||||||
"source.link": "tajuk talian asal",
|
|
||||||
"tabs": "Tab",
|
"tabs": "Tab",
|
||||||
"toc": "Jadual kandungan",
|
"toc": "Jadual kandungan",
|
||||||
"top": "Kembali ke atas"
|
"top": "Kembali ke atas"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "my",
|
"language": "my",
|
||||||
|
"action.edit": "ဤ စာမျက်နှာကို ပြင်ရန်",
|
||||||
|
"action.skip": "မာတိကာ သို့ သွားရန်",
|
||||||
"clipboard.copy": "ကလစ်ဘုတ် သို့ ကူးယူရန်",
|
"clipboard.copy": "ကလစ်ဘုတ် သို့ ကူးယူရန်",
|
||||||
"clipboard.copied": "ကလစ်ဘုတ် သို့ ကူယူပြီး",
|
"clipboard.copied": "ကလစ်ဘုတ် သို့ ကူယူပြီး",
|
||||||
"edit.link": "ဤ စာမျက်နှာကို ပြင်ရန်",
|
|
||||||
"footer": "အောက်ခြေ",
|
"footer": "အောက်ခြေ",
|
||||||
"footer.next": "ရှေ့သို့",
|
"footer.next": "ရှေ့သို့",
|
||||||
"footer.previous": "နောက်သို့",
|
"footer.previous": "နောက်သို့",
|
||||||
@@ -20,10 +21,9 @@
|
|||||||
"search.result.none": "တူညီသော စာရွက်စာတမ်းများ မရှိပါ",
|
"search.result.none": "တူညီသော စာရွက်စာတမ်းများ မရှိပါ",
|
||||||
"search.result.one": "စာရွက်စာတမ်း ၁ ခု တူညီသည်",
|
"search.result.one": "စာရွက်စာတမ်း ၁ ခု တူညီသည်",
|
||||||
"search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်",
|
"search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်",
|
||||||
"skip.link": "မာတိကာ သို့ သွားရန်",
|
"source": "repository သို့ သွားရန်",
|
||||||
"source.file.date.created": "နေပြည်တော်",
|
"source.file.date.created": "နေပြည်တော်",
|
||||||
"source.file.date.updated": "နောက်ဆုံး ထုတ်ပြန်ချက်",
|
"source.file.date.updated": "နောက်ဆုံး ထုတ်ပြန်ချက်",
|
||||||
"source.link": "repository သို့ သွားရန်",
|
|
||||||
"tabs": "တက်များ",
|
"tabs": "တက်များ",
|
||||||
"toc": "ပါဝင်အကြောင်းအရာများ"
|
"toc": "ပါဝင်အကြောင်းအရာများ"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "nb",
|
"language": "nb",
|
||||||
|
"action.edit": "Rediger denne siden",
|
||||||
|
"action.skip": "Gå til innhold",
|
||||||
"announce.dismiss": "Ikke vis dette igjen",
|
"announce.dismiss": "Ikke vis dette igjen",
|
||||||
"clipboard.copy": "Kopier til utklippstavlen",
|
"clipboard.copy": "Kopier til utklippstavlen",
|
||||||
"clipboard.copied": "Kopiert til utklippstavlen",
|
"clipboard.copied": "Kopiert til utklippstavlen",
|
||||||
"consent.accept": "Akseptert",
|
"consent.accept": "Akseptert",
|
||||||
"consent.manage": "Innstillinger",
|
"consent.manage": "Innstillinger",
|
||||||
"consent.reject": "Reject",
|
"consent.reject": "Reject",
|
||||||
"edit.link": "Rediger denne siden",
|
|
||||||
"footer": "Footer",
|
"footer": "Footer",
|
||||||
"footer.next": "Neste",
|
"footer.next": "Neste",
|
||||||
"footer.previous": "Forrige",
|
"footer.previous": "Forrige",
|
||||||
@@ -32,10 +33,9 @@
|
|||||||
"search.result.term.missing": "Mangler",
|
"search.result.term.missing": "Mangler",
|
||||||
"select.language": "Velg språk",
|
"select.language": "Velg språk",
|
||||||
"select.version": "Velg versjon",
|
"select.version": "Velg versjon",
|
||||||
"skip.link": "Gå til innhold",
|
"source": "Gå til kilde",
|
||||||
"source.file.date.created": "Opprettet",
|
"source.file.date.created": "Opprettet",
|
||||||
"source.file.date.updated": "Sist oppdatert",
|
"source.file.date.updated": "Sist oppdatert",
|
||||||
"source.link": "Gå til kilde",
|
|
||||||
"tabs": "Faner",
|
"tabs": "Faner",
|
||||||
"toc": "Innholdsliste",
|
"toc": "Innholdsliste",
|
||||||
"top": "Tilbake til toppen"
|
"top": "Tilbake til toppen"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "nl",
|
"language": "nl",
|
||||||
|
"action.edit": "Wijzig deze pagina",
|
||||||
|
"action.skip": "Ga naar inhoud",
|
||||||
"clipboard.copy": "Kopiëren naar klembord",
|
"clipboard.copy": "Kopiëren naar klembord",
|
||||||
"clipboard.copied": "Gekopieerd naar klembord",
|
"clipboard.copied": "Gekopieerd naar klembord",
|
||||||
"edit.link": "Wijzig deze pagina",
|
|
||||||
"footer.next": "Volgende",
|
"footer.next": "Volgende",
|
||||||
"footer.previous": "Vorige",
|
"footer.previous": "Vorige",
|
||||||
"meta.comments": "Reacties",
|
"meta.comments": "Reacties",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Geen overeenkomende documenten",
|
"search.result.none": "Geen overeenkomende documenten",
|
||||||
"search.result.one": "1 overeenkomende document",
|
"search.result.one": "1 overeenkomende document",
|
||||||
"search.result.other": "# overeenkomende documenten",
|
"search.result.other": "# overeenkomende documenten",
|
||||||
"skip.link": "Ga naar inhoud",
|
"source": "Ga naar repository",
|
||||||
"source.file.date.created": "Gecreëerd",
|
"source.file.date.created": "Gecreëerd",
|
||||||
"source.file.date.updated": "Laatst geüpdatet",
|
"source.file.date.updated": "Laatst geüpdatet",
|
||||||
"source.link": "Ga naar repository",
|
|
||||||
"toc": "Inhoudsopgave"
|
"toc": "Inhoudsopgave"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "nn",
|
"language": "nn",
|
||||||
|
"action.edit": "Rediger denne sida",
|
||||||
|
"action.skip": "Gå til innhald",
|
||||||
"announce.dismiss": "Ikkje vis dette att",
|
"announce.dismiss": "Ikkje vis dette att",
|
||||||
"clipboard.copy": "Kopier til utklippstavla",
|
"clipboard.copy": "Kopier til utklippstavla",
|
||||||
"clipboard.copied": "Kopiert til utklippstavla",
|
"clipboard.copied": "Kopiert til utklippstavla",
|
||||||
"consent.accept": "Akseptert",
|
"consent.accept": "Akseptert",
|
||||||
"consent.manage": "Innstillinger",
|
"consent.manage": "Innstillinger",
|
||||||
"consent.reject": "Reject",
|
"consent.reject": "Reject",
|
||||||
"edit.link": "Rediger denne sida",
|
|
||||||
"footer": "Footer",
|
"footer": "Footer",
|
||||||
"footer.next": "Neste",
|
"footer.next": "Neste",
|
||||||
"footer.previous": "Førre",
|
"footer.previous": "Førre",
|
||||||
@@ -32,10 +33,9 @@
|
|||||||
"search.result.term.missing": "Manglar",
|
"search.result.term.missing": "Manglar",
|
||||||
"select.language": "Vel språk",
|
"select.language": "Vel språk",
|
||||||
"select.version": "Vel versjon",
|
"select.version": "Vel versjon",
|
||||||
"skip.link": "Gå til innhald",
|
"source": "Gå til kjelde",
|
||||||
"source.file.date.created": "Oppretta",
|
"source.file.date.created": "Oppretta",
|
||||||
"source.file.date.updated": "Sist oppdatert",
|
"source.file.date.updated": "Sist oppdatert",
|
||||||
"source.link": "Gå til kjelde",
|
|
||||||
"tabs": "Faner",
|
"tabs": "Faner",
|
||||||
"toc": "Innhaldsliste",
|
"toc": "Innhaldsliste",
|
||||||
"top": "Tilbake til toppen"
|
"top": "Tilbake til toppen"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "pl",
|
"language": "pl",
|
||||||
|
"action.edit": "Edytuj tę stronę",
|
||||||
|
"action.skip": "Przejdź do treści",
|
||||||
"clipboard.copy": "Kopiuj do schowka",
|
"clipboard.copy": "Kopiuj do schowka",
|
||||||
"clipboard.copied": "Skopiowane",
|
"clipboard.copied": "Skopiowane",
|
||||||
"edit.link": "Edytuj tę stronę",
|
|
||||||
"footer": "Stopka",
|
"footer": "Stopka",
|
||||||
"footer.next": "Następna strona",
|
"footer.next": "Następna strona",
|
||||||
"footer.previous": "Poprzednia strona",
|
"footer.previous": "Poprzednia strona",
|
||||||
@@ -24,10 +25,9 @@
|
|||||||
"search.result.more.one": "1 więcej na tej stronie",
|
"search.result.more.one": "1 więcej na tej stronie",
|
||||||
"search.result.more.other": "# więcej na tej stronie",
|
"search.result.more.other": "# więcej na tej stronie",
|
||||||
"search.result.term.missing": "Brak",
|
"search.result.term.missing": "Brak",
|
||||||
"skip.link": "Przejdź do treści",
|
"source": "Idź do repozytorium",
|
||||||
"source.file.date.created": "Utworzony",
|
"source.file.date.created": "Utworzony",
|
||||||
"source.file.date.updated": "Ostatnia aktualizacja",
|
"source.file.date.updated": "Ostatnia aktualizacja",
|
||||||
"source.link": "Idź do repozytorium",
|
|
||||||
"tabs": "Zakładki",
|
"tabs": "Zakładki",
|
||||||
"toc": "Spis treści"
|
"toc": "Spis treści"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "pt",
|
"language": "pt",
|
||||||
|
"action.edit": "Editar esta página",
|
||||||
|
"action.skip": "Pular para conteúdo",
|
||||||
"clipboard.copy": "Copiar para área de Transferência",
|
"clipboard.copy": "Copiar para área de Transferência",
|
||||||
"clipboard.copied": "Copiado para área de Transferência",
|
"clipboard.copied": "Copiado para área de Transferência",
|
||||||
"edit.link": "Editar esta página",
|
|
||||||
"footer": "Rodapé",
|
"footer": "Rodapé",
|
||||||
"footer.next": "Próximo",
|
"footer.next": "Próximo",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
@@ -27,10 +28,9 @@
|
|||||||
"search.result.term.missing": "Perdido",
|
"search.result.term.missing": "Perdido",
|
||||||
"select.language": "Selecione a linguagem",
|
"select.language": "Selecione a linguagem",
|
||||||
"select.version": "Selecione a versão",
|
"select.version": "Selecione a versão",
|
||||||
"skip.link": "Pular para conteúdo",
|
"source": "Ir para repositório",
|
||||||
"source.file.date.created": "Criado em",
|
"source.file.date.created": "Criado em",
|
||||||
"source.file.date.updated": "Ultima atualização",
|
"source.file.date.updated": "Ultima atualização",
|
||||||
"source.link": "Ir para repositório",
|
|
||||||
"tabs": "Abas",
|
"tabs": "Abas",
|
||||||
"toc": "Indice",
|
"toc": "Indice",
|
||||||
"top": "Voltar para o topo"
|
"top": "Voltar para o topo"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "pt",
|
"language": "pt",
|
||||||
|
"action.edit": "Editar esta página",
|
||||||
|
"action.skip": "Ir para o conteúdo",
|
||||||
"clipboard.copy": "Copiar para área de transferência",
|
"clipboard.copy": "Copiar para área de transferência",
|
||||||
"clipboard.copied": "Copiado para área de transferência",
|
"clipboard.copied": "Copiado para área de transferência",
|
||||||
"edit.link": "Editar esta página",
|
|
||||||
"footer": "Rodapé",
|
"footer": "Rodapé",
|
||||||
"footer.next": "Próximo",
|
"footer.next": "Próximo",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
@@ -28,10 +29,9 @@
|
|||||||
"search.result.term.missing": "Ausente",
|
"search.result.term.missing": "Ausente",
|
||||||
"select.language": "Selecione o idioma",
|
"select.language": "Selecione o idioma",
|
||||||
"select.version": "Selecione a versão",
|
"select.version": "Selecione a versão",
|
||||||
"skip.link": "Ir para o conteúdo",
|
"source": "Ir ao repositório",
|
||||||
"source.file.date.created": "Criada",
|
"source.file.date.created": "Criada",
|
||||||
"source.file.date.updated": "Última atualização",
|
"source.file.date.updated": "Última atualização",
|
||||||
"source.link": "Ir ao repositório",
|
|
||||||
"tabs": "Abas",
|
"tabs": "Abas",
|
||||||
"toc": "Índice",
|
"toc": "Índice",
|
||||||
"top": "Voltar ao topo"
|
"top": "Voltar ao topo"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ro",
|
"language": "ro",
|
||||||
|
"action.edit": "Editeaza această pagină",
|
||||||
|
"action.skip": "Sari la conținut",
|
||||||
"clipboard.copy": "Copiază în clipboard",
|
"clipboard.copy": "Copiază în clipboard",
|
||||||
"clipboard.copied": "Copiat în clipboard",
|
"clipboard.copied": "Copiat în clipboard",
|
||||||
"edit.link": "Editeaza această pagină",
|
|
||||||
"footer.next": "Următor",
|
"footer.next": "Următor",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
"meta.comments": "Comentarii",
|
"meta.comments": "Comentarii",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Nu a fost găsit niciun document",
|
"search.result.none": "Nu a fost găsit niciun document",
|
||||||
"search.result.one": "1 document găsit",
|
"search.result.one": "1 document găsit",
|
||||||
"search.result.other": "# documente găsite",
|
"search.result.other": "# documente găsite",
|
||||||
"skip.link": "Sari la conținut",
|
"source": "Accesează repository-ul",
|
||||||
"source.file.date.created": "Creată",
|
"source.file.date.created": "Creată",
|
||||||
"source.file.date.updated": "Ultima actualizare",
|
"source.file.date.updated": "Ultima actualizare",
|
||||||
"source.link": "Accesează repository-ul",
|
|
||||||
"toc": "Cuprins"
|
"toc": "Cuprins"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ru",
|
"language": "ru",
|
||||||
|
"action.edit": "Редактировать страницу",
|
||||||
|
"action.skip": "Перейти к содержанию",
|
||||||
"clipboard.copy": "Копировать в буфер",
|
"clipboard.copy": "Копировать в буфер",
|
||||||
"clipboard.copied": "Скопировано в буфер",
|
"clipboard.copied": "Скопировано в буфер",
|
||||||
"edit.link": "Редактировать страницу",
|
|
||||||
"footer": "Нижний колонтитул",
|
"footer": "Нижний колонтитул",
|
||||||
"footer.next": "Вперед",
|
"footer.next": "Вперед",
|
||||||
"footer.previous": "Назад",
|
"footer.previous": "Назад",
|
||||||
@@ -28,10 +29,9 @@
|
|||||||
"search.result.term.missing": "Отсутствует",
|
"search.result.term.missing": "Отсутствует",
|
||||||
"select.language": "Выберите язык",
|
"select.language": "Выберите язык",
|
||||||
"select.version": "Выберите версию",
|
"select.version": "Выберите версию",
|
||||||
"skip.link": "Перейти к содержанию",
|
"source": "Перейти к репозиторию",
|
||||||
"source.file.date.created": "Дата создания",
|
"source.file.date.created": "Дата создания",
|
||||||
"source.file.date.updated": "Последнее обновление",
|
"source.file.date.updated": "Последнее обновление",
|
||||||
"source.link": "Перейти к репозиторию",
|
|
||||||
"tabs": "Вкладки",
|
"tabs": "Вкладки",
|
||||||
"toc": "Содержание раздела",
|
"toc": "Содержание раздела",
|
||||||
"top": "К началу"
|
"top": "К началу"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "sh",
|
"language": "sh",
|
||||||
|
"action.edit": "Ažuriraj stranicu",
|
||||||
|
"action.skip": "Idi na tekst",
|
||||||
"clipboard.copy": "Kopiraj u klipbord",
|
"clipboard.copy": "Kopiraj u klipbord",
|
||||||
"clipboard.copied": "Iskopirano u klipbord",
|
"clipboard.copied": "Iskopirano u klipbord",
|
||||||
"edit.link": "Ažuriraj stranicu",
|
|
||||||
"footer": "Podnožje",
|
"footer": "Podnožje",
|
||||||
"footer.next": "Sledeće",
|
"footer.next": "Sledeće",
|
||||||
"footer.previous": "Prethodno",
|
"footer.previous": "Prethodno",
|
||||||
@@ -27,10 +28,9 @@
|
|||||||
"search.result.term.missing": "Nedostaje",
|
"search.result.term.missing": "Nedostaje",
|
||||||
"select.language": "Izaberi jezik",
|
"select.language": "Izaberi jezik",
|
||||||
"select.version": "Izaberi verziju",
|
"select.version": "Izaberi verziju",
|
||||||
"skip.link": "Idi na tekst",
|
"source": "Idi u repozitorijum",
|
||||||
"source.file.date.created": "Kreiran",
|
"source.file.date.created": "Kreiran",
|
||||||
"source.file.date.updated": "Ažuriran",
|
"source.file.date.updated": "Ažuriran",
|
||||||
"source.link": "Idi u repozitorijum",
|
|
||||||
"tabs": "Tabovi",
|
"tabs": "Tabovi",
|
||||||
"toc": "Sadržaj",
|
"toc": "Sadržaj",
|
||||||
"top": "Nazad na vrh"
|
"top": "Nazad na vrh"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "si",
|
"language": "si",
|
||||||
|
"action.edit": "පිටුව සංස්කරණය",
|
||||||
|
"action.skip": "අන්තර්ගතය වෙත යන්න",
|
||||||
"clipboard.copy": "කොපි කරන්න",
|
"clipboard.copy": "කොපි කරන්න",
|
||||||
"clipboard.copied": "කොපි කළා",
|
"clipboard.copied": "කොපි කළා",
|
||||||
"edit.link": "පිටුව සංස්කරණය",
|
|
||||||
"footer": "පාදම",
|
"footer": "පාදම",
|
||||||
"footer.next": "මීළඟ",
|
"footer.next": "මීළඟ",
|
||||||
"footer.previous": "පසුගිය",
|
"footer.previous": "පසුගිය",
|
||||||
@@ -22,10 +23,9 @@
|
|||||||
"search.result.other": "ගැලපෙන ගොනු # ක්",
|
"search.result.other": "ගැලපෙන ගොනු # ක්",
|
||||||
"search.result.more.one": "තව 1 ප්රතිඵලයක්",
|
"search.result.more.one": "තව 1 ප්රතිඵලයක්",
|
||||||
"search.result.more.other": "තව ප්රතිඵල # ක්",
|
"search.result.more.other": "තව ප්රතිඵල # ක්",
|
||||||
"skip.link": "අන්තර්ගතය වෙත යන්න",
|
"source": "රිපොසිටරියට යන්න",
|
||||||
"source.file.date.created": "ٺاھيو ويو",
|
"source.file.date.created": "ٺاھيو ويو",
|
||||||
"source.file.date.updated": "අවසන් යාවත්කාලීන වීම",
|
"source.file.date.updated": "අවසන් යාවත්කාලීන වීම",
|
||||||
"source.link": "රිපොසිටරියට යන්න",
|
|
||||||
"tabs": "ටැබ්ස්",
|
"tabs": "ටැබ්ස්",
|
||||||
"toc": "පටුන"
|
"toc": "පටුන"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "sk",
|
"language": "sk",
|
||||||
|
"action.edit": "Upraviť túto stránku",
|
||||||
|
"action.skip": "Preskočiť na obsah",
|
||||||
"clipboard.copy": "Kopírovať do schránky",
|
"clipboard.copy": "Kopírovať do schránky",
|
||||||
"clipboard.copied": "Skopírované do schránky",
|
"clipboard.copied": "Skopírované do schránky",
|
||||||
"edit.link": "Upraviť túto stránku",
|
|
||||||
"footer.next": "Ďalej",
|
"footer.next": "Ďalej",
|
||||||
"footer.previous": "Späť",
|
"footer.previous": "Späť",
|
||||||
"meta.comments": "Komentáre",
|
"meta.comments": "Komentáre",
|
||||||
@@ -15,9 +16,8 @@
|
|||||||
"search.result.none": "Žiadne vyhovujúce dokumenty",
|
"search.result.none": "Žiadne vyhovujúce dokumenty",
|
||||||
"search.result.one": "Vyhovujúci dokument: 1",
|
"search.result.one": "Vyhovujúci dokument: 1",
|
||||||
"search.result.other": "Vyhovujúce dokumenty: #",
|
"search.result.other": "Vyhovujúce dokumenty: #",
|
||||||
"skip.link": "Preskočiť na obsah",
|
"source": "Zobraziť repozitár",
|
||||||
"source.file.date.created": "Vytvorené",
|
"source.file.date.created": "Vytvorené",
|
||||||
"source.file.date.updated": "Posledná aktualizácia",
|
"source.file.date.updated": "Posledná aktualizácia",
|
||||||
"source.link": "Zobraziť repozitár",
|
|
||||||
"toc": "Obsah"
|
"toc": "Obsah"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "sl",
|
"language": "sl",
|
||||||
|
"action.edit": "Uredi stran",
|
||||||
|
"action.skip": "Skoči na vsebino",
|
||||||
"announce.dismiss": "Ne prikaži več",
|
"announce.dismiss": "Ne prikaži več",
|
||||||
"clipboard.copy": "Kopiraj v odložišče",
|
"clipboard.copy": "Kopiraj v odložišče",
|
||||||
"clipboard.copied": "Kopirano v odložišče",
|
"clipboard.copied": "Kopirano v odložišče",
|
||||||
"consent.accept": "Sprejmi",
|
"consent.accept": "Sprejmi",
|
||||||
"consent.manage": "Uredi nastavitve",
|
"consent.manage": "Uredi nastavitve",
|
||||||
"consent.reject": "Zavrni",
|
"consent.reject": "Zavrni",
|
||||||
"edit.link": "Uredi stran",
|
|
||||||
"footer": "Glava",
|
"footer": "Glava",
|
||||||
"footer.next": "Naslednja stran",
|
"footer.next": "Naslednja stran",
|
||||||
"footer.previous": "Prejšnja stran",
|
"footer.previous": "Prejšnja stran",
|
||||||
@@ -32,10 +33,9 @@
|
|||||||
"search.result.term.missing": "Manjka",
|
"search.result.term.missing": "Manjka",
|
||||||
"select.language": "Izberi jezik",
|
"select.language": "Izberi jezik",
|
||||||
"select.version": "Izberi različico",
|
"select.version": "Izberi različico",
|
||||||
"skip.link": "Skoči na vsebino",
|
"source": "Pojdi na repozitorij",
|
||||||
"source.file.date.created": "Ustvarjeno",
|
"source.file.date.created": "Ustvarjeno",
|
||||||
"source.file.date.updated": "Zadnja posodobitev",
|
"source.file.date.updated": "Zadnja posodobitev",
|
||||||
"source.link": "Pojdi na repozitorij",
|
|
||||||
"tabs": "Zavihki",
|
"tabs": "Zavihki",
|
||||||
"toc": "Kazalo",
|
"toc": "Kazalo",
|
||||||
"top": "Nazaj na vrh"
|
"top": "Nazaj na vrh"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "sr",
|
"language": "sr",
|
||||||
|
"action.edit": "Ажурирај страницу",
|
||||||
|
"action.skip": "Иди на текст",
|
||||||
"clipboard.copy": "Копирај у клипборд",
|
"clipboard.copy": "Копирај у клипборд",
|
||||||
"clipboard.copied": "Ископирано у клипборд",
|
"clipboard.copied": "Ископирано у клипборд",
|
||||||
"edit.link": "Ажурирај страницу",
|
|
||||||
"footer": "Подножје",
|
"footer": "Подножје",
|
||||||
"footer.next": "Следеће",
|
"footer.next": "Следеће",
|
||||||
"footer.previous": "Претходно",
|
"footer.previous": "Претходно",
|
||||||
@@ -27,10 +28,9 @@
|
|||||||
"search.result.term.missing": "Недостаје",
|
"search.result.term.missing": "Недостаје",
|
||||||
"select.language": "Изабери језик",
|
"select.language": "Изабери језик",
|
||||||
"select.version": "Изабери верзију",
|
"select.version": "Изабери верзију",
|
||||||
"skip.link": "Иди на текст",
|
"source": "Иди у репозиторијум",
|
||||||
"source.file.date.created": "Креиран",
|
"source.file.date.created": "Креиран",
|
||||||
"source.file.date.updated": "Ажуриран",
|
"source.file.date.updated": "Ажуриран",
|
||||||
"source.link": "Иди у репозиторијум",
|
|
||||||
"tabs": "Табови",
|
"tabs": "Табови",
|
||||||
"toc": "Садржај",
|
"toc": "Садржај",
|
||||||
"top": "Назад на врх"
|
"top": "Назад на врх"
|
||||||
|
|||||||
@@ -3,11 +3,12 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "sv",
|
"language": "sv",
|
||||||
|
"action.edit": "Redigera sidan",
|
||||||
|
"action.skip": "Gå till innehållet",
|
||||||
"clipboard.copy": "Kopiera till urklipp",
|
"clipboard.copy": "Kopiera till urklipp",
|
||||||
"clipboard.copied": "Kopierat till urklipp",
|
"clipboard.copied": "Kopierat till urklipp",
|
||||||
"consent.accept": "Acceptera",
|
"consent.accept": "Acceptera",
|
||||||
"consent.manage": "Hantera inställningar",
|
"consent.manage": "Hantera inställningar",
|
||||||
"edit.link": "Redigera sidan",
|
|
||||||
"footer": "Sidfot",
|
"footer": "Sidfot",
|
||||||
"footer.next": "Nästa",
|
"footer.next": "Nästa",
|
||||||
"footer.previous": "Föregående",
|
"footer.previous": "Föregående",
|
||||||
@@ -30,10 +31,9 @@
|
|||||||
"search.result.term.missing": "Saknas",
|
"search.result.term.missing": "Saknas",
|
||||||
"select.language": "Välj språk",
|
"select.language": "Välj språk",
|
||||||
"select.version": "Välj version",
|
"select.version": "Välj version",
|
||||||
"skip.link": "Gå till innehållet",
|
"source": "Gå till datakatalog",
|
||||||
"source.file.date.created": "Skapad",
|
"source.file.date.created": "Skapad",
|
||||||
"source.file.date.updated": "Senaste uppdaterad",
|
"source.file.date.updated": "Senaste uppdaterad",
|
||||||
"source.link": "Gå till datakatalog",
|
|
||||||
"tabs": "Flikar",
|
"tabs": "Flikar",
|
||||||
"toc": "Innehållsförteckning",
|
"toc": "Innehållsförteckning",
|
||||||
"top": "Tillbaka till toppen"
|
"top": "Tillbaka till toppen"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "th",
|
"language": "th",
|
||||||
|
"action.edit": "แก้ไขหน้านี้",
|
||||||
|
"action.skip": "ข้ามไปที่เนื้อหา",
|
||||||
"clipboard.copy": "คัดลอก",
|
"clipboard.copy": "คัดลอก",
|
||||||
"clipboard.copied": "คัดลอกแล้ว",
|
"clipboard.copied": "คัดลอกแล้ว",
|
||||||
"edit.link": "แก้ไขหน้านี้",
|
|
||||||
"footer.next": "ต่อไป",
|
"footer.next": "ต่อไป",
|
||||||
"footer.previous": "ก่อนหน้า",
|
"footer.previous": "ก่อนหน้า",
|
||||||
"meta.comments": "ความคิดเห็น",
|
"meta.comments": "ความคิดเห็น",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "ไม่พบเอกสารที่ตรงกัน",
|
"search.result.none": "ไม่พบเอกสารที่ตรงกัน",
|
||||||
"search.result.one": "พบเอกสารที่ตรงกัน",
|
"search.result.one": "พบเอกสารที่ตรงกัน",
|
||||||
"search.result.other": "พบ # เอกสารที่ตรงกัน",
|
"search.result.other": "พบ # เอกสารที่ตรงกัน",
|
||||||
"skip.link": "ข้ามไปที่เนื้อหา",
|
"source": "ไปที่ Repository",
|
||||||
"source.file.date.created": "สร้าง",
|
"source.file.date.created": "สร้าง",
|
||||||
"source.file.date.updated": "สร้าง",
|
"source.file.date.updated": "สร้าง",
|
||||||
"source.link": "ไปที่ Repository",
|
|
||||||
"toc": "สารบัญ"
|
"toc": "สารบัญ"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "tl",
|
"language": "tl",
|
||||||
|
"action.edit": "I-edit ang pahinang ito",
|
||||||
|
"action.skip": "I-skip tungo sa nilalaman",
|
||||||
"clipboard.copy": "Kopyahin sa clipboard",
|
"clipboard.copy": "Kopyahin sa clipboard",
|
||||||
"clipboard.copied": "Nakopya mula sa clipboard",
|
"clipboard.copied": "Nakopya mula sa clipboard",
|
||||||
"edit.link": "I-edit ang pahinang ito",
|
|
||||||
"footer": "Lagdang Pangwakas",
|
"footer": "Lagdang Pangwakas",
|
||||||
"footer.next": "Susunod",
|
"footer.next": "Susunod",
|
||||||
"footer.previous": "Nakaraan",
|
"footer.previous": "Nakaraan",
|
||||||
@@ -27,10 +28,9 @@
|
|||||||
"search.result.term.missing": "Nawawala",
|
"search.result.term.missing": "Nawawala",
|
||||||
"select.language": "Pumili ng lenguwahe",
|
"select.language": "Pumili ng lenguwahe",
|
||||||
"select.version": "Pumili ng bersyon",
|
"select.version": "Pumili ng bersyon",
|
||||||
"skip.link": "I-skip tungo sa nilalaman",
|
"source": "Pumunta sa repository",
|
||||||
"source.file.date.created": "Nagawa",
|
"source.file.date.created": "Nagawa",
|
||||||
"source.file.date.updated": "Huling update",
|
"source.file.date.updated": "Huling update",
|
||||||
"source.link": "Pumunta sa repository",
|
|
||||||
"tabs": "Mga tala",
|
"tabs": "Mga tala",
|
||||||
"toc": "Talaan ng nilalaman",
|
"toc": "Talaan ng nilalaman",
|
||||||
"top": "Bumalik sa taas"
|
"top": "Bumalik sa taas"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "tr",
|
"language": "tr",
|
||||||
|
"action.edit": "Düzenle",
|
||||||
|
"action.skip": "Ana içeriğe geç",
|
||||||
"clipboard.copy": "Kopyala",
|
"clipboard.copy": "Kopyala",
|
||||||
"clipboard.copied": "Kopyalandı",
|
"clipboard.copied": "Kopyalandı",
|
||||||
"edit.link": "Düzenle",
|
|
||||||
"footer.next": "Sonraki",
|
"footer.next": "Sonraki",
|
||||||
"footer.previous": "Önceki",
|
"footer.previous": "Önceki",
|
||||||
"meta.comments": "Yorumlar",
|
"meta.comments": "Yorumlar",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Eşleşen doküman bulunamadı",
|
"search.result.none": "Eşleşen doküman bulunamadı",
|
||||||
"search.result.one": "1 doküman bulundu",
|
"search.result.one": "1 doküman bulundu",
|
||||||
"search.result.other": "# doküman bulundu",
|
"search.result.other": "# doküman bulundu",
|
||||||
"skip.link": "Ana içeriğe geç",
|
"source": "Depoya git",
|
||||||
"source.file.date.created": "Oluşturuldu",
|
"source.file.date.created": "Oluşturuldu",
|
||||||
"source.file.date.updated": "Son Güncelleme",
|
"source.file.date.updated": "Son Güncelleme",
|
||||||
"source.link": "Depoya git",
|
|
||||||
"toc": "İçindekiler"
|
"toc": "İçindekiler"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "uk",
|
"language": "uk",
|
||||||
|
"action.edit": "Редагувати сторінку",
|
||||||
|
"action.skip": "Перейти до змісту",
|
||||||
"clipboard.copy": "Скопіювати в буфер",
|
"clipboard.copy": "Скопіювати в буфер",
|
||||||
"clipboard.copied": "Скопійовано в буфер",
|
"clipboard.copied": "Скопійовано в буфер",
|
||||||
"edit.link": "Редагувати сторінку",
|
|
||||||
"footer.next": "Вперед",
|
"footer.next": "Вперед",
|
||||||
"footer.previous": "Назад",
|
"footer.previous": "Назад",
|
||||||
"meta.comments": "Коментарі",
|
"meta.comments": "Коментарі",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Збігів не знайдено",
|
"search.result.none": "Збігів не знайдено",
|
||||||
"search.result.one": "Знайдено 1 збіг",
|
"search.result.one": "Знайдено 1 збіг",
|
||||||
"search.result.other": "Знайдено # збігів",
|
"search.result.other": "Знайдено # збігів",
|
||||||
"skip.link": "Перейти до змісту",
|
"source": "Перейти до репозиторію",
|
||||||
"source.file.date.created": "Створено",
|
"source.file.date.created": "Створено",
|
||||||
"source.file.date.updated": "Останнє оновлення",
|
"source.file.date.updated": "Останнє оновлення",
|
||||||
"source.link": "Перейти до репозиторію",
|
|
||||||
"toc": "Зміст"
|
"toc": "Зміст"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -4,9 +4,10 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ur",
|
"language": "ur",
|
||||||
"direction": "rtl",
|
"direction": "rtl",
|
||||||
|
"action.edit": "اس صفحے میں ترمیم کریں",
|
||||||
|
"action.skip": "براہِ راست مواد پر جائیں",
|
||||||
"clipboard.copy": "کلِپ بورڈ میں نقل کریں",
|
"clipboard.copy": "کلِپ بورڈ میں نقل کریں",
|
||||||
"clipboard.copied": "کلِپ بورڈ میں نقل کر دیا گیا",
|
"clipboard.copied": "کلِپ بورڈ میں نقل کر دیا گیا",
|
||||||
"edit.link": "اس صفحے میں ترمیم کریں",
|
|
||||||
"footer": "ذیلی تحریر",
|
"footer": "ذیلی تحریر",
|
||||||
"footer.next": "اگلا",
|
"footer.next": "اگلا",
|
||||||
"footer.previous": "پچھلا",
|
"footer.previous": "پچھلا",
|
||||||
@@ -29,10 +30,9 @@
|
|||||||
"search.result.term.missing": "گمشدہ",
|
"search.result.term.missing": "گمشدہ",
|
||||||
"select.language": "زبان کا انتخاب کریں",
|
"select.language": "زبان کا انتخاب کریں",
|
||||||
"select.version": "ورژن کا انتخاب کریں",
|
"select.version": "ورژن کا انتخاب کریں",
|
||||||
"skip.link": "براہِ راست مواد پر جائیں",
|
"source": "ریپازٹری پر جائیں",
|
||||||
"source.file.date.created": "تخلیق",
|
"source.file.date.created": "تخلیق",
|
||||||
"source.file.date.updated": "آخری بار تجدید",
|
"source.file.date.updated": "آخری بار تجدید",
|
||||||
"source.link": "ریپازٹری پر جائیں",
|
|
||||||
"tabs": "ٹیبز",
|
"tabs": "ٹیبز",
|
||||||
"toc": "فہرست",
|
"toc": "فہرست",
|
||||||
"top": "واپس اوپر جائیں"
|
"top": "واپس اوپر جائیں"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "uz",
|
"language": "uz",
|
||||||
|
"action.edit": "Ushbu sahifani tahrirlash",
|
||||||
|
"action.skip": "Tarkibga o'tish",
|
||||||
"clipboard.copy": "Buferga nusxalash",
|
"clipboard.copy": "Buferga nusxalash",
|
||||||
"clipboard.copied": "Buferga nusxalandi",
|
"clipboard.copied": "Buferga nusxalandi",
|
||||||
"edit.link": "Ushbu sahifani tahrirlash",
|
|
||||||
"footer": "Pastgi qism",
|
"footer": "Pastgi qism",
|
||||||
"footer.next": "Keyingi sahifa",
|
"footer.next": "Keyingi sahifa",
|
||||||
"footer.previous": "Oldingi sahifa",
|
"footer.previous": "Oldingi sahifa",
|
||||||
@@ -28,10 +29,9 @@
|
|||||||
"search.result.term.missing": "To'ldirilmagan",
|
"search.result.term.missing": "To'ldirilmagan",
|
||||||
"select.language": "Tilni tanlang",
|
"select.language": "Tilni tanlang",
|
||||||
"select.version": "Versiyani tanlang",
|
"select.version": "Versiyani tanlang",
|
||||||
"skip.link": "Tarkibga o'tish",
|
"source": "Repozitoriyga o'tish",
|
||||||
"source.file.date.created": "Yaratildi",
|
"source.file.date.created": "Yaratildi",
|
||||||
"source.file.date.updated": "Oxirgi yangilanish",
|
"source.file.date.updated": "Oxirgi yangilanish",
|
||||||
"source.link": "Repozitoriyga o'tish",
|
|
||||||
"tabs": "Yorliqlar",
|
"tabs": "Yorliqlar",
|
||||||
"toc": "Mundarija",
|
"toc": "Mundarija",
|
||||||
"top": "Yuqoriga qaytish"
|
"top": "Yuqoriga qaytish"
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "vi",
|
"language": "vi",
|
||||||
|
"action.edit": "Chỉnh sửa",
|
||||||
|
"action.skip": "Vào thẳng nội dung",
|
||||||
"clipboard.copy": "Sao chép vào bộ nhớ",
|
"clipboard.copy": "Sao chép vào bộ nhớ",
|
||||||
"clipboard.copied": "Sao chép xong",
|
"clipboard.copied": "Sao chép xong",
|
||||||
"edit.link": "Chỉnh sửa",
|
|
||||||
"footer.next": "Sau",
|
"footer.next": "Sau",
|
||||||
"footer.previous": "Trước",
|
"footer.previous": "Trước",
|
||||||
"meta.comments": "Bình luận",
|
"meta.comments": "Bình luận",
|
||||||
@@ -16,9 +17,8 @@
|
|||||||
"search.result.none": "Không tìm thấy tài liệu liên quan",
|
"search.result.none": "Không tìm thấy tài liệu liên quan",
|
||||||
"search.result.one": "1 tài liệu liên quan",
|
"search.result.one": "1 tài liệu liên quan",
|
||||||
"search.result.other": "# tài liệu liên quan",
|
"search.result.other": "# tài liệu liên quan",
|
||||||
"skip.link": "Vào thẳng nội dung",
|
"source": "Đến kho lưu trữ mã nguồn",
|
||||||
"source.file.date.created": "Tạo",
|
"source.file.date.created": "Tạo",
|
||||||
"source.file.date.updated": "Cập nhật cuối cùng",
|
"source.file.date.updated": "Cập nhật cuối cùng",
|
||||||
"source.link": "Đến kho lưu trữ mã nguồn",
|
|
||||||
"toc": "Mục lục"
|
"toc": "Mục lục"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "zh-Hant",
|
"language": "zh-Hant",
|
||||||
|
"action.edit": "編輯此頁",
|
||||||
|
"action.skip": "跳轉至",
|
||||||
"clipboard.copy": "拷貝",
|
"clipboard.copy": "拷貝",
|
||||||
"clipboard.copied": "已拷貝",
|
"clipboard.copied": "已拷貝",
|
||||||
"edit.link": "編輯此頁",
|
|
||||||
"footer.next": "下一頁",
|
"footer.next": "下一頁",
|
||||||
"footer.previous": "上一頁",
|
"footer.previous": "上一頁",
|
||||||
"meta.comments": "評論",
|
"meta.comments": "評論",
|
||||||
@@ -19,9 +20,8 @@
|
|||||||
"search.result.none": "沒有找到符合條件的結果",
|
"search.result.none": "沒有找到符合條件的結果",
|
||||||
"search.result.one": "找到 1 个符合條件的結果",
|
"search.result.one": "找到 1 个符合條件的結果",
|
||||||
"search.result.other": "# 個符合條件的結果",
|
"search.result.other": "# 個符合條件的結果",
|
||||||
"skip.link": "跳轉至",
|
"source": "前往倉庫",
|
||||||
"source.file.date.created": "建立日期",
|
"source.file.date.created": "建立日期",
|
||||||
"source.file.date.updated": "最後更新",
|
"source.file.date.updated": "最後更新",
|
||||||
"source.link": "前往倉庫",
|
|
||||||
"toc": "目錄"
|
"toc": "目錄"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "zh-Hant",
|
"language": "zh-Hant",
|
||||||
|
"action.edit": "編輯此頁",
|
||||||
|
"action.skip": "跳轉到",
|
||||||
"announce.dismiss": "不再顯示此訊息",
|
"announce.dismiss": "不再顯示此訊息",
|
||||||
"clipboard.copy": "複製",
|
"clipboard.copy": "複製",
|
||||||
"clipboard.copied": "已複製",
|
"clipboard.copied": "已複製",
|
||||||
"consent.accept": "同意",
|
"consent.accept": "同意",
|
||||||
"consent.manage": "管理設定",
|
"consent.manage": "管理設定",
|
||||||
"consent.reject": "拒絕",
|
"consent.reject": "拒絕",
|
||||||
"edit.link": "編輯此頁",
|
|
||||||
"footer.next": "下一頁",
|
"footer.next": "下一頁",
|
||||||
"footer.previous": "上一頁",
|
"footer.previous": "上一頁",
|
||||||
"meta.comments": "留言",
|
"meta.comments": "留言",
|
||||||
@@ -25,9 +26,8 @@
|
|||||||
"search.result.other": "找到 # 個符合的項目",
|
"search.result.other": "找到 # 個符合的項目",
|
||||||
"search.result.more.one": "此頁尚有 1 個符合的項目",
|
"search.result.more.one": "此頁尚有 1 個符合的項目",
|
||||||
"search.result.more.other": "此頁尚有 # 個符合的項目",
|
"search.result.more.other": "此頁尚有 # 個符合的項目",
|
||||||
"skip.link": "跳轉到",
|
"source": "前往倉庫",
|
||||||
"source.file.date.created": "建立日期",
|
"source.file.date.created": "建立日期",
|
||||||
"source.file.date.updated": "最後更新",
|
"source.file.date.updated": "最後更新",
|
||||||
"source.link": "前往倉庫",
|
|
||||||
"toc": "目錄"
|
"toc": "目錄"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "zh",
|
"language": "zh",
|
||||||
|
"action.edit": "编辑此页",
|
||||||
|
"action.skip": "跳转至",
|
||||||
"announce.dismiss": "不再显示此消息",
|
"announce.dismiss": "不再显示此消息",
|
||||||
"clipboard.copy": "复制",
|
"clipboard.copy": "复制",
|
||||||
"clipboard.copied": "已复制",
|
"clipboard.copied": "已复制",
|
||||||
"consent.accept": "同意",
|
"consent.accept": "同意",
|
||||||
"consent.manage": "管理设定",
|
"consent.manage": "管理设定",
|
||||||
"consent.reject": "拒绝",
|
"consent.reject": "拒绝",
|
||||||
"edit.link": "编辑此页",
|
|
||||||
"footer": "页脚",
|
"footer": "页脚",
|
||||||
"footer.next": "下一页",
|
"footer.next": "下一页",
|
||||||
"footer.previous": "上一页",
|
"footer.previous": "上一页",
|
||||||
@@ -34,10 +35,9 @@
|
|||||||
"search.result.term.missing": "缺少",
|
"search.result.term.missing": "缺少",
|
||||||
"select.language": "选择当前语言",
|
"select.language": "选择当前语言",
|
||||||
"select.version": "选择当前版本",
|
"select.version": "选择当前版本",
|
||||||
"skip.link": "跳转至",
|
"source": "前往仓库",
|
||||||
"source.file.date.created": "创建日期",
|
"source.file.date.created": "创建日期",
|
||||||
"source.file.date.updated": "最后更新",
|
"source.file.date.updated": "最后更新",
|
||||||
"source.link": "前往仓库",
|
|
||||||
"tabs": "标签",
|
"tabs": "标签",
|
||||||
"toc": "目录",
|
"toc": "目录",
|
||||||
"top": "回到页面顶部"
|
"top": "回到页面顶部"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
This file was automatically generated - do not edit
|
||||||
-#}
|
-#}
|
||||||
<a href="{{ config.repo_url }}" title="{{ lang.t('source.link') }}" class="md-source" data-md-component="source">
|
<a href="{{ config.repo_url }}" title="{{ lang.t('source') }}" class="md-source" data-md-component="source">
|
||||||
<div class="md-source__icon md-icon">
|
<div class="md-source__icon md-icon">
|
||||||
{% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %}
|
{% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %}
|
||||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||||
|
|||||||
@@ -39,6 +39,8 @@ theme:
|
|||||||
custom_dir: material/.overrides
|
custom_dir: material/.overrides
|
||||||
features:
|
features:
|
||||||
# - announce.dismiss
|
# - announce.dismiss
|
||||||
|
- content.action.edit
|
||||||
|
- content.action.view
|
||||||
- content.code.annotate
|
- content.code.annotate
|
||||||
- content.code.copy
|
- content.code.copy
|
||||||
# - content.tabs.link
|
# - content.tabs.link
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
<!--
|
|
||||||
Copyright (c) 2016-2022 Martin Donath <martin.donath@squidfunk.com>
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to
|
|
||||||
deal in the Software without restriction, including without limitation the
|
|
||||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
||||||
sell copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
||||||
IN THE SOFTWARE.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- Edit and view button -->
|
|
||||||
{% if page.edit_url %}
|
|
||||||
{% set edit = "https://github.com/squidfunk/mkdocs-material/edit" %}
|
|
||||||
{% set view = "https://raw.githubusercontent.com/squidfunk/mkdocs-material" %}
|
|
||||||
<a
|
|
||||||
href="{{ page.edit_url }}"
|
|
||||||
title="{{ lang.t('edit.link') }}"
|
|
||||||
class="md-content__button md-icon"
|
|
||||||
>
|
|
||||||
{% include ".icons/material/file-edit-outline.svg" %}
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
href="{{ page.edit_url | replace(edit, view) }}"
|
|
||||||
title="View source of this page"
|
|
||||||
class="md-content__button md-icon"
|
|
||||||
>
|
|
||||||
{% include ".icons/material/file-eye-outline.svg" %}
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
{% if page.toc | first is defined %}
|
{% if page.toc | first is defined %}
|
||||||
{% set skip = page.toc | first %}
|
{% set skip = page.toc | first %}
|
||||||
<a href="{{ skip.url | url }}" class="md-skip">
|
<a href="{{ skip.url | url }}" class="md-skip">
|
||||||
{{ lang.t("skip.link") }}
|
{{ lang.t("action.skip") }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -20,14 +20,30 @@
|
|||||||
IN THE SOFTWARE.
|
IN THE SOFTWARE.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Edit button -->
|
<!-- Actions -->
|
||||||
{% if page.edit_url %}
|
{% if page.edit_url %}
|
||||||
<a
|
|
||||||
href="{{ page.edit_url }}"
|
<!-- Edit button -->
|
||||||
title="{{ lang.t('edit.link') }}"
|
{% if "content.action.edit" in features %}
|
||||||
class="md-content__button md-icon"
|
<a
|
||||||
>
|
href="{{ page.edit_url }}"
|
||||||
{% set icon = config.theme.icon.edit or "material/pencil" %}
|
title="{{ lang.t('action.edit') }}"
|
||||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
class="md-content__button md-icon"
|
||||||
</a>
|
>
|
||||||
|
{% set icon = config.theme.icon.edit or "material/file-edit-outline" %}
|
||||||
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<!-- View button -->
|
||||||
|
{% if "content.action.view" in features %}
|
||||||
|
<a
|
||||||
|
href="{{ page.edit_url | replace(edit, view) }}"
|
||||||
|
title="{{ lang.t('action.view') }}"
|
||||||
|
class="md-content__button md-icon"
|
||||||
|
>
|
||||||
|
{% set icon = config.theme.icon.view or "material/file-eye-outline" %}
|
||||||
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Afrikaans -->
|
<!-- Translations: Afrikaans -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "af",
|
"language": "af",
|
||||||
|
"action.edit": "Wysig hierdie bladsy",
|
||||||
|
"action.skip": "Slaan oor na inhoud",
|
||||||
"clipboard.copy": "Kopieer na knipbord",
|
"clipboard.copy": "Kopieer na knipbord",
|
||||||
"clipboard.copied": "gekopieer na knipbord",
|
"clipboard.copied": "gekopieer na knipbord",
|
||||||
"edit.link": "Wysig hierdie bladsy",
|
|
||||||
"footer.next": "Volgende",
|
"footer.next": "Volgende",
|
||||||
"footer.previous": "Vorige",
|
"footer.previous": "Vorige",
|
||||||
"meta.comments": "Kommentaar",
|
"meta.comments": "Kommentaar",
|
||||||
@@ -36,9 +37,8 @@
|
|||||||
"search.result.none": "Geen ooreenstemmende dokumente",
|
"search.result.none": "Geen ooreenstemmende dokumente",
|
||||||
"search.result.one": "1 ooreenstemmende dokument",
|
"search.result.one": "1 ooreenstemmende dokument",
|
||||||
"search.result.other": "# ooreenstemmende dokumente",
|
"search.result.other": "# ooreenstemmende dokumente",
|
||||||
"skip.link": "Slaan oor na inhoud",
|
"source": "Slaan oor na inhoud",
|
||||||
"source.file.date.created": "Geskep",
|
"source.file.date.created": "Geskep",
|
||||||
"source.file.date.updated": "Laaste opdatering",
|
"source.file.date.updated": "Laaste opdatering",
|
||||||
"source.link": "Slaan oor na inhoud",
|
|
||||||
"toc": "Inhoudsopgawe"
|
"toc": "Inhoudsopgawe"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -24,9 +24,10 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ar",
|
"language": "ar",
|
||||||
"direction": "rtl",
|
"direction": "rtl",
|
||||||
|
"action.edit": "عدل الصفحة",
|
||||||
|
"action.skip": "انتقل إلى المحتوى",
|
||||||
"clipboard.copy": "نسخ إلى الحافظة",
|
"clipboard.copy": "نسخ إلى الحافظة",
|
||||||
"clipboard.copied": "تم النسخ الى الحافظة",
|
"clipboard.copied": "تم النسخ الى الحافظة",
|
||||||
"edit.link": "عدل الصفحة",
|
|
||||||
"footer.next": "التالية",
|
"footer.next": "التالية",
|
||||||
"footer.previous": "السابقة",
|
"footer.previous": "السابقة",
|
||||||
"meta.comments": "التعليقات",
|
"meta.comments": "التعليقات",
|
||||||
@@ -37,9 +38,8 @@
|
|||||||
"search.result.none": "لا توجد نتائج",
|
"search.result.none": "لا توجد نتائج",
|
||||||
"search.result.one": "نتائج البحث مستند واحد",
|
"search.result.one": "نتائج البحث مستند واحد",
|
||||||
"search.result.other": "نتائج البحث # مستندات",
|
"search.result.other": "نتائج البحث # مستندات",
|
||||||
"skip.link": "انتقل إلى المحتوى",
|
"source": "اذهب إلى المصدر",
|
||||||
"source.file.date.created": "خلقت",
|
"source.file.date.created": "خلقت",
|
||||||
"source.file.date.updated": "اخر تحديث",
|
"source.file.date.updated": "اخر تحديث",
|
||||||
"source.link": "اذهب إلى المصدر",
|
|
||||||
"toc": "جدول المحتويات"
|
"toc": "جدول المحتويات"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Bulgarian -->
|
<!-- Translations: Bulgarian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "bg",
|
"language": "bg",
|
||||||
|
"action.edit": "Редактирай тази страница",
|
||||||
|
"action.skip": "Към съдържанието",
|
||||||
"clipboard.copy": "Копирай",
|
"clipboard.copy": "Копирай",
|
||||||
"clipboard.copied": "Копирано",
|
"clipboard.copied": "Копирано",
|
||||||
"edit.link": "Редактирай тази страница",
|
|
||||||
"footer": "Долен колонтитул",
|
"footer": "Долен колонтитул",
|
||||||
"footer.next": "Следваща",
|
"footer.next": "Следваща",
|
||||||
"footer.previous": "Предишна",
|
"footer.previous": "Предишна",
|
||||||
@@ -42,10 +43,9 @@
|
|||||||
"search.result.other": "# резултата",
|
"search.result.other": "# резултата",
|
||||||
"search.result.more.one": "още 1 на тази страница",
|
"search.result.more.one": "още 1 на тази страница",
|
||||||
"search.result.more.other": "още # на тази страница",
|
"search.result.more.other": "още # на тази страница",
|
||||||
"skip.link": "Към съдържанието",
|
"source": "Към хранилището",
|
||||||
"source.file.date.created": "Създаден",
|
"source.file.date.created": "Създаден",
|
||||||
"source.file.date.updated": "Последна промяна",
|
"source.file.date.updated": "Последна промяна",
|
||||||
"source.link": "Към хранилището",
|
|
||||||
"tabs": "Табове",
|
"tabs": "Табове",
|
||||||
"toc": "Съдържание"
|
"toc": "Съдържание"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Bengali (Bangla) -->
|
<!-- Translations: Bengali (Bangla) -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "bn",
|
"language": "bn",
|
||||||
|
"action.edit": "এই পেজ এডিট করুন",
|
||||||
|
"action.skip": "কনটেন্টে যান",
|
||||||
"clipboard.copy": "ক্লিপবোর্ডে কপি করুন",
|
"clipboard.copy": "ক্লিপবোর্ডে কপি করুন",
|
||||||
"clipboard.copied": "ক্লিপবোর্ডে কপি হয়েছে",
|
"clipboard.copied": "ক্লিপবোর্ডে কপি হয়েছে",
|
||||||
"edit.link": "এই পেজ এডিট করুন",
|
|
||||||
"footer": "ফুটার",
|
"footer": "ফুটার",
|
||||||
"footer.next": "পরে",
|
"footer.next": "পরে",
|
||||||
"footer.previous": "পূর্ববর্তী",
|
"footer.previous": "পূর্ববর্তী",
|
||||||
@@ -40,10 +41,9 @@
|
|||||||
"search.result.none": "কিছু পাওয়া যায়নি",
|
"search.result.none": "কিছু পাওয়া যায়নি",
|
||||||
"search.result.one": "১ টা ডকুমেন্ট",
|
"search.result.one": "১ টা ডকুমেন্ট",
|
||||||
"search.result.other": "# টা ডকুমেন্ট",
|
"search.result.other": "# টা ডকুমেন্ট",
|
||||||
"skip.link": "কনটেন্টে যান",
|
"source": "রিপোজিটরিতে যান",
|
||||||
"source.file.date.created": "তৈরি হয়েছে",
|
"source.file.date.created": "তৈরি হয়েছে",
|
||||||
"source.file.date.updated": "শেষ আপডেট",
|
"source.file.date.updated": "শেষ আপডেট",
|
||||||
"source.link": "রিপোজিটরিতে যান",
|
|
||||||
"tabs": "ট্যাব",
|
"tabs": "ট্যাব",
|
||||||
"toc": "টেবিল অফ কনটেন্ট"
|
"toc": "টেবিল অফ কনটেন্ট"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Catalan -->
|
<!-- Translations: Catalan -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ca",
|
"language": "ca",
|
||||||
|
"action.edit": "Edita aquesta pàgina",
|
||||||
|
"action.skip": "Salta el contingut",
|
||||||
"clipboard.copy": "Còpia al porta-retalls",
|
"clipboard.copy": "Còpia al porta-retalls",
|
||||||
"clipboard.copied": "Copiat al porta-retalls",
|
"clipboard.copied": "Copiat al porta-retalls",
|
||||||
"edit.link": "Edita aquesta pàgina",
|
|
||||||
"footer.next": "Següent",
|
"footer.next": "Següent",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
"meta.comments": "Comentaris",
|
"meta.comments": "Comentaris",
|
||||||
@@ -35,9 +36,8 @@
|
|||||||
"search.result.none": "Cap document coincideix",
|
"search.result.none": "Cap document coincideix",
|
||||||
"search.result.one": "1 document coincident",
|
"search.result.one": "1 document coincident",
|
||||||
"search.result.other": "# documents coincidents",
|
"search.result.other": "# documents coincidents",
|
||||||
"skip.link": "Salta el contingut",
|
"source": "Ves al repositori",
|
||||||
"source.file.date.created": "Creada",
|
"source.file.date.created": "Creada",
|
||||||
"source.file.date.updated": "Darrera actualització",
|
"source.file.date.updated": "Darrera actualització",
|
||||||
"source.link": "Ves al repositori",
|
|
||||||
"toc": "Taula de continguts"
|
"toc": "Taula de continguts"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Czech -->
|
<!-- Translations: Czech -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "cs",
|
"language": "cs",
|
||||||
|
"action.edit": "Upravit tuto stránku",
|
||||||
|
"action.skip": "Přeskočit obsah",
|
||||||
"clipboard.copy": "Kopírovat do schránky",
|
"clipboard.copy": "Kopírovat do schránky",
|
||||||
"clipboard.copied": "Zkopírováno do schránky",
|
"clipboard.copied": "Zkopírováno do schránky",
|
||||||
"edit.link": "Upravit tuto stránku",
|
|
||||||
"footer.next": "Další",
|
"footer.next": "Další",
|
||||||
"footer.previous": "Předchozí",
|
"footer.previous": "Předchozí",
|
||||||
"meta.comments": "Komentáře",
|
"meta.comments": "Komentáře",
|
||||||
@@ -35,9 +36,8 @@
|
|||||||
"search.result.none": "Nenalezeny žádné dokumenty",
|
"search.result.none": "Nenalezeny žádné dokumenty",
|
||||||
"search.result.one": "Nalezený dokument: 1",
|
"search.result.one": "Nalezený dokument: 1",
|
||||||
"search.result.other": "Nalezené dokumenty: #",
|
"search.result.other": "Nalezené dokumenty: #",
|
||||||
"skip.link": "Přeskočit obsah",
|
"source": "Přejít do repozitáře",
|
||||||
"source.file.date.created": "Vytvořeno",
|
"source.file.date.created": "Vytvořeno",
|
||||||
"source.file.date.updated": "Poslední aktualizace",
|
"source.file.date.updated": "Poslední aktualizace",
|
||||||
"source.link": "Přejít do repozitáře",
|
|
||||||
"toc": "Obsah"
|
"toc": "Obsah"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Danish -->
|
<!-- Translations: Danish -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "da",
|
"language": "da",
|
||||||
|
"action.edit": "Redigér denne side",
|
||||||
|
"action.skip": "Gå til indholdet",
|
||||||
"clipboard.copy": "Kopiér til udklipsholderen",
|
"clipboard.copy": "Kopiér til udklipsholderen",
|
||||||
"clipboard.copied": "Kopieret til udklipsholderen",
|
"clipboard.copied": "Kopieret til udklipsholderen",
|
||||||
"edit.link": "Redigér denne side",
|
|
||||||
"footer.next": "Næste",
|
"footer.next": "Næste",
|
||||||
"footer.previous": "Forrige",
|
"footer.previous": "Forrige",
|
||||||
"meta.comments": "Kommentarer",
|
"meta.comments": "Kommentarer",
|
||||||
@@ -36,9 +37,8 @@
|
|||||||
"search.result.none": "Ingen resultater fundet",
|
"search.result.none": "Ingen resultater fundet",
|
||||||
"search.result.one": "1 resultat",
|
"search.result.one": "1 resultat",
|
||||||
"search.result.other": "# resultater",
|
"search.result.other": "# resultater",
|
||||||
"skip.link": "Gå til indholdet",
|
"source": "Åbn arkiv",
|
||||||
"source.file.date.created": "Oprettet",
|
"source.file.date.created": "Oprettet",
|
||||||
"source.file.date.updated": "Sidste ændring",
|
"source.file.date.updated": "Sidste ændring",
|
||||||
"source.link": "Åbn arkiv",
|
|
||||||
"toc": "Indholdsfortegnelse"
|
"toc": "Indholdsfortegnelse"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,13 +23,15 @@
|
|||||||
<!-- Translations: German -->
|
<!-- Translations: German -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "de",
|
"language": "de",
|
||||||
|
"action.edit": "Seite editieren",
|
||||||
|
"action.skip": "Zum Inhalt",
|
||||||
|
"action.view": "Quellcode der Seite anzeigen",
|
||||||
"announce.dismiss": "Nicht mehr anzeigen",
|
"announce.dismiss": "Nicht mehr anzeigen",
|
||||||
"clipboard.copy": "In Zwischenablage kopieren",
|
"clipboard.copy": "In Zwischenablage kopieren",
|
||||||
"clipboard.copied": "In Zwischenablage kopiert",
|
"clipboard.copied": "In Zwischenablage kopiert",
|
||||||
"consent.accept": "Akzeptieren",
|
"consent.accept": "Akzeptieren",
|
||||||
"consent.manage": "Einstellungen",
|
"consent.manage": "Einstellungen",
|
||||||
"consent.reject": "Ablehnen",
|
"consent.reject": "Ablehnen",
|
||||||
"edit.link": "Seite editieren",
|
|
||||||
"footer": "Fußzeile",
|
"footer": "Fußzeile",
|
||||||
"footer.next": "Weiter",
|
"footer.next": "Weiter",
|
||||||
"footer.previous": "Zurück",
|
"footer.previous": "Zurück",
|
||||||
@@ -52,10 +54,9 @@
|
|||||||
"search.result.term.missing": "Es fehlt",
|
"search.result.term.missing": "Es fehlt",
|
||||||
"select.language": "Sprache wechseln",
|
"select.language": "Sprache wechseln",
|
||||||
"select.version": "Version auswählen",
|
"select.version": "Version auswählen",
|
||||||
"skip.link": "Zum Inhalt",
|
"source": "Zum Repository",
|
||||||
"source.file.date.created": "Erstellt",
|
"source.file.date.created": "Erstellt",
|
||||||
"source.file.date.updated": "Letztes Update",
|
"source.file.date.updated": "Letztes Update",
|
||||||
"source.link": "Zum Repository",
|
|
||||||
"tabs": "Hauptnavigation",
|
"tabs": "Hauptnavigation",
|
||||||
"toc": "Inhaltsverzeichnis",
|
"toc": "Inhaltsverzeichnis",
|
||||||
"top": "Zurück zum Seitenanfang"
|
"top": "Zurück zum Seitenanfang"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Greek -->
|
<!-- Translations: Greek -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "el",
|
"language": "el",
|
||||||
|
"action.edit": "Επεξεργασία αυτής της σελίδας",
|
||||||
|
"action.skip": "Μετάβαση στο περιεχόμενο",
|
||||||
"clipboard.copy": "Αντιγραφή στο πρόχειρο",
|
"clipboard.copy": "Αντιγραφή στο πρόχειρο",
|
||||||
"clipboard.copied": "Αντιγράφηκε στο πρόχειρο",
|
"clipboard.copied": "Αντιγράφηκε στο πρόχειρο",
|
||||||
"edit.link": "Επεξεργασία αυτής της σελίδας",
|
|
||||||
"footer": "Υποσέλιδο",
|
"footer": "Υποσέλιδο",
|
||||||
"footer.next": "Επόμενο",
|
"footer.next": "Επόμενο",
|
||||||
"footer.previous": "Προηγούμενο",
|
"footer.previous": "Προηγούμενο",
|
||||||
@@ -47,10 +48,9 @@
|
|||||||
"search.result.term.missing": "Λείπει",
|
"search.result.term.missing": "Λείπει",
|
||||||
"select.language": "Επιλογή γλώσσας",
|
"select.language": "Επιλογή γλώσσας",
|
||||||
"select.version": "Επιλογή έκδοσης",
|
"select.version": "Επιλογή έκδοσης",
|
||||||
"skip.link": "Μετάβαση στο περιεχόμενο",
|
"source": "Μετάβαση στο αποθετήριο",
|
||||||
"source.file.date.created": "Δημιουργήθηκε",
|
"source.file.date.created": "Δημιουργήθηκε",
|
||||||
"source.file.date.updated": "τελευταία ενημέρωση",
|
"source.file.date.updated": "τελευταία ενημέρωση",
|
||||||
"source.link": "Μετάβαση στο αποθετήριο",
|
|
||||||
"tabs": "Καρτέλες",
|
"tabs": "Καρτέλες",
|
||||||
"toc": "Πίνακας περιεχομένων",
|
"toc": "Πίνακας περιεχομένων",
|
||||||
"top": "Επιστροφή στην αρχή"
|
"top": "Επιστροφή στην αρχή"
|
||||||
|
|||||||
@@ -24,13 +24,15 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "en",
|
"language": "en",
|
||||||
"direction": "ltr",
|
"direction": "ltr",
|
||||||
|
"action.edit": "Edit this page",
|
||||||
|
"action.skip": "Skip to content",
|
||||||
|
"action.view": "View source of this page",
|
||||||
"announce.dismiss": "Don't show this again",
|
"announce.dismiss": "Don't show this again",
|
||||||
"clipboard.copy": "Copy to clipboard",
|
"clipboard.copy": "Copy to clipboard",
|
||||||
"clipboard.copied": "Copied to clipboard",
|
"clipboard.copied": "Copied to clipboard",
|
||||||
"consent.accept": "Accept",
|
"consent.accept": "Accept",
|
||||||
"consent.manage": "Manage settings",
|
"consent.manage": "Manage settings",
|
||||||
"consent.reject": "Reject",
|
"consent.reject": "Reject",
|
||||||
"edit.link": "Edit this page",
|
|
||||||
"footer": "Footer",
|
"footer": "Footer",
|
||||||
"footer.next": "Next",
|
"footer.next": "Next",
|
||||||
"footer.previous": "Previous",
|
"footer.previous": "Previous",
|
||||||
@@ -55,10 +57,9 @@
|
|||||||
"search.result.term.missing": "Missing",
|
"search.result.term.missing": "Missing",
|
||||||
"select.language": "Select language",
|
"select.language": "Select language",
|
||||||
"select.version": "Select version",
|
"select.version": "Select version",
|
||||||
"skip.link": "Skip to content",
|
"source": "Go to repository",
|
||||||
"source.file.date.created": "Created",
|
"source.file.date.created": "Created",
|
||||||
"source.file.date.updated": "Last update",
|
"source.file.date.updated": "Last update",
|
||||||
"source.link": "Go to repository",
|
|
||||||
"tabs": "Tabs",
|
"tabs": "Tabs",
|
||||||
"toc": "Table of contents",
|
"toc": "Table of contents",
|
||||||
"top": "Back to top"
|
"top": "Back to top"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Esperanto -->
|
<!-- Translations: Esperanto -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "eo",
|
"language": "eo",
|
||||||
|
"action.edit": "Redakti ĉi tiun paĝon",
|
||||||
|
"action.skip": "Saltu al enhavo",
|
||||||
"clipboard.copy": "Kopii al tondujo",
|
"clipboard.copy": "Kopii al tondujo",
|
||||||
"clipboard.copied": "Kopiado al klipo",
|
"clipboard.copied": "Kopiado al klipo",
|
||||||
"edit.link": "Redakti ĉi tiun paĝon",
|
|
||||||
"footer": "Piedlinio",
|
"footer": "Piedlinio",
|
||||||
"footer.next": "Sekva",
|
"footer.next": "Sekva",
|
||||||
"footer.previous": "Antaŭa",
|
"footer.previous": "Antaŭa",
|
||||||
@@ -40,10 +41,9 @@
|
|||||||
"search.result.none": "Neniuj kongruaj dokumentoj",
|
"search.result.none": "Neniuj kongruaj dokumentoj",
|
||||||
"search.result.one": "1 kongrua dokumento",
|
"search.result.one": "1 kongrua dokumento",
|
||||||
"search.result.other": "# kongruaj dokumentoj",
|
"search.result.other": "# kongruaj dokumentoj",
|
||||||
"skip.link": "Saltu al enhavo",
|
"source": "Iru al deponejo",
|
||||||
"source.file.date.created": "Kreita",
|
"source.file.date.created": "Kreita",
|
||||||
"source.file.date.updated": "Lasta ĝisdatigo",
|
"source.file.date.updated": "Lasta ĝisdatigo",
|
||||||
"source.link": "Iru al deponejo",
|
|
||||||
"tabs": "Langetoj",
|
"tabs": "Langetoj",
|
||||||
"toc": "Enhavtabelo"
|
"toc": "Enhavtabelo"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,11 +23,12 @@
|
|||||||
<!-- Translations: Spanish -->
|
<!-- Translations: Spanish -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "es",
|
"language": "es",
|
||||||
|
"action.edit": "Editar esta página",
|
||||||
|
"action.skip": "Saltar a contenido",
|
||||||
"clipboard.copy": "Copiar al portapapeles",
|
"clipboard.copy": "Copiar al portapapeles",
|
||||||
"clipboard.copied": "Copiado al portapapeles",
|
"clipboard.copied": "Copiado al portapapeles",
|
||||||
"consent.accept": "Aceptar",
|
"consent.accept": "Aceptar",
|
||||||
"consent.manage": "Gestionar cookies",
|
"consent.manage": "Gestionar cookies",
|
||||||
"edit.link": "Editar esta página",
|
|
||||||
"footer": "Pie",
|
"footer": "Pie",
|
||||||
"footer.next": "Siguiente",
|
"footer.next": "Siguiente",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
@@ -48,10 +49,9 @@
|
|||||||
"search.result.term.missing": "Falta",
|
"search.result.term.missing": "Falta",
|
||||||
"select.language": "Seleccionar idioma",
|
"select.language": "Seleccionar idioma",
|
||||||
"select.version": "Seleccionar versión",
|
"select.version": "Seleccionar versión",
|
||||||
"skip.link": "Saltar a contenido",
|
"source": "Ir al repositorio",
|
||||||
"source.file.date.created": "Creado",
|
"source.file.date.created": "Creado",
|
||||||
"source.file.date.updated": "Última actualización",
|
"source.file.date.updated": "Última actualización",
|
||||||
"source.link": "Ir al repositorio",
|
|
||||||
"tabs": "Pestañas",
|
"tabs": "Pestañas",
|
||||||
"toc": "Tabla de contenidos",
|
"toc": "Tabla de contenidos",
|
||||||
"top": "Volver al principio"
|
"top": "Volver al principio"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Estonian -->
|
<!-- Translations: Estonian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "et",
|
"language": "et",
|
||||||
|
"action.edit": "Muuda seda lehte",
|
||||||
|
"action.skip": "Keri sisuni",
|
||||||
"clipboard.copy": "Kopeeri lõikelauale",
|
"clipboard.copy": "Kopeeri lõikelauale",
|
||||||
"clipboard.copied": "Kopeeritud",
|
"clipboard.copied": "Kopeeritud",
|
||||||
"edit.link": "Muuda seda lehte",
|
|
||||||
"footer.next": "Järgmine",
|
"footer.next": "Järgmine",
|
||||||
"footer.previous": "Eelmine",
|
"footer.previous": "Eelmine",
|
||||||
"meta.comments": "Kommentaarid",
|
"meta.comments": "Kommentaarid",
|
||||||
@@ -35,9 +36,8 @@
|
|||||||
"search.result.none": "Otsingule ei leitud ühtegi vastet",
|
"search.result.none": "Otsingule ei leitud ühtegi vastet",
|
||||||
"search.result.one": "Leiti üks tulemus",
|
"search.result.one": "Leiti üks tulemus",
|
||||||
"search.result.other": "Leiti # tulemust",
|
"search.result.other": "Leiti # tulemust",
|
||||||
"skip.link": "Keri sisuni",
|
"source": "Ava repositooriumis",
|
||||||
"source.file.date.created": "Loodud",
|
"source.file.date.created": "Loodud",
|
||||||
"source.file.date.updated": "Viimane uuendus",
|
"source.file.date.updated": "Viimane uuendus",
|
||||||
"source.link": "Ava repositooriumis",
|
|
||||||
"toc": "Sisukord"
|
"toc": "Sisukord"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -24,9 +24,10 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "fa",
|
"language": "fa",
|
||||||
"direction": "rtl",
|
"direction": "rtl",
|
||||||
|
"action.edit": "این صفحه را ویرایش کنید",
|
||||||
|
"action.skip": "پرش به محتویات",
|
||||||
"clipboard.copy": "کپی کردن",
|
"clipboard.copy": "کپی کردن",
|
||||||
"clipboard.copied": "کپی شد",
|
"clipboard.copied": "کپی شد",
|
||||||
"edit.link": "این صفحه را ویرایش کنید",
|
|
||||||
"footer.next": "بعدی",
|
"footer.next": "بعدی",
|
||||||
"footer.previous": "قبلی",
|
"footer.previous": "قبلی",
|
||||||
"meta.comments": "نظرات",
|
"meta.comments": "نظرات",
|
||||||
@@ -37,9 +38,8 @@
|
|||||||
"search.result.none": "سندی یافت نشد",
|
"search.result.none": "سندی یافت نشد",
|
||||||
"search.result.one": "1 سند یافت شد",
|
"search.result.one": "1 سند یافت شد",
|
||||||
"search.result.other": "# سند یافت شد",
|
"search.result.other": "# سند یافت شد",
|
||||||
"skip.link": "پرش به محتویات",
|
"source": "رفتن به مخزن",
|
||||||
"source.file.date.created": "ایجاد شده",
|
"source.file.date.created": "ایجاد شده",
|
||||||
"source.file.date.updated": "اخرین بروزرسانی",
|
"source.file.date.updated": "اخرین بروزرسانی",
|
||||||
"source.link": "رفتن به مخزن",
|
|
||||||
"toc": "فهرست موضوعات"
|
"toc": "فهرست موضوعات"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Finnish -->
|
<!-- Translations: Finnish -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "fi",
|
"language": "fi",
|
||||||
|
"action.edit": "Muokkaa tätä sivua",
|
||||||
|
"action.skip": "Hyppää sisältöön",
|
||||||
"clipboard.copy": "Kopioi leikepöydälle",
|
"clipboard.copy": "Kopioi leikepöydälle",
|
||||||
"clipboard.copied": "Kopioitu leikepöydälle",
|
"clipboard.copied": "Kopioitu leikepöydälle",
|
||||||
"edit.link": "Muokkaa tätä sivua",
|
|
||||||
"footer.next": "Seuraava",
|
"footer.next": "Seuraava",
|
||||||
"footer.previous": "Edellinen",
|
"footer.previous": "Edellinen",
|
||||||
"meta.comments": "Kommentit",
|
"meta.comments": "Kommentit",
|
||||||
@@ -36,9 +37,8 @@
|
|||||||
"search.result.none": "Ei täsmääviä dokumentteja",
|
"search.result.none": "Ei täsmääviä dokumentteja",
|
||||||
"search.result.one": "1 täsmäävä dokumentti",
|
"search.result.one": "1 täsmäävä dokumentti",
|
||||||
"search.result.other": "# täsmäävää dokumenttia",
|
"search.result.other": "# täsmäävää dokumenttia",
|
||||||
"skip.link": "Hyppää sisältöön",
|
"source": "Mene repositoryyn",
|
||||||
"source.file.date.created": "Luotu",
|
"source.file.date.created": "Luotu",
|
||||||
"source.file.date.updated": "Viimeisin päivitys",
|
"source.file.date.updated": "Viimeisin päivitys",
|
||||||
"source.link": "Mene repositoryyn",
|
|
||||||
"toc": "Sisällysluettelo"
|
"toc": "Sisällysluettelo"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,12 +23,13 @@
|
|||||||
<!-- Translations: French -->
|
<!-- Translations: French -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "fr",
|
"language": "fr",
|
||||||
|
"action.edit": "Editer cette page",
|
||||||
|
"action.skip": "Aller au contenu",
|
||||||
"clipboard.copy": "Copier dans le presse-papier",
|
"clipboard.copy": "Copier dans le presse-papier",
|
||||||
"clipboard.copied": "Copié dans le presse-papier",
|
"clipboard.copied": "Copié dans le presse-papier",
|
||||||
"consent.accept": "Accepter",
|
"consent.accept": "Accepter",
|
||||||
"consent.manage": "Paramétrer vos choix",
|
"consent.manage": "Paramétrer vos choix",
|
||||||
"consent.reject": "Refuser",
|
"consent.reject": "Refuser",
|
||||||
"edit.link": "Editer cette page",
|
|
||||||
"footer": "Pied de page",
|
"footer": "Pied de page",
|
||||||
"footer.next": "Suivant",
|
"footer.next": "Suivant",
|
||||||
"footer.previous": "Précédent",
|
"footer.previous": "Précédent",
|
||||||
@@ -49,10 +50,9 @@
|
|||||||
"search.result.term.missing": "Non trouvé",
|
"search.result.term.missing": "Non trouvé",
|
||||||
"select.language": "Sélectionner la langue",
|
"select.language": "Sélectionner la langue",
|
||||||
"select.version": "Sélectionner la version",
|
"select.version": "Sélectionner la version",
|
||||||
"skip.link": "Aller au contenu",
|
"source": "Aller au dépôt",
|
||||||
"source.file.date.created": "Créé",
|
"source.file.date.created": "Créé",
|
||||||
"source.file.date.updated": "Dernière mise à jour",
|
"source.file.date.updated": "Dernière mise à jour",
|
||||||
"source.link": "Aller au dépôt",
|
|
||||||
"tabs": "Onglets",
|
"tabs": "Onglets",
|
||||||
"toc": "Table des matières",
|
"toc": "Table des matières",
|
||||||
"top": "Retour en haut de la page"
|
"top": "Retour en haut de la page"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Galician -->
|
<!-- Translations: Galician -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "gl",
|
"language": "gl",
|
||||||
|
"action.edit": "Editar esta páxina",
|
||||||
|
"action.skip": "Ir ao contido",
|
||||||
"clipboard.copy": "Copiar no cortapapeis",
|
"clipboard.copy": "Copiar no cortapapeis",
|
||||||
"clipboard.copied": "Copiado no cortapapeis",
|
"clipboard.copied": "Copiado no cortapapeis",
|
||||||
"edit.link": "Editar esta páxina",
|
|
||||||
"footer": "Pé",
|
"footer": "Pé",
|
||||||
"footer.next": "Seguinte",
|
"footer.next": "Seguinte",
|
||||||
"footer.previous": "Anterior",
|
"footer.previous": "Anterior",
|
||||||
@@ -46,10 +47,9 @@
|
|||||||
"search.result.term.missing": "Falta",
|
"search.result.term.missing": "Falta",
|
||||||
"select.language": "Seleccionar idioma",
|
"select.language": "Seleccionar idioma",
|
||||||
"select.version": "Seleccionar version",
|
"select.version": "Seleccionar version",
|
||||||
"skip.link": "Ir ao contido",
|
"source": "Ir ao repositorio",
|
||||||
"source.file.date.created": "Creada",
|
"source.file.date.created": "Creada",
|
||||||
"source.file.date.updated": "Última actualización",
|
"source.file.date.updated": "Última actualización",
|
||||||
"source.link": "Ir ao repositorio",
|
|
||||||
"tabs": "Pestanas",
|
"tabs": "Pestanas",
|
||||||
"toc": "Táboa de contidos",
|
"toc": "Táboa de contidos",
|
||||||
"top": "Volver ao principio"
|
"top": "Volver ao principio"
|
||||||
|
|||||||
@@ -24,13 +24,14 @@
|
|||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "he",
|
"language": "he",
|
||||||
"direction": "rtl",
|
"direction": "rtl",
|
||||||
|
"action.edit": "עריכת הדף הזה",
|
||||||
|
"action.skip": "לדלג לתוכן",
|
||||||
"announce.dismiss": "לא להציג את זה שוב",
|
"announce.dismiss": "לא להציג את זה שוב",
|
||||||
"clipboard.copy": "העתקה ללוח",
|
"clipboard.copy": "העתקה ללוח",
|
||||||
"clipboard.copied": "הועתק ללוח",
|
"clipboard.copied": "הועתק ללוח",
|
||||||
"consent.accept": "לקבל",
|
"consent.accept": "לקבל",
|
||||||
"consent.manage": "לנהל הגדרות",
|
"consent.manage": "לנהל הגדרות",
|
||||||
"consent.reject": "לדחות",
|
"consent.reject": "לדחות",
|
||||||
"edit.link": "עריכת הדף הזה",
|
|
||||||
"footer": "כותרת תחתונה",
|
"footer": "כותרת תחתונה",
|
||||||
"footer.next": "הבא",
|
"footer.next": "הבא",
|
||||||
"footer.previous": "הקודם",
|
"footer.previous": "הקודם",
|
||||||
@@ -53,10 +54,9 @@
|
|||||||
"search.result.term.missing": "חסר",
|
"search.result.term.missing": "חסר",
|
||||||
"select.language": "בחירת שפה",
|
"select.language": "בחירת שפה",
|
||||||
"select.version": "בחירת גרסה",
|
"select.version": "בחירת גרסה",
|
||||||
"skip.link": "לדלג לתוכן",
|
"source": "לעבור אל המאגר",
|
||||||
"source.file.date.created": "נוצר",
|
"source.file.date.created": "נוצר",
|
||||||
"source.file.date.updated": "עדכון אחרון",
|
"source.file.date.updated": "עדכון אחרון",
|
||||||
"source.link": "לעבור אל המאגר",
|
|
||||||
"tabs": "לשוניות",
|
"tabs": "לשוניות",
|
||||||
"toc": "תוכן העניינים",
|
"toc": "תוכן העניינים",
|
||||||
"top": "חזרה למעלה"
|
"top": "חזרה למעלה"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Hindi -->
|
<!-- Translations: Hindi -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hi",
|
"language": "hi",
|
||||||
|
"action.edit": "इस पृष्ठ को संपादित करें",
|
||||||
|
"action.skip": "विषय पर बढ़ें",
|
||||||
"clipboard.copy": "क्लिपबोर्ड पर कॉपी करें",
|
"clipboard.copy": "क्लिपबोर्ड पर कॉपी करें",
|
||||||
"clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया",
|
"clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया",
|
||||||
"edit.link": "इस पृष्ठ को संपादित करें",
|
|
||||||
"footer.next": "आगामी",
|
"footer.next": "आगामी",
|
||||||
"footer.previous": "पिछला",
|
"footer.previous": "पिछला",
|
||||||
"meta.comments": "टिप्पणियाँ",
|
"meta.comments": "टिप्पणियाँ",
|
||||||
@@ -36,9 +37,8 @@
|
|||||||
"search.result.none": "कोई मिलान डॉक्यूमेंट नहीं",
|
"search.result.none": "कोई मिलान डॉक्यूमेंट नहीं",
|
||||||
"search.result.one": "1 मिलान डॉक्यूमेंट",
|
"search.result.one": "1 मिलान डॉक्यूमेंट",
|
||||||
"search.result.other": "# मिलान डाक्यूमेंट्स",
|
"search.result.other": "# मिलान डाक्यूमेंट्स",
|
||||||
"skip.link": "विषय पर बढ़ें",
|
"source": "रिपॉजिटरी पर जाएं",
|
||||||
"source.file.date.created": "बनाया था",
|
"source.file.date.created": "बनाया था",
|
||||||
"source.file.date.updated": "आखिरी अपडेट",
|
"source.file.date.updated": "आखिरी अपडेट",
|
||||||
"source.link": "रिपॉजिटरी पर जाएं",
|
|
||||||
"toc": "विषय - सूची"
|
"toc": "विषय - सूची"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,13 +23,14 @@
|
|||||||
<!-- Translations: Croatian -->
|
<!-- Translations: Croatian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hr",
|
"language": "hr",
|
||||||
|
"action.edit": "Uredi stranicu",
|
||||||
|
"action.skip": "Preskočite na sadržaj",
|
||||||
"announce.dismiss": "Ne prikazuj ovo opet",
|
"announce.dismiss": "Ne prikazuj ovo opet",
|
||||||
"clipboard.copy": "Kopirajte u međuspremnik",
|
"clipboard.copy": "Kopirajte u međuspremnik",
|
||||||
"clipboard.copied": "Kopirano u međuspremnik",
|
"clipboard.copied": "Kopirano u međuspremnik",
|
||||||
"consent.accept": "Prihvati",
|
"consent.accept": "Prihvati",
|
||||||
"consent.manage": "Upravljaj postavkama",
|
"consent.manage": "Upravljaj postavkama",
|
||||||
"consent.reject": "Odbij",
|
"consent.reject": "Odbij",
|
||||||
"edit.link": "Uredi stranicu",
|
|
||||||
"footer": "Podnožje",
|
"footer": "Podnožje",
|
||||||
"footer.next": "Sljedeće",
|
"footer.next": "Sljedeće",
|
||||||
"footer.previous": "Prethodno",
|
"footer.previous": "Prethodno",
|
||||||
@@ -51,10 +52,9 @@
|
|||||||
"search.result.term.missing": "Nedostaje",
|
"search.result.term.missing": "Nedostaje",
|
||||||
"select.language": "Odabir jezika",
|
"select.language": "Odabir jezika",
|
||||||
"select.version": "Odabir verzije",
|
"select.version": "Odabir verzije",
|
||||||
"skip.link": "Preskočite na sadržaj",
|
"source": "Idite u repozitorij",
|
||||||
"source.file.date.created": "Stvoreno",
|
"source.file.date.created": "Stvoreno",
|
||||||
"source.file.date.updated": "Zadnje ažuriranje",
|
"source.file.date.updated": "Zadnje ažuriranje",
|
||||||
"source.link": "Idite u repozitorij",
|
|
||||||
"tabs": "Kartice",
|
"tabs": "Kartice",
|
||||||
"toc": "Sadržaj",
|
"toc": "Sadržaj",
|
||||||
"top": "Vratite se na vrh"
|
"top": "Vratite se na vrh"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Hungarian -->
|
<!-- Translations: Hungarian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hu",
|
"language": "hu",
|
||||||
|
"action.edit": "Oldal szerkesztése",
|
||||||
|
"action.skip": "Kihagyás",
|
||||||
"clipboard.copy": "Másolás vágólapra",
|
"clipboard.copy": "Másolás vágólapra",
|
||||||
"clipboard.copied": "Vágólapra másolva",
|
"clipboard.copied": "Vágólapra másolva",
|
||||||
"edit.link": "Oldal szerkesztése",
|
|
||||||
"footer": "Élőláb",
|
"footer": "Élőláb",
|
||||||
"footer.next": "Következő",
|
"footer.next": "Következő",
|
||||||
"footer.previous": "Előző",
|
"footer.previous": "Előző",
|
||||||
@@ -44,10 +45,9 @@
|
|||||||
"search.result.more.one": "1 további találat az oldalon",
|
"search.result.more.one": "1 további találat az oldalon",
|
||||||
"search.result.more.other": "# további találat az oldalon",
|
"search.result.more.other": "# további találat az oldalon",
|
||||||
"search.result.term.missing": "Üres",
|
"search.result.term.missing": "Üres",
|
||||||
"skip.link": "Kihagyás",
|
"source": "Főoldalra ugrás",
|
||||||
"source.file.date.created": "Létrehozva",
|
"source.file.date.created": "Létrehozva",
|
||||||
"source.file.date.updated": "Utolsó frissítés",
|
"source.file.date.updated": "Utolsó frissítés",
|
||||||
"source.link": "Főoldalra ugrás",
|
|
||||||
"tabs": "Lapok",
|
"tabs": "Lapok",
|
||||||
"toc": "Tartalomjegyzék"
|
"toc": "Tartalomjegyzék"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Armenian -->
|
<!-- Translations: Armenian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "hy",
|
"language": "hy",
|
||||||
|
"action.edit": "Խմբագրել այս էջը",
|
||||||
|
"action.skip": "Անցնել պարունակությանը",
|
||||||
"clipboard.copy": "Պատճենել",
|
"clipboard.copy": "Պատճենել",
|
||||||
"clipboard.copied": "Պատճենված է",
|
"clipboard.copied": "Պատճենված է",
|
||||||
"edit.link": "Խմբագրել այս էջը",
|
|
||||||
"footer": "Վերջնագիր",
|
"footer": "Վերջնագիր",
|
||||||
"footer.next": "Հաջորդը",
|
"footer.next": "Հաջորդը",
|
||||||
"footer.previous": "Նախորդը",
|
"footer.previous": "Նախորդը",
|
||||||
@@ -48,10 +49,9 @@
|
|||||||
"search.result.term.missing": "Բացակայում է",
|
"search.result.term.missing": "Բացակայում է",
|
||||||
"select.language": "Ընտրել լեզուն",
|
"select.language": "Ընտրել լեզուն",
|
||||||
"select.version": "Ընտրել տարբերակը",
|
"select.version": "Ընտրել տարբերակը",
|
||||||
"skip.link": "Անցնել պարունակությանը",
|
"source": "Դեպի պահոց",
|
||||||
"source.file.date.created": "Ստեղծված է",
|
"source.file.date.created": "Ստեղծված է",
|
||||||
"source.file.date.updated": "Վերջին թարմացումը",
|
"source.file.date.updated": "Վերջին թարմացումը",
|
||||||
"source.link": "Դեպի պահոց",
|
|
||||||
"tabs": "Ներդիրներ",
|
"tabs": "Ներդիրներ",
|
||||||
"toc": "Բովանդակություն",
|
"toc": "Բովանդակություն",
|
||||||
"top": "Վերադառնալ սկիզբ"
|
"top": "Վերադառնալ սկիզբ"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Indonesian -->
|
<!-- Translations: Indonesian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "id",
|
"language": "id",
|
||||||
|
"action.edit": "Ubah halaman ini",
|
||||||
|
"action.skip": "Lewati ke isi",
|
||||||
"clipboard.copy": "Salin ke memori",
|
"clipboard.copy": "Salin ke memori",
|
||||||
"clipboard.copied": "Tersalin ke memori",
|
"clipboard.copied": "Tersalin ke memori",
|
||||||
"edit.link": "Ubah halaman ini",
|
|
||||||
"footer.next": "Selanjutnya",
|
"footer.next": "Selanjutnya",
|
||||||
"footer.previous": "Sebelumnya",
|
"footer.previous": "Sebelumnya",
|
||||||
"meta.comments": "Komentar",
|
"meta.comments": "Komentar",
|
||||||
@@ -36,8 +37,7 @@
|
|||||||
"search.result.none": "Tidak ada dokumen yang sesuai",
|
"search.result.none": "Tidak ada dokumen yang sesuai",
|
||||||
"search.result.one": "1 dokumen ditemukan",
|
"search.result.one": "1 dokumen ditemukan",
|
||||||
"search.result.other": "# dokumen ditemukan",
|
"search.result.other": "# dokumen ditemukan",
|
||||||
"skip.link": "Lewati ke isi",
|
"source": "Menuju repositori",
|
||||||
"source.file.date.created": "Dibuat",
|
"source.file.date.created": "Dibuat",
|
||||||
"source.link": "Menuju repositori",
|
|
||||||
"toc": "Daftar isi"
|
"toc": "Daftar isi"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Icelandic -->
|
<!-- Translations: Icelandic -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "is",
|
"language": "is",
|
||||||
|
"action.edit": "Ritvinna þessa síðu",
|
||||||
|
"action.skip": "Hoppa yfir í efni",
|
||||||
"clipboard.copy": "Afrita í klemmuspjald",
|
"clipboard.copy": "Afrita í klemmuspjald",
|
||||||
"clipboard.copied": "Afritað í klemmuspjald",
|
"clipboard.copied": "Afritað í klemmuspjald",
|
||||||
"edit.link": "Ritvinna þessa síðu",
|
|
||||||
"footer": "Síðufótur",
|
"footer": "Síðufótur",
|
||||||
"footer.next": "Næsta",
|
"footer.next": "Næsta",
|
||||||
"footer.previous": "Fyrra",
|
"footer.previous": "Fyrra",
|
||||||
@@ -41,10 +42,9 @@
|
|||||||
"search.result.other": "# skjöl fundust",
|
"search.result.other": "# skjöl fundust",
|
||||||
"search.result.more.one": "1 til viðbótar á þessari síðu",
|
"search.result.more.one": "1 til viðbótar á þessari síðu",
|
||||||
"search.result.more.other": "# til viðbótar á þessari síðu",
|
"search.result.more.other": "# til viðbótar á þessari síðu",
|
||||||
"skip.link": "Hoppa yfir í efni",
|
"source": "Fara í gagnahirslu (e. repository)",
|
||||||
"source.file.date.created": "Búið til",
|
"source.file.date.created": "Búið til",
|
||||||
"source.file.date.updated": "Síðasta uppfærsla",
|
"source.file.date.updated": "Síðasta uppfærsla",
|
||||||
"source.link": "Fara í gagnahirslu (e. repository)",
|
|
||||||
"tabs": "Flipar",
|
"tabs": "Flipar",
|
||||||
"toc": "Efnisyfirlit"
|
"toc": "Efnisyfirlit"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Italian -->
|
<!-- Translations: Italian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "it",
|
"language": "it",
|
||||||
|
"action.edit": "Modifica",
|
||||||
|
"action.skip": "Vai al contenuto",
|
||||||
"clipboard.copy": "Copia",
|
"clipboard.copy": "Copia",
|
||||||
"clipboard.copied": "Copiato",
|
"clipboard.copied": "Copiato",
|
||||||
"edit.link": "Modifica",
|
|
||||||
"footer": "Piede",
|
"footer": "Piede",
|
||||||
"footer.next": "Prossimo",
|
"footer.next": "Prossimo",
|
||||||
"footer.previous": "Precedente",
|
"footer.previous": "Precedente",
|
||||||
@@ -48,10 +49,9 @@
|
|||||||
"search.result.term.missing": "Non presente",
|
"search.result.term.missing": "Non presente",
|
||||||
"select.language": "Seleziona la lingua",
|
"select.language": "Seleziona la lingua",
|
||||||
"select.version": "Seleziona la versione",
|
"select.version": "Seleziona la versione",
|
||||||
"skip.link": "Vai al contenuto",
|
"source": "Apri repository",
|
||||||
"source.file.date.created": "Creata",
|
"source.file.date.created": "Creata",
|
||||||
"source.file.date.updated": "Ultimo aggiornamento",
|
"source.file.date.updated": "Ultimo aggiornamento",
|
||||||
"source.link": "Apri repository",
|
|
||||||
"tabs": "Tabs",
|
"tabs": "Tabs",
|
||||||
"toc": "Indice",
|
"toc": "Indice",
|
||||||
"top": "Torna su"
|
"top": "Torna su"
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Japanese -->
|
<!-- Translations: Japanese -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ja",
|
"language": "ja",
|
||||||
|
"action.edit": "編集",
|
||||||
|
"action.skip": "コンテンツにスキップ",
|
||||||
"clipboard.copy": "クリップボードへコピー",
|
"clipboard.copy": "クリップボードへコピー",
|
||||||
"clipboard.copied": "コピーしました",
|
"clipboard.copied": "コピーしました",
|
||||||
"edit.link": "編集",
|
|
||||||
"footer": "フッター",
|
"footer": "フッター",
|
||||||
"footer.next": "次",
|
"footer.next": "次",
|
||||||
"footer.previous": "前",
|
"footer.previous": "前",
|
||||||
@@ -46,10 +47,9 @@
|
|||||||
"search.result.more.one": "このページ内にもう1件見つかりました",
|
"search.result.more.one": "このページ内にもう1件見つかりました",
|
||||||
"search.result.more.other": "このページ内にあと#件見つかりました",
|
"search.result.more.other": "このページ内にあと#件見つかりました",
|
||||||
"search.result.term.missing": "検索に含まれない",
|
"search.result.term.missing": "検索に含まれない",
|
||||||
"skip.link": "コンテンツにスキップ",
|
"source": "リポジトリへ",
|
||||||
"source.file.date.created": "作成した",
|
"source.file.date.created": "作成した",
|
||||||
"source.file.date.updated": "最終更新日",
|
"source.file.date.updated": "最終更新日",
|
||||||
"source.link": "リポジトリへ",
|
|
||||||
"tabs": "タブ",
|
"tabs": "タブ",
|
||||||
"toc": "目次"
|
"toc": "目次"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Georgian -->
|
<!-- Translations: Georgian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ka",
|
"language": "ka",
|
||||||
|
"action.edit": "გვერდის რედარქირება",
|
||||||
|
"action.skip": "კონტენტზე გადასვლა",
|
||||||
"clipboard.copy": "კოპირება",
|
"clipboard.copy": "კოპირება",
|
||||||
"clipboard.copied": "კოპირებულია",
|
"clipboard.copied": "კოპირებულია",
|
||||||
"edit.link": "გვერდის რედარქირება",
|
|
||||||
"footer.next": "შემდეგი",
|
"footer.next": "შემდეგი",
|
||||||
"footer.previous": "წინა",
|
"footer.previous": "წინა",
|
||||||
"meta.comments": "კომენტარები",
|
"meta.comments": "კომენტარები",
|
||||||
@@ -40,10 +41,9 @@
|
|||||||
"search.result.other": "მოიძებნა # დოკუმენტი",
|
"search.result.other": "მოიძებნა # დოკუმენტი",
|
||||||
"search.result.more.one": "კიდევ 1 ამ გვერდზე",
|
"search.result.more.one": "კიდევ 1 ამ გვერდზე",
|
||||||
"search.result.more.other": "კიდევ # ამ გვერდზე",
|
"search.result.more.other": "კიდევ # ამ გვერდზე",
|
||||||
"skip.link": "კონტენტზე გადასვლა",
|
"source": "საცავში გადასვლა",
|
||||||
"source.file.date.created": "შეიქმნა",
|
"source.file.date.created": "შეიქმნა",
|
||||||
"source.file.date.updated": "ბოლო განახლება",
|
"source.file.date.updated": "ბოლო განახლება",
|
||||||
"source.link": "საცავში გადასვლა",
|
|
||||||
"tabs": "ტაბები",
|
"tabs": "ტაბები",
|
||||||
"toc": "სარჩევი"
|
"toc": "სარჩევი"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Korean -->
|
<!-- Translations: Korean -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "ko",
|
"language": "ko",
|
||||||
|
"action.edit": "이 페이지를 편집",
|
||||||
|
"action.skip": "콘텐츠로 이동",
|
||||||
"clipboard.copy": "클립보드로 복사",
|
"clipboard.copy": "클립보드로 복사",
|
||||||
"clipboard.copied": "클립보드에 복사됨",
|
"clipboard.copied": "클립보드에 복사됨",
|
||||||
"edit.link": "이 페이지를 편집",
|
|
||||||
"footer.next": "다음",
|
"footer.next": "다음",
|
||||||
"footer.previous": "이전",
|
"footer.previous": "이전",
|
||||||
"meta.comments": "댓글",
|
"meta.comments": "댓글",
|
||||||
@@ -45,10 +46,9 @@
|
|||||||
"search.result.term.missing": "포함되지 않은 검색어",
|
"search.result.term.missing": "포함되지 않은 검색어",
|
||||||
"select.language": "언어설정",
|
"select.language": "언어설정",
|
||||||
"select.version": "버전 선택",
|
"select.version": "버전 선택",
|
||||||
"skip.link": "콘텐츠로 이동",
|
"source": "저장소로 이동",
|
||||||
"source.file.date.created": "작성일",
|
"source.file.date.created": "작성일",
|
||||||
"source.file.date.updated": "마지막 업데이트",
|
"source.file.date.updated": "마지막 업데이트",
|
||||||
"source.link": "저장소로 이동",
|
|
||||||
"toc": "목차",
|
"toc": "목차",
|
||||||
"top": "맨위로"
|
"top": "맨위로"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|||||||
@@ -23,9 +23,10 @@
|
|||||||
<!-- Translations: Lithuanian -->
|
<!-- Translations: Lithuanian -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "lt",
|
"language": "lt",
|
||||||
|
"action.edit": "Redaguoti šį puslapį",
|
||||||
|
"action.skip": "Pereiti prie turinio",
|
||||||
"clipboard.copy": "Kopijuoti į iškarpinę",
|
"clipboard.copy": "Kopijuoti į iškarpinę",
|
||||||
"clipboard.copied": "Nukopijuota į iškarpinę",
|
"clipboard.copied": "Nukopijuota į iškarpinę",
|
||||||
"edit.link": "Redaguoti šį puslapį",
|
|
||||||
"footer": "Poraštė",
|
"footer": "Poraštė",
|
||||||
"footer.next": "Sekantis",
|
"footer.next": "Sekantis",
|
||||||
"footer.previous": "Ankstesnis",
|
"footer.previous": "Ankstesnis",
|
||||||
@@ -48,10 +49,9 @@
|
|||||||
"search.result.term.missing": "Nerasta",
|
"search.result.term.missing": "Nerasta",
|
||||||
"select.language": "Pasirinkti kalbą",
|
"select.language": "Pasirinkti kalbą",
|
||||||
"select.version": "Pasrinkti versiją",
|
"select.version": "Pasrinkti versiją",
|
||||||
"skip.link": "Pereiti prie turinio",
|
"source": "Eiti į saugyklą",
|
||||||
"source.file.date.created": "Sukurta",
|
"source.file.date.created": "Sukurta",
|
||||||
"source.file.date.updated": "Paskutinis atnaujinimas",
|
"source.file.date.updated": "Paskutinis atnaujinimas",
|
||||||
"source.link": "Eiti į saugyklą",
|
|
||||||
"tabs": "Skirtukai",
|
"tabs": "Skirtukai",
|
||||||
"toc": "Turinys",
|
"toc": "Turinys",
|
||||||
"top": "Grįžti į viršų"
|
"top": "Grįžti į viršų"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user