2017-12-31 02:10:38 -06:00
|
|
|
|
<?php
|
2018-03-29 12:00:21 -05:00
|
|
|
|
declare(strict_types=1);
|
2017-12-31 02:10:38 -06:00
|
|
|
|
/**
|
|
|
|
|
* validation.php
|
|
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
|
|
|
*
|
|
|
|
|
* This file is part of Firefly III.
|
|
|
|
|
*
|
|
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'iban' => 'Bu IBAN geçerli değilrdir.',
|
2018-03-29 12:00:21 -05:00
|
|
|
|
'source_equals_destination' => 'The source account equals the destination account',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'unique_account_number_for_user' => 'Bu hesap numarası zaten kullanılmaktadır.',
|
2018-03-04 01:54:01 -06:00
|
|
|
|
'unique_iban_for_user' => 'It looks like this IBAN is already in use.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'deleted_user' => 'Güvenlik kısıtlamaları nedeniyle, bu e-posta adresini kullanarak kayıt yapamazsınız.',
|
|
|
|
|
'rule_trigger_value' => 'Bu eylem, seçili işlem için geçersizdir.',
|
|
|
|
|
'rule_action_value' => 'Bu eylem seçili işlem için geçersizdir.',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'file_already_attached' => 'Yüklenen dosya ":name" zaten bu nesneye bağlı.',
|
|
|
|
|
'file_attached' => '":name" dosyası başarıyla yüklendi.',
|
2018-03-04 01:54:01 -06:00
|
|
|
|
'must_exist' => 'The ID in field :attribute does not exist in the database.',
|
|
|
|
|
'all_accounts_equal' => 'All accounts in this field must be equal.',
|
|
|
|
|
'invalid_selection' => 'Your selection is invalid',
|
|
|
|
|
'belongs_user' => 'This value is invalid for this field.',
|
|
|
|
|
'at_least_one_transaction' => 'Need at least one transaction.',
|
|
|
|
|
'require_currency_info' => 'The content of this field is invalid without currency information.',
|
|
|
|
|
'equal_description' => 'Transaction description should not equal global description.',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'file_invalid_mime' => '":name" dosyası ":mime" türünde olup yeni bir yükleme olarak kabul edilemez.',
|
|
|
|
|
'file_too_large' => '":name" dosyası çok büyük.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'belongs_to_user' => ':attribute\'nin değeri bilinmiyor',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'accepted' => ':attribute kabul edilmek zorunda.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'bic' => 'Bu BIC geçerli değilrdir.',
|
|
|
|
|
'more' => ':attribute sıfırdan büyük olmak zorundadır.',
|
|
|
|
|
'active_url' => ':attribute geçerli bir URL değil.',
|
|
|
|
|
'after' => ':attribute :date tarihinden sonrası için tarihlendirilmelidir.',
|
|
|
|
|
'alpha' => ':attribute sadece harf içerebilir.',
|
|
|
|
|
'alpha_dash' => ':attribute sadece harf, sayı ve kısa çizgi içerebilir.',
|
|
|
|
|
'alpha_num' => ':attribute sadece harf ve sayı içerebilir.',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'array' => ':attribute bir dizi olmalıdır.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'unique_for_user' => ':attribute\'de zaten bir girdi var.',
|
|
|
|
|
'before' => ':attribute :date tarihinden öncesi için tarihlendirilmelidir.',
|
|
|
|
|
'unique_object_for_user' => 'Bu isim zaten kullanılıyor',
|
|
|
|
|
'unique_account_for_user' => 'Bu hesap adı zaten kullanılıyor',
|
|
|
|
|
'between.numeric' => ':attribute :min ve :max arasında olmalıdır.',
|
|
|
|
|
'between.file' => ':attribute, :min kilobayt ve :max kilobayt arasında olmalıdır.',
|
|
|
|
|
'between.string' => ':attribute :min karakter ve :max karakter olmalıdır.',
|
|
|
|
|
'between.array' => ':attribute :min öğe ve :max öğe olmalıdır.',
|
|
|
|
|
'boolean' => ':attribute alanının doğru veya yanlış olması gerekir.',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'confirmed' => ':attribute doğrulaması eşleşmiyor.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'date' => ':attribute geçerli bir tarih değil.',
|
|
|
|
|
'date_format' => ':attribute :format formatına uymuyor.',
|
|
|
|
|
'different' => ':attribute ve :other farklı olmalı.',
|
|
|
|
|
'digits' => ':attribute :digits basamak olmalıdır.',
|
|
|
|
|
'digits_between' => ':attribute en az :min basamak en fazla :max basamak olmalı.',
|
|
|
|
|
'email' => ':attribute geçerli bir e-posta adresi olmalıdır.',
|
|
|
|
|
'filled' => ':attribute alanı gereklidir.',
|
|
|
|
|
'exists' => 'Seçili :attribute geçersiz.',
|
|
|
|
|
'image' => ':attribute bir resim olmalı.',
|
|
|
|
|
'in' => 'Seçili :attribute geçersiz.',
|
|
|
|
|
'integer' => ':attribute bir tamsayı olmalı.',
|
|
|
|
|
'ip' => ':attribute geçerli bir IP adresi olmalı.',
|
|
|
|
|
'json' => ':attribute geçerli bir JSON dizini olmalı.',
|
|
|
|
|
'max.numeric' => ':attribute, :max değerinden daha büyük olamamalıdır.',
|
|
|
|
|
'max.file' => ':attribute :max kilobayttan büyük olmamalıdır.',
|
|
|
|
|
'max.string' => ':attribute :max karakterden büyük olmamalıdır.',
|
|
|
|
|
'max.array' => ':attribute :max öğeden daha fazlasına sahip olamaz.',
|
|
|
|
|
'mimes' => ':attribute :values türünde bir dosya olmalı.',
|
|
|
|
|
'min.numeric' => ':attribute en az :min olmalıdır.',
|
|
|
|
|
'min.file' => ':attribute en az :min kilobayt olmalıdır.',
|
|
|
|
|
'min.string' => ':attribute en az :min karakter olmalıdır.',
|
|
|
|
|
'min.array' => ':attribute en az :min öğe içermelidir.',
|
|
|
|
|
'not_in' => 'Seçili :attribute geçersiz.',
|
|
|
|
|
'numeric' => ':attribute sayı olmalıdır.',
|
|
|
|
|
'regex' => ':attribute biçimi geçersiz.',
|
|
|
|
|
'required' => ':attribute alanı gereklidir.',
|
|
|
|
|
'required_if' => ':other :value iken :attribute alanı gereklidir.',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'required_unless' => ':other :values içinde değilse :attribute alanı gereklidir.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'required_with' => ':values mevcutken :attribute alanı gereklidir.',
|
|
|
|
|
'required_with_all' => ':values mevcutken :attribute alanı gereklidir.',
|
|
|
|
|
'required_without' => ':values mevcut değilken :attribute alanı gereklidir.',
|
|
|
|
|
'required_without_all' => 'Hiçbir :values mevcut değilken :attribute alanı gereklidir.',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'same' => ':attribute ve :other eşleşmelidir.',
|
|
|
|
|
'size.numeric' => ':attribute :size olmalıdır.',
|
2018-03-04 01:54:01 -06:00
|
|
|
|
'amount_min_over_max' => 'The minimum amount cannot be larger than the maximum amount.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'size.file' => ':attribute :size kilobyte olmalıdır.',
|
2017-12-31 02:36:36 -06:00
|
|
|
|
'size.string' => ':attribute :size karakter olmalıdır.',
|
2017-12-31 02:10:38 -06:00
|
|
|
|
'size.array' => ':attribute :size öğeye sahip olmalıdır.',
|
|
|
|
|
'unique' => ':attribute zaten alınmış.',
|
|
|
|
|
'string' => ':attribute bir dizi olmalıdır.',
|
|
|
|
|
'url' => ':attribute biçimi geçersiz.',
|
|
|
|
|
'timezone' => ':attribute geçerli bir bölge olmalıdır.',
|
|
|
|
|
'2fa_code' => ':attribute alanı geçersiz.',
|
|
|
|
|
'dimensions' => ':attribute geçersiz görüntü boyutlarına sahip.',
|
|
|
|
|
'distinct' => ':attribute alanı yinelenen bir değere sahip.',
|
|
|
|
|
'file' => ':attribute bir dosya olmalıdır.',
|
|
|
|
|
'in_array' => ':attribute alanı :other içinde olamaz.',
|
|
|
|
|
'present' => ':attribute alanı mevcut olmalıdır.',
|
|
|
|
|
'amount_zero' => 'Toplam tutar sıfır olamaz',
|
|
|
|
|
'secure_password' => 'Güvenli bir şifre değildir. Lütfen tekrar deneyin. Daha fazla bilgi için https://goo.gl/NCh2tN adresini ziyaret edin',
|
2018-01-29 12:13:43 -06:00
|
|
|
|
'attributes' => [
|
2018-03-04 01:54:01 -06:00
|
|
|
|
'email' => 'email address',
|
|
|
|
|
'description' => 'description',
|
|
|
|
|
'amount' => 'amount',
|
|
|
|
|
'name' => 'name',
|
|
|
|
|
'piggy_bank_id' => 'piggy bank ID',
|
|
|
|
|
'targetamount' => 'target amount',
|
|
|
|
|
'openingBalanceDate' => 'opening balance date',
|
|
|
|
|
'openingBalance' => 'opening balance',
|
|
|
|
|
'match' => 'match',
|
|
|
|
|
'amount_min' => 'minimum amount',
|
|
|
|
|
'amount_max' => 'maximum amount',
|
|
|
|
|
'title' => 'title',
|
|
|
|
|
'tag' => 'tag',
|
|
|
|
|
'transaction_description' => 'transaction description',
|
|
|
|
|
'rule-action-value.1' => 'rule action value #1',
|
|
|
|
|
'rule-action-value.2' => 'rule action value #2',
|
|
|
|
|
'rule-action-value.3' => 'rule action value #3',
|
|
|
|
|
'rule-action-value.4' => 'rule action value #4',
|
|
|
|
|
'rule-action-value.5' => 'rule action value #5',
|
|
|
|
|
'rule-action.1' => 'rule action #1',
|
|
|
|
|
'rule-action.2' => 'rule action #2',
|
|
|
|
|
'rule-action.3' => 'rule action #3',
|
|
|
|
|
'rule-action.4' => 'rule action #4',
|
|
|
|
|
'rule-action.5' => 'rule action #5',
|
|
|
|
|
'rule-trigger-value.1' => 'rule trigger value #1',
|
|
|
|
|
'rule-trigger-value.2' => 'rule trigger value #2',
|
|
|
|
|
'rule-trigger-value.3' => 'rule trigger value #3',
|
|
|
|
|
'rule-trigger-value.4' => 'rule trigger value #4',
|
|
|
|
|
'rule-trigger-value.5' => 'rule trigger value #5',
|
|
|
|
|
'rule-trigger.1' => 'rule trigger #1',
|
|
|
|
|
'rule-trigger.2' => 'rule trigger #2',
|
|
|
|
|
'rule-trigger.3' => 'rule trigger #3',
|
|
|
|
|
'rule-trigger.4' => 'rule trigger #4',
|
|
|
|
|
'rule-trigger.5' => 'rule trigger #5',
|
2018-01-29 12:13:43 -06:00
|
|
|
|
],
|
2017-12-31 02:10:38 -06:00
|
|
|
|
];
|