diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-04-05 23:46:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 23:46:21 +0200 |
commit | a4cdfb68e09ec3fe096528d52d9a099a2b44de02 (patch) | |
tree | 1cc478f71151e8f21d30a2de245b86769026d2b9 /src-vue/src/components | |
parent | 3312741110b6536e8c01b75edd4bd8d640d40b8f (diff) | |
download | FlightCore-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/components')
-rw-r--r-- | src-vue/src/components/LanguageSelector.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src-vue/src/components/LanguageSelector.vue b/src-vue/src/components/LanguageSelector.vue index c09f6c05..5b1e7ebd 100644 --- a/src-vue/src/components/LanguageSelector.vue +++ b/src-vue/src/components/LanguageSelector.vue @@ -29,7 +29,11 @@ export default defineComponent({ { value: 'fr', label: 'Français' - } + }, + { + value: 'de', + label: 'Deutsch' + }, ] }), mounted: async function() { |