@dhis2/ui-forms 10.16.2 → 10.16.3
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/package.json +12 -11
- package/src/CheckboxFieldFF/CheckboxFieldFF.e2e.stories.js +52 -0
- package/src/CheckboxFieldFF/CheckboxFieldFF.js +52 -0
- package/src/CheckboxFieldFF/CheckboxFieldFF.prod.stories.js +142 -0
- package/src/CheckboxFieldFF/features/can_toggle_a_boolean/index.js +19 -0
- package/src/CheckboxFieldFF/features/can_toggle_a_boolean.feature +11 -0
- package/src/CheckboxFieldFF/features/can_toggle_a_value/index.js +21 -0
- package/src/CheckboxFieldFF/features/can_toggle_a_value.feature +11 -0
- package/src/CheckboxFieldFF/features/common/index.js +5 -0
- package/src/CheckboxFieldFF/features/displays_error/index.js +18 -0
- package/src/CheckboxFieldFF/features/displays_error.feature +6 -0
- package/src/FieldGroupFF/FieldGroupFF.js +42 -0
- package/src/FieldGroupFF/FieldGroupFF.prod.stories.js +49 -0
- package/src/FileInputFieldFF/FileInputFieldFF.e2e.stories.js +272 -0
- package/src/FileInputFieldFF/FileInputFieldFF.js +100 -0
- package/src/FileInputFieldFF/FileInputFieldFF.prod.stories.js +95 -0
- package/src/FileInputFieldFF/features/accepts_file/index.js +40 -0
- package/src/FileInputFieldFF/features/accepts_file.feature +13 -0
- package/src/FileInputFieldFF/features/common/index.js +9 -0
- package/src/FileInputFieldFF/features/displays_error/index.js +18 -0
- package/src/FileInputFieldFF/features/displays_error.feature +8 -0
- package/src/InputFieldFF/InputFieldFF.e2e.stories.js +19 -0
- package/src/InputFieldFF/InputFieldFF.js +58 -0
- package/src/InputFieldFF/InputFieldFF.prod.stories.js +102 -0
- package/src/InputFieldFF/features/can_set_a_value/index.js +14 -0
- package/src/InputFieldFF/features/can_set_a_value.feature +6 -0
- package/src/InputFieldFF/features/displays_error/index.js +15 -0
- package/src/InputFieldFF/features/displays_error.feature +6 -0
- package/src/MultiSelectFieldFF/MultiSelectFieldFF.e2e.stories.js +27 -0
- package/src/MultiSelectFieldFF/MultiSelectFieldFF.js +72 -0
- package/src/MultiSelectFieldFF/MultiSelectFieldFF.prod.stories.js +79 -0
- package/src/MultiSelectFieldFF/features/can_set_a_value/index.js +38 -0
- package/src/MultiSelectFieldFF/features/can_set_a_value.feature +14 -0
- package/src/MultiSelectFieldFF/features/common/index.js +7 -0
- package/src/MultiSelectFieldFF/features/displays_error/index.js +10 -0
- package/src/MultiSelectFieldFF/features/displays_error.feature +6 -0
- package/src/RadioFieldFF/RadioFieldFF.e2e.stories.js +39 -0
- package/src/RadioFieldFF/RadioFieldFF.js +52 -0
- package/src/RadioFieldFF/RadioFieldFF.prod.stories.js +104 -0
- package/src/RadioFieldFF/features/can_set_a_value/index.js +24 -0
- package/src/RadioFieldFF/features/can_set_a_value.feature +7 -0
- package/src/RadioFieldFF/features/common/index.js +9 -0
- package/src/RadioFieldFF/features/displays_error/index.js +13 -0
- package/src/RadioFieldFF/features/displays_error.feature +6 -0
- package/src/SimpleSingleSelectFieldFF/SimpleSingleSelectFieldFF.js +172 -0
- package/src/SimpleSingleSelectFieldFF/SimpleSingleSelectFieldFF.prod.stories.js +79 -0
- package/src/SimpleSingleSelectFieldFF/SimpleSingleSelectFieldFF.test.js +82 -0
- package/src/SingleSelectFieldFF/SingleSelectFieldFF.e2e.stories.js +23 -0
- package/src/SingleSelectFieldFF/SingleSelectFieldFF.js +70 -0
- package/src/SingleSelectFieldFF/SingleSelectFieldFF.prod.stories.js +77 -0
- package/src/SingleSelectFieldFF/features/can_set_a_value/index.js +22 -0
- package/src/SingleSelectFieldFF/features/can_set_a_value.feature +7 -0
- package/src/SingleSelectFieldFF/features/common/index.js +6 -0
- package/src/SingleSelectFieldFF/features/displays_error/index.js +10 -0
- package/src/SingleSelectFieldFF/features/displays_error.feature +6 -0
- package/src/SwitchFieldFF/SwitchFieldFF.e2e.stories.js +52 -0
- package/src/SwitchFieldFF/SwitchFieldFF.js +52 -0
- package/src/SwitchFieldFF/SwitchFieldFF.prod.stories.js +148 -0
- package/src/SwitchFieldFF/features/can_toggle_a_boolean/index.js +19 -0
- package/src/SwitchFieldFF/features/can_toggle_a_boolean.feature +11 -0
- package/src/SwitchFieldFF/features/can_toggle_a_value/index.js +21 -0
- package/src/SwitchFieldFF/features/can_toggle_a_value.feature +11 -0
- package/src/SwitchFieldFF/features/common/index.js +5 -0
- package/src/SwitchFieldFF/features/displays_error/index.js +18 -0
- package/src/SwitchFieldFF/features/displays_error.feature +6 -0
- package/src/TextAreaFieldFF/TextAreaFieldFF.e2e.stories.js +23 -0
- package/src/TextAreaFieldFF/TextAreaFieldFF.js +57 -0
- package/src/TextAreaFieldFF/TextAreaFieldFF.prod.stories.js +111 -0
- package/src/TextAreaFieldFF/features/can_set_a_value/index.js +14 -0
- package/src/TextAreaFieldFF/features/can_set_a_value.feature +6 -0
- package/src/TextAreaFieldFF/features/displays_error/index.js +15 -0
- package/src/TextAreaFieldFF/features/displays_error.feature +6 -0
- package/src/__tests__/__snapshots__/index.test.js.snap +65 -0
- package/src/__tests__/index.test.js +37 -0
- package/src/formDecorator.js +80 -0
- package/src/index.js +28 -0
- package/src/locales/ar/translations.json +30 -0
- package/src/locales/ar_IQ/translations.json +30 -0
- package/src/locales/ckb/translations.json +30 -0
- package/src/locales/cs/translations.json +30 -0
- package/src/locales/da/translations.json +30 -0
- package/src/locales/en/translations.json +30 -0
- package/src/locales/es/translations.json +30 -0
- package/src/locales/es_419/translations.json +30 -0
- package/src/locales/fr/translations.json +30 -0
- package/src/locales/hi_IN/translations.json +30 -0
- package/src/locales/id/translations.json +30 -0
- package/src/locales/index.js +84 -0
- package/src/locales/km/translations.json +30 -0
- package/src/locales/ko_KR/translations.json +30 -0
- package/src/locales/lo/translations.json +30 -0
- package/src/locales/my/translations.json +30 -0
- package/src/locales/nb/translations.json +30 -0
- package/src/locales/nl/translations.json +30 -0
- package/src/locales/prs/translations.json +30 -0
- package/src/locales/ps/translations.json +30 -0
- package/src/locales/pt/translations.json +30 -0
- package/src/locales/pt_BR/translations.json +30 -0
- package/src/locales/ro/translations.json +30 -0
- package/src/locales/ru/translations.json +30 -0
- package/src/locales/si/translations.json +30 -0
- package/src/locales/sv/translations.json +30 -0
- package/src/locales/tet/translations.json +30 -0
- package/src/locales/tg/translations.json +30 -0
- package/src/locales/uk/translations.json +30 -0
- package/src/locales/ur/translations.json +30 -0
- package/src/locales/uz_Latn/translations.json +30 -0
- package/src/locales/uz_UZ_Cyrl/translations.json +30 -0
- package/src/locales/uz_UZ_Latn/translations.json +30 -0
- package/src/locales/vi/translations.json +30 -0
- package/src/locales/zh/translations.json +30 -0
- package/src/locales/zh_CN/translations.json +30 -0
- package/src/shared/helpers/createBlurHandler.js +9 -0
- package/src/shared/helpers/createChangeHandler.js +21 -0
- package/src/shared/helpers/createFocusHandler.js +9 -0
- package/src/shared/helpers/createSelectChangeHandler.js +6 -0
- package/src/shared/helpers/createToggleChangeHandler.js +9 -0
- package/src/shared/helpers/getValidationText.js +21 -0
- package/src/shared/helpers/hasError.js +3 -0
- package/src/shared/helpers/isLoading.js +4 -0
- package/src/shared/helpers/isValid.js +4 -0
- package/src/shared/helpers.js +9 -0
- package/src/shared/propTypes.js +48 -0
- package/src/transformers/arrayWithIdObjects.js +8 -0
- package/src/transformers/index.js +1 -0
- package/src/validators/__tests__/alphaNumeric.test.js +29 -0
- package/src/validators/__tests__/boolean.test.js +23 -0
- package/src/validators/__tests__/composeValidators.test.js +23 -0
- package/src/validators/__tests__/createCharacterLengthRange.test.js +59 -0
- package/src/validators/__tests__/createEqualTo.test.js +43 -0
- package/src/validators/__tests__/createMaxCharacterLength.test.js +24 -0
- package/src/validators/__tests__/createMaxNumber.test.js +21 -0
- package/src/validators/__tests__/createMinCharacterLength.test.js +24 -0
- package/src/validators/__tests__/createMinNumber.test.js +21 -0
- package/src/validators/__tests__/createNumberRange.test.js +68 -0
- package/src/validators/__tests__/createPattern.test.js +40 -0
- package/src/validators/__tests__/dhis2Password.test.js +51 -0
- package/src/validators/__tests__/dhis2Username.test.js +75 -0
- package/src/validators/__tests__/email.test.js +83 -0
- package/src/validators/__tests__/hasValue.test.js +21 -0
- package/src/validators/__tests__/integer.test.js +48 -0
- package/src/validators/__tests__/internationalPhoneNumber.test.js +49 -0
- package/src/validators/__tests__/number.test.js +39 -0
- package/src/validators/__tests__/string.test.js +29 -0
- package/src/validators/__tests__/url.test.js +106 -0
- package/src/validators/alphaNumeric.js +15 -0
- package/src/validators/boolean.js +11 -0
- package/src/validators/composeValidators.js +8 -0
- package/src/validators/createCharacterLengthRange.js +27 -0
- package/src/validators/createEqualTo.js +16 -0
- package/src/validators/createMaxCharacterLength.js +13 -0
- package/src/validators/createMaxNumber.js +13 -0
- package/src/validators/createMinCharacterLength.js +13 -0
- package/src/validators/createMinNumber.js +13 -0
- package/src/validators/createNumberRange.js +28 -0
- package/src/validators/createPattern.js +22 -0
- package/src/validators/dhis2Password.js +81 -0
- package/src/validators/dhis2Username.js +16 -0
- package/src/validators/email.js +38 -0
- package/src/validators/hasValue.js +8 -0
- package/src/validators/helpers/index.js +23 -0
- package/src/validators/index.js +20 -0
- package/src/validators/integer.js +20 -0
- package/src/validators/internationalPhoneNumber.js +56 -0
- package/src/validators/number.js +9 -0
- package/src/validators/string.js +9 -0
- package/src/validators/test-helpers/index.js +21 -0
- package/src/validators/url.js +15 -0
package/src/index.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as FinalForm from 'final-form'
|
|
2
|
+
import * as ReactFinalForm from 'react-final-form'
|
|
3
|
+
|
|
4
|
+
export { CheckboxFieldFF } from './CheckboxFieldFF/CheckboxFieldFF.js'
|
|
5
|
+
export { FileInputFieldFF } from './FileInputFieldFF/FileInputFieldFF.js'
|
|
6
|
+
export { InputFieldFF } from './InputFieldFF/InputFieldFF.js'
|
|
7
|
+
export { MultiSelectFieldFF } from './MultiSelectFieldFF/MultiSelectFieldFF.js'
|
|
8
|
+
export { SingleSelectFieldFF } from './SingleSelectFieldFF/SingleSelectFieldFF.js'
|
|
9
|
+
export { RadioFieldFF } from './RadioFieldFF/RadioFieldFF.js'
|
|
10
|
+
export { SwitchFieldFF } from './SwitchFieldFF/SwitchFieldFF.js'
|
|
11
|
+
export { TextAreaFieldFF } from './TextAreaFieldFF/TextAreaFieldFF.js'
|
|
12
|
+
export { FieldGroupFF } from './FieldGroupFF/FieldGroupFF.js'
|
|
13
|
+
|
|
14
|
+
export * from './transformers/index.js'
|
|
15
|
+
export * from './validators/index.js'
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Allows direct access to the FinalForm library. Please note that this is considered advanced
|
|
19
|
+
* usage and that you need to stay up to date with breaking changes in the FinalForm library.
|
|
20
|
+
*/
|
|
21
|
+
export { FinalForm }
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Allows direct access to the ReactFinalForm library. Please note that this is considered
|
|
25
|
+
* advanced usage and that you need to stay up to date with breaking changes in the FinalForm
|
|
26
|
+
* library.
|
|
27
|
+
*/
|
|
28
|
+
export { ReactFinalForm }
|
|
@@ -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}}.": "",
|
|
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": "",
|
|
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": "تکایە یو URLێکی درووست بنووسە"
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Upload file": "Nahrát soubor",
|
|
3
|
+
"Upload files": "Nahrát soubory",
|
|
4
|
+
"Remove": "Odebrat",
|
|
5
|
+
"Please provide an alpha-numeric value": "Uveďte alfanumerickou hodnotu",
|
|
6
|
+
"Please provide a boolean value": "Zadejte prosím booleovskou hodnotu",
|
|
7
|
+
"Please enter between {{lowerBound}} and {{upperBound}} characters": "Zadejte prosím mezi {{lowerBound}} a {{upperBound}} znaky",
|
|
8
|
+
"Please make sure the value of this input matches the value in \"{{otherField}}\".": "Zkontrolujte, zda se hodnota tohoto vstupu shoduje s hodnotou v \"{{otherField}}\".",
|
|
9
|
+
"Please enter a maximum of {{upperBound}} characters": "Zadejte prosím maximálně {{upperBound}} znaků",
|
|
10
|
+
"Please enter a number with a maximum of {{upperBound}}": "Zadejte číslo s maximální hodnotou {{upperBound}}",
|
|
11
|
+
"Please enter at least {{lowerBound}} characters": "Zadejte prosím alespoň {{lowerBound}} znaků",
|
|
12
|
+
"Please enter a number of at least {{lowerBound}}": "Zadejte prosím číslo alespoň {{lowerBound}}",
|
|
13
|
+
"Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "Číslo nesmí být menší než {{lowerBound}} nebo větší než {{upperBound}}",
|
|
14
|
+
"Please make sure the value of this input matches the pattern {{patternString}}.": "Ujistěte se, že hodnota tohoto vstupu odpovídá vzoru {{patternString}}.",
|
|
15
|
+
"Password should be a string": "Heslo by mělo být řetězec",
|
|
16
|
+
"Password should be at least 8 characters long": "Heslo by mělo mít alespoň 8 znaků",
|
|
17
|
+
"Password should be no longer than 34 characters": "Heslo by nemělo být delší než 34 znaků",
|
|
18
|
+
"Password should contain at least one lowercase letter": "Heslo by mělo obsahovat alespoň jedno malé písmeno",
|
|
19
|
+
"Password should contain at least one UPPERCASE letter": "Heslo by mělo obsahovat alespoň jedno VELKÉ písmeno",
|
|
20
|
+
"Password should contain at least one number": "Heslo by mělo obsahovat alespoň jedno číslo",
|
|
21
|
+
"Password should have at least one special character": "Heslo by mělo mít alespoň jeden speciální znak",
|
|
22
|
+
"Please provide a valid email address": "Uveďte platnou e-mailovou adresu",
|
|
23
|
+
"Please provide a value": "Zadejte prosím hodnotu",
|
|
24
|
+
"Please provide a round number without decimals": "Uveďte prosím zaokrouhlené číslo bez desetinných míst",
|
|
25
|
+
"Please provide a valid international phone number.": "Zadejte platné mezinárodní telefonní číslo.",
|
|
26
|
+
"Please provide a number": "Uveďte prosím číslo",
|
|
27
|
+
"Please provide a string": "Zadejte řetězec",
|
|
28
|
+
"Please provide a valid url": "Uveďte platnou adresu 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": "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": "Upload file",
|
|
3
|
+
"Upload files": "Upload files",
|
|
4
|
+
"Remove": "Remove",
|
|
5
|
+
"Please provide an alpha-numeric value": "Please provide an alpha-numeric value",
|
|
6
|
+
"Please provide a boolean value": "Please provide a boolean value",
|
|
7
|
+
"Please enter between {{lowerBound}} and {{upperBound}} characters": "Please enter between {{lowerBound}} and {{upperBound}} characters",
|
|
8
|
+
"Please make sure the value of this input matches the value in \"{{otherField}}\".": "Please make sure the value of this input matches the value in \"{{otherField}}\".",
|
|
9
|
+
"Please enter a maximum of {{upperBound}} characters": "Please enter a maximum of {{upperBound}} characters",
|
|
10
|
+
"Please enter a number with a maximum of {{upperBound}}": "Please enter a number with a maximum of {{upperBound}}",
|
|
11
|
+
"Please enter at least {{lowerBound}} characters": "Please enter at least {{lowerBound}} characters",
|
|
12
|
+
"Please enter a number of at least {{lowerBound}}": "Please enter a number of at least {{lowerBound}}",
|
|
13
|
+
"Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "Number cannot be less than {{lowerBound}} or more than {{upperBound}}",
|
|
14
|
+
"Please make sure the value of this input matches the pattern {{patternString}}.": "Please make sure the value of this input matches the pattern {{patternString}}.",
|
|
15
|
+
"Password should be a string": "Password should be a string",
|
|
16
|
+
"Password should be at least 8 characters long": "Password should be at least 8 characters long",
|
|
17
|
+
"Password should be no longer than 34 characters": "Password should be no longer than 34 characters",
|
|
18
|
+
"Password should contain at least one lowercase letter": "Password should contain at least one lowercase letter",
|
|
19
|
+
"Password should contain at least one UPPERCASE letter": "Password should contain at least one UPPERCASE letter",
|
|
20
|
+
"Password should contain at least one number": "Password should contain at least one number",
|
|
21
|
+
"Password should have at least one special character": "Password should have at least one special character",
|
|
22
|
+
"Please provide a valid email address": "Please provide a valid email address",
|
|
23
|
+
"Please provide a value": "Please provide a value",
|
|
24
|
+
"Please provide a round number without decimals": "Please provide a round number without decimals",
|
|
25
|
+
"Please provide a valid international phone number.": "Please provide a valid international phone number.",
|
|
26
|
+
"Please provide a number": "Please provide a number",
|
|
27
|
+
"Please provide a string": "Please provide a string",
|
|
28
|
+
"Please provide a valid url": "Please provide a valid url",
|
|
29
|
+
"Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @"
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Upload file": "Subir archivo",
|
|
3
|
+
"Upload files": "Subir archivos",
|
|
4
|
+
"Remove": "Eliminar",
|
|
5
|
+
"Please provide an alpha-numeric value": "Proporcione un valor alfanumérico.",
|
|
6
|
+
"Please provide a boolean value": "Proporcione un valor booleano",
|
|
7
|
+
"Please enter between {{lowerBound}} and {{upperBound}} characters": "Ingresa entre {{lowerBound}} y {{upperBound}} caracteres",
|
|
8
|
+
"Please make sure the value of this input matches the value in \"{{otherField}}\".": "Asegúrese de que el valor de este campo coincida con el valor de \"{{otherField}}\".",
|
|
9
|
+
"Please enter a maximum of {{upperBound}} characters": "Ingrese un máximo de {{upperBound}} caracteres",
|
|
10
|
+
"Please enter a number with a maximum of {{upperBound}}": "Ingrese un número con un máximo de {{upperBound}}",
|
|
11
|
+
"Please enter at least {{lowerBound}} characters": "Ingrese al menos {{lowerBound}} caracteres",
|
|
12
|
+
"Please enter a number of at least {{lowerBound}}": "Ingrese un número de al menos {{lowerBound}}",
|
|
13
|
+
"Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "El número no puede ser menor que {{lowerBound}} ni mayor que {{upperBound}}",
|
|
14
|
+
"Please make sure the value of this input matches the pattern {{patternString}}.": "Asegúrese de que el valor que está poniendo coincida con el patrón {{patternString}}.",
|
|
15
|
+
"Password should be a string": "La contraseña debe ser tipo texto",
|
|
16
|
+
"Password should be at least 8 characters long": "La contraseña debe tener al menos 8 caracteres",
|
|
17
|
+
"Password should be no longer than 34 characters": "La contraseña no debe tener más de 34 caracteres",
|
|
18
|
+
"Password should contain at least one lowercase letter": "La contraseña debe contener al menos una letra minúscula",
|
|
19
|
+
"Password should contain at least one UPPERCASE letter": "La contraseña debe contener al menos una letra MAYÚSCULA",
|
|
20
|
+
"Password should contain at least one number": "La contraseña debe contener al menos un número",
|
|
21
|
+
"Password should have at least one special character": "La contraseña debe tener al menos un carácter especial",
|
|
22
|
+
"Please provide a valid email address": "Por favor proporcione un correo electrónico válido",
|
|
23
|
+
"Please provide a value": "Proporcione un valor",
|
|
24
|
+
"Please provide a round number without decimals": "Por favor, proporcione un número redondo sin decimales",
|
|
25
|
+
"Please provide a valid international phone number.": "Por favor, proporcione un número de teléfono internacional válido.",
|
|
26
|
+
"Please provide a number": "Proporcione un número ",
|
|
27
|
+
"Please provide a string": "Proporcione una cadena",
|
|
28
|
+
"Please provide a valid url": "Proporcione un enlace válido.",
|
|
29
|
+
"Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "Proporcione un nombre de usuario de entre 4 y 255 caracteres y eventualmente separados por . _ - o @"
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Upload file": "Cargar archivo",
|
|
3
|
+
"Upload files": "Cargar archivos",
|
|
4
|
+
"Remove": "Eliminar",
|
|
5
|
+
"Please provide an alpha-numeric value": "Indique un valor alfanumérico",
|
|
6
|
+
"Please provide a boolean value": "Indique un valor booleano",
|
|
7
|
+
"Please enter between {{lowerBound}} and {{upperBound}} characters": "Introduzca entre {{lowerBound}} y {{upperBound}} caracteres",
|
|
8
|
+
"Please make sure the value of this input matches the value in \"{{otherField}}\".": "Asegúrese de que el valor de esta entrada coincide con el de \"{{otherField}}\".",
|
|
9
|
+
"Please enter a maximum of {{upperBound}} characters": "Introduzca un máximo de {{upperBound}} caracteres",
|
|
10
|
+
"Please enter a number with a maximum of {{upperBound}}": "Introduzca un número con un máximo de {{upperBound}}",
|
|
11
|
+
"Please enter at least {{lowerBound}} characters": "Introduzca al menos {{lowerBound}} caracteres",
|
|
12
|
+
"Please enter a number of at least {{lowerBound}}": "Introduzca un número de al menos {{lowerBound}}",
|
|
13
|
+
"Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "El número no puede ser inferior a {{lowerBound}} ni superior a {{upperBound}}",
|
|
14
|
+
"Please make sure the value of this input matches the pattern {{patternString}}.": "Asegúrese de que el valor de esta entrada coincide con el patrón {{patternString}}.",
|
|
15
|
+
"Password should be a string": "La contraseña debe ser texto",
|
|
16
|
+
"Password should be at least 8 characters long": "La contraseña debe tener al menos 8 caracteres",
|
|
17
|
+
"Password should be no longer than 34 characters": "La contraseña no debe tener más de 34 caracteres",
|
|
18
|
+
"Password should contain at least one lowercase letter": "La contraseña debe contener al menos una letra minúscula",
|
|
19
|
+
"Password should contain at least one UPPERCASE letter": "La contraseña debe contener al menos una letra MAYÚSCULA",
|
|
20
|
+
"Password should contain at least one number": "La contraseña debe contener al menos un número",
|
|
21
|
+
"Password should have at least one special character": "La contraseña debe tener al menos un carácter especial",
|
|
22
|
+
"Please provide a valid email address": "Por favor ingrese una dirección de correo electrónico válida",
|
|
23
|
+
"Please provide a value": "Indique un valor",
|
|
24
|
+
"Please provide a round number without decimals": "Indique una cifra redonda sin decimales",
|
|
25
|
+
"Please provide a valid international phone number.": "Indique un número de teléfono internacional válido.",
|
|
26
|
+
"Please provide a number": "Indique un número",
|
|
27
|
+
"Please provide a string": "Proporcione una texto",
|
|
28
|
+
"Please provide a valid url": "Proporcione una URL válida",
|
|
29
|
+
"Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "Indique un nombre de usuario de entre 4 y 255 caracteres, posiblemente separados por . o @."
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Upload file": "Télécharger le fichier",
|
|
3
|
+
"Upload files": "Télécharger les fichiers",
|
|
4
|
+
"Remove": "Supprimer",
|
|
5
|
+
"Please provide an alpha-numeric value": "Veuillez saisir une valeur alpha numérique",
|
|
6
|
+
"Please provide a boolean value": "Veuillez saisir une valeur booléenne",
|
|
7
|
+
"Please enter between {{lowerBound}} and {{upperBound}} characters": "Veuillez saisir entre {{lowerBound}}et {{upperBound}} caractères",
|
|
8
|
+
"Please make sure the value of this input matches the value in \"{{otherField}}\".": "Veuillez vous assurer que la valeur de cette entrée correspond à la valeur dans \"{{otherField}}\"",
|
|
9
|
+
"Please enter a maximum of {{upperBound}} characters": "Veuillez saisir au maximum {{upperBound}} caractères",
|
|
10
|
+
"Please enter a number with a maximum of {{upperBound}}": "Veuillez saisir un nombre avec un maximum de {{upperBound}}",
|
|
11
|
+
"Please enter at least {{lowerBound}} characters": "Veuillez saisir au moins {{lowerBound}} caractères",
|
|
12
|
+
"Please enter a number of at least {{lowerBound}}": "Veuillez saisir un nombre d'au moins {{lowerBound}}",
|
|
13
|
+
"Number cannot be less than {{lowerBound}} or more than {{upperBound}}": "Le nombre ne peut pas être inférieur à {{lowerBound}} ou supérieur à {{upperBound}}",
|
|
14
|
+
"Please make sure the value of this input matches the pattern {{patternString}}.": "Veuillez vous assurer que la valeur de cette entrée correspond au modèle {{patternString}}.",
|
|
15
|
+
"Password should be a string": "Le mot de passe doit être une chaine de caractères",
|
|
16
|
+
"Password should be at least 8 characters long": "Le mot de passe doit contenir au moins 8 caractères",
|
|
17
|
+
"Password should be no longer than 34 characters": "Le mot de passe ne doit pas dépasser 34 caractères",
|
|
18
|
+
"Password should contain at least one lowercase letter": "Le mot de passe doit contenir au moins une lettre minuscule",
|
|
19
|
+
"Password should contain at least one UPPERCASE letter": "Le mot de passe doit contenir au moins une lettre MAJUSCULE",
|
|
20
|
+
"Password should contain at least one number": "Le mot de passe doit contenir au moins un chiffre",
|
|
21
|
+
"Password should have at least one special character": "Le mot de passe doit avoir au moins un caractère spécial",
|
|
22
|
+
"Please provide a valid email address": "Veuillez saisir une adresse email valide",
|
|
23
|
+
"Please provide a value": "Veuillez saisir une valeur",
|
|
24
|
+
"Please provide a round number without decimals": "Veuillez saisir un nombre entier sans décimales",
|
|
25
|
+
"Please provide a valid international phone number.": "Veuillez saisir un numéro de téléphone international valide.",
|
|
26
|
+
"Please provide a number": "Veuillez saisir un nombre",
|
|
27
|
+
"Please provide a string": "Veuillez saisir une chaîne de caractères",
|
|
28
|
+
"Please provide a valid url": "Veuillez saisir un lien URL valide",
|
|
29
|
+
"Please provide a username between 4 and 255 characters long and possibly separated by . _ - or @": "Veuillez saisir un nom d'utilisateur comprenant entre 4 et 255 caractères, pouvant être séparés par . _ - ou @"
|
|
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": "Hapus",
|
|
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,84 @@
|
|
|
1
|
+
//------------------------------------------------------------------------------
|
|
2
|
+
// <auto-generated>
|
|
3
|
+
// This code was generated by d2-i18n-generate.
|
|
4
|
+
//
|
|
5
|
+
// Changes to this file may cause incorrect behavior and will be lost if
|
|
6
|
+
// the code is regenerated.
|
|
7
|
+
// </auto-generated>
|
|
8
|
+
//------------------------------------------------------------------------------
|
|
9
|
+
import i18n from '@dhis2/d2-i18n'
|
|
10
|
+
|
|
11
|
+
import arTranslations from './ar/translations.json'
|
|
12
|
+
import ar_IQTranslations from './ar_IQ/translations.json'
|
|
13
|
+
import ckbTranslations from './ckb/translations.json'
|
|
14
|
+
import csTranslations from './cs/translations.json'
|
|
15
|
+
import daTranslations from './da/translations.json'
|
|
16
|
+
import enTranslations from './en/translations.json'
|
|
17
|
+
import esTranslations from './es/translations.json'
|
|
18
|
+
import es_419Translations from './es_419/translations.json'
|
|
19
|
+
import frTranslations from './fr/translations.json'
|
|
20
|
+
import hi_INTranslations from './hi_IN/translations.json'
|
|
21
|
+
import idTranslations from './id/translations.json'
|
|
22
|
+
import kmTranslations from './km/translations.json'
|
|
23
|
+
import ko_KRTranslations from './ko_KR/translations.json'
|
|
24
|
+
import loTranslations from './lo/translations.json'
|
|
25
|
+
import myTranslations from './my/translations.json'
|
|
26
|
+
import nbTranslations from './nb/translations.json'
|
|
27
|
+
import nlTranslations from './nl/translations.json'
|
|
28
|
+
import prsTranslations from './prs/translations.json'
|
|
29
|
+
import psTranslations from './ps/translations.json'
|
|
30
|
+
import ptTranslations from './pt/translations.json'
|
|
31
|
+
import pt_BRTranslations from './pt_BR/translations.json'
|
|
32
|
+
import roTranslations from './ro/translations.json'
|
|
33
|
+
import ruTranslations from './ru/translations.json'
|
|
34
|
+
import siTranslations from './si/translations.json'
|
|
35
|
+
import svTranslations from './sv/translations.json'
|
|
36
|
+
import tetTranslations from './tet/translations.json'
|
|
37
|
+
import tgTranslations from './tg/translations.json'
|
|
38
|
+
import ukTranslations from './uk/translations.json'
|
|
39
|
+
import urTranslations from './ur/translations.json'
|
|
40
|
+
import uz_LatnTranslations from './uz_Latn/translations.json'
|
|
41
|
+
import uz_UZ_CyrlTranslations from './uz_UZ_Cyrl/translations.json'
|
|
42
|
+
import uz_UZ_LatnTranslations from './uz_UZ_Latn/translations.json'
|
|
43
|
+
import viTranslations from './vi/translations.json'
|
|
44
|
+
import zhTranslations from './zh/translations.json'
|
|
45
|
+
import zh_CNTranslations from './zh_CN/translations.json'
|
|
46
|
+
|
|
47
|
+
const namespace = 'default'
|
|
48
|
+
i18n.addResources('ar', namespace, arTranslations)
|
|
49
|
+
i18n.addResources('ar_IQ', namespace, ar_IQTranslations)
|
|
50
|
+
i18n.addResources('ckb', namespace, ckbTranslations)
|
|
51
|
+
i18n.addResources('cs', namespace, csTranslations)
|
|
52
|
+
i18n.addResources('da', namespace, daTranslations)
|
|
53
|
+
i18n.addResources('en', namespace, enTranslations)
|
|
54
|
+
i18n.addResources('es', namespace, esTranslations)
|
|
55
|
+
i18n.addResources('es_419', namespace, es_419Translations)
|
|
56
|
+
i18n.addResources('fr', namespace, frTranslations)
|
|
57
|
+
i18n.addResources('hi_IN', namespace, hi_INTranslations)
|
|
58
|
+
i18n.addResources('id', namespace, idTranslations)
|
|
59
|
+
i18n.addResources('km', namespace, kmTranslations)
|
|
60
|
+
i18n.addResources('ko_KR', namespace, ko_KRTranslations)
|
|
61
|
+
i18n.addResources('lo', namespace, loTranslations)
|
|
62
|
+
i18n.addResources('my', namespace, myTranslations)
|
|
63
|
+
i18n.addResources('nb', namespace, nbTranslations)
|
|
64
|
+
i18n.addResources('nl', namespace, nlTranslations)
|
|
65
|
+
i18n.addResources('prs', namespace, prsTranslations)
|
|
66
|
+
i18n.addResources('ps', namespace, psTranslations)
|
|
67
|
+
i18n.addResources('pt', namespace, ptTranslations)
|
|
68
|
+
i18n.addResources('pt_BR', namespace, pt_BRTranslations)
|
|
69
|
+
i18n.addResources('ro', namespace, roTranslations)
|
|
70
|
+
i18n.addResources('ru', namespace, ruTranslations)
|
|
71
|
+
i18n.addResources('si', namespace, siTranslations)
|
|
72
|
+
i18n.addResources('sv', namespace, svTranslations)
|
|
73
|
+
i18n.addResources('tet', namespace, tetTranslations)
|
|
74
|
+
i18n.addResources('tg', namespace, tgTranslations)
|
|
75
|
+
i18n.addResources('uk', namespace, ukTranslations)
|
|
76
|
+
i18n.addResources('ur', namespace, urTranslations)
|
|
77
|
+
i18n.addResources('uz_Latn', namespace, uz_LatnTranslations)
|
|
78
|
+
i18n.addResources('uz_UZ_Cyrl', namespace, uz_UZ_CyrlTranslations)
|
|
79
|
+
i18n.addResources('uz_UZ_Latn', namespace, uz_UZ_LatnTranslations)
|
|
80
|
+
i18n.addResources('vi', namespace, viTranslations)
|
|
81
|
+
i18n.addResources('zh', namespace, zhTranslations)
|
|
82
|
+
i18n.addResources('zh_CN', namespace, zh_CNTranslations)
|
|
83
|
+
|
|
84
|
+
export default i18n
|
|
@@ -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": "បញ្ចូលតែឯកតា(boolean)",
|
|
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": "제거",
|
|
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 @": "ກະລຸນາປ້ອນຊື່ຜູ້ໃຊ້ລະຫວ່າງ 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 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
|
+
}
|