Update Language translation menu

Based on community feedback, language options should be displayed
in native language, e.g Spanish -> EspaƱol

Signed-off-by: Dixsie Wolmers <dixsie@ibm.com>
Change-Id: Ic066ade3262db7594de851f7219b653ea87af4c3
diff --git a/src/locales/en-US.json b/src/locales/en-US.json
index 0de5298..8a77b93 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 fd6e711..bed58dc 100644
--- a/src/views/Login/Login.vue
+++ b/src/views/Login/Login.vue
@@ -97,11 +97,11 @@
       languages: [
         {
           value: 'en-US',
-          text: this.$t('pageLogin.form.english')
+          text: 'English'
         },
         {
           value: 'es',
-          text: this.$t('pageLogin.form.spanish')
+          text: 'Español'
         }
       ]
     };