KodeStar
7 years ago
committed by
GitHub
5 changed files with 259 additions and 0 deletions
@ -0,0 +1,78 @@ |
|||
<?php |
|||
|
|||
return [ |
|||
|
|||
/* |
|||
|-------------------------------------------------------------------------- |
|||
| App Language Lines |
|||
|-------------------------------------------------------------------------- |
|||
| |
|||
*/ |
|||
|
|||
'settings.system' => 'Sistem', |
|||
'settings.appearance' => 'Görünüm', |
|||
'settings.miscellaneous' => 'Çeşitli', |
|||
|
|||
'settings.version' => 'Versiyon', |
|||
'settings.background_image' => 'Arkaplan Resmi', |
|||
'settings.homepage_search' => 'Anasayfa Arama', |
|||
'settings.search_provider' => 'Arama Motoru', |
|||
'settings.language' => 'Dil', |
|||
'settings.reset' => 'Varsayılana Geri Dön', |
|||
'settings.remove' => 'Sil', |
|||
'settings.search' => 'ara', |
|||
'settings.no_items' => 'Öğe bulunamadı', |
|||
|
|||
|
|||
'settings.label' => 'Etiket', |
|||
'settings.value' => 'Değer', |
|||
'settings.edit' => 'Düzenle', |
|||
'settings.view' => 'Görüntüle', |
|||
|
|||
'options.none' => '- ayarlanmadı -', |
|||
'options.google' => 'Google', |
|||
'options.ddg' => 'DuckDuckGo', |
|||
'options.bing' => 'Bing', |
|||
'options.yes' => 'Evet', |
|||
'options.no' => 'Hayır', |
|||
|
|||
'buttons.save' => 'Kaydet', |
|||
'buttons.cancel' => 'İptal', |
|||
'buttons.add' => 'Ekle', |
|||
'buttons.upload' => 'Dosya yükle', |
|||
|
|||
'dash.pin_item' => 'Ana panele iğnele', |
|||
'dash.no_apps' => 'Ana panele iğneli öğeler, :link1 or :link2', |
|||
'dash.link1' => 'Yeni uygulama ekle', |
|||
'dash.link2' => 'Ana panele iğnele', |
|||
'dash.pinned_items' => 'İğnelenen öğeler', |
|||
|
|||
'apps.app_list' => 'Uygulama listesi', |
|||
'apps.view_trash' => 'Çöpü görüntüle', |
|||
'apps.add_application' => 'Uygulama ekle', |
|||
'apps.application_name' => 'Uygulama adı', |
|||
'apps.colour' => 'Renk', |
|||
'apps.icon' => 'İkon', |
|||
'apps.pinned' => 'İğneli', |
|||
'apps.title' => 'Başlık', |
|||
'apps.hex' => 'Hex değeri', |
|||
'apps.username' => 'Kullanıcı adı', |
|||
'apps.password' => 'Şifre', |
|||
'apps.config' => 'Yapılandırma', |
|||
|
|||
'url' => 'Adres', |
|||
'title' => 'Başlık', |
|||
'delete' => 'Sil', |
|||
'optional' => 'İsteğe bağlı', |
|||
'restore' => 'Eski haline getir', |
|||
|
|||
'alert.success.item_created' => 'Öğe yaratıldı', |
|||
'alert.success.item_updated' => 'Öğe güncellendi', |
|||
'alert.success.item_deleted' => 'Öğe silindi', |
|||
'alert.success.item_restored' => 'Öğe eski haline getirildi', |
|||
|
|||
'alert.success.setting_updated' => 'Ayarlama kaydedildi', |
|||
'alert.error.not_exist' => 'Böyle bir seçenek yok.', |
|||
|
|||
|
|||
]; |
@ -0,0 +1,19 @@ |
|||
<?php |
|||
|
|||
return [ |
|||
|
|||
/* |
|||
|-------------------------------------------------------------------------- |
|||
| Authentication Language Lines |
|||
|-------------------------------------------------------------------------- |
|||
| |
|||
| The following language lines are used during authentication for various |
|||
| messages that we need to display to the user. You are free to modify |
|||
| these language lines according to your application's requirements. |
|||
| |
|||
*/ |
|||
|
|||
'failed' => 'Kimlik bilgileri doğru değil.', |
|||
'throttle' => 'Çok fazla girişim. :seconds saniye sonra tekrar deneyin.', |
|||
|
|||
]; |
@ -0,0 +1,19 @@ |
|||
<?php |
|||
|
|||
return [ |
|||
|
|||
/* |
|||
|-------------------------------------------------------------------------- |
|||
| Pagination Language Lines |
|||
|-------------------------------------------------------------------------- |
|||
| |
|||
| The following language lines are used by the paginator library to build |
|||
| the simple pagination links. You are free to change them to anything |
|||
| you want to customize your views to better match your application. |
|||
| |
|||
*/ |
|||
|
|||
'previous' => '« Önceki', |
|||
'next' => 'Sonraki »', |
|||
|
|||
]; |
@ -0,0 +1,22 @@ |
|||
<?php |
|||
|
|||
return [ |
|||
|
|||
/* |
|||
|-------------------------------------------------------------------------- |
|||
| Password Reset Language Lines |
|||
|-------------------------------------------------------------------------- |
|||
| |
|||
| The following language lines are the default lines which match reasons |
|||
| that are given by the password broker for a password update attempt |
|||
| has failed, such as for an invalid token or invalid new password. |
|||
| |
|||
*/ |
|||
|
|||
'password' => 'Şifre en az altı karakter olmalı ve onaylamasına uymalıdır.', |
|||
'reset' => 'Şifreniz sıfırlandı!', |
|||
'sent' => 'Şifre sıfırlama bağlantısı eposta adresinize yollandı!', |
|||
'token' => 'Şifre sıfırlama simgesi geçerli değil.', |
|||
'user' => "Adresle ilişkili kullanıcı adı bulunamadı.", |
|||
|
|||
]; |
@ -0,0 +1,121 @@ |
|||
<?php |
|||
|
|||
return [ |
|||
|
|||
/* |
|||
|-------------------------------------------------------------------------- |
|||
| Validation Language Lines |
|||
|-------------------------------------------------------------------------- |
|||
| |
|||
| The following language lines contain the default error messages used by |
|||
| the validator class. Some of these rules have multiple versions such |
|||
| as the size rules. Feel free to tweak each of these messages here. |
|||
| |
|||
*/ |
|||
|
|||
'accepted' => ':attribute kabul edilmelidir.', |
|||
'active_url' => ':attribute geçerli bir adres değil.', |
|||
'after' => ':attribute :date tarihinden sonra olmalıdır.', |
|||
'after_or_equal' => ':attribute :date ile aynı veya daha sonra tarihte olmalıdır.', |
|||
'alpha' => ':attribute sadece harf içerebilir.', |
|||
'alpha_dash' => ':attribute sadece harf, rakam, veya tire içerebilir.', |
|||
'alpha_num' => ':attribute sadece harf ve rakam içerebilir.', |
|||
'array' => ':attribute dizi olmalıdır.', |
|||
'before' => ':attribute :date tarihinden önce olmalıdır.', |
|||
'before_or_equal' => ':attribute :date ile aynı ya da daha önce tarihte olmalıdır.', |
|||
'between' => [ |
|||
'numeric' => ':attribute :min ile :max arasında olmalıdır.', |
|||
'file' => ':attribute :min ile :max kilobayt arasında olmalıdır.', |
|||
'string' => ':attribute :min ile :max arasında karakter içermelidir.', |
|||
'array' => ':attribute :min ile :max arasi öğe içermelidir.', |
|||
], |
|||
'boolean' => ':attribute alanı doğru ya da yanlış olmalıdır.', |
|||
'confirmed' => ':attribute onaylamasına uymuyor.', |
|||
'date' => ':attribute geçerli bir tarih değil.', |
|||
'date_format' => ':attribute :format düzenine uymuyor.', |
|||
'different' => ':attribute ve :other farklı olmalı.', |
|||
'digits' => ':attribute :digits haneli olmalıdır.', |
|||
'digits_between' => ':attribute :min ile :max arası haneli olmalıdır.', |
|||
'dimensions' => ':attribute resim boyutları geçersiz.', |
|||
'distinct' => ':attribute alan değeri zaten mevcut.', |
|||
'email' => ':attribute geçerli bir eposta adresi olmalıdır.', |
|||
'exists' => 'Seçili :attribute geçersiz.', |
|||
'file' => ':attribute dosya olmalıdır.', |
|||
'filled' => ':attribute alanı değer içermelidir.', |
|||
'image' => ':attribute resim olmalıdır.', |
|||
'in' => 'Seçili :attribute geçersiz.', |
|||
'in_array' => ':attribute :other içinde bulunmalıdır.', |
|||
'integer' => ':attribute tamsayı olmalıdır.', |
|||
'ip' => ':attribute geçerli IP adresi olmalıdır.', |
|||
'ipv4' => ':attribute geçerli IPv4 adresi olmalıdır.', |
|||
'ipv6' => ':attribute geçerli IPv6 adresi olmalıdır.', |
|||
'json' => ':attribute geçerli JSON dizesi olmalıdır.', |
|||
'max' => [ |
|||
'numeric' => ':attribute :max sayısından küçük olmalıdır.', |
|||
'file' => ':attribute :max kilobayttan küçük olmalıdır.', |
|||
'string' => ':attribute :max haneden az olmalıdır.', |
|||
'array' => ':attribute :max öğeden az içermelidir.', |
|||
], |
|||
'mimes' => 'Geçerli :attribute dosya tipi: :values.', |
|||
'mimetypes' => 'Geçerli :attribute dosya tipi: :values.', |
|||
'min' => [ |
|||
'numeric' => ':attribute en az :min olmalıdır.', |
|||
'file' => ':attribute en az :min kilobayt olmalıdır.', |
|||
'string' => ':attribute en az :min haneli olmalıdır.', |
|||
'array' => ':attribute en az :min öğe içermelidir.', |
|||
], |
|||
'not_in' => 'Seçili :attribute geçersiz.', |
|||
'numeric' => ':attribute sayı olmalıdır.', |
|||
'present' => ':attribute alanı dolu olmalı.', |
|||
'regex' => ':attribute düzeni geçersiz.', |
|||
'required' => ':attribute alanı gereklidir.', |
|||
'required_if' => ':other :value ise :attribute alanı gereklidir.', |
|||
'required_unless' => ':other :values içinde değilse :attribute alanı gereklidir.', |
|||
'required_with' => ':values dolu ise :attribute alanı gereklidir.', |
|||
'required_with_all' => ':values dolu ise :attribute alanı gereklidir.', |
|||
'required_without' => ':values boş ise :attribute alanı gereklidir.', |
|||
'required_without_all' => ':values değerlerinin tamamı boş ise :attribute alanı gereklidir.', |
|||
'same' => ':attribute ve :other aynı olmalı.', |
|||
'size' => [ |
|||
'numeric' => ':attribute :size olmalıdır.', |
|||
'file' => ':attribute :size kilobayt olmalıdır.', |
|||
'string' => ':attribute :size haneli olmalıdır.', |
|||
'array' => ':attribute :size öğe içermelidir.', |
|||
], |
|||
'string' => ':attribute dize olmalıdır.', |
|||
'timezone' => ':attribute geçerli bir zaman dilimi olmalıdır.', |
|||
'unique' => ':attribute zaten kullanımda.', |
|||
'uploaded' => ':attribute yüklenemedi.', |
|||
'url' => ':attribute düzeni geçersiz.', |
|||
|
|||
/* |
|||
|-------------------------------------------------------------------------- |
|||
| Custom Validation Language Lines |
|||
|-------------------------------------------------------------------------- |
|||
| |
|||
| Here you may specify custom validation messages for attributes using the |
|||
| convention "attribute.rule" to name the lines. This makes it quick to |
|||
| specify a specific custom language line for a given attribute rule. |
|||
| |
|||
*/ |
|||
|
|||
'custom' => [ |
|||
'attribute-name' => [ |
|||
'rule-name' => 'custom-message', |
|||
], |
|||
], |
|||
|
|||
/* |
|||
|-------------------------------------------------------------------------- |
|||
| Custom Validation Attributes |
|||
|-------------------------------------------------------------------------- |
|||
| |
|||
| The following language lines are used to swap attribute place-holders |
|||
| with something more reader friendly such as E-Mail Address instead |
|||
| of "email". This simply helps us make messages a little cleaner. |
|||
| |
|||
*/ |
|||
|
|||
'attributes' => [], |
|||
|
|||
]; |
Loading…
Reference in new issue