1
0
Fork 0

Added Dutch translation

This commit is contained in:
Riley Apeldoorn 2021-04-18 20:59:25 +02:00 committed by purringChaos
parent 5c89c0c21f
commit a9fea9e661
2 changed files with 22 additions and 0 deletions

View file

@ -68,6 +68,7 @@ import i18next from 'i18next';
import translation_en from './translations/en.js'
import translation_de from './translations/de.js'
import translation_ru from './translations/ru.js'
import translation_nl from './translations/nl.js'
import formatDistance from 'date-fns/formatDistance';
@ -177,6 +178,7 @@ document.addEventListener('DOMContentLoaded', function () {
en: { translation: translation_en },
de: { translation: translation_de },
ru: { translation: translation_ru },
nl: { translation: translation_nl },
},
interpolation: {
format: function (value, format, _) {

20
src/translations/nl.js Normal file
View 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}}"
}