diff --git a/packages/client/src/pages/settings/account-info.vue b/packages/client/src/pages/settings/account-info.vue
index c98ad056f..12142b4dc 100644
--- a/packages/client/src/pages/settings/account-info.vue
+++ b/packages/client/src/pages/settings/account-info.vue
@@ -7,163 +7,150 @@
- {{ $ts.registeredDate }}
+ {{ i18n.ts.registeredDate }}
- {{ $ts.statistics }}
+ {{ i18n.ts.statistics }}
- {{ $ts.notesCount }}
+ {{ i18n.ts.notesCount }}
{{ number(stats.notesCount) }}
- {{ $ts.repliesCount }}
+ {{ i18n.ts.repliesCount }}
{{ number(stats.repliesCount) }}
- {{ $ts.renotesCount }}
+ {{ i18n.ts.renotesCount }}
{{ number(stats.renotesCount) }}
- {{ $ts.repliedCount }}
+ {{ i18n.ts.repliedCount }}
{{ number(stats.repliedCount) }}
- {{ $ts.renotedCount }}
+ {{ i18n.ts.renotedCount }}
{{ number(stats.renotedCount) }}
- {{ $ts.pollVotesCount }}
+ {{ i18n.ts.pollVotesCount }}
{{ number(stats.pollVotesCount) }}
- {{ $ts.pollVotedCount }}
+ {{ i18n.ts.pollVotedCount }}
{{ number(stats.pollVotedCount) }}
- {{ $ts.sentReactionsCount }}
+ {{ i18n.ts.sentReactionsCount }}
{{ number(stats.sentReactionsCount) }}
- {{ $ts.receivedReactionsCount }}
+ {{ i18n.ts.receivedReactionsCount }}
{{ number(stats.receivedReactionsCount) }}
- {{ $ts.noteFavoritesCount }}
+ {{ i18n.ts.noteFavoritesCount }}
{{ number(stats.noteFavoritesCount) }}
- {{ $ts.followingCount }}
+ {{ i18n.ts.followingCount }}
{{ number(stats.followingCount) }}
- {{ $ts.followingCount }} ({{ $ts.local }})
+ {{ i18n.ts.followingCount }} ({{ i18n.ts.local }})
{{ number(stats.localFollowingCount) }}
- {{ $ts.followingCount }} ({{ $ts.remote }})
+ {{ i18n.ts.followingCount }} ({{ i18n.ts.remote }})
{{ number(stats.remoteFollowingCount) }}
- {{ $ts.followersCount }}
+ {{ i18n.ts.followersCount }}
{{ number(stats.followersCount) }}
- {{ $ts.followersCount }} ({{ $ts.local }})
+ {{ i18n.ts.followersCount }} ({{ i18n.ts.local }})
{{ number(stats.localFollowersCount) }}
- {{ $ts.followersCount }} ({{ $ts.remote }})
+ {{ i18n.ts.followersCount }} ({{ i18n.ts.remote }})
{{ number(stats.remoteFollowersCount) }}
- {{ $ts.pageLikesCount }}
+ {{ i18n.ts.pageLikesCount }}
{{ number(stats.pageLikesCount) }}
- {{ $ts.pageLikedCount }}
+ {{ i18n.ts.pageLikedCount }}
{{ number(stats.pageLikedCount) }}
- {{ $ts.driveFilesCount }}
+ {{ i18n.ts.driveFilesCount }}
{{ number(stats.driveFilesCount) }}
- {{ $ts.driveUsage }}
+ {{ i18n.ts.driveUsage }}
{{ bytes(stats.driveUsage) }}
- {{ $ts.other }}
+ {{ i18n.ts.other }}
emailVerified
- {{ $i.emailVerified ? $ts.yes : $ts.no }}
+ {{ $i.emailVerified ? i18n.ts.yes : i18n.ts.no }}
twoFactorEnabled
- {{ $i.twoFactorEnabled ? $ts.yes : $ts.no }}
+ {{ $i.twoFactorEnabled ? i18n.ts.yes : i18n.ts.no }}
securityKeys
- {{ $i.securityKeys ? $ts.yes : $ts.no }}
+ {{ $i.securityKeys ? i18n.ts.yes : i18n.ts.no }}
usePasswordLessLogin
- {{ $i.usePasswordLessLogin ? $ts.yes : $ts.no }}
+ {{ $i.usePasswordLessLogin ? i18n.ts.yes : i18n.ts.no }}
isModerator
- {{ $i.isModerator ? $ts.yes : $ts.no }}
+ {{ $i.isModerator ? i18n.ts.yes : i18n.ts.no }}
isAdmin
- {{ $i.isAdmin ? $ts.yes : $ts.no }}
+ {{ $i.isAdmin ? i18n.ts.yes : i18n.ts.no }}
-