diff options
| author | Frank <[email protected]> | 2026-03-19 18:54:32 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2026-03-19 18:54:32 -0400 |
| commit | 9a58c43ef4de8952f2ba50da7b5f99fc39ad1a5f (patch) | |
| tree | 6891c925a44f0a696e3209b9a3f0000c7d43b89c /packages/console/app/src/routes | |
| parent | 63585db6a7f312f900a7aabc29b4ccbbbf34fb21 (diff) | |
| download | opencode-9a58c43ef4de8952f2ba50da7b5f99fc39ad1a5f.tar.gz opencode-9a58c43ef4de8952f2ba50da7b5f99fc39ad1a5f.zip | |
go: upi translation
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" |
