summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/locales/en-US.json4
-rw-r--r--src/views/Login/Login.vue4
2 files changed, 2 insertions, 6 deletions
diff --git a/src/locales/en-US.json b/src/locales/en-US.json
index 0de52987..8a77b931 100644
--- a/src/locales/en-US.json
+++ b/src/locales/en-US.json
@@ -135,10 +135,6 @@
"alert": {
"title": "Invalid username or password",
"action": "Try again after verifying your username and password are correct."
- },
- "form": {
- "english": "English",
- "spanish": "Spanish"
}
},
"pageOverview": {
diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue
index fd6e711c..bed58dc6 100644
--- a/src/views/Login/Login.vue
+++ b/src/views/Login/Login.vue
@@ -97,11 +97,11 @@ export default {
languages: [
{
value: 'en-US',
- text: this.$t('pageLogin.form.english')
+ text: 'English'
},
{
value: 'es',
- text: this.$t('pageLogin.form.spanish')
+ text: 'EspaƱol'
}
]
};