fix(frontend): 存在しない翻訳キーを追加 (#16757)

This commit is contained in:
かっこかり 2025-11-06 12:39:48 +09:00 committed by GitHub
parent 37a21cf54e
commit 18fbc9bb05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 23 additions and 5 deletions

16
locales/index.d.ts vendored
View File

@ -1226,6 +1226,10 @@ export interface Locale extends ILocale {
*
*/
"messageRead": string;
/**
*
*/
"readAllChatMessages": string;
/**
*
*/
@ -6079,6 +6083,10 @@ export interface Locale extends ILocale {
*
*/
"backupFound": string;
/**
*
*/
"forceBackup": string;
};
"_accountSettings": {
/**
@ -10910,6 +10918,14 @@ export interface Locale extends ILocale {
};
};
"_moderationLogTypes": {
/**
*
*/
"clearQueue": string;
/**
*
*/
"promoteQueue": string;
/**
*
*/

View File

@ -302,6 +302,7 @@ uploadFromUrlMayTakeTime: "アップロードが完了するまで時間がか
uploadNFiles: "{n}個のファイルをアップロード"
explore: "みつける"
messageRead: "既読"
readAllChatMessages: "すべてのメッセージを既読にする"
noMoreHistory: "これより過去の履歴はありません"
startChat: "メッセージを送る"
nUsersRead: "{n}人が読みました"
@ -1528,6 +1529,7 @@ _preferencesBackup:
youNeedToNameYourProfileToEnableAutoBackup: "自動バックアップを有効にするにはプロファイル名の設定が必要です。"
autoPreferencesBackupIsNotEnabledForThisDevice: "このデバイスで設定の自動バックアップは有効になっていません。"
backupFound: "設定のバックアップが見つかりました"
forceBackup: "設定の強制バックアップ"
_accountSettings:
requireSigninToViewContents: "コンテンツの表示にログインを必須にする"
@ -2891,6 +2893,8 @@ _abuseReport:
deleteConfirm: "通知先を削除しますか?"
_moderationLogTypes:
clearQueue: "ジョブキューをクリア"
promoteQueue: "キューのジョブを再試行"
createRole: "ロールを作成"
deleteRole: "ロールを削除"
updateRole: "ロールを更新"

View File

@ -136,16 +136,14 @@ SPDX-License-Identifier: AGPL-3.0-only
<hr>
<MkButton @click="forceCloudBackup">Force cloud backup</MkButton>
<hr>
<template v-if="$i.policies.chatAvailability !== 'unavailable'">
<MkButton @click="readAllChatMessages">Read all chat messages</MkButton>
<MkButton @click="readAllChatMessages">{{ i18n.ts.readAllChatMessages }}</MkButton>
<hr>
</template>
<MkButton @click="forceCloudBackup">{{ i18n.ts._preferencesBackup.forceBackup }}</MkButton>
<FormSlot>
<MkButton danger @click="migrate"><i class="ti ti-refresh"></i> {{ i18n.ts.migrateOldSettings }}</MkButton>
<template #caption>{{ i18n.ts.migrateOldSettings_description }}</template>