diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-11-06 12:39:48 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-06 12:39:48 +0900 |
| commit | 18fbc9bb0527fb0072f00e455e335686be37ea33 (patch) | |
| tree | 4222dca556b02e7b43cf56449edce50ac483558b /locales/index.d.ts | |
| parent | enhance: Remote Notes Cleaning timeout bailout logic (#16752) (diff) | |
| download | misskey-18fbc9bb0527fb0072f00e455e335686be37ea33.tar.gz misskey-18fbc9bb0527fb0072f00e455e335686be37ea33.tar.bz2 misskey-18fbc9bb0527fb0072f00e455e335686be37ea33.zip | |
fix(frontend): 存在しない翻訳キーを追加 (#16757)
Diffstat (limited to 'locales/index.d.ts')
| -rw-r--r-- | locales/index.d.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index 45ecb87095..43e31c16a1 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -1227,6 +1227,10 @@ export interface Locale extends ILocale { */ "messageRead": string; /** + * すべてのメッセージを既読にする + */ + "readAllChatMessages": string; + /** * これより過去の履歴はありません */ "noMoreHistory": string; @@ -6079,6 +6083,10 @@ export interface Locale extends ILocale { * 設定のバックアップが見つかりました */ "backupFound": string; + /** + * 設定の強制バックアップ + */ + "forceBackup": string; }; "_accountSettings": { /** @@ -10911,6 +10919,14 @@ export interface Locale extends ILocale { }; "_moderationLogTypes": { /** + * ジョブキューをクリア + */ + "clearQueue": string; + /** + * キューのジョブを再試行 + */ + "promoteQueue": string; + /** * ロールを作成 */ "createRole": string; |