mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 13:39:19 -06:00
82 lines
5.8 KiB
PHP
82 lines
5.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
// initial config
|
|
'initial_title' => 'Import setup (1/3) - Basic CSV import setup',
|
|
'initial_text' => 'To be able to import your file correctly, please validate the options below.',
|
|
'initial_box' => 'Basic CSV import setup',
|
|
'initial_box_title' => 'Basic CSV import setup options',
|
|
'initial_header_help' => 'Check this box if the first row of your CSV file are the column titles.',
|
|
'initial_date_help' => 'Date time format in your CSV. Follow the format like <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">this page</a> indicates. The default value will parse dates that look like this: :dateExample.',
|
|
'initial_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.',
|
|
'initial_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.',
|
|
'initial_submit' => 'Continue with step 2/3',
|
|
|
|
// new options:
|
|
'apply_rules_title' => 'Apply rules',
|
|
'apply_rules_description' => 'Apply your rules. Note that this slows the import significantly.',
|
|
'match_bills_title' => 'Match bills',
|
|
'match_bills_description' => 'Match your bills to newly created withdrawals. Note that this slows the import significantly.',
|
|
|
|
// roles config
|
|
'roles_title' => 'Import setup (2/3) - Define each column\'s role',
|
|
'roles_text' => 'Each column in your CSV file contains certain data. Please indicate what kind of data the importer should expect. The option to "map" data means that you will link each entry found in the column to a value in your database. An often mapped column is the column that contains the IBAN of the opposing account. That can be easily matched to IBAN\'s present in your database already.',
|
|
'roles_table' => 'Table',
|
|
'roles_column_name' => 'Name of column',
|
|
'roles_column_example' => 'Column example data',
|
|
'roles_column_role' => 'Column data meaning',
|
|
'roles_do_map_value' => 'Map these values',
|
|
'roles_column' => 'Column',
|
|
'roles_no_example_data' => 'No example data available',
|
|
'roles_submit' => 'Continue with step 3/3',
|
|
'roles_warning' => 'At the very least, mark one column as the amount-column. It is advisable to also select a column for the description, date and the opposing account.',
|
|
|
|
// map data
|
|
'map_title' => 'Import setup (3/3) - Connect import data to Firefly III data',
|
|
'map_text' => 'In the following tables, the left value shows you information found in your uploaded CSV file. It is your task to map this value, if possible, to a value already present in your database. Firefly will stick to this mapping. If there is no value to map to, or you do not wish to map the specific value, select nothing.',
|
|
'map_field_value' => 'Field value',
|
|
'map_field_mapped_to' => 'Mapped to',
|
|
'map_do_not_map' => '(do not map)',
|
|
'map_submit' => 'Start the import',
|
|
|
|
// map things.
|
|
'column__ignore' => '(ignore this column)',
|
|
'column_account-iban' => 'Asset account (IBAN)',
|
|
'column_account-id' => 'Asset account ID (matching Firefly)',
|
|
'column_account-name' => 'Asset account (name)',
|
|
'column_amount' => 'Amount',
|
|
'column_amount_debet' => 'Amount (debet column)',
|
|
'column_amount_credit' => 'Amount (credit column)',
|
|
'column_amount-comma-separated' => 'Amount (comma as decimal separator)',
|
|
'column_bill-id' => 'Bill ID (matching Firefly)',
|
|
'column_bill-name' => 'Bill name',
|
|
'column_budget-id' => 'Budget ID (matching Firefly)',
|
|
'column_budget-name' => 'Budget name',
|
|
'column_category-id' => 'Category ID (matching Firefly)',
|
|
'column_category-name' => 'Category name',
|
|
'column_currency-code' => 'Currency code (ISO 4217)',
|
|
'column_currency-id' => 'Currency ID (matching Firefly)',
|
|
'column_currency-name' => 'Currency name (matching Firefly)',
|
|
'column_currency-symbol' => 'Currency symbol (matching Firefly)',
|
|
'column_date-interest' => 'Interest calculation date',
|
|
'column_date-book' => 'Transaction booking date',
|
|
'column_date-process' => 'Transaction process date',
|
|
'column_date-transaction' => 'Date',
|
|
'column_description' => 'Description',
|
|
'column_opposing-iban' => 'Opposing account (IBAN)',
|
|
'column_opposing-id' => 'Opposing account ID (matching Firefly)',
|
|
'column_external-id' => 'External ID',
|
|
'column_opposing-name' => 'Opposing account (name)',
|
|
'column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator',
|
|
'column_ing-debet-credit' => 'ING specific debet/credit indicator',
|
|
'column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID',
|
|
'column_sepa-ct-op' => 'SEPA Credit Transfer opposing account',
|
|
'column_sepa-db' => 'SEPA Direct Debet',
|
|
'column_tags-comma' => 'Tags (comma separated)',
|
|
'column_tags-space' => 'Tags (space separated)',
|
|
'column_account-number' => 'Asset account (account number)',
|
|
'column_opposing-number' => 'Opposing account (account number)',
|
|
];
|