diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2023-12-02 12:05:03 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-02 12:05:03 +0900 |
| commit | b37e8ffa69b20fa05ae6a999f872fb5cd4772291 (patch) | |
| tree | 5e58012b96d53f6add6e74a85ae7fb265e10de2e | |
| parent | chore: フォローしたときにHTLをパージしなくする (#12522) (diff) | |
| download | misskey-b37e8ffa69b20fa05ae6a999f872fb5cd4772291.tar.gz misskey-b37e8ffa69b20fa05ae6a999f872fb5cd4772291.tar.bz2 misskey-b37e8ffa69b20fa05ae6a999f872fb5cd4772291.zip | |
(fix) 翻訳のダブりを解消 (#12519)
| -rw-r--r-- | locales/index.d.ts | 1 | ||||
| -rw-r--r-- | locales/ja-JP.yml | 1 | ||||
| -rw-r--r-- | packages/frontend/src/components/MkLaunchPad.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/navbar.ts | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index d462816494..402c2413f8 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -440,7 +440,6 @@ export interface Locale { "notFound": string; "notFoundDescription": string; "uploadFolder": string; - "cacheClear": string; "markAsReadAllNotifications": string; "markAsReadAllUnreadNotes": string; "markAsReadAllTalkMessages": string; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index aa3cdf0750..2b2f05aa88 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -437,7 +437,6 @@ share: "共有" notFound: "見つかりません" notFoundDescription: "指定されたURLに該当するページはありませんでした。" uploadFolder: "既定アップロード先" -cacheClear: "キャッシュを削除" markAsReadAllNotifications: "すべての通知を既読にする" markAsReadAllUnreadNotes: "すべての投稿を既読にする" markAsReadAllTalkMessages: "すべてのチャットを既読にする" diff --git a/packages/frontend/src/components/MkLaunchPad.vue b/packages/frontend/src/components/MkLaunchPad.vue index 87f15a110f..b16c05f575 100644 --- a/packages/frontend/src/components/MkLaunchPad.vue +++ b/packages/frontend/src/components/MkLaunchPad.vue @@ -101,6 +101,8 @@ function close() { vertical-align: bottom; height: 100px; border-radius: 10px; + padding: 10px; + box-sizing: border-box; &:hover { color: var(--accent); diff --git a/packages/frontend/src/navbar.ts b/packages/frontend/src/navbar.ts index 78a0945ddb..95fd6bf29c 100644 --- a/packages/frontend/src/navbar.ts +++ b/packages/frontend/src/navbar.ts @@ -173,7 +173,7 @@ export const navbarItemDef = reactive({ to: `/@${$i?.username}`, }, cacheClear: { - title: i18n.ts.cacheClear, + title: i18n.ts.clearCache, icon: 'ti ti-trash', action: (ev) => { clearCache(); |