diff options
Diffstat (limited to 'packages/console/app/src/routes')
| -rw-r--r-- | packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx b/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx index 4a64eb1b2..2f8ad8aba 100644 --- a/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx @@ -308,7 +308,7 @@ export function LiteSection() { data-color="ghost" onClick={() => setStore("showModal", true)} > - <span>Other payment methods</span> + <span>{i18n.t("workspace.lite.promo.otherMethods")}</span> <span data-slot="other-methods-icons"> <span> </span> <IconAlipay style={{ width: "16px", height: "16px" }} /> @@ -317,7 +317,11 @@ export function LiteSection() { </span> </button> </div> - <Modal open={store.showModal} onClose={() => setStore("showModal", false)} title="Select payment method"> + <Modal + open={store.showModal} + onClose={() => setStore("showModal", false)} + title={i18n.t("workspace.lite.promo.selectMethod")} + > <div data-slot="modal-actions"> <button type="button" |
