PageRenderTime 38ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/resources/languages/sr/Zend_Validate.php

https://bitbucket.org/dbaltas/zend-framework-1.x-on-git
PHP | 266 lines | 173 code | 35 blank | 58 comment | 16 complexity | 091714e679f2b04e9cb00e45e4c99634 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.0, MIT
  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_Translate
  17. * @subpackage Ressource
  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. * @version $Id:$
  21. */
  22. /**
  23. * EN-Revision: 21135
  24. */
  25. return array(
  26. // Zend_Validate_Alnum
  27. "Invalid type given, value should be float, string, or integer" => "Nevalidan tip, vrednost treba da bude tekst ili broj",
  28. "'%value%' contains characters which are non alphabetic and no digits" => "'%value%' sadrži karaktere koji nisu slova niti cifre",
  29. "'%value%' is an empty string" => "'%value%' je prazan tekst",
  30. // Zend_Validate_Alpha
  31. "Invalid type given, value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  32. "'%value%' contains non alphabetic characters" => "'%value%' sadrži karaktere koji nisu slova",
  33. "'%value%' is an empty string" => "'%value%' je prazan tekst",
  34. // Zend_Validate_Barcode
  35. "'%value%' failed checksum validation" => "'%value%' greška u checksum validaciji",
  36. "'%value%' contains invalid characters" => "'%value%' sadrži nevalidne karaktere",
  37. "'%value%' should have a length of %length% characters" => "'%value%' treba da bude dužine %length%",
  38. "Invalid type given, value should be string" => "Nevalidan tip, vrednost treba da bude tekst",
  39. // Zend_Validate_Between
  40. "'%value%' is not between '%min%' and '%max%', inclusively" => "'%value%' nije između '%min%' i '%max%', uključivo",
  41. "'%value%' is not strictly between '%min%' and '%max%'" => "'%value%' nije strogo između '%min%' i '%max%'",
  42. // Zend_Validate_Callback
  43. "'%value%' is not valid" => "'%value%' nije validno",
  44. "Failure within the callback, exception returned" => "Greška u pozivu",
  45. // Zend_Validate_Ccnum
  46. "'%value%' must contain between 13 and 19 digits" => "'%value%' treba da sadrži između 13 i 19 cifara",
  47. "Luhn algorithm (mod-10 checksum) failed on '%value%'" => "Luhn algoritam ne prolazi na '%value%'",
  48. // Zend_Validate_CreditCard
  49. "Luhn algorithm (mod-10 checksum) failed on '%value%'" => "Luhn algoritam ne prolazi na '%value%'",
  50. "'%value%' must contain only digits" => "'%value%' treba da sadrži samo cifre",
  51. "Invalid type given, value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  52. "'%value%' contains an invalid amount of digits" => "'%value%' sadrži nevalidu količinu cifara",
  53. "'%value%' is not from an allowed institute" => "'%value%' nije iz dozvoljene institucije",
  54. "Validation of '%value%' has been failed by the service" => "Validacija '%value%' nije uspela od strane servisa",
  55. "The service returned a failure while validating '%value%'" => "Servis je vratio grešku pri validaciji '%value%'",
  56. // Zend_Validate_Date
  57. "Invalid type given, value should be string, integer, array or Zend_Date" => "Nevalidan tip, vrednost treba da bude tekst, ceo broj, niz ili Zend_Date",
  58. "'%value%' does not appear to be a valid date" => "'%value%' nije validan datum",
  59. "'%value%' does not fit the date format '%format%'" => "'%value%' nije u formatu datuma '%format%'",
  60. // Zend_Validate_Db_Abstract
  61. "No record matching %value% was found" => "Zapis koji se poklapa sa %value% nije pronađen",
  62. "A record matching %value% was found" => "Zapis koji se poklapa sa %value% je pronađen",
  63. // Zend_Validate_Digits
  64. "Invalid type given, value should be string, integer or float" => "Nevalidan tip, vrednost treba da bude tekst ili broj",
  65. "'%value%' contains characters which are not digits; but only digits are allowed" => "'%value%' sadrži karaktere koji nisu cifre, a samo cifre su dozvoljene",
  66. "'%value%' contains not only digit characters" => "'%value%' ne sadrži samo cifre",
  67. "'%value%' is an empty string" => "'%value%' je prazan tekst",
  68. // Zend_Validate_EmailAddress
  69. "Invalid type given, value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  70. "'%value%' is not a valid email address in the basic format local-part@hostname" => "'%value%' nije validna adresa elektronske pošte u formatu adresa@imehosta",
  71. "'%hostname%' is not a valid hostname for email address '%value%'" => "'%hostname%' nije validno ime hosta za adresu elektronske pošte '%value%'",
  72. "'%hostname%' does not appear to have a valid MX record for the email address '%value%'" => "'%hostname%' nema validan MX zapis za adresu elektronske pošte '%value%'",
  73. "'%hostname%' is not in a routable network segment. The email address '%value%' should not be resolved from public network." => "'%hostname%' nije rutabilan mrežni segment. Adresa elektronske pošte '%value%' ne treba da bude razrešena sa javne mreže",
  74. "'%localPart%' can not be matched against dot-atom format" => "'%localPart%' se ne poklapa sa dot-atom formatom",
  75. "'%localPart%' can not be matched against quoted-string format" => "'%localPart%' se ne poklapa sa quoted-string formatom",
  76. "'%localPart%' is not a valid local part for email address '%value%'" => "'%localPart%' nije validan deo adrese elektronske pošte '%value%'",
  77. "'%value%' exceeds the allowed length" => "'%value%' prelazi dozvoljenu dužinu",
  78. // Zend_Validate_File_Count
  79. "Too many files, maximum '%max%' are allowed but '%count%' are given" => "Preveliki broj fajlova, maksimalno '%max%' je dozvoljeno, a '%count%' je prosleđeno",
  80. "Too few files, minimum '%min%' are expected but '%count%' are given" => "Premali broj fajlova, minimalno '%min%' je očekivano, a '%count%' je prosleđeno",
  81. // Zend_Validate_File_Crc32
  82. "File '%value%' does not match the given crc32 hashes" => "Fajl '%value%' ne prolazi crc32 proveru",
  83. "A crc32 hash could not be evaluated for the given file" => "Nema crc32 kodova za dati fajl",
  84. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  85. // Zend_Validate_File_ExcludeExtension
  86. "File '%value%' has a false extension" => "Fajl '%value%' ima nevalidnu ekstenziju",
  87. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  88. // Zend_Validate_File_ExcludeMimeType
  89. "File '%value%' has a false mimetype of '%type%'" => "Fajl '%value%' ima nevalidan mime-tip '%type%'",
  90. "The mimetype of file '%value%' could not be detected" => "Mime-tip fajla '%value%' ne može biti detektovan",
  91. "File '%value%' can not be read" => "Fajl '%value%' ne može biti pročitan",
  92. // Zend_Validate_File_Exists
  93. "File '%value%' does not exist" => "Fajl '%value%' ne postoji",
  94. // Zend_Validate_File_Extension
  95. "File '%value%' has a false extension" => "Fajl '%value%' ima nevalidnu ekstenziju",
  96. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  97. // Zend_Validate_File_FilesSize
  98. "All files in sum should have a maximum size of '%max%' but '%size%' were detected" => "Svi fajlovi u zbiru treba da imaju maksimalnu veličinu '%max%', veličina poslatih fajlova je '%size%'",
  99. "All files in sum should have a minimum size of '%min%' but '%size%' were detected" => "Svi fajlovi u zbiru treba da imaju minimalnu veličinu '%min%', veličina poslatih fajlova je '%size%'",
  100. "One or more files can not be read" => "Jedan ili više fajlova ne može biti pročitan",
  101. // Zend_Validate_File_Hash
  102. "File '%value%' does not match the given hashes" => "Fajl '%value%' je nepravilno kodiran",
  103. "A hash could not be evaluated for the given file" => "Heševi nisu pronađeni za dati fajl",
  104. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  105. // Zend_Validate_File_ImageSize
  106. "Maximum allowed width for image '%value%' should be '%maxwidth%' but '%width%' detected" => "Maksimalna dozvoljena širina slike '%value%' je '%maxwidth%', data slika ima širinu '%width%'",
  107. "Minimum expected width for image '%value%' should be '%minwidth%' but '%width%' detected" => "Minimalna očekivana širina slike '%value%' je '%minwidth%', data slika ima širinu '%width%'",
  108. "Maximum allowed height for image '%value%' should be '%maxheight%' but '%height%' detected" => "Maksimalna dozvoljena visina slike '%value%' je '%maxheight%', data slika ima visinu '%height%'",
  109. "Minimum expected height for image '%value%' should be '%minheight%' but '%height%' detected" => "Minimalna očekivana visina slike '%value%' je '%minheight%', data slika ima visinu '%height%'",
  110. "The size of image '%value%' could not be detected" => "Veličina slike '%value%' ne može biti određena",
  111. "File '%value%' can not be read" => "Fajl '%value%' ne može biti pročitan",
  112. // Zend_Validate_File_IsCompressed
  113. "File '%value%' is not compressed, '%type%' detected" => "Fajl '%value%' nije kompresovan, '%type%' detektovan",
  114. "The mimetype of file '%value%' could not be detected" => "Mime-tip fajla '%value%' ne može biti detektovan",
  115. "File '%value%' can not be read" => "Fajl '%value%' ne može biti pročitan",
  116. // Zend_Validate_File_IsImage
  117. "File '%value%' is no image, '%type%' detected" => "Fajl '%value%' nije slika, '%type%' detektovan",
  118. "The mimetype of file '%value%' could not be detected" => "Mime-tip fajla '%value%' ne može biti detektovan",
  119. "File '%value%' can not be read" => "Fajl '%value%' ne može biti pročitan",
  120. // Zend_Validate_File_Md5
  121. "File '%value%' does not match the given md5 hashes" => "Fajl '%value%' ne prolazi md5 proveru",
  122. "A md5 hash could not be evaluated for the given file" => "Nema md5 heševa za dati fajl",
  123. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  124. // Zend_Validate_File_MimeType
  125. "File '%value%' has a false mimetype of '%type%'" => "Fajl '%value%' ima nevalidan mime-tip '%type%'",
  126. "The mimetype of file '%value%' could not be detected" => "Mime-tip fajla '%value%' ne može biti detektovan",
  127. "File '%value%' can not be read" => "Fajl '%value%' ne može biti pročitan",
  128. // Zend_Validate_File_NotExists
  129. "File '%value%' exists" => "Fajl '%value%' postoji",
  130. // Zend_Validate_File_Sha1
  131. "File '%value%' does not match the given sha1 hashes" => "Fajl '%value%' ne prolazi sha1 proveru",
  132. "A sha1 hash could not be evaluated for the given file" => "Nema sha1 heševa za dati fajl",
  133. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  134. // Zend_Validate_File_Size
  135. "Maximum allowed size for file '%value%' is '%max%' but '%size%' detected" => "Maksimalna dozvoljena veličina fajla '%value%' je '%max%', data veličina je '%size%'",
  136. "Minimum expected size for file '%value%' is '%min%' but '%size%' detected" => "Minimalna očekivana veličina fajla '%value%' je '%min%', data veličina je '%size%'",
  137. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  138. // Zend_Validate_File_Upload
  139. "File '%value%' exceeds the defined ini size" => "Fajl '%value%' prevazilazi maksimalnu dozvoljenu veličinu",
  140. "File '%value%' exceeds the defined form size" => "Fajl '%value%' prevazilazi maksimalnu dozvoljenu veličinu",
  141. "File '%value%' was only partially uploaded" => "Fajl '%value%' je samo parcijalno uploadovan",
  142. "File '%value%' was not uploaded" => "Fajl '%value%' nije uploadovan",
  143. "No temporary directory was found for file '%value%'" => "Privremeni direktorijum nije pronađen za fajl '%value%'",
  144. "File '%value%' can't be written" => "Fajl '%value%' ne može biti izmenjen",
  145. "A PHP extension returned an error while uploading the file '%value%'" => "Ekstenzija je vratila grešku tokom uploada fajla '%value%'",
  146. "File '%value%' was illegally uploaded. This could be a possible attack" => "Fajl '%value%' je ilegalno uploadovan, moguć napad",
  147. "File '%value%' was not found" => "Fajl '%value%' nije pronađen",
  148. "Unknown error while uploading file '%value%'" => "Nepoznata greška pri uploadu fajla '%value%'",
  149. // Zend_Validate_File_WordCount
  150. "Too much words, maximum '%max%' are allowed but '%count%' were counted" => "Previše reči, maksimalno '%max%' je dozvoljeno, '%count%' je izbrojano",
  151. "Too less words, minimum '%min%' are expected but '%count%' were counted" => "Premalo reči, minimalno '%min%' je očekivano, '%count%' je izbrojano",
  152. "File '%value%' could not be found" => "Fajl '%value%' ne može biti pronađen",
  153. // Zend_Validate_Float
  154. "Invalid type given, value should be float, string, or integer" => "Nevalidan tip, vrednost treba da bude tekst ili broj",
  155. "'%value%' does not appear to be a float" => "'%value%' nije razlomljeni broj",
  156. // Zend_Validate_GreaterThan
  157. "'%value%' is not greater than '%min%'" => "'%value%' nije veće od '%min%'",
  158. // Zend_Validate_Hex
  159. "Invalid type given, value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  160. "'%value%' has not only hexadecimal digit characters" => "'%value%' se ne sastoji samo od heksadecimalnih karaktera",
  161. // Zend_Validate_Hostname
  162. "Invalid type given, value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  163. "'%value%' appears to be an IP address, but IP addresses are not allowed" => "'%value%' je IP adresa, IP adrese nisu dozvoljene",
  164. "'%value%' appears to be a DNS hostname but cannot match TLD against known list" => "'%value%' je DNS ime hosta, ali TLD nije u listi poznatih",
  165. "'%value%' appears to be a DNS hostname but contains a dash in an invalid position" => "'%value%' je DNS ime hosta, ali sadrži srednju crtu (-) na nedozvoljenoj poziciji",
  166. "'%value%' appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'" => "'%value%' je DNS ime hosta, ali se ne poklapa sa šemom za '%tld%' TLD",
  167. "'%value%' appears to be a DNS hostname but cannot extract TLD part" => "'%value%' je DNS ime hosta, ali ne može da se ekstraktuje TLD deo '%tld%'",
  168. "'%value%' does not match the expected structure for a DNS hostname" => "'%value%' se ne poklapa sa očekivanom strukturom DNS imena hosta",
  169. "'%value%' does not appear to be a valid local network name" => "'%value%' nije validno ime lokalne mreže",
  170. "'%value%' appears to be a local network name but local network names are not allowed" => "'%value%' je ime lokalne mreže, lokalna imena mreža nisu dozvoljena",
  171. "'%value%' appears to be a DNS hostname but the given punycode notation cannot be decoded" => "'%value%' je DNS ime hosta, ali data punikod notacija ne može biti dekodirana",
  172. // Zend_Validate_Iban
  173. "Unknown country within the IBAN '%value%'" => "Nepoznata zemlja u IBAN '%value%'",
  174. "'%value%' has a false IBAN format" => "'%value%' nije u validnom IBAN formatu",
  175. "'%value%' has failed the IBAN check" => "'%value%' ne prolazi IBAN proveru",
  176. // Zend_Validate_Identical
  177. "The two given tokens do not match" => "Tokeni se ne poklapaju",
  178. "No token was provided to match against" => "Token za proveru nije prosleđen",
  179. // Zend_Validate_InArray
  180. "'%value%' was not found in the haystack" => "'%value%' nije pronađeno u gomili",
  181. // Zend_Validate_Int
  182. "Invalid type given, value should be string or integer" => "Nevalidan tip, vrednost treba da bude tekst ili ceo broj",
  183. "'%value%' does not appear to be an integer" => "'%value%' nije ceo broj",
  184. // Zend_Validate_Ip
  185. "Invalid type given, value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  186. "'%value%' does not appear to be a valid IP address" => "'%value%' nije validna IP adresa",
  187. // Zend_Validate_Isbn
  188. "Invalid type given, value should be string or integer" => "Nevalidan tip, vrednost treba da bude tekst ili ceo broj",
  189. "'%value%' is not a valid ISBN number" => "'%value%' nije validan ISBN broj",
  190. // Zend_Validate_LessThan
  191. "'%value%' is not less than '%max%'" => "'%value%' je manje od '%max%'",
  192. // Zend_Validate_NotEmpty
  193. "Invalid type given, value should be float, string, array, boolean or integer" => "Nevalidan tip, vrednost treba da bude tekst, broj ili logička vrednost",
  194. "Value is required and can't be empty" => "Vrednost je obavezna i ne sme biti prazna",
  195. // Zend_Validate_PostCode
  196. "Invalid type given. The value should be a string or a integer" => "Nevalidan tip. Vrednost treba da bude tekst ili ceo broj",
  197. "'%value%' does not appear to be a postal code" => "'%value%' nije poštanski broj",
  198. // Zend_Validate_Regex
  199. "Invalid type given, value should be string, integer or float" => "Nevalidan tip, vrednost treba da bude tekst ili broj",
  200. "'%value%' does not match against pattern '%pattern%'" => "'%value%' se ne poklapa sa formatom '%pattern%'",
  201. "There was an internal error while using the pattern '%pattern%'" => "Dogodila se greška pri korišćenju formata '%pattern%'",
  202. // Zend_Validate_Sitemap_Changefreq
  203. "'%value%' is not a valid sitemap changefreq" => "'%value%' nije validna frekvencija promene mape sajta",
  204. "Invalid type given, the value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  205. // Zend_Validate_Sitemap_Lastmod
  206. "'%value%' is not a valid sitemap lastmod" => "'%value%' nije validan datum izmene mape sajta",
  207. "Invalid type given, the value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  208. // Zend_Validate_Sitemap_Loc
  209. "'%value%' is not a valid sitemap location" => "'%value%' nije validna lokacija mape sajta",
  210. "Invalid type given, the value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  211. // Zend_Validate_Sitemap_Priority
  212. "'%value%' is not a valid sitemap priority" => "'%value%' nije validan prioritet mape sajta",
  213. "Invalid type given, the value should be a integer, a float or a numeric string" => "Nevalidan tip, vrednost treba da bude broj ili numerički niz",
  214. // Zend_Validate_StringLength
  215. "Invalid type given, value should be a string" => "Nevalidan tip, vrednost treba da bude tekst",
  216. "'%value%' is less than %min% characters long" => "'%value%' ima manje od %min% karaktera",
  217. "'%value%' is more than %max% characters long" => "'%value%' ima više od %max% karaktera",
  218. );