2017-06-04 13:40:17 +02:00
|
|
|
<?php
|
2017-08-12 10:41:35 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-06-04 13:40:17 +02:00
|
|
|
/**
|
|
|
|
* form.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 [
|
|
|
|
|
|
|
|
// new user:
|
2017-08-17 19:32:05 +02:00
|
|
|
'bank_name' => 'Banco',
|
|
|
|
'bank_balance' => 'Saldo',
|
2017-08-17 19:40:06 +02:00
|
|
|
'savings_balance' => 'Salgo de ahorro',
|
|
|
|
'credit_card_limit' => 'Límite de la tarjeta de crédito',
|
2017-08-18 17:50:07 +02:00
|
|
|
'automatch' => 'Coinciden automáticamente',
|
2017-08-17 19:40:06 +02:00
|
|
|
'skip' => 'Saltar',
|
|
|
|
'name' => 'Nombre',
|
|
|
|
'active' => 'Activo',
|
|
|
|
'amount_min' => 'Importe mínimo',
|
|
|
|
'amount_max' => 'Importe máximo',
|
2017-08-25 07:07:43 +02:00
|
|
|
'match' => '',
|
2017-08-17 19:40:06 +02:00
|
|
|
'repeat_freq' => 'Repetición',
|
2017-08-17 19:50:06 +02:00
|
|
|
'journal_currency_id' => 'Divisa',
|
|
|
|
'currency_id' => 'Divisa',
|
|
|
|
'attachments' => 'Adjuntos',
|
|
|
|
'journal_amount' => 'Importe',
|
2017-08-25 07:07:43 +02:00
|
|
|
'journal_asset_source_account' => '',
|
|
|
|
'journal_source_account_name' => '',
|
|
|
|
'journal_source_account_id' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
'BIC' => 'BIC',
|
2017-08-17 19:50:06 +02:00
|
|
|
'verify_password' => 'Verificar la seguridad de contraseña',
|
|
|
|
'account_from_id' => 'Cuenta origen',
|
|
|
|
'account_to_id' => 'Cuenta destino',
|
|
|
|
'source_account' => 'Cuenta origen',
|
|
|
|
'destination_account' => 'Cuenta destino',
|
2017-08-25 07:07:43 +02:00
|
|
|
'journal_destination_account_id' => '',
|
|
|
|
'asset_destination_account' => '',
|
|
|
|
'asset_source_account' => '',
|
2017-08-17 19:50:06 +02:00
|
|
|
'journal_description' => 'Descripción',
|
|
|
|
'note' => 'Notas',
|
2017-08-25 07:07:43 +02:00
|
|
|
'split_journal' => '',
|
|
|
|
'split_journal_explanation' => '',
|
|
|
|
'currency' => '',
|
|
|
|
'account_id' => '',
|
|
|
|
'budget_id' => '',
|
|
|
|
'openingBalance' => '',
|
|
|
|
'tagMode' => '',
|
|
|
|
'tagPosition' => '',
|
|
|
|
'virtualBalance' => '',
|
|
|
|
'longitude_latitude' => '',
|
|
|
|
'targetamount' => '',
|
|
|
|
'accountRole' => '',
|
|
|
|
'openingBalanceDate' => '',
|
|
|
|
'ccType' => '',
|
|
|
|
'ccMonthlyPaymentDate' => '',
|
|
|
|
'piggy_bank_id' => '',
|
|
|
|
'returnHere' => '',
|
|
|
|
'returnHereExplanation' => '',
|
|
|
|
'returnHereUpdateExplanation' => '',
|
|
|
|
'description' => '',
|
|
|
|
'expense_account' => '',
|
|
|
|
'revenue_account' => '',
|
|
|
|
'decimal_places' => '',
|
|
|
|
'exchange_rate_instruction' => '',
|
|
|
|
'exchanged_amount' => '',
|
|
|
|
'source_amount' => '',
|
|
|
|
'destination_amount' => '',
|
|
|
|
'native_amount' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
|
2017-08-25 07:07:43 +02:00
|
|
|
'revenue_account_source' => '',
|
|
|
|
'source_account_asset' => '',
|
|
|
|
'destination_account_expense' => '',
|
|
|
|
'destination_account_asset' => '',
|
|
|
|
'source_account_revenue' => '',
|
2017-08-18 17:50:07 +02:00
|
|
|
'type' => 'Tipo',
|
2017-08-25 07:07:43 +02:00
|
|
|
'convert_Withdrawal' => '',
|
|
|
|
'convert_Deposit' => '',
|
|
|
|
'convert_Transfer' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
|
|
|
|
|
2017-08-18 17:50:07 +02:00
|
|
|
'amount' => 'Importe',
|
|
|
|
'date' => 'Fecha',
|
2017-08-25 07:07:43 +02:00
|
|
|
'interest_date' => '',
|
|
|
|
'book_date' => '',
|
|
|
|
'process_date' => '',
|
|
|
|
'category' => '',
|
|
|
|
'tags' => '',
|
|
|
|
'deletePermanently' => '',
|
|
|
|
'cancel' => '',
|
|
|
|
'targetdate' => '',
|
2017-08-18 17:50:07 +02:00
|
|
|
'tag' => 'Etiqueta',
|
2017-08-25 07:07:43 +02:00
|
|
|
'under' => '',
|
2017-08-18 17:50:07 +02:00
|
|
|
'symbol' => 'Símbolo',
|
|
|
|
'code' => 'Código',
|
2017-06-04 13:40:17 +02:00
|
|
|
'iban' => 'IBAN',
|
2017-08-18 17:50:07 +02:00
|
|
|
'accountNumber' => 'Número de cuenta',
|
|
|
|
'has_headers' => 'Encabezados',
|
|
|
|
'date_format' => 'Formato de fecha',
|
2017-08-25 07:07:43 +02:00
|
|
|
'specifix' => '',
|
2017-08-18 17:50:07 +02:00
|
|
|
'attachments[]' => 'Adjuntos',
|
2017-08-25 07:07:43 +02:00
|
|
|
'store_new_withdrawal' => '',
|
|
|
|
'store_new_deposit' => '',
|
|
|
|
'store_new_transfer' => '',
|
|
|
|
'add_new_withdrawal' => '',
|
|
|
|
'add_new_deposit' => '',
|
|
|
|
'add_new_transfer' => '',
|
|
|
|
'noPiggybank' => '',
|
2017-08-18 17:50:07 +02:00
|
|
|
'title' => 'Título',
|
|
|
|
'notes' => 'Notas',
|
|
|
|
'filename' => 'Nombre de fichero',
|
|
|
|
'mime' => 'Tipo Mime',
|
|
|
|
'size' => 'Tamaño',
|
|
|
|
'trigger' => 'Disparador',
|
2017-08-25 07:07:43 +02:00
|
|
|
'stop_processing' => '',
|
|
|
|
'start_date' => '',
|
|
|
|
'end_date' => '',
|
|
|
|
'export_start_range' => '',
|
|
|
|
'export_end_range' => '',
|
|
|
|
'export_format' => '',
|
|
|
|
'include_attachments' => '',
|
|
|
|
'include_old_uploads' => '',
|
|
|
|
'accounts' => '',
|
|
|
|
'delete_account' => '',
|
|
|
|
'delete_bill' => '',
|
|
|
|
'delete_budget' => '',
|
|
|
|
'delete_category' => '',
|
|
|
|
'delete_currency' => '',
|
|
|
|
'delete_journal' => '',
|
|
|
|
'delete_attachment' => '',
|
|
|
|
'delete_rule' => '',
|
|
|
|
'delete_rule_group' => '',
|
|
|
|
'delete_link_type' => '',
|
|
|
|
'attachment_areYouSure' => '',
|
|
|
|
'account_areYouSure' => '',
|
|
|
|
'bill_areYouSure' => '',
|
|
|
|
'rule_areYouSure' => '',
|
|
|
|
'ruleGroup_areYouSure' => '',
|
|
|
|
'budget_areYouSure' => '',
|
|
|
|
'category_areYouSure' => '',
|
|
|
|
'currency_areYouSure' => '',
|
|
|
|
'piggyBank_areYouSure' => '',
|
|
|
|
'journal_areYouSure' => '',
|
|
|
|
'mass_journal_are_you_sure' => '',
|
|
|
|
'tag_areYouSure' => '',
|
|
|
|
'journal_link_areYouSure' => '',
|
|
|
|
'linkType_areYouSure' => '',
|
|
|
|
'permDeleteWarning' => '',
|
|
|
|
'mass_make_selection' => '',
|
|
|
|
'delete_all_permanently' => '',
|
|
|
|
'update_all_journals' => '',
|
|
|
|
'also_delete_transactions' => '',
|
|
|
|
'also_delete_connections' => '',
|
|
|
|
'also_delete_rules' => '',
|
|
|
|
'also_delete_piggyBanks' => '',
|
|
|
|
'bill_keep_transactions' => '',
|
|
|
|
'budget_keep_transactions' => '',
|
|
|
|
'category_keep_transactions' => '',
|
|
|
|
'tag_keep_transactions' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
|
2017-08-25 07:07:43 +02:00
|
|
|
'email' => '',
|
|
|
|
'password' => '',
|
|
|
|
'password_confirmation' => '',
|
|
|
|
'blocked' => '',
|
|
|
|
'blocked_code' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
// admin
|
2017-08-25 07:07:43 +02:00
|
|
|
'domain' => '',
|
|
|
|
'single_user_mode' => '',
|
|
|
|
'must_confirm_account' => '',
|
|
|
|
'is_demo_site' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
// import
|
2017-08-25 07:07:43 +02:00
|
|
|
'import_file' => '',
|
|
|
|
'configuration_file' => '',
|
|
|
|
'import_file_type' => '',
|
|
|
|
'csv_comma' => '',
|
|
|
|
'csv_semicolon' => '',
|
|
|
|
'csv_tab' => '',
|
|
|
|
'csv_delimiter' => '',
|
|
|
|
'csv_import_account' => '',
|
|
|
|
'csv_config' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
|
|
|
|
|
2017-08-25 07:07:43 +02:00
|
|
|
'due_date' => '',
|
|
|
|
'payment_date' => '',
|
|
|
|
'invoice_date' => '',
|
|
|
|
'internal_reference' => '',
|
2017-08-21 07:20:41 +02:00
|
|
|
|
2017-08-25 07:07:43 +02:00
|
|
|
'inward' => '',
|
|
|
|
'outward' => '',
|
2017-06-04 13:40:17 +02:00
|
|
|
];
|