(i18n) translation

This commit is contained in:
kakkokari-gtyih 2023-04-05 16:13:53 +09:00
parent b8f9130386
commit 1ec8e267e0
2 changed files with 3 additions and 2 deletions

View File

@ -986,6 +986,7 @@ enableChartsForFederatedInstances: "リモートサーバーのチャートを
showClipButtonInNoteFooter: "ノートのアクションにクリップを追加"
largeNoteReactions: "ノートのリアクションを大きく表示"
noteIdOrUrl: "ートIDまたはURL"
copyEmbedCode: "埋め込みコードをコピー"
_achievements:
earnedAt: "獲得日時"

View File

@ -278,7 +278,7 @@ export function getNoteMenu(props: {
},
(!props.embed) ? {
icon: 'ti ti-code',
text: "Embed",
text: i18n.ts.copyEmbedCode,
action: copyEmbedCode,
} : undefined,
instance.translatorAvailable ? {
@ -391,7 +391,7 @@ export function getNoteMenu(props: {
},
} : undefined, (!props.embed) ? {
icon: 'ti ti-code',
text: "Embed",
text: i18n.ts.copyEmbedCode,
action: copyEmbedCode,
} : undefined,]
.filter(x => x !== undefined);