Skip to content

Commit

Permalink
chore(weblate): update translations
Browse files Browse the repository at this point in the history
  • Loading branch information
ww-github authored and doomsower committed Jul 28, 2019
1 parent 21bb870 commit ce70b4e
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions src/yup/en/yup.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"required": "This field is required",
"oneOf": "Must be one of following: {{ values }}",
"notOneOf": "Must not be one of following: {{ values }}",
"noType": "Must not be {{ type }}"
"noType": "Must not be {{ type }}",
"defined": "Value must be defined",
"newNode": "Invalid existing or new node reference"
},
"string": {
"length": "Must be exactly {{ length }} symbols long",
Expand All @@ -17,7 +19,13 @@
"lowercase": "Must be a lowercase string",
"uppercase": "Must be an uppercase string",
"weak_password": "Password is too weak",
"cron": "Invalid cron expression"
"cron": "Invalid cron expression",
"formula": "Invalid formula",
"https": "The URL must use HTTPS protocol",
"json": "Invalid JSON string",
"nonEmpty": "The string must not be empty",
"sku": "Invalid SKU identifier",
"uuid": "Invalid UUID"
},
"number": {
"min": "Must be greater than or equal to {{ min }}",
Expand All @@ -27,7 +35,10 @@
"notEqual": "Must not be equal to {{ notEqual }}",
"positive": "Must be a positive number",
"negative": "Must be a negative number",
"integer": "Must be an integer"
"integer": "Must be an integer",
"altitude": "Invalid altitude value",
"latitude": "Invalid latitude value",
"longitude": "Invalid longitude value"
},
"date": {
"min": "Must be later than {{ min }}",
Expand All @@ -39,5 +50,8 @@
"array": {
"min": "Must have at least {{ min }} items",
"max": "Must have at most to {{ max }} items"
},
"varchar": {
"nonEmpty": "The value must not be empty or longer than 255 characters"
}
}

0 comments on commit ce70b4e

Please sign in to comment.