summaryrefslogtreecommitdiff
path: root/src/locales/en.json
diff options
context:
space:
mode:
authorDixsie Wolmers <dixsie@ibm.com>2020-01-31 05:58:37 +0300
committerGunnar Mills <gmills@us.ibm.com>2020-02-13 17:55:41 +0300
commitcbcd2136cd80395eff898738747c52c4b301fd56 (patch)
tree2d8af955bb96a5a0e8bec1cbc194debe2a777b0e /src/locales/en.json
parentdb6fd25ff19210261f9b3ae25c6bcd383b5b836f (diff)
downloadwebui-vue-cbcd2136cd80395eff898738747c52c4b301fd56.tar.xz
Set up initial language translation
- Add i18n internationalization plugin - Create json files for group 0 English and Spanish - Uses $t method to set up initial translations on login page - Meta title is translated using i18n in App.vue and PageTitle.Vue Signed-off-by: Dixsie Wolmers <dixsie@ibm.com> Change-Id: Ifce9f5e54d96f8b2a13239ad6178892f99fc4537
Diffstat (limited to 'src/locales/en.json')
-rw-r--r--src/locales/en.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/locales/en.json b/src/locales/en.json
new file mode 100644
index 00000000..8464ff43
--- /dev/null
+++ b/src/locales/en.json
@@ -0,0 +1,38 @@
+{
+ "global": {
+ "formField": {
+ "validator": "Field required"
+ }
+ },
+ "login": {
+ "language": {
+ "label": "Language"
+ },
+ "languages": {
+ "select": "Select an option",
+ "english": "English",
+ "spanish": "Spanish"
+ },
+ "logIn": {
+ "label": "Log in"
+ },
+ "errorMsg": {
+ "title": "Invalid username or password.",
+ "action": "Please try again."
+ },
+ "password": {
+ "label": "Password",
+ "validator": "@:global.formField.validator"
+ },
+ "username": {
+ "label": "Username",
+ "validator": "@:global.formField.validator"
+ }
+ },
+ "pageTitle": {
+ "localUserMgmt": "Local user management",
+ "login": "Login",
+ "overview": "Overview",
+ "unauthorized": "Unauthorized"
+ }
+} \ No newline at end of file