updare locales
Signed-off-by: mattyatea <mattyacocacora0@gmail.com>
This commit is contained in:
parent
fa2447e71b
commit
d94747b1c0
|
@ -1028,8 +1028,8 @@ export interface Locale {
|
||||||
"notesSearchNotAvailable": string;
|
"notesSearchNotAvailable": string;
|
||||||
"license": string;
|
"license": string;
|
||||||
"requestPending": string;
|
"requestPending": string;
|
||||||
"requestApproval": string;
|
"approve": string;
|
||||||
"requestEmojis": string;
|
"requestingEmojis": string;
|
||||||
"emojiNameValidation": string;
|
"emojiNameValidation": string;
|
||||||
"unfavoriteConfirm": string;
|
"unfavoriteConfirm": string;
|
||||||
"myClips": string;
|
"myClips": string;
|
||||||
|
|
|
@ -1025,8 +1025,8 @@ sensitiveWordsDescription2: "スペースで区切るとAND指定になり、キ
|
||||||
notesSearchNotAvailable: "ノート検索は利用できません。"
|
notesSearchNotAvailable: "ノート検索は利用できません。"
|
||||||
license: "ライセンス"
|
license: "ライセンス"
|
||||||
requestPending: "申請中"
|
requestPending: "申請中"
|
||||||
requestApproval: "リクエストを承認"
|
approval: "承認"
|
||||||
requestEmojis: "リクエストされている絵文字"
|
requestingEmojis: "リクエストされている絵文字"
|
||||||
emojiNameValidation: "名前には英数字と_が利用できます。"
|
emojiNameValidation: "名前には英数字と_が利用できます。"
|
||||||
unfavoriteConfirm: "お気に入り解除しますか?"
|
unfavoriteConfirm: "お気に入り解除しますか?"
|
||||||
myClips: "自分のクリップ"
|
myClips: "自分のクリップ"
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
{{ i18n.ts.edit }}
|
{{ i18n.ts.edit }}
|
||||||
</MkButton>
|
</MkButton>
|
||||||
<MkButton class="request" @click="unrequested(emoji)">
|
<MkButton class="request" @click="unrequested(emoji)">
|
||||||
{{ i18n.ts.requestApproval }}
|
{{ i18n.ts.approve }}
|
||||||
</MkButton>
|
</MkButton>
|
||||||
<MkButton danger class="delete" @click="deleteRequest(emoji)">
|
<MkButton danger class="delete" @click="deleteRequest(emoji)">
|
||||||
{{ i18n.ts.delete }}
|
{{ i18n.ts.delete }}
|
||||||
|
|
|
@ -65,7 +65,7 @@ const headerTabs = $computed(() => [{
|
||||||
title: i18n.ts.list,
|
title: i18n.ts.list,
|
||||||
}, {
|
}, {
|
||||||
key: 'request',
|
key: 'request',
|
||||||
title: i18n.ts.requestEmojis,
|
title: i18n.ts.requestingEmojis,
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
definePageMetadata(ref({}));
|
definePageMetadata(ref({}));
|
||||||
|
|
|
@ -103,7 +103,7 @@ const headerActions = $computed(() => [{
|
||||||
|
|
||||||
const headerTabs = $computed(() => [{
|
const headerTabs = $computed(() => [{
|
||||||
key: 'request',
|
key: 'request',
|
||||||
title: i18n.ts.requestEmojis,
|
title: i18n.ts.requestingEmojis,
|
||||||
}, {
|
}, {
|
||||||
key: 'local',
|
key: 'local',
|
||||||
title: i18n.ts.local,
|
title: i18n.ts.local,
|
||||||
|
|
Loading…
Reference in New Issue