@everymatrix/cashier-method-details 1.26.0 → 1.27.2

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.
@@ -2,7 +2,7 @@ export const TRANSLATIONS = {
2
2
  "en": {
3
3
  "loading": "Loading...",
4
4
  "amountLabel": "Amount",
5
- "makeDepositButton": "Deposit",
5
+ "makeDepositButton": "DEPOSIT",
6
6
  "confirmDepositText": "Are you sure you want to deposit",
7
7
  "confirmDepositButton": "Ok",
8
8
  "redirectTitle": "You are redirected to the payment\'s provider page",
@@ -10,10 +10,17 @@ export const TRANSLATIONS = {
10
10
  "backToPayment": "Close",
11
11
  "retryText": "Please note that your popup blocker may prevent the payment window from appearing",
12
12
  "retryButton": "RETRY",
13
- "processingButton": "Processing...",
14
- "generalMin": "Min",
15
- "generalMax": "Max",
13
+ "processingButton": "PROCESSING...",
14
+ "generalMin": "Min:",
15
+ "generalMax": "Max:",
16
16
  "amountPlaceholder": "0.00",
17
- "change": "Change"
17
+ "change": "Change",
18
+ "errorEmptyField": "Please enter data",
19
+ "minAmountError": "Amount cannot be smaller than {amount} {currency}",
20
+ "maxAmountError": "Amount cannot be bigger than {amount} {currency}",
21
+ "amountMultiplierError": "Amount should be multiple of {multiplier}",
22
+ "amountIntError": "Amount should be integer value",
23
+ "amountDecimalError": "Amount should have 2 or less digits after decimal point",
24
+ "invalidFieldError": "{field} is invalid"
18
25
  }
19
26
  };