validation.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. /**
  3. * Laravel - A PHP Framework For Web Artisans
  4. *
  5. * @package Language
  6. * @version 3.2.3
  7. * @author Sinan Eldem <sinan@sinaneldem.com.tr>
  8. * @link http://sinaneldem.com.tr
  9. */
  10. return array(
  11. /*
  12. |--------------------------------------------------------------------------
  13. | Validation Language Lines
  14. |--------------------------------------------------------------------------
  15. |
  16. | The following language lines contain the default error messages used
  17. | by the validator class. Some of the rules contain multiple versions,
  18. | such as the size (max, min, between) rules. These versions are used
  19. | for different input types such as strings and files.
  20. |
  21. | These language lines may be easily changed to provide custom error
  22. | messages in your application. Error messages for custom validation
  23. | rules may also be added to this file.
  24. |
  25. */
  26. "accepted" => ":attribute kabul edilmelidir.",
  27. "active_url" => ":attribute geçerli bir URL olmalıdır.",
  28. "after" => ":attribute şundan daha eski bir tarih olmalıdır :date.",
  29. "alpha" => ":attribute sadece harflerden oluşmalıdır.",
  30. "alpha_dash" => ":attribute sadece harfler, rakamlar ve tirelerden oluşmalıdır.",
  31. "alpha_num" => ":attribute sadece harfler ve rakamlar içermelidir.",
  32. "before" => ":attribute şundan daha önceki bir tarih olmalıdır :date.",
  33. "between" => array(
  34. "numeric" => ":attribute :min - :max arasında olmalıdır.",
  35. "file" => ":attribute :min - :max arasındaki kilobyte değeri olmalıdır.",
  36. "string" => ":attribute :min - :max arasında karakterden oluşmalıdır.",
  37. ),
  38. "confirmed" => ":attribute onayı eşleşmiyor.",
  39. "different" => ":attribute ile :other birbirinden farklı olmalıdır.",
  40. "email" => ":attribute biçimi geçersiz.",
  41. "exists" => "Seçili :attribute geçersiz.",
  42. "image" => ":attribute resim dosyası olmalıdır.",
  43. "in" => "selected :attribute geçersiz.",
  44. "integer" => ":attribute rakam olmalıdır.",
  45. "ip" => ":attribute geçerli bir IP adresi olmalıdır.",
  46. "match" => ":attribute biçimi geçersiz.",
  47. "max" => array(
  48. "numeric" => ":attribute şundan küçük olmalıdır :max.",
  49. "file" => ":attribute şundan küçük olmalıdır :max kilobyte.",
  50. "string" => ":attribute şundan küçük olmalıdır :max karakter.",
  51. ),
  52. "mimes" => ":attribute dosya biçimi :values olmalıdır.",
  53. "min" => array(
  54. "numeric" => ":attribute en az :min olmalıdır.",
  55. "file" => ":attribute en az :min kilobyte olmalıdır.",
  56. "string" => ":attribute en az :min karakter olmalıdır.",
  57. ),
  58. "not_in" => "Seçili :attribute geçersiz.",
  59. "numeric" => ":attribute rakam olmalıdır.",
  60. "required" => ":attribute alanı gereklidir.",
  61. "same" => ":attribute ile :other eşleşmelidir.",
  62. "size" => array(
  63. "numeric" => ":attribute :size olmalıdır.",
  64. "file" => ":attribute :size kilobyte olmalıdır.",
  65. "string" => ":attribute :size karakter olmalıdır.",
  66. ),
  67. "unique" => ":attribute daha önceden kayıt edilmiş.",
  68. "url" => ":attribute biçimi geçersiz.",
  69. /*
  70. |--------------------------------------------------------------------------
  71. | Custom Validation Language Lines
  72. |--------------------------------------------------------------------------
  73. |
  74. | Here you may specify custom validation messages for attributes using the
  75. | convention "attribute_rule" to name the lines. This helps keep your
  76. | custom validation clean and tidy.
  77. |
  78. | So, say you want to use a custom validation message when validating that
  79. | the "email" attribute is unique. Just add "email_unique" to this array
  80. | with your custom message. The Validator will handle the rest!
  81. |
  82. */
  83. 'custom' => array(),
  84. /*
  85. |--------------------------------------------------------------------------
  86. | Validation Attributes
  87. |--------------------------------------------------------------------------
  88. |
  89. | The following language lines are used to swap attribute place-holders
  90. | with something more reader friendly such as "E-Mail Address" instead
  91. | of "email". Your users will thank you.
  92. |
  93. | The Validator class will automatically search this array of lines it
  94. | is attempting to replace the :attribute place-holder in messages.
  95. | It's pretty slick. We think you'll like it.
  96. |
  97. */
  98. 'attributes' => array(),
  99. );