mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-06 01:45:22 +00:00
User can submit new journal through API.
This commit is contained in:
@@ -291,14 +291,14 @@ return [
|
||||
'column_rabo-debit-credit' => 'Rabobank specific debit/credit indicator',
|
||||
'column_ing-debit-credit' => 'ING specific debit/credit indicator',
|
||||
'column_generic-debit-credit' => 'Generic bank debit/credit indicator',
|
||||
'column_sepa-ct-id' => 'SEPA end-to-end Identifier',
|
||||
'column_sepa-ct-op' => 'SEPA Opposing Account Identifier',
|
||||
'column_sepa-db' => 'SEPA Mandate Identifier',
|
||||
'column_sepa-cc' => 'SEPA Clearing Code',
|
||||
'column_sepa-ci' => 'SEPA Creditor Identifier',
|
||||
'column_sepa-ep' => 'SEPA External Purpose',
|
||||
'column_sepa-country' => 'SEPA Country Code',
|
||||
'column_sepa-batch-id' => 'SEPA Batch ID',
|
||||
'column_sepa_ct_id' => 'SEPA end-to-end Identifier',
|
||||
'column_sepa_ct_op' => 'SEPA Opposing Account Identifier',
|
||||
'column_sepa_db' => 'SEPA Mandate Identifier',
|
||||
'column_sepa_cc' => 'SEPA Clearing Code',
|
||||
'column_sepa_ci' => 'SEPA Creditor Identifier',
|
||||
'column_sepa_ep' => 'SEPA External Purpose',
|
||||
'column_sepa_country' => 'SEPA Country Code',
|
||||
'column_sepa_batch_id' => 'SEPA Batch ID',
|
||||
'column_tags-comma' => 'Tags (comma separated)',
|
||||
'column_tags-space' => 'Tags (space separated)',
|
||||
'column_account-number' => 'Asset account (account number)',
|
||||
|
||||
@@ -106,14 +106,14 @@ return [
|
||||
'account_on_spectre' => 'Account (Spectre)',
|
||||
'account_on_ynab' => 'Account (YNAB)',
|
||||
'do_import' => 'Import from this account',
|
||||
'sepa-ct-id' => 'SEPA End to End Identifier',
|
||||
'sepa-ct-op' => 'SEPA Opposing Account Identifier',
|
||||
'sepa-db' => 'SEPA Mandate Identifier',
|
||||
'sepa-country' => 'SEPA Country',
|
||||
'sepa-cc' => 'SEPA Clearing Code',
|
||||
'sepa-ep' => 'SEPA External Purpose',
|
||||
'sepa-ci' => 'SEPA Creditor Identifier',
|
||||
'sepa-batch-id' => 'SEPA Batch ID',
|
||||
'sepa_ct_id' => 'SEPA End to End Identifier',
|
||||
'sepa_ct_op' => 'SEPA Opposing Account Identifier',
|
||||
'sepa_db' => 'SEPA Mandate Identifier',
|
||||
'sepa_country' => 'SEPA Country',
|
||||
'sepa_cc' => 'SEPA Clearing Code',
|
||||
'sepa_ep' => 'SEPA External Purpose',
|
||||
'sepa_ci' => 'SEPA Creditor Identifier',
|
||||
'sepa_batch_id' => 'SEPA Batch ID',
|
||||
'external_id' => 'External ID',
|
||||
'account_at_bunq' => 'Account with bunq',
|
||||
'file_name' => 'File name',
|
||||
|
||||
@@ -33,9 +33,12 @@ return [
|
||||
'rule_trigger_value' => 'This value is invalid for the selected trigger.',
|
||||
'rule_action_value' => 'This value is invalid for the selected action.',
|
||||
'file_already_attached' => 'Uploaded file ":name" is already attached to this object.',
|
||||
'file_attached' => 'Succesfully uploaded file ":name".',
|
||||
'file_attached' => 'Successfully uploaded file ":name".',
|
||||
'must_exist' => 'The ID in field :attribute does not exist in the database.',
|
||||
'all_accounts_equal' => 'All accounts in this field must be equal.',
|
||||
'group_title_mandatory' => 'A group title is mandatory when there is more than one transaction.',
|
||||
'transaction_types_equal' => 'All splits must be of the same type.',
|
||||
'invalid_transaction_type' => 'Invalid transaction type.',
|
||||
'invalid_selection' => 'Your selection is invalid.',
|
||||
'belongs_user' => 'This value is invalid for this field.',
|
||||
'at_least_one_transaction' => 'Need at least one transaction.',
|
||||
@@ -164,4 +167,19 @@ return [
|
||||
'rule-trigger.4' => 'rule trigger #4',
|
||||
'rule-trigger.5' => 'rule trigger #5',
|
||||
],
|
||||
|
||||
// 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_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.',
|
||||
|
||||
'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_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
|
||||
'deposit_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
|
||||
|
||||
'transfer_source_need_data' => 'Need to get a valid source account ID and/or valid source account name to continue.',
|
||||
'transfer_source_bad_data' => 'Could not find a valid source account when searching for ID ":id" or name ":name".',
|
||||
'transfer_dest_need_data' => 'Need to get a valid destination account ID and/or valid destination account name to continue.',
|
||||
'transfer_dest_bad_data' => 'Could not find a valid destination account when searching for ID ":id" or name ":name".',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user