diff --git a/locales/en-US.yml b/locales/en-US.yml index 7df19e815e..f62c9d72e2 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -1086,7 +1086,7 @@ sendModMail: "Send Moderation Notice" preventAiLearning: "Prevent AI bot scraping" preventAiLearningDescription: "Request third-party AI language models not to study\ \ content you upload, such as posts and images." - +noGraze: "Please disable the \"Graze for Mastodon\" browser extension, as it interferes with Calckey." _sensitiveMediaDetection: description: "Reduces the effort of server moderation through automatically recognizing\ diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index e3005720cc..84c894c7a8 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -975,6 +975,7 @@ customKaTeXMacroDescription: "数式入力を楽にするためのマクロを enableCustomKaTeXMacro: "カスタムKaTeXマクロを有効にする" preventAiLearning: "AIによる学習を防止" preventAiLearningDescription: "投稿したノート、添付した画像などのコンテンツを学習の対象にしないようAIに要求します。これはnoaiフラグをHTMLレスポンスに含めることによって実現されます。" +noGraze: "ブラウザの拡張機能「Graze for Mastodon」は、Calckeyの動作を妨げるため、無効にしてください。" _sensitiveMediaDetection: description: "機械学習を使って自動でセンシティブなメディアを検出し、モデレーションに役立てられます。サーバーの負荷が少し増えます。" diff --git a/package.json b/package.json index 9d29a8c673..8ee24ea027 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "14.0.0-dev10", + "version": "14.0.0-dev12", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/pages/no-graze.vue b/packages/client/src/pages/no-graze.vue new file mode 100644 index 0000000000..b6e01ebce3 --- /dev/null +++ b/packages/client/src/pages/no-graze.vue @@ -0,0 +1,37 @@ + + + + + diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts index a84c2c8b3f..9529258164 100644 --- a/packages/client/src/router.ts +++ b/packages/client/src/router.ts @@ -62,6 +62,10 @@ export const routes = [ path: "/instance-info/:host", component: page(() => import("./pages/instance-info.vue")), }, + { + path: "/public/local", + component: page(() => import("./pages/no-graze.vue")), + }, { name: "settings", path: "/settings",