aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/main.ts
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-04-05 23:46:21 +0200
committerGitHub <noreply@github.com>2023-04-05 23:46:21 +0200
commita4cdfb68e09ec3fe096528d52d9a099a2b44de02 (patch)
tree1cc478f71151e8f21d30a2de245b86769026d2b9 /src-vue/src/main.ts
parent3312741110b6536e8c01b75edd4bd8d640d40b8f (diff)
downloadFlightCore-a4cdfb68e09ec3fe096528d52d9a099a2b44de02.tar.gz
FlightCore-a4cdfb68e09ec3fe096528d52d9a099a2b44de02.zip
feat: Initial German translation (#249)
* feat: Initial German translation * fix: Typo * refactor: Switch single quotes to double quotes In preparation for converting to JSON * refactor: Switch translation file to JSON * fix: Better translation for "pagination"
Diffstat (limited to 'src-vue/src/main.ts')
-rw-r--r--src-vue/src/main.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-vue/src/main.ts b/src-vue/src/main.ts
index 561efbba..94a0196b 100644
--- a/src-vue/src/main.ts
+++ b/src-vue/src/main.ts
@@ -13,6 +13,7 @@ import RepairView from "./views/RepairView.vue";
import {createRouter, createWebHashHistory} from "vue-router";
import en from "./i18n/lang/en.json";
import fr from "./i18n/lang/fr.json";
+import de from "./i18n/lang/de.json";
const app = createApp(App);
@@ -22,7 +23,7 @@ export const i18n = createI18n({
locale: 'en',
fallbackLocale: 'en',
messages: {
- en, fr
+ en, fr, de
}
});
app.use(i18n);