summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-05-11 16:20:03 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-05-11 16:20:03 +0900
commit8c30ca50a86043c9ed7f0ff8c8eef9e4a8587e8e (patch)
treeb71d559b4a47b287e07150532f8d4dc366698237
parentci: fix typo (diff)
downloadsharkey-8c30ca50a86043c9ed7f0ff8c8eef9e4a8587e8e.tar.gz
sharkey-8c30ca50a86043c9ed7f0ff8c8eef9e4a8587e8e.tar.bz2
sharkey-8c30ca50a86043c9ed7f0ff8c8eef9e4a8587e8e.zip
fix(frontend): より明確な説明にしたのとtypo修正
-rw-r--r--locales/ja-JP.yml4
-rw-r--r--packages/frontend/src/pages/settings/privacy.vue4
2 files changed, 4 insertions, 4 deletions
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 4f458dc4e3..66ecae8e64 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -1039,8 +1039,8 @@ thisChannelArchived: "このチャンネルはアーカイブされています
displayOfNote: "ノートの表示"
initialAccountSetting: "初期設定"
youFollowing: "フォロー中"
-preventAiLarning: "AIによる学習を拒否"
-preventAiLarningDescription: "投稿したノートや画像などのコンテンツを学習の対象にしないようAIに要求します。これはnoaiフラグをHTMLレスポンスに含めることによって実現されます。この機能は実験的であり、AIによる学習を完全に防止するものではありません。"
+preventAiLearning: "生成AIによる学習を拒否"
+preventAiLearningDescription: "外部の文章生成AIや画像生成AIに対して、投稿したノートや画像などのコンテンツを学習の対象にしないように要求します。これはnoaiフラグをHTMLレスポンスに含めることによって実現されますが、この要求に従うかはそのAI次第であるため、学習を完全に防止するものではありません。"
_initialAccountSetting:
accountCreated: "アカウントの作成が完了しました!"
diff --git a/packages/frontend/src/pages/settings/privacy.vue b/packages/frontend/src/pages/settings/privacy.vue
index 29a9efa2d7..4743b8c1a8 100644
--- a/packages/frontend/src/pages/settings/privacy.vue
+++ b/packages/frontend/src/pages/settings/privacy.vue
@@ -25,8 +25,8 @@
<template #caption>{{ i18n.ts.noCrawleDescription }}</template>
</MkSwitch>
<MkSwitch v-model="preventAiLarning" @update:model-value="save()">
- {{ i18n.ts.preventAiLarning }}<span class="_beta">{{ i18n.ts.beta }}</span>
- <template #caption>{{ i18n.ts.preventAiLarningDescription }}</template>
+ {{ i18n.ts.preventAiLearning }}<span class="_beta">{{ i18n.ts.beta }}</span>
+ <template #caption>{{ i18n.ts.preventAiLearningDescription }}</template>
</MkSwitch>
<MkSwitch v-model="isExplorable" @update:model-value="save()">
{{ i18n.ts.makeExplorable }}