diff options
| author | anatawa12 <anatawa12@icloud.com> | 2023-09-22 16:52:43 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-22 16:52:43 +0900 |
| commit | 526b3ae0e49caeee05b299272e80c30f69c91d92 (patch) | |
| tree | 2cc8f4bc8f654deb2e0f9f65314a91fda537990e /locales | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | sharkey-526b3ae0e49caeee05b299272e80c30f69c91d92.tar.gz sharkey-526b3ae0e49caeee05b299272e80c30f69c91d92.tar.bz2 sharkey-526b3ae0e49caeee05b299272e80c30f69c91d92.zip | |
feat: ユーザを除外できるアンテナ (#11277)
* feat: ユーザを除外できるアンテナ
* feat(backend/api): ユーザを除外できるアンテナの作成・更新
* feat(frontend): ユーザを除外できるアンテナの作成・更新
* docs(changelog): add アンテナで一部のユーザを除外したすべてのノートから受信できるようになりました
* fix: d.ts生成時にexport defaultを生成するように
* fix CHANGELOG.md
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'locales')
| -rw-r--r-- | locales/index.d.ts | 1 | ||||
| -rw-r--r-- | locales/ja-JP.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index 3009c99185..f6b6daae89 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -1917,6 +1917,7 @@ export interface Locale { "homeTimeline": string; "users": string; "userList": string; + "userBlacklist": string; }; "_weekday": { "sunday": string; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index b30fd5333d..82ced0aa3b 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1834,6 +1834,7 @@ _antennaSources: homeTimeline: "フォローしているユーザーのノート" users: "指定した一人または複数のユーザーのノート" userList: "指定したリストのユーザーのノート" + userBlacklist: "指定した一人または複数のユーザーを除いた全てのノート" _weekday: sunday: "日曜日" |