forked from brutusin/json-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add french translation (brutusin#75)
- Loading branch information
Showing
7 changed files
with
168 additions
and
115 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
58 changes: 29 additions & 29 deletions
58
dist/js/brutusin-json-forms-lan-es_ES.js → ...js/addon/brutusin-json-forms-lan-es_ES.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
if ("undefined" === typeof brutusin || "undefined" === typeof brutusin["json-forms"]) { | ||
throw new Error("brutusin-json-forms-bootstrap.js requires brutusin-json-forms.js"); | ||
} | ||
(function () { | ||
var BrutusinForms = brutusin["json-forms"]; | ||
|
||
BrutusinForms.messages = { | ||
"validationError": "Error de validación", | ||
"required": "Este campo es **obligatorio**", | ||
"invalidValue": "Valor inválido", | ||
"addpropNameExistent": "Esta propiedad ya existe en el objeto", | ||
"addpropNameRequired": "Un nombre es obligatorio", | ||
"minItems": "Se requiere un mínimo de `{0}` elementos", | ||
"maxItems": "Se admiten a lo sumo `{0}` elementos", | ||
"pattern": "El valor no cumple el patrón: `{0}`", | ||
"minLength": "El valor debe tener **como mínimo** `{0}` caracteres de longitud", | ||
"maxLength": "El valor debe tener **como máximo** `{0}` caracteres de longitud", | ||
"multipleOf": "El valor debe ser **múltiplo de** `{0}`", | ||
"minimum": "El valor debe ser **mayor o igual que** `{0}`", | ||
"exclusiveMinimum": "El valor debe ser **mayor que** `{0}`", | ||
"maximum": "El valor debe ser **menor o igual que** `{0}`", | ||
"exclusiveMaximum": "El valor debe ser **menor que** `{0}`", | ||
"minProperties": "Se requieren como mínimo `{0}` propiedades", | ||
"maxProperties": "Se admiten a lo sumo `{0}` propiedades", | ||
"uniqueItems": "Los elementos del array deben ser diferentes", | ||
"addItem": "Añadir elemento", | ||
"true": "Verdadero", | ||
"false": "Falso" | ||
}; | ||
if ("undefined" === typeof brutusin || "undefined" === typeof brutusin["json-forms"]) { | ||
throw new Error("brutusin-json-forms-bootstrap.js requires brutusin-json-forms.js"); | ||
} | ||
(function () { | ||
var BrutusinForms = brutusin["json-forms"]; | ||
|
||
BrutusinForms.messages = { | ||
"validationError": "Error de validación", | ||
"required": "Este campo es **obligatorio**", | ||
"invalidValue": "Valor inválido", | ||
"addpropNameExistent": "Esta propiedad ya existe en el objeto", | ||
"addpropNameRequired": "Un nombre es obligatorio", | ||
"minItems": "Se requiere un mínimo de `{0}` elementos", | ||
"maxItems": "Se admiten a lo sumo `{0}` elementos", | ||
"pattern": "El valor no cumple el patrón: `{0}`", | ||
"minLength": "El valor debe tener **como mínimo** `{0}` caracteres de longitud", | ||
"maxLength": "El valor debe tener **como máximo** `{0}` caracteres de longitud", | ||
"multipleOf": "El valor debe ser **múltiplo de** `{0}`", | ||
"minimum": "El valor debe ser **mayor o igual que** `{0}`", | ||
"exclusiveMinimum": "El valor debe ser **mayor que** `{0}`", | ||
"maximum": "El valor debe ser **menor o igual que** `{0}`", | ||
"exclusiveMaximum": "El valor debe ser **menor que** `{0}`", | ||
"minProperties": "Se requieren como mínimo `{0}` propiedades", | ||
"maxProperties": "Se admiten a lo sumo `{0}` propiedades", | ||
"uniqueItems": "Los elementos del array deben ser diferentes", | ||
"addItem": "Añadir elemento", | ||
"true": "Verdadero", | ||
"false": "Falso" | ||
}; | ||
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
if ("undefined" === typeof brutusin || "undefined" === typeof brutusin["json-forms"]) { | ||
throw new Error("brutusin-json-forms-bootstrap.js requires brutusin-json-forms.js"); | ||
} | ||
(function () { | ||
var BrutusinForms = brutusin["json-forms"]; | ||
|
||
BrutusinForms.messages = { | ||
"validationError": "Erreur de validation", | ||
"required": "Ce champ est obligatoire", | ||
"invalidValue": "Valeur du champ invalide", | ||
"addpropNameExistent": "Cet propriété est déjà présente dans l'objet", | ||
"addpropNameRequired": "Un nom est obligatoire", | ||
"minItems": "Au moins {0} éléments sont requis", | ||
"maxItems": "Au plus {0} élément sont autorisés", | ||
"pattern": "La valeur n'est pas conforme au patron: {0}", | ||
"minLength": "La valeur doit être au moins de {0} caractères", | ||
"maxLength": "La valeur doit être *au maximum de {0} caractères", | ||
"multipleOf": "La valeur doit être multiple de {0}", | ||
"minimum": "La valeur doit être supérieur ou égale à {0}", | ||
"exclusiveMinimum": "La valeur doit être supérieur à {0}", | ||
"maximum": "La valeur doit inférieur ou égale à{0}", | ||
"exclusiveMaximum": "La valeur doit être inférieur à {0}", | ||
"minProperties": "Au moins {0} propriétés sont obligatoire", | ||
"maxProperties": "Au plus {0} propriétés sont autorisés", | ||
"uniqueItems": "Les éléments du tableaux doivent être unique", | ||
"addItem": "Ajouter un élément", | ||
"true": "Vrai", | ||
"false": "Faux" | ||
}; | ||
}()); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters