fix(frontend): fix missing localization

This commit is contained in:
syuilo 2023-12-14 17:05:29 +09:00
parent b9318d09ee
commit f7eef546a6
3 changed files with 4 additions and 2 deletions

View file

@ -167,7 +167,7 @@ function previewEmoji(ev: MouseEvent) {
async function copyFromPinnedEmojis() {
const { canceled } = await os.confirm({
type: 'warning',
text: 'a',
text: i18n.ts.overwriteContentConfirm,
});
if (canceled) {
@ -180,7 +180,7 @@ async function copyFromPinnedEmojis() {
async function copyFromPinnedEmojisForReaction() {
const { canceled } = await os.confirm({
type: 'warning',
text: 'a',
text: i18n.ts.overwriteContentConfirm,
});
if (canceled) {