mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-20 18:45:29 +02:00
fix(frontend): 存在しない翻訳キーを追加 (#16757)
This commit is contained in:
16
locales/index.d.ts
vendored
16
locales/index.d.ts
vendored
@@ -1226,6 +1226,10 @@ export interface Locale extends ILocale {
|
|||||||
* 既読
|
* 既読
|
||||||
*/
|
*/
|
||||||
"messageRead": string;
|
"messageRead": string;
|
||||||
|
/**
|
||||||
|
* すべてのメッセージを既読にする
|
||||||
|
*/
|
||||||
|
"readAllChatMessages": string;
|
||||||
/**
|
/**
|
||||||
* これより過去の履歴はありません
|
* これより過去の履歴はありません
|
||||||
*/
|
*/
|
||||||
@@ -6079,6 +6083,10 @@ export interface Locale extends ILocale {
|
|||||||
* 設定のバックアップが見つかりました
|
* 設定のバックアップが見つかりました
|
||||||
*/
|
*/
|
||||||
"backupFound": string;
|
"backupFound": string;
|
||||||
|
/**
|
||||||
|
* 設定の強制バックアップ
|
||||||
|
*/
|
||||||
|
"forceBackup": string;
|
||||||
};
|
};
|
||||||
"_accountSettings": {
|
"_accountSettings": {
|
||||||
/**
|
/**
|
||||||
@@ -10910,6 +10918,14 @@ export interface Locale extends ILocale {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
"_moderationLogTypes": {
|
"_moderationLogTypes": {
|
||||||
|
/**
|
||||||
|
* ジョブキューをクリア
|
||||||
|
*/
|
||||||
|
"clearQueue": string;
|
||||||
|
/**
|
||||||
|
* キューのジョブを再試行
|
||||||
|
*/
|
||||||
|
"promoteQueue": string;
|
||||||
/**
|
/**
|
||||||
* ロールを作成
|
* ロールを作成
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -302,6 +302,7 @@ uploadFromUrlMayTakeTime: "アップロードが完了するまで時間がか
|
|||||||
uploadNFiles: "{n}個のファイルをアップロード"
|
uploadNFiles: "{n}個のファイルをアップロード"
|
||||||
explore: "みつける"
|
explore: "みつける"
|
||||||
messageRead: "既読"
|
messageRead: "既読"
|
||||||
|
readAllChatMessages: "すべてのメッセージを既読にする"
|
||||||
noMoreHistory: "これより過去の履歴はありません"
|
noMoreHistory: "これより過去の履歴はありません"
|
||||||
startChat: "メッセージを送る"
|
startChat: "メッセージを送る"
|
||||||
nUsersRead: "{n}人が読みました"
|
nUsersRead: "{n}人が読みました"
|
||||||
@@ -1528,6 +1529,7 @@ _preferencesBackup:
|
|||||||
youNeedToNameYourProfileToEnableAutoBackup: "自動バックアップを有効にするにはプロファイル名の設定が必要です。"
|
youNeedToNameYourProfileToEnableAutoBackup: "自動バックアップを有効にするにはプロファイル名の設定が必要です。"
|
||||||
autoPreferencesBackupIsNotEnabledForThisDevice: "このデバイスで設定の自動バックアップは有効になっていません。"
|
autoPreferencesBackupIsNotEnabledForThisDevice: "このデバイスで設定の自動バックアップは有効になっていません。"
|
||||||
backupFound: "設定のバックアップが見つかりました"
|
backupFound: "設定のバックアップが見つかりました"
|
||||||
|
forceBackup: "設定の強制バックアップ"
|
||||||
|
|
||||||
_accountSettings:
|
_accountSettings:
|
||||||
requireSigninToViewContents: "コンテンツの表示にログインを必須にする"
|
requireSigninToViewContents: "コンテンツの表示にログインを必須にする"
|
||||||
@@ -2891,6 +2893,8 @@ _abuseReport:
|
|||||||
deleteConfirm: "通知先を削除しますか?"
|
deleteConfirm: "通知先を削除しますか?"
|
||||||
|
|
||||||
_moderationLogTypes:
|
_moderationLogTypes:
|
||||||
|
clearQueue: "ジョブキューをクリア"
|
||||||
|
promoteQueue: "キューのジョブを再試行"
|
||||||
createRole: "ロールを作成"
|
createRole: "ロールを作成"
|
||||||
deleteRole: "ロールを削除"
|
deleteRole: "ロールを削除"
|
||||||
updateRole: "ロールを更新"
|
updateRole: "ロールを更新"
|
||||||
|
|||||||
@@ -136,16 +136,14 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<MkButton @click="forceCloudBackup">Force cloud backup</MkButton>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<template v-if="$i.policies.chatAvailability !== 'unavailable'">
|
<template v-if="$i.policies.chatAvailability !== 'unavailable'">
|
||||||
<MkButton @click="readAllChatMessages">Read all chat messages</MkButton>
|
<MkButton @click="readAllChatMessages">{{ i18n.ts.readAllChatMessages }}</MkButton>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<MkButton @click="forceCloudBackup">{{ i18n.ts._preferencesBackup.forceBackup }}</MkButton>
|
||||||
|
|
||||||
<FormSlot>
|
<FormSlot>
|
||||||
<MkButton danger @click="migrate"><i class="ti ti-refresh"></i> {{ i18n.ts.migrateOldSettings }}</MkButton>
|
<MkButton danger @click="migrate"><i class="ti ti-refresh"></i> {{ i18n.ts.migrateOldSettings }}</MkButton>
|
||||||
<template #caption>{{ i18n.ts.migrateOldSettings_description }}</template>
|
<template #caption>{{ i18n.ts.migrateOldSettings_description }}</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user