Skip to content

Commit

Permalink
Merge pull request #222 from multiflexi/CZ
Browse files Browse the repository at this point in the history
Add Czech translation
  • Loading branch information
Progress1 authored Mar 12, 2024
2 parents ea4a932 + 91b23a7 commit a609e16
Show file tree
Hide file tree
Showing 9 changed files with 1,116 additions and 46 deletions.
3 changes: 3 additions & 0 deletions docker/.env
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ TARANIS_NG_TAG=v23.12.1
# Timezone for all containers
TZ=Europe/Bratislava

# Force language
VUE_APP_TARANIS_NG_LOCALE=""

# Default passwords. CHANGE THESE FOR PRODUCTION!
POSTGRES_PASSWORD=supersecret
POSTGRES_KEYCLOAK_PASSWORD=supersecret
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ services:
VUE_APP_TARANIS_NG_URL: "${TARANIS_NG_HTTPS_URI}"
VUE_APP_TARANIS_NG_CORE_API: "${TARANIS_NG_HTTPS_URI}/api/v1"
VUE_APP_TARANIS_NG_CORE_SSE: "${TARANIS_NG_HTTPS_URI}/sse"
VUE_APP_TARANIS_NG_LOCALE: en
VUE_APP_TARANIS_NG_LOCALE: "${VUE_APP_TARANIS_NG_LOCALE}"
TZ: "${TZ}"
labels:
traefik.enable: "true"
Expand Down
2 changes: 1 addition & 1 deletion src/gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"vue-cookies": "^1.7.4",
"vue-csv-import": "^3.3.10",
"vue-cvss": "^1.1.2",
"vue-i18n": "^8.26.7",
"vue-i18n": "^8.28.2",
"vue-keypress": "^1.4.0",
"vue-quick-chat": "^1.2.8",
"vue-quill-editor": "^3.0.6",
Expand Down
3 changes: 2 additions & 1 deletion src/gui/src/components/UserSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
selected_word_lists: [],
languages: [
{ id: 'en', value: 'English' },
{ id: 'cs', value: 'Czech' },
{ id: 'sk', value: 'Slovak' },
],
}),
Expand Down Expand Up @@ -240,4 +241,4 @@
}
}
}
</script>
</script>
Loading

0 comments on commit a609e16

Please sign in to comment.