From 7d9bfdb2bba6b29c2cf5b25056ac3dd5b824eb4d Mon Sep 17 00:00:00 2001
From: 4sterisk <4sterisk@ymail.ne.jp>
Date: Tue, 3 Sep 2024 05:55:06 +0900
Subject: [PATCH] fix indent
---
locales/index.d.ts | 8 +-
.../src/pages/settings/account-stats.vue | 231 +++++++++---------
2 files changed, 119 insertions(+), 120 deletions(-)
diff --git a/locales/index.d.ts b/locales/index.d.ts
index 37a0117418c2..b3de7f5ba49d 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -6678,10 +6678,10 @@ export interface Locale extends ILocale {
* ドライブ容量
*/
"driveCapacity": string;
- /**
- * ファイルサイズ上限
- */
- "fileSizeLimit": string;
+ /**
+ * ファイルサイズ上限
+ */
+ "fileSizeLimit": string;
/**
* ファイルにNSFWを常に付与
*/
diff --git a/packages/frontend/src/pages/settings/account-stats.vue b/packages/frontend/src/pages/settings/account-stats.vue
index f7463bfc7103..50478c55024f 100644
--- a/packages/frontend/src/pages/settings/account-stats.vue
+++ b/packages/frontend/src/pages/settings/account-stats.vue
@@ -1,119 +1,119 @@
-
-
- {{ i18n.ts.statistics }}
-
- {{ i18n.ts.notesCount }}
- {{ number(stats.notesCount) }}
-
-
- {{ i18n.ts.repliesCount }}
- {{ number(stats.repliesCount) }}
-
-
- {{ i18n.ts.renotesCount }}
- {{ number(stats.renotesCount) }}
-
-
- {{ i18n.ts.repliedCount }}
- {{ number(stats.repliedCount) }}
-
-
- {{ i18n.ts.renotedCount }}
- {{ number(stats.renotedCount) }}
-
-
- {{ i18n.ts.pollVotesCount }}
- {{ number(stats.pollVotesCount) }}
-
-
- {{ i18n.ts.pollVotedCount }}
- {{ number(stats.pollVotedCount) }}
-
-
- {{ i18n.ts.sentReactionsCount }}
- {{ number(stats.sentReactionsCount) }}
-
-
- {{ i18n.ts.receivedReactionsCount }}
- {{ number(stats.receivedReactionsCount) }}
-
-
- {{ i18n.ts.noteFavoritesCount }}
- {{ number(stats.noteFavoritesCount) }}
-
-
- {{ i18n.ts.followingCount }}
- {{ number(stats.followingCount) }}
-
-
- {{ i18n.ts.followingCount }} ({{ i18n.ts.local }})
- {{ number(stats.localFollowingCount) }}
-
-
- {{ i18n.ts.followingCount }} ({{ i18n.ts.remote }})
- {{ number(stats.remoteFollowingCount) }}
-
-
- {{ i18n.ts.followersCount }}
- {{ number(stats.followersCount) }}
-
-
- {{ i18n.ts.followersCount }} ({{ i18n.ts.local }})
- {{ number(stats.localFollowersCount) }}
-
-
- {{ i18n.ts.followersCount }} ({{ i18n.ts.remote }})
- {{ number(stats.remoteFollowersCount) }}
-
-
- {{ i18n.ts.pageLikesCount }}
- {{ number(stats.pageLikesCount) }}
-
-
- {{ i18n.ts.pageLikedCount }}
- {{ number(stats.pageLikedCount) }}
-
-
- {{ i18n.ts.driveFilesCount }}
- {{ number(stats.driveFilesCount) }}
-
-
- {{ i18n.ts.driveUsage }}
- {{ bytes(stats.driveUsage) }}
-
-
-
-
- {{ i18n.ts.other }}
-
- emailVerified
- {{ $i.emailVerified ? i18n.ts.yes : i18n.ts.no }}
-
-
- twoFactorEnabled
- {{ $i.twoFactorEnabled ? i18n.ts.yes : i18n.ts.no }}
-
-
- securityKeys
- {{ $i.securityKeys ? i18n.ts.yes : i18n.ts.no }}
-
-
- usePasswordLessLogin
- {{ $i.usePasswordLessLogin ? i18n.ts.yes : i18n.ts.no }}
-
-
- isModerator
- {{ $i.isModerator ? i18n.ts.yes : i18n.ts.no }}
-
-
- isAdmin
- {{ $i.isAdmin ? i18n.ts.yes : i18n.ts.no }}
-
-
-
-
-
+
+
+ {{ i18n.ts.statistics }}
+
+ {{ i18n.ts.notesCount }}
+ {{ number(stats.notesCount) }}
+
+
+ {{ i18n.ts.repliesCount }}
+ {{ number(stats.repliesCount) }}
+
+
+ {{ i18n.ts.renotesCount }}
+ {{ number(stats.renotesCount) }}
+
+
+ {{ i18n.ts.repliedCount }}
+ {{ number(stats.repliedCount) }}
+
+
+ {{ i18n.ts.renotedCount }}
+ {{ number(stats.renotedCount) }}
+
+
+ {{ i18n.ts.pollVotesCount }}
+ {{ number(stats.pollVotesCount) }}
+
+
+ {{ i18n.ts.pollVotedCount }}
+ {{ number(stats.pollVotedCount) }}
+
+
+ {{ i18n.ts.sentReactionsCount }}
+ {{ number(stats.sentReactionsCount) }}
+
+
+ {{ i18n.ts.receivedReactionsCount }}
+ {{ number(stats.receivedReactionsCount) }}
+
+
+ {{ i18n.ts.noteFavoritesCount }}
+ {{ number(stats.noteFavoritesCount) }}
+
+
+ {{ i18n.ts.followingCount }}
+ {{ number(stats.followingCount) }}
+
+
+ {{ i18n.ts.followingCount }} ({{ i18n.ts.local }})
+ {{ number(stats.localFollowingCount) }}
+
+
+ {{ i18n.ts.followingCount }} ({{ i18n.ts.remote }})
+ {{ number(stats.remoteFollowingCount) }}
+
+
+ {{ i18n.ts.followersCount }}
+ {{ number(stats.followersCount) }}
+
+
+ {{ i18n.ts.followersCount }} ({{ i18n.ts.local }})
+ {{ number(stats.localFollowersCount) }}
+
+
+ {{ i18n.ts.followersCount }} ({{ i18n.ts.remote }})
+ {{ number(stats.remoteFollowersCount) }}
+
+
+ {{ i18n.ts.pageLikesCount }}
+ {{ number(stats.pageLikesCount) }}
+
+
+ {{ i18n.ts.pageLikedCount }}
+ {{ number(stats.pageLikedCount) }}
+
+
+ {{ i18n.ts.driveFilesCount }}
+ {{ number(stats.driveFilesCount) }}
+
+
+ {{ i18n.ts.driveUsage }}
+ {{ bytes(stats.driveUsage) }}
+
+
+
+
+ {{ i18n.ts.other }}
+
+ emailVerified
+ {{ $i.emailVerified ? i18n.ts.yes : i18n.ts.no }}
+
+
+ twoFactorEnabled
+ {{ $i.twoFactorEnabled ? i18n.ts.yes : i18n.ts.no }}
+
+
+ securityKeys
+ {{ $i.securityKeys ? i18n.ts.yes : i18n.ts.no }}
+
+
+ usePasswordLessLogin
+ {{ $i.usePasswordLessLogin ? i18n.ts.yes : i18n.ts.no }}
+
+
+ isModerator
+ {{ $i.isModerator ? i18n.ts.yes : i18n.ts.no }}
+
+
+ isAdmin
+ {{ $i.isAdmin ? i18n.ts.yes : i18n.ts.no }}
+
+
+
+
+
-
\ No newline at end of file