Handy_Cao vor 5 Monaten
Ursprung
Commit
75dd1a1faf

+ 4 - 1
public/locales/en-US.json

@@ -1409,7 +1409,10 @@
                 "accountname": "Name",
                 "amount": "Amount",
                 "pay": "Pay",
-                "tips": "Failed to open"
+                "tips": "Failed to open",
+                "title1": "Scan the code to pay",
+                "wechat": "Please use wechat to scan the code for payment",
+                "alipay": "Please use Alipay to scan the code for payment"
             }
         },
         "reciver": {

+ 4 - 1
public/locales/th-TH.json

@@ -1412,7 +1412,10 @@
                 "accountname": "ชื่อ",
                 "amount": "ยอดเงิน",
                 "pay": "ชำระเงิน",
-                "tips": "ล้มเหลวในการเปิด"
+                "tips": "ล้มเหลวในการเปิด",
+                "title1": "การชำระเงินผ่านรหัส",
+                "wechat": "กรุณาใช้รหัสผ่าน MicroBubbles เพื่อการชำระเงิน",
+                "alipay": "กรุณาใช้รหัสการชำระเงิน"
             }
         },
         "reciver": {

+ 4 - 1
public/locales/vi-VN.json

@@ -1409,7 +1409,10 @@
                 "accountname": "Họ tên",
                 "amount": "Số tiền",
                 "pay": "Thanh toán",
-                "tips": "Mở cửa thất bại"
+                "tips": "Mở cửa thất bại",
+                "title1": "Quét mã thanh toán",
+                "wechat": "Xin vui lòng sử dụng vi-quét mã thanh toán",
+                "alipay": "Xin vui lòng sử dụng paypal quét mã thanh toán"
             }
         },
         "reciver": {

+ 4 - 1
public/locales/zh-CN.json

@@ -1412,7 +1412,10 @@
                 "accountname": "姓名",
                 "amount": "金额",
                 "pay": "支付",
-                "tips": "打开失败"
+                "tips": "打开失败",
+                "title1": "扫码付款",
+                "wechat": "请使用微信扫码支付",
+                "alipay": "请使用支付宝扫码支付"
             }
         },
         "reciver": {

+ 4 - 1
public/locales/zh-TW.json

@@ -1412,7 +1412,10 @@
                 "accountname": "姓名",
                 "amount": "金額",
                 "pay": "付款",
-                "tips": "打開失敗"
+                "tips": "打開失敗",
+                "title1": "掃碼付款",
+                "wechat": "請使用微信掃碼支付",
+                "alipay": "請使用支付寶掃碼支付"
             }
         },
         "reciver": {

+ 3 - 3
src/packages/tss/views/bank/wallet/components/inoutapply/Index.vue

@@ -40,12 +40,12 @@
                 </div>
             </app-pull-refresh>
         </app-view>
-        <ActionSheet v-model:show="showQRCode" title="扫码付款" @closed="selectedItem = undefined">
+        <ActionSheet v-model:show="showQRCode" :title="t('banksign.wallet.inoutapply.title1')" @closed="selectedItem = undefined">
             <div style="display: flex;flex-direction: column;align-items: center;padding-bottom: 100px;"
                 v-if="selectedItem">
                 <app-qrcode :text="selectedItem.url" :width="240" :margin="3" />
-                <span style="color: #999;" v-if="selectedItem.bankcode === 'wechat'">请使用微信扫码支付</span>
-                <span style="color: #999;" v-if="selectedItem.bankcode === 'alipay'">请使用支付宝扫码支付</span>
+                <span style="color: #999;" v-if="selectedItem.bankcode === 'wechat'">{{ t('banksign.wallet.inoutapply.wechat') }}</span>
+                <span style="color: #999;" v-if="selectedItem.bankcode === 'alipay'">{{ t('banksign.wallet.inoutapply.alipay') }}</span>
             </div>
         </ActionSheet>
     </app-modal>