mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
Fix #4045
This commit is contained in:
parent
9352d38c1c
commit
f584f159f0
@ -131,14 +131,15 @@ return [
|
|||||||
'unique_piggy_bank_for_user' => 'The name of the piggy bank must be unique.',
|
'unique_piggy_bank_for_user' => 'The name of the piggy bank must be unique.',
|
||||||
'unique_object_group' => 'The group name must be unique',
|
'unique_object_group' => 'The group name must be unique',
|
||||||
|
|
||||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://bit.ly/FF3-password-security',
|
'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://bit.ly/FF3-password-security',
|
||||||
'valid_recurrence_rep_type' => 'Invalid repetition type for recurring transactions.',
|
'valid_recurrence_rep_type' => 'Invalid repetition type for recurring transactions.',
|
||||||
'valid_recurrence_rep_moment' => 'Invalid repetition moment for this type of repetition.',
|
'valid_recurrence_rep_moment' => 'Invalid repetition moment for this type of repetition.',
|
||||||
'invalid_account_info' => 'Invalid account information.',
|
'invalid_account_info' => 'Invalid account information.',
|
||||||
'attributes' => [
|
'attributes' => [
|
||||||
'email' => 'email address',
|
'email' => 'email address',
|
||||||
'description' => 'description',
|
'description' => 'description',
|
||||||
'amount' => 'amount',
|
'amount' => 'amount',
|
||||||
|
'transactions.*.amount' => 'transaction amount',
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
'piggy_bank_id' => 'piggy bank ID',
|
'piggy_bank_id' => 'piggy bank ID',
|
||||||
'targetamount' => 'target amount',
|
'targetamount' => 'target amount',
|
||||||
@ -173,10 +174,10 @@ return [
|
|||||||
],
|
],
|
||||||
|
|
||||||
// validation of accounts:
|
// validation of accounts:
|
||||||
'withdrawal_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',
|
'withdrawal_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',
|
||||||
'withdrawal_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
|
'withdrawal_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
|
||||||
'withdrawal_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
|
'withdrawal_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
|
||||||
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
|
'withdrawal_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
|
||||||
|
|
||||||
'deposit_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',
|
'deposit_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',
|
||||||
'deposit_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
|
'deposit_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
|
||||||
@ -205,5 +206,5 @@ return [
|
|||||||
|
|
||||||
'amount_required_for_auto_budget' => 'The amount is required.',
|
'amount_required_for_auto_budget' => 'The amount is required.',
|
||||||
'auto_budget_amount_positive' => 'The amount must be more than zero.',
|
'auto_budget_amount_positive' => 'The amount must be more than zero.',
|
||||||
'auto_budget_period_mandatory' => 'The auto budget period is a mandatory field.',
|
'auto_budget_period_mandatory' => 'The auto budget period is a mandatory field.',
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user