@dhis2/ui-forms 10.16.1 → 10.16.3-alpha.1

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.
Files changed (168) hide show
  1. package/package.json +12 -11
  2. package/src/CheckboxFieldFF/CheckboxFieldFF.e2e.stories.js +52 -0
  3. package/src/CheckboxFieldFF/CheckboxFieldFF.js +52 -0
  4. package/src/CheckboxFieldFF/CheckboxFieldFF.prod.stories.js +142 -0
  5. package/src/CheckboxFieldFF/features/can_toggle_a_boolean/index.js +19 -0
  6. package/src/CheckboxFieldFF/features/can_toggle_a_boolean.feature +11 -0
  7. package/src/CheckboxFieldFF/features/can_toggle_a_value/index.js +21 -0
  8. package/src/CheckboxFieldFF/features/can_toggle_a_value.feature +11 -0
  9. package/src/CheckboxFieldFF/features/common/index.js +5 -0
  10. package/src/CheckboxFieldFF/features/displays_error/index.js +18 -0
  11. package/src/CheckboxFieldFF/features/displays_error.feature +6 -0
  12. package/src/FieldGroupFF/FieldGroupFF.js +42 -0
  13. package/src/FieldGroupFF/FieldGroupFF.prod.stories.js +49 -0
  14. package/src/FileInputFieldFF/FileInputFieldFF.e2e.stories.js +272 -0
  15. package/src/FileInputFieldFF/FileInputFieldFF.js +100 -0
  16. package/src/FileInputFieldFF/FileInputFieldFF.prod.stories.js +95 -0
  17. package/src/FileInputFieldFF/features/accepts_file/index.js +40 -0
  18. package/src/FileInputFieldFF/features/accepts_file.feature +13 -0
  19. package/src/FileInputFieldFF/features/common/index.js +9 -0
  20. package/src/FileInputFieldFF/features/displays_error/index.js +18 -0
  21. package/src/FileInputFieldFF/features/displays_error.feature +8 -0
  22. package/src/InputFieldFF/InputFieldFF.e2e.stories.js +19 -0
  23. package/src/InputFieldFF/InputFieldFF.js +58 -0
  24. package/src/InputFieldFF/InputFieldFF.prod.stories.js +102 -0
  25. package/src/InputFieldFF/features/can_set_a_value/index.js +14 -0
  26. package/src/InputFieldFF/features/can_set_a_value.feature +6 -0
  27. package/src/InputFieldFF/features/displays_error/index.js +15 -0
  28. package/src/InputFieldFF/features/displays_error.feature +6 -0
  29. package/src/MultiSelectFieldFF/MultiSelectFieldFF.e2e.stories.js +27 -0
  30. package/src/MultiSelectFieldFF/MultiSelectFieldFF.js +72 -0
  31. package/src/MultiSelectFieldFF/MultiSelectFieldFF.prod.stories.js +79 -0
  32. package/src/MultiSelectFieldFF/features/can_set_a_value/index.js +38 -0
  33. package/src/MultiSelectFieldFF/features/can_set_a_value.feature +14 -0
  34. package/src/MultiSelectFieldFF/features/common/index.js +7 -0
  35. package/src/MultiSelectFieldFF/features/displays_error/index.js +10 -0
  36. package/src/MultiSelectFieldFF/features/displays_error.feature +6 -0
  37. package/src/RadioFieldFF/RadioFieldFF.e2e.stories.js +39 -0
  38. package/src/RadioFieldFF/RadioFieldFF.js +52 -0
  39. package/src/RadioFieldFF/RadioFieldFF.prod.stories.js +104 -0
  40. package/src/RadioFieldFF/features/can_set_a_value/index.js +24 -0
  41. package/src/RadioFieldFF/features/can_set_a_value.feature +7 -0
  42. package/src/RadioFieldFF/features/common/index.js +9 -0
  43. package/src/RadioFieldFF/features/displays_error/index.js +13 -0
  44. package/src/RadioFieldFF/features/displays_error.feature +6 -0
  45. package/src/SimpleSingleSelectFieldFF/SimpleSingleSelectFieldFF.js +172 -0
  46. package/src/SimpleSingleSelectFieldFF/SimpleSingleSelectFieldFF.prod.stories.js +79 -0
  47. package/src/SimpleSingleSelectFieldFF/SimpleSingleSelectFieldFF.test.js +82 -0
  48. package/src/SingleSelectFieldFF/SingleSelectFieldFF.e2e.stories.js +23 -0
  49. package/src/SingleSelectFieldFF/SingleSelectFieldFF.js +70 -0
  50. package/src/SingleSelectFieldFF/SingleSelectFieldFF.prod.stories.js +77 -0
  51. package/src/SingleSelectFieldFF/features/can_set_a_value/index.js +22 -0
  52. package/src/SingleSelectFieldFF/features/can_set_a_value.feature +7 -0
  53. package/src/SingleSelectFieldFF/features/common/index.js +6 -0
  54. package/src/SingleSelectFieldFF/features/displays_error/index.js +10 -0
  55. package/src/SingleSelectFieldFF/features/displays_error.feature +6 -0
  56. package/src/SwitchFieldFF/SwitchFieldFF.e2e.stories.js +52 -0
  57. package/src/SwitchFieldFF/SwitchFieldFF.js +52 -0
  58. package/src/SwitchFieldFF/SwitchFieldFF.prod.stories.js +148 -0
  59. package/src/SwitchFieldFF/features/can_toggle_a_boolean/index.js +19 -0
  60. package/src/SwitchFieldFF/features/can_toggle_a_boolean.feature +11 -0
  61. package/src/SwitchFieldFF/features/can_toggle_a_value/index.js +21 -0
  62. package/src/SwitchFieldFF/features/can_toggle_a_value.feature +11 -0
  63. package/src/SwitchFieldFF/features/common/index.js +5 -0
  64. package/src/SwitchFieldFF/features/displays_error/index.js +18 -0
  65. package/src/SwitchFieldFF/features/displays_error.feature +6 -0
  66. package/src/TextAreaFieldFF/TextAreaFieldFF.e2e.stories.js +23 -0
  67. package/src/TextAreaFieldFF/TextAreaFieldFF.js +57 -0
  68. package/src/TextAreaFieldFF/TextAreaFieldFF.prod.stories.js +111 -0
  69. package/src/TextAreaFieldFF/features/can_set_a_value/index.js +14 -0
  70. package/src/TextAreaFieldFF/features/can_set_a_value.feature +6 -0
  71. package/src/TextAreaFieldFF/features/displays_error/index.js +15 -0
  72. package/src/TextAreaFieldFF/features/displays_error.feature +6 -0
  73. package/src/__tests__/__snapshots__/index.test.js.snap +65 -0
  74. package/src/__tests__/index.test.js +37 -0
  75. package/src/formDecorator.js +80 -0
  76. package/src/index.js +28 -0
  77. package/src/locales/ar/translations.json +30 -0
  78. package/src/locales/ar_IQ/translations.json +30 -0
  79. package/src/locales/ckb/translations.json +30 -0
  80. package/src/locales/cs/translations.json +30 -0
  81. package/src/locales/da/translations.json +30 -0
  82. package/src/locales/en/translations.json +30 -0
  83. package/src/locales/es/translations.json +30 -0
  84. package/src/locales/es_419/translations.json +30 -0
  85. package/src/locales/fr/translations.json +30 -0
  86. package/src/locales/hi_IN/translations.json +30 -0
  87. package/src/locales/id/translations.json +30 -0
  88. package/src/locales/index.js +84 -0
  89. package/src/locales/km/translations.json +30 -0
  90. package/src/locales/ko_KR/translations.json +30 -0
  91. package/src/locales/lo/translations.json +30 -0
  92. package/src/locales/my/translations.json +30 -0
  93. package/src/locales/nb/translations.json +30 -0
  94. package/src/locales/nl/translations.json +30 -0
  95. package/src/locales/prs/translations.json +30 -0
  96. package/src/locales/ps/translations.json +30 -0
  97. package/src/locales/pt/translations.json +30 -0
  98. package/src/locales/pt_BR/translations.json +30 -0
  99. package/src/locales/ro/translations.json +30 -0
  100. package/src/locales/ru/translations.json +30 -0
  101. package/src/locales/si/translations.json +30 -0
  102. package/src/locales/sv/translations.json +30 -0
  103. package/src/locales/tet/translations.json +30 -0
  104. package/src/locales/tg/translations.json +30 -0
  105. package/src/locales/uk/translations.json +30 -0
  106. package/src/locales/ur/translations.json +30 -0
  107. package/src/locales/uz_Latn/translations.json +30 -0
  108. package/src/locales/uz_UZ_Cyrl/translations.json +30 -0
  109. package/src/locales/uz_UZ_Latn/translations.json +30 -0
  110. package/src/locales/vi/translations.json +30 -0
  111. package/src/locales/zh/translations.json +30 -0
  112. package/src/locales/zh_CN/translations.json +30 -0
  113. package/src/shared/helpers/createBlurHandler.js +9 -0
  114. package/src/shared/helpers/createChangeHandler.js +21 -0
  115. package/src/shared/helpers/createFocusHandler.js +9 -0
  116. package/src/shared/helpers/createSelectChangeHandler.js +6 -0
  117. package/src/shared/helpers/createToggleChangeHandler.js +9 -0
  118. package/src/shared/helpers/getValidationText.js +21 -0
  119. package/src/shared/helpers/hasError.js +3 -0
  120. package/src/shared/helpers/isLoading.js +4 -0
  121. package/src/shared/helpers/isValid.js +4 -0
  122. package/src/shared/helpers.js +9 -0
  123. package/src/shared/propTypes.js +48 -0
  124. package/src/transformers/arrayWithIdObjects.js +8 -0
  125. package/src/transformers/index.js +1 -0
  126. package/src/validators/__tests__/alphaNumeric.test.js +29 -0
  127. package/src/validators/__tests__/boolean.test.js +23 -0
  128. package/src/validators/__tests__/composeValidators.test.js +23 -0
  129. package/src/validators/__tests__/createCharacterLengthRange.test.js +59 -0
  130. package/src/validators/__tests__/createEqualTo.test.js +43 -0
  131. package/src/validators/__tests__/createMaxCharacterLength.test.js +24 -0
  132. package/src/validators/__tests__/createMaxNumber.test.js +21 -0
  133. package/src/validators/__tests__/createMinCharacterLength.test.js +24 -0
  134. package/src/validators/__tests__/createMinNumber.test.js +21 -0
  135. package/src/validators/__tests__/createNumberRange.test.js +68 -0
  136. package/src/validators/__tests__/createPattern.test.js +40 -0
  137. package/src/validators/__tests__/dhis2Password.test.js +51 -0
  138. package/src/validators/__tests__/dhis2Username.test.js +75 -0
  139. package/src/validators/__tests__/email.test.js +83 -0
  140. package/src/validators/__tests__/hasValue.test.js +21 -0
  141. package/src/validators/__tests__/integer.test.js +48 -0
  142. package/src/validators/__tests__/internationalPhoneNumber.test.js +49 -0
  143. package/src/validators/__tests__/number.test.js +39 -0
  144. package/src/validators/__tests__/string.test.js +29 -0
  145. package/src/validators/__tests__/url.test.js +106 -0
  146. package/src/validators/alphaNumeric.js +15 -0
  147. package/src/validators/boolean.js +11 -0
  148. package/src/validators/composeValidators.js +8 -0
  149. package/src/validators/createCharacterLengthRange.js +27 -0
  150. package/src/validators/createEqualTo.js +16 -0
  151. package/src/validators/createMaxCharacterLength.js +13 -0
  152. package/src/validators/createMaxNumber.js +13 -0
  153. package/src/validators/createMinCharacterLength.js +13 -0
  154. package/src/validators/createMinNumber.js +13 -0
  155. package/src/validators/createNumberRange.js +28 -0
  156. package/src/validators/createPattern.js +22 -0
  157. package/src/validators/dhis2Password.js +81 -0
  158. package/src/validators/dhis2Username.js +16 -0
  159. package/src/validators/email.js +38 -0
  160. package/src/validators/hasValue.js +8 -0
  161. package/src/validators/helpers/index.js +23 -0
  162. package/src/validators/index.js +20 -0
  163. package/src/validators/integer.js +20 -0
  164. package/src/validators/internationalPhoneNumber.js +56 -0
  165. package/src/validators/number.js +9 -0
  166. package/src/validators/string.js +9 -0
  167. package/src/validators/test-helpers/index.js +21 -0
  168. package/src/validators/url.js +15 -0
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Last opp fil",
3
+ "Upload files": "",
4
+ "Remove": "Fjern",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "Skriv inn minst {{lowerBound}} tegn",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "Passord må inneholde minst 8 karakterer",
17
+ "Password should be no longer than 34 characters": "Passordet kan ikke være lenger enn 34 karakterer",
18
+ "Password should contain at least one lowercase letter": "Passordet må inneholde minst en liten bokstav",
19
+ "Password should contain at least one UPPERCASE letter": "Passordet må inneholdet minst en STOR bokstav",
20
+ "Password should contain at least one number": "Passord må inneholde minst et siffer",
21
+ "Password should have at least one special character": "Passordet skal ha minst ett spesialtegn",
22
+ "Please provide a valid email address": "Vennligst fyll ut en gyldig e-postadresse",
23
+ "Please provide a value": "",
24
+ "Please provide a round number without decimals": "",
25
+ "Please provide a valid international phone number.": "",
26
+ "Please provide a number": "",
27
+ "Please provide a string": "",
28
+ "Please provide a valid url": "Oppgi en gyldig url",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Upload bestand",
3
+ "Upload files": "Upload bestanden",
4
+ "Remove": "Verwijderen",
5
+ "Please provide an alpha-numeric value": "Geef een alfanumerieke waarde op",
6
+ "Please provide a boolean value": "Geef een booleaanse waarde op",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "Voer tussen {{lowerBound}} en {{upperBound}} tekens in",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "Zorg ervoor dat de waarde van deze invoer overeenkomt met de waarde in \"{{otherField}}\".",
9
+ "Please enter a maximum of {{upperBound}} characters": "Voer maximaal {{upperBound}} tekens in",
10
+ "Please enter a number with a maximum of {{upperBound}}": "Voer een getal in met een maximum van {{upperBound}}",
11
+ "Please enter at least {{lowerBound}} characters": "Voer ten minste {{lowerBound}} tekens in",
12
+ "Please enter a number of at least {{lowerBound}}": "Voer een getal in van ten minste {{lowerBound}}",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "Getal mag niet kleiner zijn dan {{lowerBound}} of groter dan {{upperBound}}",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "Zorg ervoor dat de waarde van deze invoer overeenkomt met het patroon {{patternString}}.",
15
+ "Password should be a string": "Wachtwoord moet een tekenreeks zijn",
16
+ "Password should be at least 8 characters long": "Wachtwoord moet minimaal 8 tekens lang zijn",
17
+ "Password should be no longer than 34 characters": "Wachtwoord mag niet langer zijn dan 34 tekens",
18
+ "Password should contain at least one lowercase letter": "Wachtwoord moet minimaal één kleine letter bevatten",
19
+ "Password should contain at least one UPPERCASE letter": "Wachtwoord moet minimaal één HOOFDLETTER bevatten",
20
+ "Password should contain at least one number": "Wachtwoord moet minimaal één cijfer bevatten",
21
+ "Password should have at least one special character": "Wachtwoord moet minimaal één speciaal teken bevatten",
22
+ "Please provide a valid email address": "geef alstublieft een geldig email adres",
23
+ "Please provide a value": "Geef een waarde op",
24
+ "Please provide a round number without decimals": "Geef een rond getal op zonder decimalen",
25
+ "Please provide a valid international phone number.": "Geef een geldig internationaal telefoonnummer op.",
26
+ "Please provide a number": "Geef een nummer op",
27
+ "Please provide a string": "Geef een tekenreeks op",
28
+ "Please provide a valid url": "Geef een geldige URL op",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "Geef een gebruikersnaam op tussen 4 en 255 tekens lang en eventueel gescheiden door . _ - of @"
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "بارگیری فایل",
3
+ "Upload files": "",
4
+ "Remove": "حذف",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "فایل پورته کړئ",
3
+ "Upload files": "",
4
+ "Remove": "لرې کول",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Carregar arquivo",
3
+ "Upload files": "Carregar arquivos",
4
+ "Remove": "Remover",
5
+ "Please provide an alpha-numeric value": "Fornecer um valor alfanumérico",
6
+ "Please provide a boolean value": "Forneça um valor booleano",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "Introduzir entre {{lowerBound}} e {{upperBound}} caracteres",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "Por favor, certifique-se de que o valor deste campo corresponde ao valor em \"{{otherField}}\".",
9
+ "Please enter a maximum of {{upperBound}} characters": "Introduza um máximo de {{upperBound}} caracteres",
10
+ "Please enter a number with a maximum of {{upperBound}}": "Introduza um número com um máximo de {{upperBound}}",
11
+ "Please enter at least {{lowerBound}} characters": "Introduza pelo menos {{lowerBound}} caracteres",
12
+ "Please enter a number of at least {{lowerBound}}": "Por favor, introduza um número de, pelo menos {{lowerBound}}",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "O número não pode ser inferior a {{lowerBound}} ou superior a {{upperBound}}",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "Certifique-se de que o valor deste campo corresponde ao padrão {{patternString}}.",
15
+ "Password should be a string": "A senha deve ser uma cadeia de caracteres",
16
+ "Password should be at least 8 characters long": "A senha deve ter pelo menos 8 caracteres",
17
+ "Password should be no longer than 34 characters": "A senha não deve ter mais que 34 caracteres",
18
+ "Password should contain at least one lowercase letter": "A senha deve conter pelo menos uma letra minúscula",
19
+ "Password should contain at least one UPPERCASE letter": "A senha deve conter pelo menos uma letra MAIÚSCULA",
20
+ "Password should contain at least one number": "A senha deve conter pelo menos um número",
21
+ "Password should have at least one special character": "A senha deve ter pelo menos um caractere especial",
22
+ "Please provide a valid email address": "Por favor forneça um endereço de e-mail válido",
23
+ "Please provide a value": "Forneça um valor",
24
+ "Please provide a round number without decimals": "Forneça um número inteiro sem decimais",
25
+ "Please provide a valid international phone number.": "Indique um número de telefone internacional válido.",
26
+ "Please provide a number": "Forneça um número",
27
+ "Please provide a string": "Forneça um texto",
28
+ "Please provide a valid url": "Forneça uma URL válida",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "Forneça um nome de utilizador com um comprimento entre 4 e 255 caracteres e possivelmente separado por . _ - ou @"
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Carregar arquivo",
3
+ "Upload files": "",
4
+ "Remove": "Remover",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a valid email address": "",
23
+ "Please provide a value": "Forneça um valor",
24
+ "Please provide a round number without decimals": "",
25
+ "Please provide a valid international phone number.": "",
26
+ "Please provide a number": "",
27
+ "Please provide a string": "",
28
+ "Please provide a valid url": "",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Incarcare fișier",
3
+ "Upload files": "",
4
+ "Remove": "",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "Introduceți o adresă de e-mail validă",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": "Introduceți o adresă URL validă"
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Загрузить файл",
3
+ "Upload files": "Загрузить файлы",
4
+ "Remove": "Убрать",
5
+ "Please provide an alpha-numeric value": "Укажите буквенно-цифровое значение",
6
+ "Please provide a boolean value": "Укажите булевое значение",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "Введите от {{lowerBound}} до {{upperBound}} символов.",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "Убедитесь, что введенное значение совпадает со значением в разделе \"{{otherField}}\".",
9
+ "Please enter a maximum of {{upperBound}} characters": "Введите максимум {{upperBound}} символа/ов.",
10
+ "Please enter a number with a maximum of {{upperBound}}": "Введите число, не превышающее {{upperBound}}",
11
+ "Please enter at least {{lowerBound}} characters": "Введите не менее {{lowerBound}} символа/ов.",
12
+ "Please enter a number of at least {{lowerBound}}": "Введите число не менее {{lowerBound}}",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "Число не может быть меньше {{lowerBound}} или больше {{upperBound}}",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "Убедитесь, что введенное значение соответствует формату {{patternString}}.",
15
+ "Password should be a string": "Пароль должен быть строкой",
16
+ "Password should be at least 8 characters long": "Пароль должен состоять не менее чем из 8 символов.",
17
+ "Password should be no longer than 34 characters": "Пароль не должен быть длиннее 34 символов",
18
+ "Password should contain at least one lowercase letter": "Пароль должен содержать хотя бы одну строчную букву",
19
+ "Password should contain at least one UPPERCASE letter": "Пароль должен содержать хотя бы одну заглавную букву",
20
+ "Password should contain at least one number": "Пароль должен содержать хотя бы одну цифру",
21
+ "Password should have at least one special character": "В пароле должен быть хотя бы один специальный символ",
22
+ "Please provide a valid email address": "Введите правильный адрес электронной почты",
23
+ "Please provide a value": "Введите значение",
24
+ "Please provide a round number without decimals": "Введите круглое число без десятичных знаков",
25
+ "Please provide a valid international phone number.": "Укажите действительный международный номер телефона.",
26
+ "Please provide a number": "Введите номер",
27
+ "Please provide a string": "Введите строку",
28
+ "Please provide a valid url": "Введите правильный URL адрес",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "Укажите имя пользователя длиной от 4 до 255 символов по возможности разделенных знаками . _ - или @"
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "",
3
+ "Upload files": "",
4
+ "Remove": "ඉවත් කරන්න",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a valid email address": "",
23
+ "Please provide a value": "",
24
+ "Please provide a round number without decimals": "",
25
+ "Please provide a valid international phone number.": "",
26
+ "Please provide a number": "",
27
+ "Please provide a string": "",
28
+ "Please provide a valid url": "",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "",
3
+ "Upload files": "",
4
+ "Remove": "Avlägsna",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "Lösenordet måste vara minst 8 tecken långt.",
17
+ "Password should be no longer than 34 characters": "Lösenord måste vara kortare än 34 tecken",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "Lösenordet ska innehålla minst en versal bokstav",
20
+ "Password should contain at least one number": "Lösenordet måste innehålla minst en siffra",
21
+ "Password should have at least one special character": "Lösenordet ska ha minst ett specialtecken",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "Ange en giltig epost adress",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "",
3
+ "Upload files": "",
4
+ "Remove": "Hasai",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Боркунии файл",
3
+ "Upload files": "",
4
+ "Remove": "Тоза кардан",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Вивантажити файл",
3
+ "Upload files": "Вивантажити файли",
4
+ "Remove": "Видалити",
5
+ "Please provide an alpha-numeric value": "Вкажіть буквено-цифрове значення",
6
+ "Please provide a boolean value": "Вкажіть логічне значення",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "Введіть від {{lowerBound}} до {{upperBound}} символів",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "Переконайтеся, що значення цього введення відповідає значенню в \"{{otherField}}\".",
9
+ "Please enter a maximum of {{upperBound}} characters": "Введіть максимум {{upperBound}} символів",
10
+ "Please enter a number with a maximum of {{upperBound}}": "Введіть число не більше {{upperBound}}",
11
+ "Please enter at least {{lowerBound}} characters": "Введіть принаймні {{lowerBound}} символів",
12
+ "Please enter a number of at least {{lowerBound}}": "Введіть число не менше {{lowerBound}}",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "Число не може бути меншим за {{lowerBound}} або більшим за {{upperBound}}",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "Переконайтеся, що значення цього введення відповідає шаблону {{patternString}}.",
15
+ "Password should be a string": "Пароль має бути рядком",
16
+ "Password should be at least 8 characters long": "Пароль має містити щонайменше 8 символів",
17
+ "Password should be no longer than 34 characters": "Пароль має містити не більше 34 символів",
18
+ "Password should contain at least one lowercase letter": "Пароль має містити принаймні одну малу літеру",
19
+ "Password should contain at least one UPPERCASE letter": "Пароль має містити принаймні одну ВЕЛИКУ літеру",
20
+ "Password should contain at least one number": "Пароль має містити принаймні одну цифру",
21
+ "Password should have at least one special character": "Пароль має містити принаймні один спеціальний символ",
22
+ "Please provide a valid email address": "Вкажіть дійсну адресу електронної пошти",
23
+ "Please provide a value": "Вкажіть значення",
24
+ "Please provide a round number without decimals": "Вкажіть ціле число без десяткових знаків",
25
+ "Please provide a valid international phone number.": "Вкажіть дійсний міжнародний номер телефону.",
26
+ "Please provide a number": "Вкажіть число",
27
+ "Please provide a string": "Вкажіть рядок",
28
+ "Please provide a valid url": "Вкажіть дійсну URL-адресу",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "",
3
+ "Upload files": "",
4
+ "Remove": "حذف",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "",
17
+ "Password should be no longer than 34 characters": "",
18
+ "Password should contain at least one lowercase letter": "",
19
+ "Password should contain at least one UPPERCASE letter": "",
20
+ "Password should contain at least one number": "",
21
+ "Password should have at least one special character": "",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Faylni yuklash",
3
+ "Upload files": "",
4
+ "Remove": "Олиб ташлаш",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "Ushbu yozuvning qiymati \"{{otherField}}\" dagi qiymatga mos kelishiga ishonch hosil qiling.",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "Parol kamida 8 ta belgidan iborat boʼlishi lozim",
17
+ "Password should be no longer than 34 characters": "Parol 34 ta belgidan oshmasligi lozim",
18
+ "Password should contain at least one lowercase letter": "Parol tarkibida kamida 1 ta kichik harf boʼlishi lozim",
19
+ "Password should contain at least one UPPERCASE letter": "Parol tarkibida kamida 1 ta BOSh harf boʼlishi lozim",
20
+ "Password should contain at least one number": "Parol tarkibida kamida 1 ta raqam boʼlishi lozim",
21
+ "Password should have at least one special character": "Parol tarkibida kamida 1 ta maxsus belgi boʼlishi lozim",
22
+ "Please provide a username between 4 and 255 characters": "",
23
+ "Please provide a valid email address": "Iltimos, amaldagi ye-pochta manzilini koʼrsating",
24
+ "Please provide a value": "",
25
+ "Please provide a round number without decimals": "",
26
+ "Please provide a valid international phone number.": "",
27
+ "Please provide a number": "",
28
+ "Please provide a string": "",
29
+ "Please provide a valid url": "Iltimos, haqiqiy URL manzilni koʼrsating"
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Файлни юклаш",
3
+ "Upload files": "",
4
+ "Remove": "Олиб ташлаш",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "Ушбу ёзувнинг қиймати \"{{otherField}}\" даги қийматга мос келишига ишонч ҳосил қилинг.",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "Камида 21 {{lowerBound}} та белгини киритинг",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "Пароль камида 8 та белгидан иборат бўлиши лозим",
17
+ "Password should be no longer than 34 characters": "Пароль 34 та белгидан ошмаслиги лозим",
18
+ "Password should contain at least one lowercase letter": "Пароль таркибида камида 1 та кичик ҳарф бўлиши лозим",
19
+ "Password should contain at least one UPPERCASE letter": "Пароль таркибида камида 1 та БОШ ҳарф бўлиши лозим",
20
+ "Password should contain at least one number": "Пароль таркибида камида 1 та рақам бўлиши лозим",
21
+ "Password should have at least one special character": "Пароль таркибида камида 1 та махсус белги бўлиши лозим",
22
+ "Please provide a valid email address": "Илтимос, амалдаги е-почта манзилини кўрсатинг",
23
+ "Please provide a value": "",
24
+ "Please provide a round number without decimals": "",
25
+ "Please provide a valid international phone number.": "",
26
+ "Please provide a number": "",
27
+ "Please provide a string": "",
28
+ "Please provide a valid url": "Илтимос, ҳақиқий URL манзилни кўрсатинг",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Faylni yuklash",
3
+ "Upload files": "",
4
+ "Remove": "Олиб ташлаш",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "Ushbu yozuvning qiymati \"{{otherField}}\" dagi qiymatga mos kelishiga ishonch hosil qiling.",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "Parol kamida 8 ta belgidan iborat boʼlishi lozim",
17
+ "Password should be no longer than 34 characters": "Parol 34 ta belgidan oshmasligi lozim",
18
+ "Password should contain at least one lowercase letter": "Parol tarkibida kamida 1 ta kichik harf boʼlishi lozim",
19
+ "Password should contain at least one UPPERCASE letter": "Parol tarkibida kamida 1 ta BOSh harf boʼlishi lozim",
20
+ "Password should contain at least one number": "Parol tarkibida kamida 1 ta raqam boʼlishi lozim",
21
+ "Password should have at least one special character": "Parol tarkibida kamida 1 ta maxsus belgi boʼlishi lozim",
22
+ "Please provide a valid email address": "Iltimos, amaldagi ye-pochta manzilini koʼrsating",
23
+ "Please provide a value": "",
24
+ "Please provide a round number without decimals": "",
25
+ "Please provide a valid international phone number.": "",
26
+ "Please provide a number": "",
27
+ "Please provide a string": "",
28
+ "Please provide a valid url": "Iltimos, haqiqiy URL manzilni koʼrsating",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "Tải một tập tin",
3
+ "Upload files": "",
4
+ "Remove": "Tháo ra",
5
+ "Please provide an alpha-numeric value": "",
6
+ "Please provide a boolean value": "",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "",
9
+ "Please enter a maximum of {{upperBound}} characters": "",
10
+ "Please enter a number with a maximum of {{upperBound}}": "",
11
+ "Please enter at least {{lowerBound}} characters": "Hãy nhập ít nhất {{lowerBound}} ký tự.",
12
+ "Please enter a number of at least {{lowerBound}}": "",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "",
15
+ "Password should be a string": "",
16
+ "Password should be at least 8 characters long": "Mật khẩu phải dài ít nhất 8 ký tự",
17
+ "Password should be no longer than 34 characters": "Mật khẩu không được dài hơn 34 ký tự",
18
+ "Password should contain at least one lowercase letter": "Mật khẩu phải chứa ít nhất một chữ cái viết thường",
19
+ "Password should contain at least one UPPERCASE letter": "Mật khẩu phải chứa ít nhất một chữ cái viết hoa",
20
+ "Password should contain at least one number": "Mật khẩu phải chứa ít nhất một số",
21
+ "Password should have at least one special character": "Mật khẩu phải có ít nhất một ký tự đặc biệt",
22
+ "Please provide a valid email address": "Vui lòng cung cấp một địa chỉ email hợp lệ",
23
+ "Please provide a value": "",
24
+ "Please provide a round number without decimals": "",
25
+ "Please provide a valid international phone number.": "",
26
+ "Please provide a number": "",
27
+ "Please provide a string": "",
28
+ "Please provide a valid url": "Vui lòng cung cấp một url hợp lệ",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": ""
30
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "Upload file": "上传文件",
3
+ "Upload files": "上传文件",
4
+ "Remove": "移除",
5
+ "Please provide an alpha-numeric value": "请提供字母数字值",
6
+ "Please provide a boolean value": "请提供一个布尔值",
7
+ "Please enter between {{lowerBound}} and {{upperBound}} characters": "请在 {{lowerBound}} 和 {{upperBound}} 个字符之间输入",
8
+ "Please make sure the value of this input matches the value in \"{{otherField}}\".": "请确保此输入的值与“ {{otherField}}”中的值匹配。",
9
+ "Please enter a maximum of {{upperBound}} characters": "请输入最多 {{upperBound}} 个字符",
10
+ "Please enter a number with a maximum of {{upperBound}}": "请输入一个最大为 {{upperBound}} 的数字",
11
+ "Please enter at least {{lowerBound}} characters": "请至少输入 {{lowerBound}} 个字符",
12
+ "Please enter a number of at least {{lowerBound}}": "请输入至少为 {{lowerBound}} 的数字",
13
+ "Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "数字不能小于 {{lowerBound}} 或大于 {{upperBound}}",
14
+ "Please make sure the value of this input matches the pattern {{patternString}}.": "请确保此输入的值与模式 {{patternString}} 匹配。",
15
+ "Password should be a string": "密码应该是一个字符串",
16
+ "Password should be at least 8 characters long": "口令至少8个字符",
17
+ "Password should be no longer than 34 characters": "口令不能超过34字符",
18
+ "Password should contain at least one lowercase letter": "口令至少包括应该小写字母",
19
+ "Password should contain at least one UPPERCASE letter": "口令至少包括一个大写字母",
20
+ "Password should contain at least one number": "口令至少包括应该数字",
21
+ "Password should have at least one special character": "口令至少包括一个特殊字符",
22
+ "Please provide a valid email address": "有效的邮箱",
23
+ "Please provide a value": "请提供值",
24
+ "Please provide a round number without decimals": "请提供一个没有小数的整数",
25
+ "Please provide a valid international phone number.": "请提供有效的国际电话号码。",
26
+ "Please provide a number": "请提供号码",
27
+ "Please provide a string": "请提供字符串",
28
+ "Please provide a valid url": "有效的URL",
29
+ "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "请提供长度在 4 到 255 个字符之间的用户名,并可能以 . _ - 或者 @分隔。"
30
+ }