Added Dutch translation
This commit is contained in:
parent
5c89c0c21f
commit
a9fea9e661
|
@ -68,6 +68,7 @@ import i18next from 'i18next';
|
||||||
import translation_en from './translations/en.js'
|
import translation_en from './translations/en.js'
|
||||||
import translation_de from './translations/de.js'
|
import translation_de from './translations/de.js'
|
||||||
import translation_ru from './translations/ru.js'
|
import translation_ru from './translations/ru.js'
|
||||||
|
import translation_nl from './translations/nl.js'
|
||||||
import formatDistance from 'date-fns/formatDistance';
|
import formatDistance from 'date-fns/formatDistance';
|
||||||
|
|
||||||
|
|
||||||
|
@ -177,6 +178,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||||
en: { translation: translation_en },
|
en: { translation: translation_en },
|
||||||
de: { translation: translation_de },
|
de: { translation: translation_de },
|
||||||
ru: { translation: translation_ru },
|
ru: { translation: translation_ru },
|
||||||
|
nl: { translation: translation_nl },
|
||||||
},
|
},
|
||||||
interpolation: {
|
interpolation: {
|
||||||
format: function (value, format, _) {
|
format: function (value, format, _) {
|
||||||
|
|
20
src/translations/nl.js
Normal file
20
src/translations/nl.js
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
module.exports = {
|
||||||
|
// These are the buttons on the top bar.
|
||||||
|
"home_btn": "Homepagina",
|
||||||
|
"back_btn": "Terug",
|
||||||
|
"refresh_btn": "Ververs",
|
||||||
|
"me_btn": "Profiel/Instellingen",
|
||||||
|
// These are the page titles
|
||||||
|
"me_page_title": "Profiel/Instellingen",
|
||||||
|
"home_page_title": "Homepagina",
|
||||||
|
|
||||||
|
// These are all o the other translations
|
||||||
|
"log_out_btn": "Log Uit",
|
||||||
|
"copy_token_btn": "Kopieer Token",
|
||||||
|
"renew_lease_btn": "Vernieuw Token-lease",
|
||||||
|
|
||||||
|
"vaulturl_text": "Vault URL: {{text}}",
|
||||||
|
"password_generator_btn": "Wachtwoordgenerator",
|
||||||
|
"your_token_expires_in": "Uw token vervalt in {{date, until_date}}"
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue