Skip to content

Commit 9fafa57

Browse files
committed
go: upi pay
1 parent f847564 commit 9fafa57

20 files changed

Lines changed: 32 additions & 4 deletions

File tree

packages/console/app/src/component/icon.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,14 @@ export function IconAlipay(props: JSX.SvgSVGAttributes<SVGSVGElement>) {
7676
)
7777
}
7878

79+
export function IconWechat(props: JSX.SvgSVGAttributes<SVGSVGElement>) {
80+
return (
81+
<svg {...props} viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
82+
<path d="M9.27099 14.6689C8.9532 14.8312 8.56403 14.7122 8.39132 14.4L8.3477 14.3054L6.53019 10.3069C6.52269 10.2588 6.52269 10.2097 6.53019 10.1615C6.53017 10.0735 6.56564 9.98916 6.62857 9.9276C6.6915 9.86603 6.7766 9.83243 6.86462 9.83438C6.93567 9.83269 7.00508 9.85582 7.06091 9.89981L9.24191 11.4265C9.40329 11.5346 9.59293 11.5928 9.78716 11.5937C9.90424 11.5945 10.0203 11.5723 10.1289 11.5283L20.176 7.02816C18.091 4.72544 15.1103 3.43931 12.0045 3.5022C6.4793 3.5022 2.00098 7.23172 2.00098 11.87C2.06681 14.4052 3.35646 16.7515 5.4615 18.1658C5.6878 18.3326 5.78402 18.6241 5.70141 18.8928L5.25067 20.594C5.22336 20.6714 5.20625 20.7521 5.19978 20.8339C5.19777 20.9232 5.23236 21.0094 5.29552 21.0726C5.35868 21.1358 5.44491 21.1703 5.5342 21.1684C5.60098 21.1645 5.66583 21.1445 5.72322 21.1102L7.90423 19.8452C8.06383 19.7467 8.2474 19.6939 8.43494 19.6925C8.53352 19.6923 8.63157 19.707 8.72574 19.7361C9.78781 20.0363 10.8863 20.188 11.99 20.1869C17.5152 20.1869 22.001 16.4574 22.001 11.8554C22.0108 10.4834 21.6301 9.13687 20.903 7.97326L9.35096 14.6253L9.27099 14.6689Z" />
83+
</svg>
84+
)
85+
}
86+
7987
export function IconChevron(props: JSX.SvgSVGAttributes<SVGSVGElement>) {
8088
return (
8189
<svg {...props} width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg">

packages/console/app/src/i18n/ar.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,7 @@ export const dict = {
541541
"workspace.billing.addAction": "إضافة",
542542
"workspace.billing.addBalance": "إضافة رصيد",
543543
"workspace.billing.alipay": "Alipay",
544+
"workspace.billing.wechat": "WeChat Pay",
544545
"workspace.billing.linkedToStripe": "مرتبط بـ Stripe",
545546
"workspace.billing.manage": "إدارة",
546547
"workspace.billing.enable": "تمكين الفوترة",

packages/console/app/src/i18n/br.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,7 @@ export const dict = {
550550
"workspace.billing.addAction": "Adicionar",
551551
"workspace.billing.addBalance": "Adicionar Saldo",
552552
"workspace.billing.alipay": "Alipay",
553+
"workspace.billing.wechat": "WeChat Pay",
553554
"workspace.billing.linkedToStripe": "Vinculado ao Stripe",
554555
"workspace.billing.manage": "Gerenciar",
555556
"workspace.billing.enable": "Ativar Faturamento",

packages/console/app/src/i18n/da.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,7 @@ export const dict = {
546546
"workspace.billing.addAction": "Tilføj",
547547
"workspace.billing.addBalance": "Tilføj saldo",
548548
"workspace.billing.alipay": "Alipay",
549+
"workspace.billing.wechat": "WeChat Pay",
549550
"workspace.billing.linkedToStripe": "Forbundet til Stripe",
550551
"workspace.billing.manage": "Administrer",
551552
"workspace.billing.enable": "Aktiver fakturering",

packages/console/app/src/i18n/de.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,7 @@ export const dict = {
549549
"workspace.billing.addAction": "Hinzufügen",
550550
"workspace.billing.addBalance": "Guthaben aufladen",
551551
"workspace.billing.alipay": "Alipay",
552+
"workspace.billing.wechat": "WeChat Pay",
552553
"workspace.billing.linkedToStripe": "Mit Stripe verbunden",
553554
"workspace.billing.manage": "Verwalten",
554555
"workspace.billing.enable": "Abrechnung aktivieren",

packages/console/app/src/i18n/en.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,7 @@ export const dict = {
541541
"workspace.billing.addAction": "Add",
542542
"workspace.billing.addBalance": "Add Balance",
543543
"workspace.billing.alipay": "Alipay",
544+
"workspace.billing.wechat": "WeChat Pay",
544545
"workspace.billing.linkedToStripe": "Linked to Stripe",
545546
"workspace.billing.manage": "Manage",
546547
"workspace.billing.enable": "Enable Billing",

packages/console/app/src/i18n/es.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,7 @@ export const dict = {
550550
"workspace.billing.addAction": "Añadir",
551551
"workspace.billing.addBalance": "Añadir Saldo",
552552
"workspace.billing.alipay": "Alipay",
553+
"workspace.billing.wechat": "WeChat Pay",
553554
"workspace.billing.linkedToStripe": "Vinculado con Stripe",
554555
"workspace.billing.manage": "Gestionar",
555556
"workspace.billing.enable": "Habilitar Facturación",

packages/console/app/src/i18n/fr.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,7 @@ export const dict = {
552552
"workspace.billing.addAction": "Ajouter",
553553
"workspace.billing.addBalance": "Ajouter un solde",
554554
"workspace.billing.alipay": "Alipay",
555+
"workspace.billing.wechat": "WeChat Pay",
555556
"workspace.billing.linkedToStripe": "Lié à Stripe",
556557
"workspace.billing.manage": "Gérer",
557558
"workspace.billing.enable": "Activer la facturation",

packages/console/app/src/i18n/it.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,7 @@ export const dict = {
548548
"workspace.billing.addAction": "Aggiungi",
549549
"workspace.billing.addBalance": "Aggiungi Saldo",
550550
"workspace.billing.alipay": "Alipay",
551+
"workspace.billing.wechat": "WeChat Pay",
551552
"workspace.billing.linkedToStripe": "Collegato a Stripe",
552553
"workspace.billing.manage": "Gestisci",
553554
"workspace.billing.enable": "Abilita Fatturazione",

packages/console/app/src/i18n/ja.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,7 @@ export const dict = {
547547
"workspace.billing.addAction": "追加",
548548
"workspace.billing.addBalance": "残高を追加",
549549
"workspace.billing.alipay": "Alipay",
550+
"workspace.billing.wechat": "WeChat Pay",
550551
"workspace.billing.linkedToStripe": "Stripeと連携済み",
551552
"workspace.billing.manage": "管理",
552553
"workspace.billing.enable": "課金を有効にする",

0 commit comments

Comments
 (0)