summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-10-16 09:44:58 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-10-16 09:44:58 +0900
commita405575cd61242122d3ebb0f3e2cf0f944436b7c (patch)
treea001dfa909ba45649b8182aa334e65d0baaa3f4e
parentBump version to 2025.10.1-alpha.2 (diff)
downloadmisskey-a405575cd61242122d3ebb0f3e2cf0f944436b7c.tar.gz
misskey-a405575cd61242122d3ebb0f3e2cf0f944436b7c.tar.bz2
misskey-a405575cd61242122d3ebb0f3e2cf0f944436b7c.zip
chore(frontend): add tips
-rw-r--r--locales/index.d.ts4
-rw-r--r--locales/ja-JP.yml1
-rw-r--r--packages/frontend/src/pages/settings/preferences.vue1
3 files changed, 6 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts
index 6f36cba861..b54763a8a2 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -3119,6 +3119,10 @@ export interface Locale extends ILocale {
*/
"disableShowingAnimatedImages": string;
/**
+ * この設定に関わらずアニメーション画像が再生されないときは、ブラウザ・OSのアクセシビリティ設定や省電力設定等が干渉している場合があります。
+ */
+ "disableShowingAnimatedImages_caption": string;
+ /**
* メディアがセンシティブであることを分かりやすく表示
*/
"highlightSensitiveMedia": string;
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index ec27da085f..3c9f0a5853 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -775,6 +775,7 @@ lockedAccountInfo: "フォローを承認制にしても、ノートの公開範
alwaysMarkSensitive: "デフォルトでメディアをセンシティブ設定にする"
loadRawImages: "添付画像のサムネイルをオリジナル画質にする"
disableShowingAnimatedImages: "アニメーション画像を再生しない"
+disableShowingAnimatedImages_caption: "この設定に関わらずアニメーション画像が再生されないときは、ブラウザ・OSのアクセシビリティ設定や省電力設定等が干渉している場合があります。"
highlightSensitiveMedia: "メディアがセンシティブであることを分かりやすく表示"
verificationEmailSent: "確認のメールを送信しました。メールに記載されたリンクにアクセスして、設定を完了してください。"
notSet: "未設定"
diff --git a/packages/frontend/src/pages/settings/preferences.vue b/packages/frontend/src/pages/settings/preferences.vue
index c622647b4f..5e3f148710 100644
--- a/packages/frontend/src/pages/settings/preferences.vue
+++ b/packages/frontend/src/pages/settings/preferences.vue
@@ -475,6 +475,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkPreferenceContainer k="disableShowingAnimatedImages">
<MkSwitch v-model="disableShowingAnimatedImages">
<template #label><SearchLabel>{{ i18n.ts.disableShowingAnimatedImages }}</SearchLabel></template>
+ <template #caption>{{ i18n.ts.disableShowingAnimatedImages_caption }}</template>
</MkSwitch>
</MkPreferenceContainer>
</SearchMarker>