From bba53a680b84aa8a64818dbc9ffb0b50e73a8934 Mon Sep 17 00:00:00 2001
From: ian
Date: Mon, 12 Feb 2024 21:48:41 +0000
Subject: [PATCH] more i18n
---
src/components/App.vue | 7 ++++---
src/i18n/en-GB.js | 2 ++
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/components/App.vue b/src/components/App.vue
index 4d2697f5..1079aeba 100644
--- a/src/components/App.vue
+++ b/src/components/App.vue
@@ -24,10 +24,10 @@
permanent account, please go
here.
-
+
-
+
@@ -86,6 +86,7 @@ const ServerMessages = require("./ServerMessages.vue");
const routerMixins = require("../mixins/router/index.js");
const launcherMixin = require("../mixins/launcher/index.js");
const sandboxAppMixins = require("../mixins/sandbox/index.js");
+const i18n = require("../i18n/index.js");
module.exports = {
components: {
@@ -150,7 +151,7 @@ module.exports = {
}
},
- mixins: [routerMixins, sandboxAppMixins, launcherMixin],
+ mixins: [routerMixins, sandboxAppMixins, launcherMixin, i18n],
watch: {
network(newNetwork) {
diff --git a/src/i18n/en-GB.js b/src/i18n/en-GB.js
index b8ca8735..8922d291 100644
--- a/src/i18n/en-GB.js
+++ b/src/i18n/en-GB.js
@@ -1,4 +1,6 @@
module.exports = {
+ "APP.LOGIN":"Login",
+ "APP.SIGNUP":"Signup",
"LOGIN.BUTTON":"Sign in",
"LOGIN.USERNAME":"username",
"LOGIN.PASSWORD":"password",