mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fix: Norwegian translations
This commit is contained in:
parent
13655d68f5
commit
66ead1b54e
65
src/partials/languages/nb.html
Normal file
65
src/partials/languages/nb.html
Normal file
@ -0,0 +1,65 @@
|
||||
<!--
|
||||
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.
|
||||
-->
|
||||
|
||||
<!-- Translations: Norwegian Bokmål -->
|
||||
{% macro t(key) %}{{ {
|
||||
"language": "nb",
|
||||
"direction": "ltr",
|
||||
"announce.dismiss": "Ikke vis dette igjen",
|
||||
"clipboard.copy": "Kopier til utklippstavlen",
|
||||
"clipboard.copied": "Kopiert til utklippstavlen",
|
||||
"consent.accept": "Akseptert",
|
||||
"consent.manage": "Innstillinger",
|
||||
"consent.reject": "Reject",
|
||||
"edit.link.title": "Rediger denne siden",
|
||||
"footer.previous": "Forrige",
|
||||
"footer.next": "Neste",
|
||||
"footer.title": "Footer",
|
||||
"header.title": "Header",
|
||||
"meta.comments": "Kommentarer",
|
||||
"meta.source": "Kilde",
|
||||
"nav.title": "Navigasjon",
|
||||
"search.config.lang": "nb",
|
||||
"search.config.pipeline": "trimmer, stopWordFilter",
|
||||
"search.config.separator": "[\\s\\-]+",
|
||||
"search.placeholder": "Søk",
|
||||
"search.share": "Del",
|
||||
"search.reset": "Nullstill",
|
||||
"search.result.initializer": "Starter søk",
|
||||
"search.result.placeholder": "Skriv søkeord",
|
||||
"search.result.none": "Ingen treff",
|
||||
"search.result.one": "1 treff",
|
||||
"search.result.other": "# treff",
|
||||
"search.result.more.one": "1 til på denne siden",
|
||||
"search.result.more.other": "# flere på denne siden",
|
||||
"search.result.term.missing": "Mangler",
|
||||
"search.title": "Søk",
|
||||
"select.language.title": "Velg språk",
|
||||
"select.version.title": "Velg versjon",
|
||||
"skip.link.title": "Gå til innhold",
|
||||
"source.link.title": "Gå til kilde",
|
||||
"source.file.date.updated": "Sist oppdatert",
|
||||
"source.file.date.created": "Opprettet",
|
||||
"tabs.title": "Faner",
|
||||
"toc.title": "Innholdsliste",
|
||||
"top.title": "Tilbake til toppen"
|
||||
}[key] }}{% endmacro %}
|
@ -23,22 +23,43 @@
|
||||
<!-- Translations: Norwegian Nynorsk -->
|
||||
{% macro t(key) %}{{ {
|
||||
"language": "nn",
|
||||
"direction": "ltr",
|
||||
"announce.dismiss": "Ikkje vis dette att",
|
||||
"clipboard.copy": "Kopier til utklippstavla",
|
||||
"clipboard.copied": "Kopiert til utklippstavla",
|
||||
"consent.accept": "Akseptert",
|
||||
"consent.manage": "Innstillinger",
|
||||
"consent.reject": "Reject",
|
||||
"edit.link.title": "Rediger denne sida",
|
||||
"footer.previous": "Førre",
|
||||
"footer.next": "Neste",
|
||||
"footer.title": "Footer",
|
||||
"header.title": "Header",
|
||||
"meta.comments": "Kommentarar",
|
||||
"meta.source": "Kjelde",
|
||||
"search.config.lang": "no",
|
||||
"nav.title": "Navigasjon",
|
||||
"search.config.lang": "nn",
|
||||
"search.config.pipeline": "trimmer, stopWordFilter",
|
||||
"search.config.separator": "[\\s\\-]+",
|
||||
"search.placeholder": "Søk",
|
||||
"search.share": "Del",
|
||||
"search.reset": "Nullstill",
|
||||
"search.result.initializer": "Startar søk",
|
||||
"search.result.placeholder": "Skriv søkeord",
|
||||
"search.result.none": "Ingen treff",
|
||||
"search.result.one": "1 treff",
|
||||
"search.result.other": "# treff",
|
||||
"search.result.more.one": "1 til på denne sida",
|
||||
"search.result.more.other": "# fleire på denne sida",
|
||||
"search.result.term.missing": "Manglar",
|
||||
"search.title": "Søk",
|
||||
"select.language.title": "Vel språk",
|
||||
"select.version.title": "Vel versjon",
|
||||
"skip.link.title": "Gå til innhald",
|
||||
"source.link.title": "Gå til kjelde",
|
||||
"source.file.date.updated": "Siste oppdatering",
|
||||
"source.file.date.created": "Laget",
|
||||
"toc.title": "Innhaldsliste"
|
||||
"source.file.date.updated": "Sist oppdatert",
|
||||
"source.file.date.created": "Oppretta",
|
||||
"tabs.title": "Faner",
|
||||
"toc.title": "Innhaldsliste",
|
||||
"top.title": "Tilbake til toppen"
|
||||
}[key] }}{% endmacro %}
|
||||
|
@ -23,22 +23,43 @@
|
||||
<!-- Translations: Norwegian Bokmål -->
|
||||
{% macro t(key) %}{{ {
|
||||
"language": "no",
|
||||
"direction": "ltr",
|
||||
"announce.dismiss": "Ikke vis dette igjen",
|
||||
"clipboard.copy": "Kopier til utklippstavlen",
|
||||
"clipboard.copied": "Kopiert til utklippstavlen",
|
||||
"consent.accept": "Akseptert",
|
||||
"consent.manage": "Innstillinger",
|
||||
"consent.reject": "Reject",
|
||||
"edit.link.title": "Rediger denne siden",
|
||||
"footer.previous": "Forrige",
|
||||
"footer.next": "Neste",
|
||||
"footer.title": "Footer",
|
||||
"header.title": "Header",
|
||||
"meta.comments": "Kommentarer",
|
||||
"meta.source": "Kilde",
|
||||
"nav.title": "Navigasjon",
|
||||
"search.config.lang": "no",
|
||||
"search.config.pipeline": "trimmer, stopWordFilter",
|
||||
"search.config.separator": "[\\s\\-]+",
|
||||
"search.placeholder": "Søk",
|
||||
"search.share": "Del",
|
||||
"search.reset": "Nullstill",
|
||||
"search.result.initializer": "Starter søk",
|
||||
"search.result.placeholder": "Skriv søkeord",
|
||||
"search.result.none": "Ingen treff",
|
||||
"search.result.one": "1 treff",
|
||||
"search.result.other": "# treff",
|
||||
"search.result.more.one": "1 til på denne siden",
|
||||
"search.result.more.other": "# flere på denne siden",
|
||||
"search.result.term.missing": "Mangler",
|
||||
"search.title": "Søk",
|
||||
"select.language.title": "Velg språk",
|
||||
"select.version.title": "Velg versjon",
|
||||
"skip.link.title": "Gå til innhold",
|
||||
"source.link.title": "Gå til kilde",
|
||||
"source.file.date.updated": "Siste oppdatering",
|
||||
"source.file.date.created": "Created",
|
||||
"toc.title": "Innholdsfortegnelse"
|
||||
"source.file.date.updated": "Sist oppdatert",
|
||||
"source.file.date.created": "Opprettet",
|
||||
"tabs.title": "Faner",
|
||||
"toc.title": "Innholdsliste",
|
||||
"top.title": "Tilbake til toppen"
|
||||
}[key] }}{% endmacro %}
|
||||
|
Loading…
Reference in New Issue
Block a user