Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'zf2/develop' into zend-validator-bitwise
Browse files Browse the repository at this point in the history
  • Loading branch information
Corentin Larose committed Oct 22, 2013
181 parents a14332b + ee610ed + ef00595 + 546ed4b + 1e282f1 + 5a0e97e + 9b1b995 + 1f178dc + 19afffe + 3b1a256 + a01e488 + 6bd5417 + 7884984 + d7ead03 + ad447f0 + 30abd77 + 886c7dd + 0426e59 + 41bb0b6 + 48830b0 + d6e3cec + 3f64575 + 47056cf + 93da274 + 41ff6ee + 4d95164 + b49f56a + d9ca3c4 + eff94af + baa6f68 + b8d6e5f + cf90e76 + a38e673 + ddc5b11 + 203f4f2 + f755a1b + 7b4bdc5 + de1dabc + cffd7da + e68b46a + 6a4a61e + a495238 + 22ee4fd + 7c48789 + 88fc985 + 33867a8 + 72cc708 + 1253b9d + b527198 + 9f385cb + 9681d38 + 9ff4ea7 + 9dcc02b + a3b5a44 + 49aa6e1 + 785d144 + 6cb9145 + 98ba294 + 1a26005 + 6a37670 + 53069e2 + cdc28f8 + 7ed9b6d + 6aa8b3f + b08f0db + c6ffcad + 2e788ed + 5fa8668 + 331098b + 11a5300 + d15662e + a652577 + 113da58 + ac8c434 + 51dd55f + b8f65f9 + 5ab3ccd + 3c9d616 + 34eee47 + 1fc6a29 + 0f06888 + 781c1e1 + bfb1248 + adb0888 + 20476b6 + f0f3028 + fd934a8 + 039bd26 + 70f3e5a + 3d9849b + 118afdb + 029c839 + 31a4435 + fa239e0 + 18c2969 + 28b9d7b + 34e166a + 9e19c9d + 1645624 + 0f36602 + 32da7d8 + 9cd65f3 + 10a2ceb + f8a3f38 + 7b59c4b + 281109c + e15b4b2 + 00a7ba9 + d3f35c0 + e89516e + cbf495f + 89118d6 + 4f9b8b7 + d51ad32 + bdfd7d8 + 0dc32e4 + ca27a0e + b0b5deb + 8f5f165 + e85eb90 + 8f6f830 + 6a31d61 + 54ae670 + 1cad3f0 + beb876e + d725de0 + bf57c7d + 822964a + 669aa66 + 76422ec + 62cdf38 + cbe43a2 + 6b3919c + 832c96f + 72e3bd6 + 5cfa5d3 + f012f21 + 49e3436 + 465b2ed + 91cc8bb + 86b4350 + e32c680 + d82c755 + b9aa141 + ab2eabe + dc44bfd + b6b709b + a532720 + da21aec + c5778b9 + 0c4bddf + 2949069 + 32cca05 + 351e176 + ae57563 + aaa4dad + 8002f21 + 8609d03 + 81091aa + 1abecc5 + 99e065a + be2b2d8 + 4043721 + 4b52b1f + adf262d + ccca4d8 + 0db0a30 + 1c20c0f + f380ca1 + 98140e2 + 278e5fc + f2f9883 + c0d425a + ba85cb6 + 276f386 + cad56d4 + 8accc42 + 644aaca + 3d36336 + 4f41436 + a236441 commit 68306b6
Show file tree
Hide file tree
Showing 9 changed files with 672 additions and 580 deletions.
2 changes: 1 addition & 1 deletion languages/en/Zend_Validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
// Zend\I18n\Validator\PhoneNumber
"The input does not match a phone number format" => "The input does not match a phone number format",
"The country provided is currently unsupported" => "The country provided is currently unsupported",
"Invalid type given. String expected" => "Invalid type given. String expected",
"Invalid type given. String expected" => "Invalid type given. String expected",

// Zend\I18n\Validator\PostCode
"Invalid type given. String or integer expected" => "Invalid type given. String or integer expected",
Expand Down
20 changes: 12 additions & 8 deletions languages/fr/Zend_Validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


/**
* FR-Revision: 06.June.2013
* FR-Revision: 29.Sept.2013
*/
return array(
// Zend\I18n\Validator\Alnum
Expand All @@ -22,6 +22,10 @@
"The input contains non alphabetic characters" => "L'entrée contient des caractères non alphabétiques",
"The input is an empty string" => "L'entrée est une chaîne vide",

// Zend\I18n\Validator\DateTime
"Invalid type given. String expected" => "Type invalide. Chaîne attendue",
"The input does not appear to be a valid datetime" => "L'entrée ne semble pas être une date/heure valide",

// Zend\I18n\Validator\Float
"Invalid type given. String, integer or float expected" => "Type invalide. Chaîne, entier ou flottant attendu",
"The input does not appear to be a float" => "L'entrée n'est pas un nombre flottant",
Expand All @@ -31,7 +35,7 @@
"The input does not appear to be an integer" => "L'entrée n'est pas un entier",

// Zend\I18n\Validator\PostCode
"Invalid type given. String or integer expected" => "Type invalid. Chaîne ou entier attendu",
"Invalid type given. String or integer expected" => "Type invalide. Chaîne ou entier attendu",
"The input does not appear to be a postal code" => "L'entrée ne semble pas être un code postal valide",
"An exception has been raised while validating the input" => "Une exception a été levée lors de la validation de l'entrée",

Expand Down Expand Up @@ -69,7 +73,7 @@
// Zend\Validator\DateStep
"Invalid type given. String, integer, array or DateTime expected" => "Entrée invalide. Chaîne, entier, tableau ou DateTime attendu",
"The input does not appear to be a valid date" => "L'entrée ne semble pas être une date valide",
"The input is not a valid step" => "L'entrée n'est pas une step valide",
"The input is not a valid step" => "L'entrée n'est pas un pas de date valide",

// Zend\Validator\Db\AbstractDb
"No record matching the input was found" => "Aucun enregistrement trouvé",
Expand Down Expand Up @@ -117,18 +121,18 @@
// Zend\Validator\File\FilesSize
"All files in sum should have a maximum size of '%max%' but '%size%' were detected" => "Tous les fichiers devraient avoir une taille maximale de '%max%' mais une taille de '%size%' a été détectée",
"All files in sum should have a minimum size of '%min%' but '%size%' were detected" => "Tous les fichiers devraient avoir une taille minimale de '%max%' mais une taille de '%size%' a été détectée",
"One or more files can not be read" => "Un ou plusieurs fichiers ne peut pas être lu",
"One or more files can not be read" => "Un ou plusieurs fichiers ne peuvent être lus",

// Zend\Validator\File\Hash
"File '%value%' does not match the given hashes" => "Le fichier '%value%' ne correspond pas aux sommes de contrôle données",
"A hash could not be evaluated for the given file" => "Une somme de contrôle n'a pas pu être calculée pour le fichier",
"File '%value%' is not readable or does not exist" => "Le fichier '%value%' n'est pas lisible ou n'existe pas",

// Zend\Validator\File\ImageSize
"Maximum allowed width for image '%value%' should be '%maxwidth%' but '%width%' detected" => "La largeur maximale pour l'image '%value%' devrait être '%maxwidth%', mais '%width%' détecté",
"Minimum expected width for image '%value%' should be '%minwidth%' but '%width%' detected" => "La largeur minimale pour l'image '%value%' devrait être '%minwidth%', mais '%width%' détecté",
"Maximum allowed height for image '%value%' should be '%maxheight%' but '%height%' detected" => "La hauteur maximale pour l'image '%value%' devrait être '%maxheight%', mais '%height%' détecté",
"Minimum expected height for image '%value%' should be '%minheight%' but '%height%' detected" => "La hauteur maximale pour l'image '%value%' devrait être '%minheight%', mais '%height%' détecté",
"Maximum allowed width for image '%value%' should be '%maxwidth%' but '%width%' detected" => "La largeur maximale pour l'image '%value%' devrait être de '%maxwidth%', mais largeur de '%width%' détectée",
"Minimum expected width for image '%value%' should be '%minwidth%' but '%width%' detected" => "La largeur minimale pour l'image '%value%' devrait être de '%minwidth%', mais largeur de '%width%' détectée",
"Maximum allowed height for image '%value%' should be '%maxheight%' but '%height%' detected" => "La hauteur maximale pour l'image '%value%' devrait être de '%maxheight%', mais hauteur de '%height%' détectée",
"Minimum expected height for image '%value%' should be '%minheight%' but '%height%' detected" => "La hauteur maximale pour l'image '%value%' devrait être de '%minheight%', mais hauteur de '%height%' détectée",
"The size of image '%value%' could not be detected" => "La taille de l'image '%value%' n'a pas pu être détectée",
"File '%value%' is not readable or does not exist" => "Le fichier '%value%' n'est pas lisible ou n'existe pas",

Expand Down
9 changes: 9 additions & 0 deletions languages/it/Zend_Validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
"The input contains non alphabetic characters" => "L'input contiene caratteri non alfabetici",
"The input is an empty string" => "L'input è una stringa vuota",

// Zend\I18n\Validator\DateTime
"Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
"The input does not appear to be a valid datetime" => "L'input non sembra essere una combinazione valida di data e orario",

// Zend\I18n\Validator\Float
"Invalid type given. String, integer or float expected" => "Tipo di dato non valido. Era atteso un dato di tipo string, float o integer",
"The input does not appear to be a float" => "L'input non sembra essere un dato di tipo float",
Expand All @@ -29,6 +33,11 @@
"Invalid type given. String or integer expected" => "Tipo di dato non valido. Era atteso un dato di tipo string o integer",
"The input does not appear to be an integer" => "L'input non sembra essere un intero",

// Zend\I18n\Validator\PhoneNumber
"The input does not match a phone number format" => "L'input non corrisponde ad un formato di numero telefonico",
"The country provided is currently unsupported" => "La nazionalità fornita non è correntemente supportata",
"Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",

// Zend\I18n\Validator\PostCode
"Invalid type given. String or integer expected" => "Tipo di dato non valido. Era atteso un dato di tipo string o integer",
"The input does not appear to be a postal code" => "L'input non sembra essere un codice postale",
Expand Down
Loading

0 comments on commit 68306b6

Please sign in to comment.