diff options
| author | lqvp <183242690+lqvp@users.noreply.github.com> | 2025-03-16 11:27:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-16 02:27:41 +0000 |
| commit | 4fef9c670aa1a44c70d4971dac4c98f2f94b4144 (patch) | |
| tree | 0b52fd9b6ae8daf9c9eb58a12b0bdc19f5a41061 | |
| parent | fix(frontend): fix settings-search-index of webhook (diff) | |
| download | misskey-4fef9c670aa1a44c70d4971dac4c98f2f94b4144.tar.gz misskey-4fef9c670aa1a44c70d4971dac4c98f2f94b4144.tar.bz2 misskey-4fef9c670aa1a44c70d4971dac4c98f2f94b4144.zip | |
fix(i18n): 通知タイプのcreateTokenが抜けていたのを修正 (#15663)
| -rw-r--r-- | locales/index.d.ts | 4 | ||||
| -rw-r--r-- | locales/ja-JP.yml | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index 7e4892eb39..c9f67c8110 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -9786,6 +9786,10 @@ export interface Locale extends ILocale { */ "login": string; /** + * アクセストークンの作成 + */ + "createToken": string; + /** * 通知のテスト */ "test": string; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index f17c5a1278..605aab919d 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -2586,6 +2586,7 @@ _notification: achievementEarned: "実績の獲得" exportCompleted: "エクスポートが完了した" login: "ログイン" + createToken: "アクセストークンの作成" test: "通知のテスト" app: "連携アプリからの通知" |