PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/vendor/zendframework/zendframework/resources/languages/tr/Zend_Validate.php

https://bitbucket.org/pcelta/zf2
PHP | 279 lines | 179 code | 39 blank | 61 comment | 14 complexity | d31fda60fe77e73747b83f6b19928b0a MD5 | raw file
  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: 28.Sept.2012
  23. */
  24. return array(
  25. // Zend_I18n_Validator_Alnum
  26. "Invalid type given. String, integer or float expected" => "Geçersiz tür verildi, Dize, tamsayı ya da ondalık sayı bekleniyor",
  27. "The input contains characters which are non alphabetic and no digits" => "Girdi, harf ve rakam olmayan karakterler içeriyor",
  28. "The input is an empty string" => "Girdi boş bir dizedir",
  29. // Zend_I18n_Validator_Alpha
  30. "Invalid type given. String expected" => "Geçersiz tür verildi. Dize bekleniyor",
  31. "The input contains non alphabetic characters" => "Girdi alfabetik olmayan karakterler içeriyor",
  32. "The input is an empty string" => "Girdi boş bir dizedir",
  33. // Zend_I18n_Validator_Float
  34. "Invalid type given. String, integer or float expected" => "Geçersiz tür verildi, Dize, tamsayı ya da ondalık sayı bekleniyor",
  35. "The input does not appear to be a float" => "Girdi ondalık bir sayı olarak görünmüyor",
  36. // Zend_I18n_Validator_Int
  37. "Invalid type given. String or integer expected" => "Geçersiz tür verildi. Dize veya tamsayı bekleniyor",
  38. "The input does not appear to be an integer" => "Girdi bir tamsayı olarak görünmüyor",
  39. // Zend_I18n_Validator_PostCode
  40. "Invalid type given. String or integer expected" => "Geçersiz tür verildi. Dizge veya tamsayı bekleniyor",
  41. "The input does not appear to be a postal code" => "Girdi bir posta kodu olarak görünmüyor",
  42. "An exception has been raised while validating the input" => "Girdi doğrulanırken bir istisna meydana geldi",
  43. // Zend_Validator_Barcode
  44. "The input failed checksum validation" => "Girişin sağlama doğrulaması başarısız oldu",
  45. "The input contains invalid characters" => "Girdi geçersiz karakterler içeriyor",
  46. "The input should have a length of %length% characters" => "Girdi %length% karakter uzunluğunda olmalıdır",
  47. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  48. // Zend_Validator_Between
  49. "The input is not between '%min%' and '%max%', inclusively" => "Girdi '%min%' ve '%max%' karakter arasında değil",
  50. "The input is not strictly between '%min%' and '%max%'" => "Girdi tamamen '%min%' ve '%max%' karakter arasında değil",
  51. // Zend_Validator_Callback
  52. "The input is not valid" => "Girdi geçerli değil",
  53. "An exception has been raised within the callback" => "Callback içinde bir istisna meydana gelmiştir",
  54. // Zend_Validator_CreditCard
  55. "The input seems to contain an invalid checksum" => "Girdi geçersiz bir sağlama toplamı içeriyor",
  56. "The input must contain only digits" => "Girdi sadece rakam içermelidir",
  57. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  58. "The input contains an invalid amount of digits" => "Girdi geçersiz sayıda rakam içeriyor",
  59. "The input is not from an allowed institute" => "Girdi izin verilen bir kuruluştan değil",
  60. "The input seems to be an invalid creditcard number" => "Girdi geçersiz bir kredi kartı numarası gibi görünüyor",
  61. "An exception has been raised while validating the input" => "Girdi doğrulanırken bir hata meydana geldi",
  62. // Zend_Validator_Csrf
  63. "The form submitted did not originate from the expected site" => "Gönderilen form beklenen site kaynaklı gibi görünmüyor",
  64. // Zend_Validator_Date
  65. "Invalid type given. String, integer, array or DateTime expected" => "Geçersiz tür verildi. Dizge, tamsayı, dizi veya ZamanSaat bekleniyor",
  66. "The input does not appear to be a valid date" => "Girdi geçerli bir tarih olarak görünmüyor",
  67. "The input does not fit the date format '%format%'" => "Girdi '%format%' tarih biçimine uymuyor",
  68. // Zend_Validator_DateStep
  69. "Invalid type given. String, integer, array or DateTime expected" => "Geçersiz tür verildi. Dizge, tamsayı, dizi veya ZamanSaat bekleniyor",
  70. "The input does not appear to be a valid date" => "Girdi geçerli bir tarih olarak görünmüyor",
  71. "The input is not a valid step" => "Girdi geçerli bir dilim değildir",
  72. // Zend_Validator_Db_AbstractDb
  73. "No record matching the input was found" => "Girdi ile eşleşen hiçbir kayıt bulunamadı",
  74. "A record matching the input was found" => "Girdi ile eşleşen bir kayıt bulundu",
  75. // Zend_Validator_Digits
  76. "The input must contain only digits" => "Girdi sadece rakam içermelidir",
  77. "The input is an empty string" => "Girdi boş bir dizedir",
  78. "Invalid type given. String, integer or float expected" => "Geçersiz tür verildi, Dize, tamsayı ya da ondalık sayı bekleniyor",
  79. // Zend_Validator_EmailAddress
  80. "Invalid type given. String expected" => "Yanlış tür verildi. Dize bekleniyor",
  81. "The input is not a valid email address. Use the basic format local-part@hostname" => "Girdi geçerli bir E-posta adresi değil. local-part@hostname formatını kullanın",
  82. "'%hostname%' is not a valid hostname for the email address" => "'%hostname%' E-posta adresi için geçerli bir sağlayıcı değildir",
  83. "'%hostname%' does not appear to have any valid MX or A records for the email address" => "'%hostname%', E-posta adresi için geçerli bir A veya MX kaydına sahip gibi görünmüyor",
  84. "'%hostname%' is not in a routable network segment. The email address should not be resolved from public network" => "'%hostname%' yönlendirilebilir bir ağ katmanı değil. E-posta adresi açık bir ağdan çözümlenmemeli",
  85. "'%localPart%' can not be matched against dot-atom format" => "'%localPart%' dot-atom formatıyla uyuşmuyor",
  86. "'%localPart%' can not be matched against quoted-string format" => "'%localPart%' tırnaklı-dizge formatıyla uyuşmuyor",
  87. "'%localPart%' is not a valid local part for the email address" => "'%localPart%' e-posta için geçerli bir yerel parça değil",
  88. "The input exceeds the allowed length" => "Girdi izin verilen uzunluğu aşıyor",
  89. // Zend_Validator_Explode
  90. "Invalid type given. String expected" => "Yanlış tür verildi. Dize bekleniyor",
  91. // Zend_Validator_File_Count
  92. "Too many files, maximum '%max%' are allowed but '%count%' are given" => "Çok fazla dosya, en fazla '%max%' adete izin veriliyor fakat '%count%' adet verildi",
  93. "Too few files, minimum '%min%' are expected but '%count%' are given" => "Çok faz dosya, en az '%min%' adet bekleniyor fakat '%count%' adet verildi",
  94. // Zend_Validator_File_Crc32
  95. "File '%value%' does not match the given crc32 hashes" => "'%value%' dosyası verilen crc32 hash'ları ile eşleşmiyor",
  96. "A crc32 hash could not be evaluated for the given file" => "Bir crc32 hash'ı verilen dosya için değerlendirilemiyor",
  97. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  98. // Zend_Validator_File_ExcludeExtension
  99. "File '%value%' has a false extension" => "'%value%' dosyası yanlış bir uzantıya sahip",
  100. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  101. // Zend_Validator_File_Exists
  102. "File '%value%' does not exist" => "'%value%' dosyası yok",
  103. // Zend_Validator_File_Extension
  104. "File '%value%' has a false extension" => "'%value%' dosyası yanlış bir uzantıya sahip",
  105. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  106. // Zend_Validator_File_FilesSize
  107. "All files in sum should have a maximum size of '%max%' but '%size%' were detected" => "Tüm dosyaların toplam boyutu en fazla '%max%' olmalıdır fakat '%size%' tespit edildi",
  108. "All files in sum should have a minimum size of '%min%' but '%size%' were detected" => "Tüm dosyaların toplam boyutu en az '%min%' olmalıdır fakat '%size%' tespit edildi",
  109. "One or more files can not be read" => "Bir ya da daha fazla dosya okunamıyor",
  110. // Zend_Validator_File_Hash
  111. "File '%value%' does not match the given hashes" => "'%value%' dosyası verilen hash ile uyuşmuyor",
  112. "A hash could not be evaluated for the given file" => "Bir hash verilen dosya için değerlendirmeye alınamamıştır",
  113. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  114. // Zend_Validator_File_ImageSize
  115. "Maximum allowed width for image '%value%' should be '%maxwidth%' but '%width%' detected" => "'%value%' resim dosyasının genişliği en fazla '%maxwidth%' olmalıdır fakat '%width%' algılandı",
  116. "Minimum expected width for image '%value%' should be '%minwidth%' but '%width%' detected" => "'%value%' resim dosyasının genişliği en az '%minwidth%' olmalıdır fakat '%width%' algılandı",
  117. "Maximum allowed height for image '%value%' should be '%maxheight%' but '%height%' detected" => "'%value%' resim dosyasının yüksekliği en fazla '%maxheight%' olmalıdır fakat '%height%' algılandı",
  118. "Minimum expected height for image '%value%' should be '%minheight%' but '%height%' detected" => "'%value%' resim dosyasının yüksekliği en az '%minheight%' olmalıdır fakat '%height%' algılandı",
  119. "The size of image '%value%' could not be detected" => "'%value%' resminin boyutları algılanamadı",
  120. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  121. // Zend_Validator_File_IsCompressed
  122. "File '%value%' is not compressed, '%type%' detected" => "'%value%' dosyası sıkıştırılmış değil, '%type%' algılandı",
  123. "The mimetype of file '%value%' could not be detected" => "'%value%' dosyasının mime-tipi algılanamadı",
  124. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  125. // Zend_Validator_File_IsImage
  126. "File '%value%' is no image, '%type%' detected" => "'%value%' resim değil, '%type%' algılandı",
  127. "The mimetype of file '%value%' could not be detected" => "'%value%' dosyasının mime-tipi algılanamadı",
  128. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  129. // Zend_Validator_File_Md5
  130. "File '%value%' does not match the given md5 hashes" => "'%value%' dosyası verilen md5 hash'ları ile eşleşmiyor",
  131. "A md5 hash could not be evaluated for the given file" => "Bir md5 hash'ı verilen dosya için eşleştirilemedi",
  132. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  133. // Zend_Validator_File_MimeType
  134. "File '%value%' has a false mimetype of '%type%'" => "'%value%' dosyası yanlış mime-tipine sahip: '%type%'",
  135. "The mimetype of file '%value%' could not be detected" => "'%value%' dosyasının mime-tipi algılanamadı",
  136. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  137. // Zend_Validator_File_NotExists
  138. "File '%value%' exists" => "'%value%' dosyası var",
  139. // Zend_Validator_File_Sha1
  140. "File '%value%' does not match the given sha1 hashes" => "'%value%' dosyası verilen sha1 hash'ları ile eşleşmiyor",
  141. "A sha1 hash could not be evaluated for the given file" => "Bir sha1 hash'ı verilen dosya için eşleştirilemedi",
  142. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  143. // Zend_Validator_File_Size
  144. "Maximum allowed size for file '%value%' is '%max%' but '%size%' detected" => "'%value%' dosyası için izin verilen en büyük boyut '%max%' fakat '%size%' algılandı",
  145. "Minimum expected size for file '%value%' is '%min%' but '%size%' detected" => "'%value%' dosyası için izin verilen en az boyut '%min%' fakat '%size%' algılandı",
  146. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  147. // Zend_Validator_File_Upload
  148. "File '%value%' exceeds the defined ini size" => "'%value%' dosyası tanımlanan ini boyutunu aşıyor",
  149. "File '%value%' exceeds the defined form size" => "'%value%' dosyası tanımlanan form boyutunu aşıyor",
  150. "File '%value%' was only partially uploaded" => "'%value%' dosyası kısmen yüklenmiştir",
  151. "File '%value%' was not uploaded" => "'%value%' dosyası yüklenemedi",
  152. "No temporary directory was found for file '%value%'" => "Geçici dizin '%value%' dosyası için bulunamamıştır",
  153. "File '%value%' can't be written" => "'%value%' dosyasına yazılamıyor",
  154. "A PHP extension returned an error while uploading the file '%value%'" => "Bir PHP uzantısı '%value%' dosyasını yüklerken bir hata verdi",
  155. "File '%value%' was illegally uploaded. This could be a possible attack" => "'%value%' dosyası yasadışı bir biçimde yüklendi. Bu olası bir saldırı olabilir",
  156. "File '%value%' was not found" => "'%value%' dosyası bulunamadı",
  157. "Unknown error while uploading file '%value%'" => "'%value%' dosyasını yüklerken bilinmeyen bir hata ile karşılaşıldı",
  158. // Zend_Validator_File_WordCount
  159. "Too much words, maximum '%max%' are allowed but '%count%' were counted" => "Çok fazla kelime, en fazla '%max%' kelimeye izin veriliyor fakat '%count%' sayıldı",
  160. "Too less words, minimum '%min%' are expected but '%count%' were counted" => "Çok az kelime, en az '%min%' kelimeye izin veriliyor fakat '%count%' sayıldı",
  161. "File '%value%' is not readable or does not exist" => "'%value%' dosyası okunamıyor ya da yok",
  162. // Zend_Validator_GreaterThan
  163. "The input is not greater than '%min%'" => "Girdi '%min%' değerinden büyük değil",
  164. "The input is not greater or equal than '%min%'" => "Girdi '%min%' değerinden büyük ya da eşit değil",
  165. // Zend_Validator_Hex
  166. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  167. "The input contains non-hexadecimal characters" => "Giriş onaltılık olmayan karakterler içeriyor",
  168. // Zend_Validator_Hostname
  169. "The input appears to be a DNS hostname but the given punycode notation cannot be decoded" => "Girdi bir DNS host adı gibi görünüyor fakat verilen punycode gösteriminde deşifre edilemiyor",
  170. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  171. "The input appears to be a DNS hostname but contains a dash in an invalid position" => "Girdi bir DNS host adı gibi görünüyor fakat yanlış pozisyonda tire içeriyor",
  172. "The input does not match the expected structure for a DNS hostname" => "Girdi bir DNS host adının beklenen yapısıyla eşleşmiyor",
  173. "The input appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'" => "Girdi DNS host adı gibi görünüyor fakat TLD '%tld%' şeması ile eşleştirilemiyor",
  174. "The input does not appear to be a valid local network name" => "Girdi geçerli bir yerel ağ adı gibi görünmüyor",
  175. "The input does not appear to be a valid URI hostname" => "Girdi geçerli bir URI host adı olarak görünmüyor",
  176. "The input appears to be an IP address, but IP addresses are not allowed" => "Girdi bir IP adresi gibi görünüyor fakat IP adreslerine izin verilmiyor",
  177. "The input appears to be a local network name but local network names are not allowed" => "Girdi bir yerel ağ adı gibi görünüyor fakat yerel ağ adlarına izin verilmiyor",
  178. "The input appears to be a DNS hostname but cannot extract TLD part" => "Girdi bir DNS host adı gibi görünüyor fakat TLD parçası ayıklanamıyor",
  179. "The input appears to be a DNS hostname but cannot match TLD against known list" => "Girdi bir DNS host adı gibi görünüyor fakat bilinen TLD listesiyle karşılaştırılamıyor",
  180. // Zend_Validator_Iban
  181. "Unknown country within the IBAN" => "IBAN içerisinde bilinmeyen ülke",
  182. "Countries outside the Single Euro Payments Area (SEPA) are not supported" => "Tekil Euro Ödeme Bölgesi (SEPA) dışındaki ülkeler desteklenmiyor",
  183. "The input has a false IBAN format" => "Girdi yanlış IBAN formatında",
  184. "The input has failed the IBAN check" => "Girdinin IBAN denetimi başarısız oldu",
  185. // Zend_Validator_Identical
  186. "The two given tokens do not match" => "Verilen iki belirteç eşleşmiyor",
  187. "No token was provided to match against" => "Hiçbir eşleştirilecek belirteç sağlanmadı",
  188. // Zend_Validator_InArray
  189. "The input was not found in the haystack" => "Girdi samanlıkta bulunamadı",
  190. // Zend_Validator_Ip
  191. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  192. "The input does not appear to be a valid IP address" => "Girdi geçerli bir IP adresi gibi görünmüyor",
  193. // Zend_Validator_Isbn
  194. "Invalid type given. String or integer expected" => "Geçersiz tür verildi. Dizge veya tamsayı bekleniyor",
  195. "The input is not a valid ISBN number" => "Girdi geçerli bir ISBN numarası değil",
  196. // Zend_Validator_LessThan
  197. "The input is not less than '%max%'" => "Girdi '%max%' değerinden küçük değil",
  198. "The input is not less or equal than '%max%'" => "Girdi '%max%' değerinden küçük ya da eşit değil",
  199. // Zend_Validator_NotEmpty
  200. "Value is required and can't be empty" => "Değer gerekli ve boş olamaz",
  201. "Invalid type given. String, integer, float, boolean or array expected" => "Geçersiz tür verildi. Dizge, tamsayı, ondalık sayı, mantıksal veya dizi bekleniyor",
  202. // Zend_Validator_Regex
  203. "Invalid type given. String, integer or float expected" => "Geçersiz tür verildi, Dizge, tamsayı ya da ondalık sayı bekleniyor",
  204. "The input does not match against pattern '%pattern%'" => "Girdi '%pattern%' deseniyle eşleşmiyor",
  205. "There was an internal error while using the pattern '%pattern%'" => "'%pattern%' deseni kullanılırken bir iç hata ile karşılaşıldı",
  206. // Zend_Validator_Sitemap_Changefreq
  207. "The input is not a valid sitemap changefreq" => "Girdi geçerli bir site haritası changefreq'i olarak görünmüyor",
  208. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  209. // Zend_Validator_Sitemap_Lastmod
  210. "The input is not a valid sitemap lastmod" => "Girdi geçerli bir site haritası lastmod'u olarak görünmüyor",
  211. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  212. // Zend_Validator_Sitemap_Loc
  213. "The input is not a valid sitemap location" => "Girdi geçerli bir site haritası lokasyonu olarak görünmüyor",
  214. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  215. // Zend_Validator_Sitemap_Priority
  216. "The input is not a valid sitemap priority" => "Girdi geçerli bir site haritası önceliği olarak görünmüyor",
  217. "Invalid type given. Numeric string, integer or float expected" => "Geçersiz tür verildi. Sayısal dizge, tamsayı ya da ondalık sayı bekleniyor",
  218. // Zend_Validator_Step
  219. "Invalid value given. Scalar expected" => "Geçersiz değer verildi. Skalar bekleniyor",
  220. "The input is not a valid step" => "Girdi geçerli bir aşama değildir",
  221. // Zend_Validator_StringLength
  222. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  223. "The input is less than %min% characters long" => "Girdi %min% karakterden daha az",
  224. "The input is more than %max% characters long" => "Girdi %max% karakterden daha fazla",
  225. // Zend_Validator_Uri
  226. "Invalid type given. String expected" => "Yanlış tür verildi. Dizge bekleniyor",
  227. "The input does not appear to be a valid Uri" => "Girdi geçerli bir Uri olarak görünmüyor",
  228. );