PageRenderTime 45ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/resources/languages/it/Zend_Validate.php

https://bitbucket.org/gencer/zf2
PHP | 289 lines | 219 code | 30 blank | 40 comment | 11 complexity | c91970f492baa59ff09ca2334f1aa4d3 MD5 | raw file
  1. <?php
  2. /**
  3. * Zend Framework (http://framework.zend.com/)
  4. *
  5. * @link http://github.com/zendframework/zf2 for the canonical source repository
  6. * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
  7. * @license http://framework.zend.com/license/new-bsd New BSD License
  8. */
  9. /**
  10. * IT-Revision: 04.Apr.2013
  11. */
  12. return array(
  13. // Zend\I18n\Validator\Alnum
  14. "Invalid type given. String, integer or float expected" => "Tipo di dato non valido. Era atteso un dato di tipo string, float o integer",
  15. "The input contains characters which are non alphabetic and no digits" => "L'input contiene caratteri che non sono alfanumerici",
  16. "The input is an empty string" => "L'input è una stringa vuota",
  17. // Zend\I18n\Validator\Alpha
  18. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  19. "The input contains non alphabetic characters" => "L'input contiene caratteri non alfabetici",
  20. "The input is an empty string" => "L'input è una stringa vuota",
  21. // Zend\I18n\Validator\DateTime
  22. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  23. "The input does not appear to be a valid datetime" => "L'input non sembra essere una combinazione valida di data e orario",
  24. // Zend\I18n\Validator\Float
  25. "Invalid type given. String, integer or float expected" => "Tipo di dato non valido. Era atteso un dato di tipo string, float o integer",
  26. "The input does not appear to be a float" => "L'input non sembra essere un dato di tipo float",
  27. // Zend\I18n\Validator\Int
  28. "Invalid type given. String or integer expected" => "Tipo di dato non valido. Era atteso un dato di tipo string o integer",
  29. "The input does not appear to be an integer" => "L'input non sembra essere un intero",
  30. // Zend\I18n\Validator\PhoneNumber
  31. "The input does not match a phone number format" => "L'input non corrisponde ad un formato di numero telefonico",
  32. "The country provided is currently unsupported" => "La nazionalità fornita non è correntemente supportata",
  33. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  34. // Zend\I18n\Validator\PostCode
  35. "Invalid type given. String or integer expected" => "Tipo di dato non valido. Era atteso un dato di tipo string o integer",
  36. "The input does not appear to be a postal code" => "L'input non sembra essere un codice postale",
  37. "An exception has been raised while validating the input" => "Un'eccezione è stata sollevada durante la validazione dell'input",
  38. // Zend\Validator\Barcode
  39. "The input failed checksum validation" => "L'input non ha un checksum valido",
  40. "The input contains invalid characters" => "L'input contiene caratteri non permessi",
  41. "The input should have a length of %length% characters" => "L'input non ha la lunghezza corretta di %length% caratteri",
  42. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  43. // Zend\Validator\Between
  44. "The input is not between '%min%' and '%max%', inclusively" => "L'input non è compreso tra '%min%' e '%max%', inclusi",
  45. "The input is not strictly between '%min%' and '%max%'" => "L'input non è strettamente compreso tra '%min%' e '%max%'",
  46. // Zend\Validator\Callback
  47. "The input is not valid" => "L'input non è valido",
  48. "An exception has been raised within the callback" => "Un'eccezione è stata sollevata all'interno della callback",
  49. // Zend\Validator\CreditCard
  50. "The input seems to contain an invalid checksum" => "L'input sembra avere un checksum non valido",
  51. "The input must contain only digits" => "L'input deve contenere solo cifre",
  52. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  53. "The input contains an invalid amount of digits" => "L'input contiene un numero non valido di cifre",
  54. "The input is not from an allowed institute" => "L'input proviene da un istituto non supportato",
  55. "The input seems to be an invalid credit card number" => "L'input sembra essere un numero di carta di credito non valido",
  56. "An exception has been raised while validating the input" => "Un'eccezione è stata sollevada durante la validazione dell'input",
  57. // Zend\Validator\Csrf
  58. "The form submitted did not originate from the expected site" => "La form inviata non ha avuto origine dal luogo previsto",
  59. // Zend\Validator\Date
  60. "Invalid type given. String, integer, array or DateTime expected" => "Tipo di dato non valido. Era atteso un dato di tipo string, integer, array o DateTime",
  61. "The input does not appear to be a valid date" => "L'input non sembra essere una data valida",
  62. "The input does not fit the date format '%format%'" => "L'input non corrisponde al formato data '%format%'",
  63. // Zend\Validator\DateStep
  64. "The input is not a valid step" => "L'input non è uno step valido",
  65. // Zend\Validator\Db\AbstractDb
  66. "No record matching the input was found" => "Non è stata trovata nessuna riga corrispondente all'input",
  67. "A record matching the input was found" => "E' già stata trovata una riga corrispondente all'input",
  68. // Zend\Validator\Digits
  69. "The input must contain only digits" => "L'input deve contenere solo cifre",
  70. "The input is an empty string" => "L'input è una stringa vuota",
  71. "Invalid type given. String, integer or float expected" => "Tipo di dato non valido. Era atteso un dato di tipo string, float o integer",
  72. // Zend\Validator\EmailAddress
  73. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  74. "The input is not a valid email address. Use the basic format local-part@hostname" => "L'input non è un indirizzo email valido nel formato base local-part@hostname",
  75. "'%hostname%' is not a valid hostname for the email address" => "'%hostname%' non è un hostname valido nell'indirizzo email",
  76. "'%hostname%' does not appear to have any valid MX or A records for the email address" => "'%hostname%' non sembra avere un record MX o A valido nell'indirizzo email",
  77. "'%hostname%' is not in a routable network segment. The email address should not be resolved from public network" => "'%hostname%' non è in un segmento di rete instradabile. L'indirizzo email non può essere risolto nella rete pubblica",
  78. "'%localPart%' can not be matched against dot-atom format" => "'%localPart%' non può essere validato nel formato dot-atom",
  79. "'%localPart%' can not be matched against quoted-string format" => "'%localPart%' non può essere validato nel formato quoted-string",
  80. "'%localPart%' is not a valid local part for the email address" => "'%localPart%' non è una local part valida nell'indirizzo email",
  81. "The input exceeds the allowed length" => "L'input supera la lunghezza consentita",
  82. // Zend\Validator\Explode
  83. "Invalid type given" => "Tipo di dato non valido",
  84. // Zend\Validator\File\Count
  85. "Too many files, maximum '%max%' are allowed but '%count%' are given" => "Troppi file, sono consentiti massimo '%max%' file ma ne sono stati passati '%count%'",
  86. "Too few files, minimum '%min%' are expected but '%count%' are given" => "Troppi pochi file, sono attesi minimo '%min%' file ma ne sono stato passati solo '%count%'",
  87. // Zend\Validator\File\Crc32
  88. "File does not match the given crc32 hashes" => "Il file non ha un hash crc32 tra quelli consentiti",
  89. "A crc32 hash could not be evaluated for the given file" => "L'hash crc32 non può essere calcolato per il file dato",
  90. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  91. // Zend\Validator\File\ExcludeExtension
  92. "File has an incorrect extension" => "Il file ha un'estensione invalida",
  93. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  94. // Zend\Validator\File\Exists
  95. "File does not exist" => "Il file non esiste",
  96. // Zend\Validator\File\Extension
  97. "File has an incorrect extension" => "Il file ha un'estensione invalida",
  98. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  99. // Zend\Validator\File\FilesSize
  100. "All files in sum should have a maximum size of '%max%' but '%size%' were detected" => "I file devono avere in totale una dimensione massima di '%max%' ma è stata rilevata una dimensione di '%size%'",
  101. "All files in sum should have a minimum size of '%min%' but '%size%' were detected" => "I file devono avere in totale una dimensione minima di '%min%' ma è stata rilevata una dimensione di '%size%'",
  102. "One or more files can not be read" => "Uno o più file non possono essere letti",
  103. // Zend\Validator\File\Hash
  104. "File does not match the given hashes" => "I file non corrisponde agli hash dati",
  105. "A hash could not be evaluated for the given file" => "Un hash non può essere valutato per il file dato",
  106. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  107. // Zend\Validator\File\ImageSize
  108. "Maximum allowed width for image should be '%maxwidth%' but '%width%' detected" => "La larghezza massima consentita per l'immagine è '%maxwidth%' ma è stata rilevata una larghezza di '%width%'",
  109. "Minimum expected width for image should be '%minwidth%' but '%width%' detected" => "La larghezza minima consentita per l'immagine è '%minwidth%' ma è stata rilevata una larghezza di '%width%'",
  110. "Maximum allowed height for image should be '%maxheight%' but '%height%' detected" => "L'altezza massima consentita per l'immagine è '%maxheight%' ma è stata rilevata un'altezza di '%height%'",
  111. "Minimum expected height for image should be '%minheight%' but '%height%' detected" => "L'altezza minima consentita per l'immagine è '%minheight%' ma è stata rilevata un'altezza di '%height%'",
  112. "The size of image could not be detected" => "Le dimensioni dell'immagine non possono essere rilevate",
  113. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  114. // Zend\Validator\File\IsCompressed
  115. "File is not compressed, '%type%' detected" => "Il file non è un file compresso, ma un file di tipo '%type%'",
  116. "The mimetype could not be detected from the file" => "Il mimetype del file non può essere rilevato",
  117. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  118. // Zend\Validator\File\IsImage
  119. "File is no image, '%type%' detected" => "Il file non è un'immagine, ma un file di tipo '%type%'",
  120. "The mimetype could not be detected from the file" => "Il mimetype del file non può essere rilevato",
  121. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  122. // Zend\Validator\File\Md5
  123. "File does not match the given md5 hashes" => "Il file non corrisponde agli hash md5 dati",
  124. "An md5 hash could not be evaluated for the given file" => "Un hash md5 non può essere valutato per il file dato",
  125. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  126. // Zend\Validator\File\MimeType
  127. "File has an incorrect mimetype of '%type%'" => "Il file ha un mimetype invalido: '%type%'",
  128. "The mimetype could not be detected from the file" => "Il mimetype del file non può essere rilevato",
  129. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  130. // Zend\Validator\File\NotExists
  131. "File exists" => "Il file esiste già",
  132. // Zend\Validator\File\Sha1
  133. "File does not match the given sha1 hashes" => "Il file non corrisponde agli hash sha1 dati",
  134. "A sha1 hash could not be evaluated for the given file" => "Un hash sha1 non può essere valutato per il file dato",
  135. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  136. // Zend\Validator\File\Size
  137. "Maximum allowed size for file is '%max%' but '%size%' detected" => "La dimensione massima consentita per il file è '%max%' ma è stata rilevata una dimensione di '%size%'",
  138. "Minimum expected size for file is '%min%' but '%size%' detected" => "La dimensione minima consentita per il file è '%min%' ma è stata rilevata una dimensione di '%size%'",
  139. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  140. // Zend\Validator\File\Upload
  141. "File '%value%' exceeds the defined ini size" => "Il file '%value%' eccede la dimensione definita nell'ini",
  142. "File '%value%' exceeds the defined form size" => "Il file '%value%' eccede la dimensione definita nella form",
  143. "File '%value%' was only partially uploaded" => "Il file '%value%' è stato caricato solo parzialmente",
  144. "File '%value%' was not uploaded" => "Il file '%value%' non è stato caricato",
  145. "No temporary directory was found for file '%value%'" => "Non è stata trovata una directory temporanea per il file '%value%'",
  146. "File '%value%' can't be written" => "Il file '%value%' non può essere scritto",
  147. "A PHP extension returned an error while uploading the file '%value%'" => "Un'estensione di PHP ha generato un errore durante il caricamento del file '%value%'",
  148. "File '%value%' was illegally uploaded. This could be a possible attack" => "Il file '%value%' è stato caricato irregolarmente. Potrebbe trattarsi di un attacco",
  149. "File '%value%' was not found" => "Il file '%value%' non è stato trovato",
  150. "Unknown error while uploading file '%value%'" => "Errore sconosciuto durante il caricamento del file '%value%'",
  151. // Zend\Validator\File\UploadFile
  152. "File exceeds the defined ini size" => "Il file eccede la dimensione definita nell'ini",
  153. "File exceeds the defined form size" => "Il file eccede la dimensione definita nella form",
  154. "File was only partially uploaded" => "Il file è stato caricato solo parzialmente",
  155. "File was not uploaded" => "Il file non è stato caricato",
  156. "No temporary directory was found for file" => "Non è stata trovata una directory temporanea per il file",
  157. "File can't be written" => "Il file non può essere scritto",
  158. "A PHP extension returned an error while uploading the file" => "Un'estensione di PHP ha generato un errore durante il caricamento del file",
  159. "File was illegally uploaded. This could be a possible attack" => "Il file è stato caricato irregolarmente. Potrebbe trattarsi di un attacco",
  160. "File was not found" => "Il file non è stato trovato",
  161. "Unknown error while uploading file" => "Errore sconosciuto durante il caricamento del file",
  162. // Zend\Validator\File\WordCount
  163. "Too many words, maximum '%max%' are allowed but '%count%' were counted" => "Il file contiene troppe parole, ne sono consentite massimo '%max%' ma ne sono state contate '%count%'",
  164. "Too few words, minimum '%min%' are expected but '%count%' were counted" => "Il file contiene troppe poche parole, ne sono consentite minimo '%min%' ma ne sono state contate '%count%'",
  165. "File is not readable or does not exist" => "Il file non è leggibile o non esiste",
  166. // Zend\Validator\GreaterThan
  167. "The input is not greater than '%min%'" => "L'input non è maggiore di '%min%'",
  168. "The input is not greater or equal than '%min%'" => "L'input non è maggiore o uguale a '%min%'",
  169. // Zend\Validator\Hex
  170. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  171. "The input contains non-hexadecimal characters" => "L'input non è composto solo da caratteri esadecimali",
  172. // Zend\Validator\Hostname
  173. "The input appears to be a DNS hostname but the given punycode notation cannot be decoded" => "L'input sembra essere un hostname DNS ma la notazione punycode data non può essere decodificata",
  174. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  175. "The input appears to be a DNS hostname but contains a dash in an invalid position" => "L'input sembra essere un hostname DNS ma contiene un trattino in una posizione non valida",
  176. "The input does not match the expected structure for a DNS hostname" => "L'input non sembra rispettare la struttura attesa per un hostname DNS",
  177. "The input appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'" => "L'input sembra essere un hostname DNS ma non rispetta lo schema per il TLD '%tld%'",
  178. "The input does not appear to be a valid local network name" => "L'input non sembra essere un nome valido per una rete locale",
  179. "The input does not appear to be a valid URI hostname" => "L'input non sembra essere un hostname URI valido",
  180. "The input appears to be an IP address, but IP addresses are not allowed" => "L'input sembra essere un indirizzo IP, ma gli indirizzi IP non sono consentiti",
  181. "The input appears to be a local network name but local network names are not allowed" => "L'input sembra essere un nome di una rete locale e queste non sono consentite",
  182. "The input appears to be a DNS hostname but cannot extract TLD part" => "L'input sembra essere un hostname DNS ma non è possibile estrarne il TLD",
  183. "The input appears to be a DNS hostname but cannot match TLD against known list" => "L'input sembra essere un hostname DNS ma il suo TLD è sconosciuto",
  184. // Zend\Validator\Iban
  185. "Unknown country within the IBAN" => "Codice paese sconosciuto nell'IBAN fornito",
  186. "Countries outside the Single Euro Payments Area (SEPA) are not supported" => "I paesi fuori dall'Area unica dei pagamenti in euro (SEPA) non sono supportati",
  187. "The input has a false IBAN format" => "L'input ha un formato IBAN non valido",
  188. "The input has failed the IBAN check" => "L'input ha fallito il controllo IBAN",
  189. // Zend\Validator\Identical
  190. "The two given tokens do not match" => "I due token dati non corrispondono",
  191. "No token was provided to match against" => "Non è stato dato nessun token per il confronto",
  192. // Zend\Validator\InArray
  193. "The input was not found in the haystack" => "L'input non è stato trovato nell'array",
  194. // Zend\Validator\Ip
  195. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  196. "The input does not appear to be a valid IP address" => "L'input non sembra essere un indirizzo IP valido",
  197. // Zend\Validator\IsInstanceOf
  198. "The input is not an instance of '%className%'" => "L'input non è un'istanza di '%className%'",
  199. // Zend\Validator\Isbn
  200. "Invalid type given. String or integer expected" => "Tipo di dato non valido. Era atteso un dato di tipo string o integer",
  201. "The input is not a valid ISBN number" => "L'input non è un numero ISBN valido",
  202. // Zend\Validator\LessThan
  203. "The input is not less than '%max%'" => "L'input non è minore di '%max%'",
  204. "The input is not less or equal than '%max%'" => "L'input non è minore o uguale a '%max%'",
  205. // Zend\Validator\NotEmpty
  206. "Value is required and can't be empty" => "Il dato è richiesto e non può essere vuoto",
  207. "Invalid type given. String, integer, float, boolean or array expected" => "Tipo di dato non valido. Era atteso un dato di tipo string, integer, float, boolean o array",
  208. // Zend\Validator\Regex
  209. "Invalid type given. String, integer or float expected" => "Tipo di dato non valido. Era atteso un dato di tipo string, float o integer",
  210. "The input does not match against pattern '%pattern%'" => "L'input non corrisponde al pattern '%pattern%'",
  211. "There was an internal error while using the pattern '%pattern%'" => "Si è verificato un errore interno usando il pattern '%pattern%'",
  212. // Zend\Validator\Sitemap\Changefreq
  213. "The input is not a valid sitemap changefreq" => "L'input non è una sitemap changefreq valida",
  214. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  215. // Zend\Validator\Sitemap\Lastmod
  216. "The input is not a valid sitemap lastmod" => "L'input non è un sitemap lastmod valido",
  217. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  218. // Zend\Validator\Sitemap\Loc
  219. "The input is not a valid sitemap location" => "L'input non è una sitemap location valida",
  220. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  221. // Zend\Validator\Sitemap\Priority
  222. "The input is not a valid sitemap priority" => "L'input non è una sitemap priority valida",
  223. "Invalid type given. Numeric string, integer or float expected" => "Tipo di dato non valido. Era atteso un dato di tipo stringa numerica, float o integer",
  224. // Zend\Validator\Step
  225. "Invalid value given. Scalar expected" => "Tipo di dato non valido. Era attesto un dato di tipo scalare",
  226. "The input is not a valid step" => "L'input non è uno step valido",
  227. // Zend\Validator\StringLength
  228. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  229. "The input is less than %min% characters long" => "L'input è meno lungo di %min% caratteri",
  230. "The input is more than %max% characters long" => "L'input è più lungo di %max% caratteri",
  231. // Zend\Validator\Uri
  232. "Invalid type given. String expected" => "Tipo di dato non valido. Era attesto un dato di tipo string",
  233. "The input does not appear to be a valid Uri" => "L'input non sembra essere un indirizzo URI valido",
  234. );