Skip to content

Commit 4d0f955

Browse files
committed
Merge pull request laravel#1079 from sineld/develop
Added Turkish language files.
2 parents f685597 + 0d718bb commit 4d0f955

File tree

2 files changed

+136
-0
lines changed

2 files changed

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

0 commit comments

Comments
 (0)