mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 13:39:19 -06:00
152 lines
10 KiB
PHP
152 lines
10 KiB
PHP
<?php
|
||
|
||
/**
|
||
* validation.php
|
||
* Copyright (c) 2018 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/>.
|
||
*/
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'iban' => 'Bu IBAN geçerli değilrdir.',
|
||
'source_equals_destination' => 'The source account equals the destination account',
|
||
'unique_account_number_for_user' => 'Bu hesap numarası zaten kullanılmaktadır.',
|
||
'unique_iban_for_user' => 'It looks like this IBAN is already in use.',
|
||
'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.',
|
||
'file_already_attached' => 'Yüklenen dosya ":name" zaten bu nesneye bağlı.',
|
||
'file_attached' => '":name" dosyası başarıyla yüklendi.',
|
||
'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.',
|
||
'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.',
|
||
'belongs_to_user' => ':attribute\'nin değeri bilinmiyor',
|
||
'accepted' => ':attribute kabul edilmek zorunda.',
|
||
'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.',
|
||
'array' => ':attribute bir dizi olmalıdır.',
|
||
'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.',
|
||
'confirmed' => ':attribute doğrulaması eşleşmiyor.',
|
||
'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.',
|
||
'required_unless' => ':other :values içinde değilse :attribute alanı gereklidir.',
|
||
'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.',
|
||
'same' => ':attribute ve :other eşleşmelidir.',
|
||
'size.numeric' => ':attribute :size olmalıdır.',
|
||
'amount_min_over_max' => 'The minimum amount cannot be larger than the maximum amount.',
|
||
'size.file' => ':attribute :size kilobyte olmalıdır.',
|
||
'size.string' => ':attribute :size karakter olmalıdır.',
|
||
'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',
|
||
'unique_piggy_bank_for_user' => 'The name of the piggy bank must be unique.',
|
||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit http://bit.ly/FF3-password-security',
|
||
'attributes' => [
|
||
'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',
|
||
],
|
||
];
|