@bigbinary/neeto-payments-frontend 6.1.28 → 6.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/javascript/src/translations/ar.json +17 -6
- package/app/javascript/src/translations/bg.json +17 -6
- package/app/javascript/src/translations/ca.json +17 -6
- package/app/javascript/src/translations/cs.json +17 -6
- package/app/javascript/src/translations/da.json +17 -6
- package/app/javascript/src/translations/de.json +17 -6
- package/app/javascript/src/translations/es-MX.json +17 -6
- package/app/javascript/src/translations/es.json +17 -6
- package/app/javascript/src/translations/et.json +17 -6
- package/app/javascript/src/translations/fi.json +17 -6
- package/app/javascript/src/translations/fil.json +17 -6
- package/app/javascript/src/translations/fr.json +17 -6
- package/app/javascript/src/translations/he.json +17 -6
- package/app/javascript/src/translations/hi.json +17 -6
- package/app/javascript/src/translations/hr.json +17 -6
- package/app/javascript/src/translations/hu.json +17 -6
- package/app/javascript/src/translations/id.json +17 -6
- package/app/javascript/src/translations/it.json +17 -6
- package/app/javascript/src/translations/ja.json +17 -6
- package/app/javascript/src/translations/ko.json +17 -6
- package/app/javascript/src/translations/nl.json +17 -6
- package/app/javascript/src/translations/pl.json +17 -6
- package/app/javascript/src/translations/pt-BR.json +17 -6
- package/app/javascript/src/translations/pt.json +17 -6
- package/app/javascript/src/translations/ro.json +17 -6
- package/app/javascript/src/translations/ru.json +17 -6
- package/app/javascript/src/translations/sk.json +17 -6
- package/app/javascript/src/translations/sl.json +17 -6
- package/app/javascript/src/translations/sv.json +17 -6
- package/app/javascript/src/translations/th.json +17 -6
- package/app/javascript/src/translations/tr.json +17 -6
- package/app/javascript/src/translations/uk.json +17 -6
- package/app/javascript/src/translations/vi.json +17 -6
- package/app/javascript/src/translations/zh-CN.json +17 -6
- package/app/javascript/src/translations/zh-TW.json +17 -6
- package/package.json +1 -1
|
@@ -146,19 +146,27 @@
|
|
|
146
146
|
},
|
|
147
147
|
"payment": {
|
|
148
148
|
"transaction": {
|
|
149
|
-
"label": "輸入 UPI 交易 ID",
|
|
149
|
+
"label": "輸入 12 位數的 UPI 交易 ID",
|
|
150
150
|
"placeholder": "123456789012",
|
|
151
151
|
"required": "交易 ID 是必需的",
|
|
152
|
-
"sixCharacters": "交易 ID 必須有 6 個字符"
|
|
152
|
+
"sixCharacters": "交易 ID 必須有 6 個字符",
|
|
153
|
+
"identifierOrScreenshot": "請輸入交易 ID 或上傳付款截圖"
|
|
153
154
|
},
|
|
154
|
-
"vpaText": "將上述金額發送到以下 UPI ID
|
|
155
|
-
"vpaText_other": "
|
|
155
|
+
"vpaText": "將上述金額發送到以下 UPI ID,並輸入 UPI 交易 ID 或上傳付款截圖。",
|
|
156
|
+
"vpaText_other": "將上述金額發送到以下任何 UPI ID,並輸入 UPI 交易 ID 或上傳付款截圖。",
|
|
156
157
|
"buttons": {
|
|
157
158
|
"submit": "提交",
|
|
158
159
|
"back": "返回",
|
|
159
160
|
"confirmPayment": "確認付款",
|
|
160
161
|
"rejectPayment": "拒絕付款",
|
|
161
162
|
"markAsPaid": "標記為已付款"
|
|
163
|
+
},
|
|
164
|
+
"screenshot": {
|
|
165
|
+
"label": "上傳付款截圖",
|
|
166
|
+
"alt": "付款截圖",
|
|
167
|
+
"uploadText": "點擊上傳付款截圖",
|
|
168
|
+
"formatHint": "PNG, JPG 最大 {{maxSize}}MB",
|
|
169
|
+
"tooLarge": "檔案大小必須小於 {{maxSize}}MB"
|
|
162
170
|
}
|
|
163
171
|
}
|
|
164
172
|
},
|
|
@@ -361,7 +369,9 @@
|
|
|
361
369
|
"tryAgain": "再試一次",
|
|
362
370
|
"processingFailed": "處理失敗",
|
|
363
371
|
"confirmationPending": "確認待處理",
|
|
364
|
-
"notes": "備註"
|
|
372
|
+
"notes": "備註",
|
|
373
|
+
"or": "或",
|
|
374
|
+
"viewScreenshot": "查看截圖"
|
|
365
375
|
},
|
|
366
376
|
"alert": {
|
|
367
377
|
"stripe": {
|
|
@@ -557,7 +567,8 @@
|
|
|
557
567
|
"canceled": "付款已取消",
|
|
558
568
|
"pending": "付款待處理",
|
|
559
569
|
"failed": "付款失敗"
|
|
560
|
-
}
|
|
570
|
+
},
|
|
571
|
+
"screenshotUploadedByCustomer": "客戶已上傳付款截圖以供付款細節參考。"
|
|
561
572
|
},
|
|
562
573
|
"transactionPane": {
|
|
563
574
|
"transactionId": "交易ID:",
|
package/package.json
CHANGED