diff --git a/CHANGELOG.md b/CHANGELOG.md
index 03c93f70d..1cc6b3f0d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,6 +25,7 @@
- センシティブチャンネルのノートはユーザープロフィールに表示されません
- 二要素認証のバックアップコードが生成されるようになりました ref. https://github.com/MisskeyIO/misskey/pull/121
- 二要素認証でパスキーをサポートするようになりました
+- 通知をテストできるようになりました
### Client
- プロフィールにその人が作ったPlayの一覧出せるように
@@ -33,7 +34,6 @@
- 投稿フォームのプレビューの表示状態を記憶するように
- AiScriptからMisskeyサーバーAPIを呼び出す際の制限を撤廃
- Playで直接投稿フォームを埋め込めるように(`Ui:C:postForm`)
-- 通知をテストできるように
- Enhance: ユーザーメニューでスイッチでユーザーリストに追加・削除できるように
- Enhance: 自分が押したリアクションのデザインを改善
- Enhance: ノート検索にローカルのみ検索可能なオプションの追加
@@ -46,6 +46,7 @@
- リアクションの表示サイズをより大きくできるように
- ノート詳細ページ読み込み時のパフォーマンスを改善
- タイムラインでリスト/アンテナ選択時のパフォーマンスを改善
+- 新しい実績を追加
- Fix: サーバー情報画面(`/instance-info/{domain}`)でブロックができないのを修正
- Fix: 未読のお知らせの「わかった」をクリック・タップしてもその場で「わかった」が消えない問題を修正
- Fix: iOSで画面を回転させるとテキストサイズが変わる問題を修正
diff --git a/locales/index.d.ts b/locales/index.d.ts
index 36897285c..746c51c99 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -1467,6 +1467,10 @@ export interface Locale {
"description": string;
"flavor": string;
};
+ "_smashTestNotificationButton": {
+ "title": string;
+ "description": string;
+ };
};
};
"_role": {
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index f9427e13e..3cde23ca9 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -1391,6 +1391,9 @@ _achievements:
title: "Brain Diver"
description: "Brain Diverへのリンクを投稿した"
flavor: "Misskey-Misskey La-Tu-Ma"
+ _smashTestNotificationButton:
+ title: "テスト過剰"
+ description: "通知のテストをごく短時間のうちに連続して行った"
_role:
new: "ロールの作成"
diff --git a/packages/backend/src/core/AchievementService.ts b/packages/backend/src/core/AchievementService.ts
index aa810015e..a35acd368 100644
--- a/packages/backend/src/core/AchievementService.ts
+++ b/packages/backend/src/core/AchievementService.ts
@@ -85,6 +85,7 @@ export const ACHIEVEMENT_TYPES = [
'setNameToSyuilo',
'cookieClicked',
'brainDiver',
+ 'smashTestNotificationButton',
] as const;
@Injectable()
diff --git a/packages/frontend/src/pages/settings/general.vue b/packages/frontend/src/pages/settings/general.vue
index 31d5dd93e..b486e6d80 100644
--- a/packages/frontend/src/pages/settings/general.vue
+++ b/packages/frontend/src/pages/settings/general.vue
@@ -96,7 +96,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ i18n.ts._notification.checkNotificationBehavior }}
+ {{ i18n.ts._notification.checkNotificationBehavior }}
@@ -176,6 +176,7 @@ SPDX-License-Identifier: AGPL-3.0-only