- {{ tt('Third-Party Logins') }}
+ {{ tt('Third-Party Login') }}
@@ -97,7 +97,7 @@
+ v-for="thirdPartyLogin in thirdPartyLoginList">
|
{{ thirdPartyLogin.displayName }}
@@ -337,18 +337,18 @@ const oauth2ClientSessionId = ref(generateRandomUUID());
const oauth2LinkUrl = computed(() => rootStore.generateOAuth2LinkUrl('desktop', oauth2ClientSessionId.value));
-const thirdPartyLogins = computed(() => {
- const logins: DesktopPageLinkedThirdPartyLogin[] = [];
+const thirdPartyLoginList = computed(() => {
+ const ret: DesktopPageLinkedThirdPartyLogin[] = [];
if (!externalAuths.value) {
- return logins;
+ return ret;
}
for (const externalAuth of externalAuths.value) {
- logins.push(new DesktopPageLinkedThirdPartyLogin(externalAuth));
+ ret.push(new DesktopPageLinkedThirdPartyLogin(externalAuth));
}
- return logins;
+ return ret;
});
const sessions = computed(() => {
@@ -432,9 +432,9 @@ function reloadExternalAuth(silent?: boolean): void {
userExternalAuthStore.getExternalAuths().then(response => {
if (!silent) {
if (isEquals(externalAuths.value, response)) {
- snackbar.value?.showMessage('Third-party logins list is up to date');
+ snackbar.value?.showMessage('Third-party login list is up to date');
} else {
- snackbar.value?.showMessage('Third-party logins list has been updated');
+ snackbar.value?.showMessage('Third-party login list has been updated');
}
}
diff --git a/src/views/mobile/accounts/ListPage.vue b/src/views/mobile/accounts/ListPage.vue
index 32e62804..52eb7168 100644
--- a/src/views/mobile/accounts/ListPage.vue
+++ b/src/views/mobile/accounts/ListPage.vue
@@ -411,7 +411,7 @@ function clearAllTransactions(password: string): void {
hideLoading();
showInputPasswordSheetForClearAllTransactions.value = false;
- showToast('All transactions in this account has been cleared');
+ showToast('All transactions in this account have been cleared');
}).catch(error => {
clearingData.value = false;
hideLoading();
diff --git a/src/views/mobile/accounts/MoveAllTransactionsPage.vue b/src/views/mobile/accounts/MoveAllTransactionsPage.vue
index a108ff8b..697fba15 100644
--- a/src/views/mobile/accounts/MoveAllTransactionsPage.vue
+++ b/src/views/mobile/accounts/MoveAllTransactionsPage.vue
@@ -147,7 +147,7 @@ function confirm(): void {
moving.value = false;
hideLoading();
- showToast('All transactions in this account has been moved.');
+ showToast('All transactions in this account have been moved.');
router.back();
}).catch(error => {
moving.value = false;
diff --git a/src/views/mobile/accounts/ReconciliationStatementPage.vue b/src/views/mobile/accounts/ReconciliationStatementPage.vue
index 65ede71a..6f245ae5 100644
--- a/src/views/mobile/accounts/ReconciliationStatementPage.vue
+++ b/src/views/mobile/accounts/ReconciliationStatementPage.vue
@@ -323,7 +323,7 @@
- {{ tt('Show Transaction Tag') }}
+ {{ tt('Show Transaction Tags') }}
diff --git a/src/views/mobile/templates/ListPage.vue b/src/views/mobile/templates/ListPage.vue
index 1b65f09c..7cc77f72 100644
--- a/src/views/mobile/templates/ListPage.vue
+++ b/src/views/mobile/templates/ListPage.vue
@@ -24,7 +24,7 @@
|