PageRenderTime 61ms CodeModel.GetById 34ms RepoModel.GetById 0ms app.codeStats 0ms

/resources/languages/sk/Zend_Validate.php

http://github.com/zendframework/zf2
PHP | 265 lines | 173 code | 35 blank | 57 comment | 16 complexity | 0ba983c25d25f174ec7d962d5648848c MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Translator
  17. * @subpackage Resource
  18. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. */
  21. /**
  22. * EN-Revision: 25.Jul.2011
  23. */
  24. return array(
  25. // Zend_Validate_Alnum
  26. "Invalid type given. String, integer or float expected" => "Chybný typ. Bol o?akávaný re?azec, celé alebo desatinné ?íslo",
  27. "'%value%' contains characters which are non alphabetic and no digits" => "'%value%' obsahuje aj iné znaky ako písmená a ?íslice",
  28. "'%value%' is an empty string" => "'%value%' je prázdny re?azec",
  29. // Zend_Validate_Alpha
  30. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  31. "'%value%' contains non alphabetic characters" => "'%value%' obsahuje aj iné znaky ako písmená",
  32. "'%value%' is an empty string" => "'%value%' je prázdny re?azec",
  33. // Zend_Validate_Barcode
  34. "'%value%' failed checksum validation" => "'%value%' má chybný kontrolný sú?et",
  35. "'%value%' contains invalid characters" => "'%value%' obsahuje neplatné znaky",
  36. "'%value%' should have a length of %length% characters" => "'%value%' by mal ma? d?žku %length% znakov",
  37. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec.",
  38. // Zend_Validate_Between
  39. "'%value%' is not between '%min%' and '%max%', inclusively" => "'%value%' nie je medzi '%min%' a '%max%', vrátane",
  40. "'%value%' is not strictly between '%min%' and '%max%'" => "'%value%' nie je ostro medzi '%min%' a '%max%'",
  41. // Zend_Validate_Callback
  42. "'%value%' is not valid" => "Hodnota '%value%' nie je platná",
  43. "An exception has been raised within the callback" => "Po?as volania bola vyvolaná výnimka",
  44. // Zend_Validate_Ccnum
  45. "'%value%' must contain between 13 and 19 digits" => "'%value%' musí obsahova? 13 až 19 ?íslic",
  46. "Luhn algorithm (mod-10 checksum) failed on '%value%'" => "Luhnov algoritmus (kontrolný sú?et mod-10) nevyšiel pre '%value%'",
  47. // Zend_Validate_CreditCard
  48. "'%value%' seems to contain an invalid checksum" => "'%value%' obsahuje neplatný kontrolný sú?et",
  49. "'%value%' must contain only digits" => "'%value%' musí obsahova? iba ?ísla",
  50. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  51. "'%value%' contains an invalid amount of digits" => "'%value%' obsahuje neplatný po?et ?íslic",
  52. "'%value%' is not from an allowed institute" => "'%value%' nie je od povolenej spolo?nosti",
  53. "'%value%' seems to be an invalid creditcard number" => "'%value%' nie je platné ?íslo kreditnej karty",
  54. "An exception has been raised while validating '%value%'" => "Po?as validácie '%value%' bola vyvoláná výnimka",
  55. // Zend_Validate_Date
  56. "Invalid type given. String, integer, array or Zend_Date expected" => "Chybný typ. Bol o?akávaný re?azec, ?íslo, pole, alebo Zend_Date",
  57. "'%value%' does not appear to be a valid date" => "'%value%' nie je platný dátum",
  58. "'%value%' does not fit the date format '%format%'" => "'%value%' nezodpovedá formátu dátumu '%format%'",
  59. // Zend_Validate_Db_Abstract
  60. "No record matching '%value%' was found" => "Nebol nájdený žiadny záznam zodpovedajúci '%value%'",
  61. "A record matching '%value%' was found" => "Bol nájdený záznam zodpovedajúci '%value%'",
  62. // Zend_Validate_Digits
  63. "Invalid type given. String, integer or float expected" => "Chybný typ. Bol o?akávaný re?azec, celé alebo desatinné ?íslo",
  64. "'%value%' must contain only digits" => "'%value%' musí obsahova? len ?íslice",
  65. "'%value%' is an empty string" => "'%value%' je prázdny re?azec",
  66. // Zend_Validate_EmailAddress
  67. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  68. "'%value%' is not a valid email address in the basic format local-part@hostname" => "'%value%' nie je platná e-mailová adresa vo formáte local-part@hostname",
  69. "'%hostname%' is not a valid hostname for email address '%value%'" => "'%hostname%' nie je platný hostname pre emailovú adresu '%value%'",
  70. "'%hostname%' does not appear to have a valid MX record for the email address '%value%'" => "'%hostname%' neobsahuje platný MX záznam pre e-mailovú adresu '%value%'",
  71. "'%hostname%' is not in a routable network segment. The email address '%value%' should not be resolved from public network" => "'%hostname%' nie je v smerovate?nom úseku sie?e. E-mailová adresa '%value%' by nemala by? požadovaná z verejnej siete",
  72. "'%localPart%' can not be matched against dot-atom format" => "'%localPart%' nemôže by? porovnaný vo?i dot-atom formátu",
  73. "'%localPart%' can not be matched against quoted-string format" => "'%localPart%' nemôže by? porovnaný vo?i quoted-string formátu",
  74. "'%localPart%' is not a valid local part for email address '%value%'" => "'%localPart%' nie je platná 'local part' pre e-mailovú adresu '%value%'",
  75. "'%value%' exceeds the allowed length" => "'%value%' prekro?il povolenú d?žku",
  76. // Zend_Validate_File_Count
  77. "Too many files, maximum '%max%' are allowed but '%count%' are given" => "Príliš ve?a súborov. Maximum je '%max%', ale bolo zadaných '%count%'",
  78. "Too few files, minimum '%min%' are expected but '%count%' are given" => "Príliš málo súborov. Minimum je '%min%', ale bol zadaný len '%count%'",
  79. // Zend_Validate_File_Crc32
  80. "File '%value%' does not match the given crc32 hashes" => "Súbor '%value%' nezodpovedá zadanému crc32 hashu",
  81. "A crc32 hash could not be evaluated for the given file" => "Pre zadaný súbor nemohol by? vypo?ítaný crc32 hash",
  82. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  83. // Zend_Validate_File_ExcludeExtension
  84. "File '%value%' has a false extension" => "Súbor '%value%' má nesprávnu príponu",
  85. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  86. // Zend_Validate_File_ExcludeMimeType
  87. "File '%value%' has a false mimetype of '%type%'" => "File '%value%' has a false mimetype of '%type%'",
  88. "The mimetype of file '%value%' could not be detected" => "Mimetyp súboru '%value%' nebolo možné zisti?",
  89. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  90. // Zend_Validate_File_Exists
  91. "File '%value%' does not exist" => "Súbor '%value%' neexistuje",
  92. // Zend_Validate_File_Extension
  93. "File '%value%' has a false extension" => "Súbor '%value%' má nesprávnu príponu",
  94. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  95. // Zend_Validate_File_FilesSize
  96. "All files in sum should have a maximum size of '%max%' but '%size%' were detected" => "Sú?et ve?kostí všetkých súborov by mal by? maximálne '%max%', ale je '%size%'",
  97. "All files in sum should have a minimum size of '%min%' but '%size%' were detected" => "Sú?et ve?kostí všetkých súborov by mal by? najmenej '%min%', ale je '%size%'",
  98. "One or more files can not be read" => "Jeden, alebo viac súborov nie je možné na?íta?",
  99. // Zend_Validate_File_Hash
  100. "File '%value%' does not match the given hashes" => "Súbor '%value%' nezodpovedá danému hashu",
  101. "A hash could not be evaluated for the given file" => "Hash nemohol by? pre daný súbor vypo?ítaný",
  102. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  103. // Zend_Validate_File_ImageSize
  104. "Maximum allowed width for image '%value%' should be '%maxwidth%' but '%width%' detected" => "Maximálna šírka obrázku '%value%' by mala by? '%maxwidth%', ale je '%width%'",
  105. "Minimum expected width for image '%value%' should be '%minwidth%' but '%width%' detected" => "Minimálna šírka obrázku '%value%' by mala by? '%minwidth%', ale je '%width%'",
  106. "Maximum allowed height for image '%value%' should be '%maxheight%' but '%height%' detected" => "Maximálna výška obrázku '%value%' by mala by? '%maxheight%', ale je '%height%'",
  107. "Minimum expected height for image '%value%' should be '%minheight%' but '%height%' detected" => "Minimálna výška obrázku '%value%' by mala by? '%minheight%', ale je '%height%'",
  108. "The size of image '%value%' could not be detected" => "Rozmery obrázku '%value%' nebolo možné zisti?",
  109. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  110. // Zend_Validate_File_IsCompressed
  111. "File '%value%' is not compressed, '%type%' detected" => "Súbor '%value%' nie je komprimovaný, ale '%type%'",
  112. "The mimetype of file '%value%' could not be detected" => "Mimetyp súboru '%value%' nebolo možné zis?it",
  113. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  114. // Zend_Validate_File_IsImage
  115. "File '%value%' is no image, '%type%' detected" => "Súbor '%value%' nie je obrázok, ale '%type%'",
  116. "The mimetype of file '%value%' could not be detected" => "Mimetyp súboru '%value%' nebolo možné zisti?",
  117. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  118. // Zend_Validate_File_Md5
  119. "File '%value%' does not match the given md5 hashes" => "Súbor '%value%' nezodpovedá danému md5 hashu",
  120. "A md5 hash could not be evaluated for the given file" => "Md5 hash nemohol by? pre daný súbor vypo?ítaný",
  121. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  122. // Zend_Validate_File_MimeType
  123. "File '%value%' has a false mimetype of '%type%'" => "Súbor '%value%' má neplatný mimetyp '%type%'",
  124. "The mimetype of file '%value%' could not be detected" => "Mimetyp súboru '%value%' nebolo možné zisti?",
  125. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  126. // Zend_Validate_File_NotExists
  127. "File '%value%' exists" => "Súbor '%value%' existuje",
  128. // Zend_Validate_File_Sha1
  129. "File '%value%' does not match the given sha1 hashes" => "Súbor '%value%' nezodpovedá danému sha1 hashu",
  130. "A sha1 hash could not be evaluated for the given file" => "Sha1 hash nemohol by? pre daný súbor vypo?ítaný",
  131. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  132. // Zend_Validate_File_Size
  133. "Maximum allowed size for file '%value%' is '%max%' but '%size%' detected" => "Maximálna povolená ve?kos? súboru je '%max%', ale '%value%' má '%size%'",
  134. "Minimum expected size for file '%value%' is '%min%' but '%size%' detected" => "Minimálna ve?kos? súboru je '%min%', ale '%value%' má '%size%'",
  135. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  136. // Zend_Validate_File_Upload
  137. "File '%value%' exceeds the defined ini size" => "Súbor '%value%' prekro?il ve?kos? definovanú v inom súbore",
  138. "File '%value%' exceeds the defined form size" => "Súbor '%value%' prekro?il ve?kos? definovanú vo formulári",
  139. "File '%value%' was only partially uploaded" => "Súbor '%value%' bol nahraný len ?iasto?ne",
  140. "File '%value%' was not uploaded" => "Súbor '%value%' nebol nahraný",
  141. "No temporary directory was found for file '%value%'" => "Pre súbor '%value%' nebol nájdený žiadny do?asný adresár",
  142. "File '%value%' can't be written" => "Súbor '%value%' nemôže by? zapísaný",
  143. "A PHP extension returned an error while uploading the file '%value%'" => "PHP rozšírenie vrátilo chybu po?as nahrávania súboru '%value%'",
  144. "File '%value%' was illegally uploaded. This could be a possible attack" => "Súbor '%value%' bol neoprávnene nahraný. Môže se jedna? o útok",
  145. "File '%value%' was not found" => "Súbor '%value%' nebol nájdený",
  146. "Unknown error while uploading file '%value%'" => "Po?as nahrávania súboru '%value%' došlo k chybe",
  147. // Zend_Validate_File_WordCount
  148. "Too much words, maximum '%max%' are allowed but '%count%' were counted" => "Príliš ve?a slov. Maximálne je ich dovolených '%max%', ale bolo zadaných '%count%'",
  149. "Too less words, minimum '%min%' are expected but '%count%' were counted" => "Príliš málo slov. Musí ich by? aspo? '%min%', ale bolo zadaných len '%count%'",
  150. "File '%value%' is not readable or does not exist" => "Súbor '%value%' bu? nie je ?itate?ný, alebo neexistuje",
  151. // Zend_Validate_Float
  152. "Invalid type given. String, integer or float expected" => "Chybný typ. Bol o?akávaný re?azec, celé alebo desatinné ?íslo",
  153. "'%value%' does not appear to be a float" => "'%value%' nie je desatinné ?íslo",
  154. // Zend_Validate_GreaterThan
  155. "'%value%' is not greater than '%min%'" => "'%value%' nie je vä?šie ako '%min%'",
  156. // Zend_Validate_Hex
  157. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  158. "'%value%' has not only hexadecimal digit characters" => "'%value%' neobsahuje len znaky hexadecimálnych ?ísel",
  159. // Zend_Validate_Hostname
  160. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  161. "'%value%' appears to be an IP address, but IP addresses are not allowed" => "'%value%' vyzerá ako IP adresa, ale tie nie sú dovolené",
  162. "'%value%' appears to be a DNS hostname but cannot match TLD against known list" => "'%value%' vyzerá ako hostname, ale nemohol by? overený vo?i známym TLD",
  163. "'%value%' appears to be a DNS hostname but contains a dash in an invalid position" => "'%value%' vyzerá ako hostname, ale obsahuje poml?ku na nedovolenom mieste",
  164. "'%value%' appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'" => "'%value%' vyzerá ako hostname, ale nezodpovedá formátu hostname pre '%tld%'",
  165. "'%value%' appears to be a DNS hostname but cannot extract TLD part" => "'%value%' síce vyzerá ako hostname, ale nemožno ur?i? TLD",
  166. "'%value%' does not match the expected structure for a DNS hostname" => "'%value%' nezodpovedá o?akávanej štruktúre hostname",
  167. "'%value%' does not appear to be a valid local network name" => "'%value%' nevyzerá ako platné sie?ové meno",
  168. "'%value%' appears to be a local network name but local network names are not allowed" => "'%value%' vyzerá ako hostname lokálnej siete, tie ale nie sú povolené",
  169. "'%value%' appears to be a DNS hostname but the given punycode notation cannot be decoded" => "'%value%' vyzerá ako DNS hostname ale zadanú punycode notáciu nie je možné dekódova?",
  170. "'%value%' does not appear to be a valid URI hostname" => "'%value%' nevyzerá ako platné URI hostname",
  171. // Zend_Validate_Iban
  172. "Unknown country within the IBAN '%value%'" => "Neznámý štát v IBAN '%value%'",
  173. "'%value%' has a false IBAN format" => "'%value%' nie je platný formát IBAN",
  174. "'%value%' has failed the IBAN check" => "'%value%' neprešlo kontrolou IBAN",
  175. // Zend_Validate_Identical
  176. "The two given tokens do not match" => "Zadané položky nie su zhodné",
  177. "No token was provided to match against" => "Nebola zadáná položka pre porovnanie",
  178. // Zend_Validate_InArray
  179. "'%value%' was not found in the haystack" => "'%value%' nebola nájdená v zozname",
  180. // Zend_Validate_Int
  181. "Invalid type given. String or integer expected" => "Chybný typ. Bol o?akávaný re?azec, alebo celé ?íslo",
  182. "'%value%' does not appear to be an integer" => "'%value%' nie je celé ?íslo",
  183. // Zend_Validate_Ip
  184. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  185. "'%value%' does not appear to be a valid IP address" => "'%value%' nie je platná IP adresa",
  186. // Zend_Validate_Isbn
  187. "Invalid type given. String or integer expected" => "Chybný typ. Bol o?akávaný re?azec, alebo celé ?íslo",
  188. "'%value%' is not a valid ISBN number" => "'%value%' nie je platné ISBN",
  189. // Zend_Validate_LessThan
  190. "'%value%' is not less than '%max%'" => "'%value%' nie je menej ako '%max%'",
  191. // Zend_Validate_NotEmpty
  192. "Invalid type given. String, integer, float, boolean or array expected" => "Chybný typ. Bol o?akávaný re?azec, celé alebo desatinné ?íslo, boolean alebo pole",
  193. "Value is required and can't be empty" => "Položka je povinná a nesmie by? prázdna",
  194. // Zend_Validate_PostCode
  195. "Invalid type given. String or integer expected" => "Chybný typ. Bol o?akávaný re?azec, alebo celé ?íslo",
  196. "'%value%' does not appear to be a postal code" => "'%value%' nevyzerá ako PS?",
  197. // Zend_Validate_Regex
  198. "Invalid type given. String, integer or float expected" => "Chybný typ. Bol o?akávaný re?azec, celé alebo desatinné ?íslo",
  199. "'%value%' does not match against pattern '%pattern%'" => "'%value%' nezodpovedá šablóne '%pattern%'",
  200. "There was an internal error while using the pattern '%pattern%'" => "Po?as spracovania šablóny '%pattern%' došlo k internej chybe",
  201. // Zend_Validate_Sitemap_Changefreq
  202. "'%value%' is not a valid sitemap changefreq" => "'%value%' nie je platný 'changefreq' pre sitemapu",
  203. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  204. // Zend_Validate_Sitemap_Lastmod
  205. "'%value%' is not a valid sitemap lastmod" => "'%value%' nie je platný 'lastmod' pre sitemapu",
  206. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  207. // Zend_Validate_Sitemap_Loc
  208. "'%value%' is not a valid sitemap location" => "'%value%' nie je platná 'location' pre sitemapu",
  209. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  210. // Zend_Validate_Sitemap_Priority
  211. "'%value%' is not a valid sitemap priority" => "'%value%' nie je platná 'priority' pre sitemapu",
  212. "Invalid type given. Numeric string, integer or float expected" => "Chybný typ. Bol o?akávaný ?íselný re?azec, celé alebo desatinné ?íslo",
  213. // Zend_Validate_StringLength
  214. "Invalid type given. String expected" => "Chybný typ. Bol o?akávaný re?azec",
  215. "'%value%' is less than %min% characters long" => "'%value%' je kratšia ako %min% znakov",
  216. "'%value%' is more than %max% characters long" => "'%value%' je dlhšia ako %max% znakov",
  217. );