From 65d2961cb05a6560d06235e73f59b407067202ae Mon Sep 17 00:00:00 2001 From: Kitteh Date: Mon, 19 Apr 2021 11:23:28 +0100 Subject: [PATCH] Get started on adding a language selector. --- src/translations/de.js | 3 +++ src/translations/en.js | 3 +++ src/translations/nl.js | 3 +++ src/translations/ru.js | 3 +++ 4 files changed, 12 insertions(+) diff --git a/src/translations/de.js b/src/translations/de.js index 793dacf..cb14450 100644 --- a/src/translations/de.js +++ b/src/translations/de.js @@ -1,4 +1,7 @@ module.exports = { + // The localised name for the language + "language_name": "Deutsche", + // These are the buttons on the top bar. "home_btn": "Startseite", "back_btn": "Zurück", diff --git a/src/translations/en.js b/src/translations/en.js index 56ac1ae..f23645d 100644 --- a/src/translations/en.js +++ b/src/translations/en.js @@ -1,4 +1,7 @@ module.exports = { + // The localised name for the language + "language_name": "English", + // These are the buttons on the top bar. "home_btn": "Home", "back_btn": "Back", diff --git a/src/translations/nl.js b/src/translations/nl.js index 5683be8..bf6b33f 100644 --- a/src/translations/nl.js +++ b/src/translations/nl.js @@ -1,4 +1,7 @@ module.exports = { + // The localised name for the language + "language_name": "Nederlands", + // These are the buttons on the top bar. "home_btn": "Homepagina", "back_btn": "Terug", diff --git a/src/translations/ru.js b/src/translations/ru.js index 4e81b63..8e4e1e0 100644 --- a/src/translations/ru.js +++ b/src/translations/ru.js @@ -1,4 +1,7 @@ module.exports = { + // The localised name for the language + "language_name": "русский", + // These are the buttons on the top bar. "home_btn": "Главная страница", "back_btn": "Назад",