(i18n) translation
This commit is contained in:
parent
b8f9130386
commit
1ec8e267e0
|
@ -986,6 +986,7 @@ enableChartsForFederatedInstances: "リモートサーバーのチャートを
|
||||||
showClipButtonInNoteFooter: "ノートのアクションにクリップを追加"
|
showClipButtonInNoteFooter: "ノートのアクションにクリップを追加"
|
||||||
largeNoteReactions: "ノートのリアクションを大きく表示"
|
largeNoteReactions: "ノートのリアクションを大きく表示"
|
||||||
noteIdOrUrl: "ノートIDまたはURL"
|
noteIdOrUrl: "ノートIDまたはURL"
|
||||||
|
copyEmbedCode: "埋め込みコードをコピー"
|
||||||
|
|
||||||
_achievements:
|
_achievements:
|
||||||
earnedAt: "獲得日時"
|
earnedAt: "獲得日時"
|
||||||
|
|
|
@ -278,7 +278,7 @@ export function getNoteMenu(props: {
|
||||||
},
|
},
|
||||||
(!props.embed) ? {
|
(!props.embed) ? {
|
||||||
icon: 'ti ti-code',
|
icon: 'ti ti-code',
|
||||||
text: "Embed",
|
text: i18n.ts.copyEmbedCode,
|
||||||
action: copyEmbedCode,
|
action: copyEmbedCode,
|
||||||
} : undefined,
|
} : undefined,
|
||||||
instance.translatorAvailable ? {
|
instance.translatorAvailable ? {
|
||||||
|
@ -391,7 +391,7 @@ export function getNoteMenu(props: {
|
||||||
},
|
},
|
||||||
} : undefined, (!props.embed) ? {
|
} : undefined, (!props.embed) ? {
|
||||||
icon: 'ti ti-code',
|
icon: 'ti ti-code',
|
||||||
text: "Embed",
|
text: i18n.ts.copyEmbedCode,
|
||||||
action: copyEmbedCode,
|
action: copyEmbedCode,
|
||||||
} : undefined,]
|
} : undefined,]
|
||||||
.filter(x => x !== undefined);
|
.filter(x => x !== undefined);
|
||||||
|
|
Loading…
Reference in New Issue