From d5ce896bd2792834f7b43b33e1767e6ec25de01f Mon Sep 17 00:00:00 2001 From: naskya Date: Thu, 13 Apr 2023 11:58:42 +0900 Subject: [PATCH] Change boost button labels --- packages/client/src/components/MkRenoteButton.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/client/src/components/MkRenoteButton.vue b/packages/client/src/components/MkRenoteButton.vue index e2968f796e..77f597e833 100644 --- a/packages/client/src/components/MkRenoteButton.vue +++ b/packages/client/src/components/MkRenoteButton.vue @@ -104,7 +104,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { if (["public", "home"].includes(props.note.visibility)) { buttonActions.push({ - text: i18n.ts.renoteAsUnlisted, + text: `${i18n.ts.renote} (${i18n.ts._visibility.home})`, icons: ["ph-repeat ph-bold ph-lg", "ph-house ph-bold ph-lg"], danger: false, action: () => { @@ -130,7 +130,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { if (props.note.visibility === "specified") { buttonActions.push({ - text: i18n.ts.renoteToRecipients, + text: `${i18n.ts.renote} (${i18n.ts.recipient})`, icons: [ "ph-repeat ph-bold ph-lg", "ph-envelope-simple-open ph-bold ph-lg", @@ -158,7 +158,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { }); } else { buttonActions.push({ - text: i18n.ts.renoteToFollowers, + text: `${i18n.ts.renote} (${i18n.ts._visibility.followers})`, icons: [ "ph-repeat ph-bold ph-lg", "ph-lock-simple-open ph-bold ph-lg",