(fix) 翻訳のダブりを解消 (#12519)
This commit is contained in:
parent
da0ecb650e
commit
b37e8ffa69
4 changed files with 3 additions and 3 deletions
1
locales/index.d.ts
vendored
1
locales/index.d.ts
vendored
|
@ -440,7 +440,6 @@ export interface Locale {
|
||||||
"notFound": string;
|
"notFound": string;
|
||||||
"notFoundDescription": string;
|
"notFoundDescription": string;
|
||||||
"uploadFolder": string;
|
"uploadFolder": string;
|
||||||
"cacheClear": string;
|
|
||||||
"markAsReadAllNotifications": string;
|
"markAsReadAllNotifications": string;
|
||||||
"markAsReadAllUnreadNotes": string;
|
"markAsReadAllUnreadNotes": string;
|
||||||
"markAsReadAllTalkMessages": string;
|
"markAsReadAllTalkMessages": string;
|
||||||
|
|
|
@ -437,7 +437,6 @@ share: "共有"
|
||||||
notFound: "見つかりません"
|
notFound: "見つかりません"
|
||||||
notFoundDescription: "指定されたURLに該当するページはありませんでした。"
|
notFoundDescription: "指定されたURLに該当するページはありませんでした。"
|
||||||
uploadFolder: "既定アップロード先"
|
uploadFolder: "既定アップロード先"
|
||||||
cacheClear: "キャッシュを削除"
|
|
||||||
markAsReadAllNotifications: "すべての通知を既読にする"
|
markAsReadAllNotifications: "すべての通知を既読にする"
|
||||||
markAsReadAllUnreadNotes: "すべての投稿を既読にする"
|
markAsReadAllUnreadNotes: "すべての投稿を既読にする"
|
||||||
markAsReadAllTalkMessages: "すべてのチャットを既読にする"
|
markAsReadAllTalkMessages: "すべてのチャットを既読にする"
|
||||||
|
|
|
@ -101,6 +101,8 @@ function close() {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
|
|
|
@ -173,7 +173,7 @@ export const navbarItemDef = reactive({
|
||||||
to: `/@${$i?.username}`,
|
to: `/@${$i?.username}`,
|
||||||
},
|
},
|
||||||
cacheClear: {
|
cacheClear: {
|
||||||
title: i18n.ts.cacheClear,
|
title: i18n.ts.clearCache,
|
||||||
icon: 'ti ti-trash',
|
icon: 'ti ti-trash',
|
||||||
action: (ev) => {
|
action: (ev) => {
|
||||||
clearCache();
|
clearCache();
|
||||||
|
|
Loading…
Reference in a new issue