Make log in/sign up and log out messages available for i18n

This commit is contained in:
root
2022-02-25 09:38:12 +05:30
parent d4b5b5d4bd
commit 020effbb3c
2 changed files with 5 additions and 4 deletions
+3 -3
View File
@@ -10,7 +10,7 @@
v-bind="attrs"
v-on="on"
>
Log In/Sign Up
{{ $t('actions.logInSignUp') }}
</v-list-item>
<v-btn
v-else
@@ -18,7 +18,7 @@
v-bind="attrs"
v-on="on"
>
Log In/Sign Up
{{ $t('actions.logInSignUp') }}
</v-btn>
</template>
<v-card>
@@ -36,7 +36,7 @@
v-else-if="listMode === true"
@click="logOut"
>
Log Out
{{ $t('actions.logOut') }}
</v-list-item>
<v-btn text @click="logOut" v-else>Log Out</v-btn>
</template>
+2 -1
View File
@@ -2,7 +2,6 @@
"titles": {
"homepage": "Homepage",
"trending": "Trending",
"login": "Login",
"register": "Register",
"feed": "Feed",
"preferences": "Preferences",
@@ -21,6 +20,8 @@
"watchedAgo": "Watched {t} till {p}"
},
"actions": {
"logInSignUp": "Log In/Sign Up",
"logOut": "Log Out",
"subscribe": "Subscribe",
"unsubscribe": "Unsubscribe",
"view_subscriptions": "View Subscriptions",