mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
94 lines
3.9 KiB
PHP
94 lines
3.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* validation.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'iban' => 'To ni veljaven IBAN.',
|
|
'unique_account_number_for_user' => 'Kaže, da je ta številka računa že v uporabi.',
|
|
'deleted_user' => 'Iz varnostnih razlogov ne morete ustvariti uporabnika s takim e-poštnim naslovom.',
|
|
'rule_trigger_value' => 'Ta vrednost je neveljavna za izbrani sprožilec.',
|
|
'rule_action_value' => '',
|
|
'invalid_domain' => '',
|
|
'file_already_attached' => '',
|
|
'file_attached' => '',
|
|
'file_invalid_mime' => '',
|
|
'file_too_large' => '',
|
|
'belongs_to_user' => '',
|
|
'accepted' => '',
|
|
'bic' => '',
|
|
'more' => '',
|
|
'active_url' => '',
|
|
'after' => '',
|
|
'alpha' => '',
|
|
'alpha_dash' => '',
|
|
'alpha_num' => '',
|
|
'array' => '',
|
|
'unique_for_user' => '',
|
|
'before' => '',
|
|
'unique_object_for_user' => '',
|
|
'unique_account_for_user' => '',
|
|
'between.numeric' => '',
|
|
'between.file' => '',
|
|
'between.string' => '',
|
|
'between.array' => '',
|
|
'boolean' => '',
|
|
'confirmed' => '',
|
|
'date' => '',
|
|
'date_format' => '',
|
|
'different' => '',
|
|
'digits' => '',
|
|
'digits_between' => '',
|
|
'email' => '',
|
|
'filled' => '',
|
|
'exists' => '',
|
|
'image' => '',
|
|
'in' => '',
|
|
'integer' => '',
|
|
'ip' => '',
|
|
'json' => '',
|
|
'max.numeric' => '',
|
|
'max.file' => '',
|
|
'max.string' => '',
|
|
'max.array' => '',
|
|
'mimes' => '',
|
|
'min.numeric' => '',
|
|
'min.file' => '',
|
|
'min.string' => '',
|
|
'min.array' => '',
|
|
'not_in' => '',
|
|
'numeric' => '',
|
|
'regex' => '',
|
|
'required' => '',
|
|
'required_if' => '',
|
|
'required_unless' => '',
|
|
'required_with' => '',
|
|
'required_with_all' => '',
|
|
'required_without' => '',
|
|
'required_without_all' => '',
|
|
'same' => '',
|
|
'size.numeric' => '',
|
|
'size.file' => '',
|
|
'size.string' => '',
|
|
'size.array' => '',
|
|
'unique' => '',
|
|
'string' => '',
|
|
'url' => '',
|
|
'timezone' => '',
|
|
'2fa_code' => '',
|
|
'dimensions' => '',
|
|
'distinct' => '',
|
|
'file' => '',
|
|
'in_array' => '',
|
|
'present' => '',
|
|
'amount_zero' => '',
|
|
'secure_password' => '',
|
|
]; |