mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			198 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			198 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types=1);
 | |
| 
 | |
| /**
 | |
|  * 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:
 | |
|     'bank_name'                      => 'Banco',
 | |
|     'bank_balance'                   => 'Saldo',
 | |
|     'savings_balance'                => 'Salgo de ahorro',
 | |
|     'credit_card_limit'              => 'Límite de la tarjeta de crédito',
 | |
|     'automatch'                      => 'Coinciden automáticamente',
 | |
|     'skip'                           => 'Saltar',
 | |
|     'name'                           => 'Nombre',
 | |
|     'active'                         => 'Activo',
 | |
|     'amount_min'                     => 'Importe mínimo',
 | |
|     'amount_max'                     => 'Importe máximo',
 | |
|     'match'                          => 'Matches on',
 | |
|     'repeat_freq'                    => 'Repetición',
 | |
|     'journal_currency_id'            => 'Divisa',
 | |
|     'currency_id'                    => 'Divisa',
 | |
|     'attachments'                    => 'Adjuntos',
 | |
|     'journal_amount'                 => 'Importe',
 | |
|     'journal_source_account_name'    => 'Revenue account (source)',
 | |
|     'journal_source_account_id'      => 'Asset account (source)',
 | |
|     'BIC'                            => 'BIC',
 | |
|     'verify_password'                => 'Verificar la seguridad de contraseña',
 | |
|     'source_account'                 => 'Cuenta origen',
 | |
|     'destination_account'            => 'Cuenta destino',
 | |
|     'journal_destination_account_id' => 'Asset account (destination)',
 | |
|     'asset_destination_account'      => 'Asset account (destination)',
 | |
|     'asset_source_account'           => 'Asset account (source)',
 | |
|     'journal_description'            => 'Descripción',
 | |
|     'note'                           => 'Notas',
 | |
|     'split_journal'                  => 'Split this transaction',
 | |
|     'split_journal_explanation'      => 'Split this transaction in multiple parts',
 | |
|     'currency'                       => 'Divisa',
 | |
|     'account_id'                     => 'Cuenta',
 | |
|     'budget_id'                      => 'Presupuesto',
 | |
|     'openingBalance'                 => 'Saldo inicial',
 | |
|     'tagMode'                        => 'Modo de etiqueta',
 | |
|     'tag_position'                    => 'Tag location',
 | |
|     'virtualBalance'                 => 'Saldo virtual',
 | |
|     'targetamount'                   => 'Cantidad objetivo',
 | |
|     'accountRole'                    => 'Tipo de cuenta',
 | |
|     'openingBalanceDate'             => 'Fecha del saldo inicial',
 | |
|     'ccType'                         => 'Plan de pagos con tarjeta de crédito',
 | |
|     'ccMonthlyPaymentDate'           => 'Fecha de pago mensual de la tarjeta de crédito',
 | |
|     'piggy_bank_id'                  => 'Hucha',
 | |
|     'returnHere'                     => 'Volver aquí',
 | |
|     'returnHereExplanation'          => 'Después de guardar, vuelve aquí para crear otro.',
 | |
|     'returnHereUpdateExplanation'    => 'Después de actualizar, vuelve aquí.',
 | |
|     'description'                    => 'Descripción',
 | |
|     'expense_account'                => 'Cuenta de gastos',
 | |
|     'revenue_account'                => 'Cuenta de ingresos',
 | |
|     'decimal_places'                 => 'Lugares decimales',
 | |
|     'exchange_rate_instruction'      => 'Monedas extranjeras',
 | |
|     'source_amount'                  => 'Importe (origen)',
 | |
|     'destination_amount'             => 'Importe (destino)',
 | |
|     'native_amount'                  => 'Native amount',
 | |
|     'new_email_address'              => 'New email address',
 | |
|     'verification'                   => 'Verification',
 | |
|     'api_key'                        => 'API key',
 | |
| 
 | |
|     'source_account_asset'        => 'Source account (asset account)',
 | |
|     'destination_account_expense' => 'Destination account (expense account)',
 | |
|     'destination_account_asset'   => 'Destination account (asset account)',
 | |
|     'source_account_revenue'      => 'Source account (revenue account)',
 | |
|     'type'                        => 'Tipo',
 | |
|     'convert_Withdrawal'          => 'Convert withdrawal',
 | |
|     'convert_Deposit'             => 'Convertir depósito',
 | |
|     'convert_Transfer'            => 'Convertir transferencia',
 | |
| 
 | |
| 
 | |
|     'amount'                     => 'Importe',
 | |
|     'date'                       => 'Fecha',
 | |
|     'interest_date'              => 'Fecha de interés',
 | |
|     'book_date'                  => 'Fecha de registro',
 | |
|     'process_date'               => 'Fecha de procesamiento',
 | |
|     'category'                   => 'Categoría',
 | |
|     'tags'                       => 'Etiquetas',
 | |
|     'deletePermanently'          => 'Borrar permanentemente',
 | |
|     'cancel'                     => 'Cancelar',
 | |
|     'targetdate'                 => 'Target date',
 | |
|     'tag'                        => 'Etiqueta',
 | |
|     'under'                      => 'Under',
 | |
|     'symbol'                     => 'Símbolo',
 | |
|     'code'                       => 'Código',
 | |
|     'iban'                       => 'IBAN',
 | |
|     'accountNumber'              => 'Número de cuenta',
 | |
|     'creditCardNumber'           => 'Número de la tarjeta de crédito',
 | |
|     'has_headers'                => 'Encabezados',
 | |
|     'date_format'                => 'Formato de fecha',
 | |
|     'specifix'                   => 'Bank- or file specific fixes',
 | |
|     'attachments[]'              => 'Adjuntos',
 | |
|     'store_new_withdrawal'       => 'Guardar rueva retirada de efectivo',
 | |
|     'store_new_deposit'          => 'Guardar nuevo depósito',
 | |
|     'store_new_transfer'         => 'Guardar nueva transferencia',
 | |
|     'add_new_withdrawal'         => 'Añadir rueva retirada de efectivo',
 | |
|     'add_new_deposit'            => 'Añadir nuevo depósito',
 | |
|     'add_new_transfer'           => 'Añadir nueva transferencia',
 | |
|     'title'                      => 'Título',
 | |
|     'notes'                      => 'Notas',
 | |
|     'filename'                   => 'Nombre de fichero',
 | |
|     'mime'                       => 'Tipo Mime',
 | |
|     'size'                       => 'Tamaño',
 | |
|     'trigger'                    => 'Disparador',
 | |
|     'stop_processing'            => 'Detener el procesamiento',
 | |
|     'start_date'                 => 'Inicio del rango',
 | |
|     'end_date'                   => 'Final del rango',
 | |
|     'export_start_range'         => 'Start of export range',
 | |
|     'export_end_range'           => 'End of export range',
 | |
|     'export_format'              => 'Formato del archivo',
 | |
|     'include_attachments'        => 'Incluir archivos adjuntos subidos',
 | |
|     'include_old_uploads'        => 'Incluir datos importados',
 | |
|     'accounts'                   => 'Export transactions from these accounts',
 | |
|     'delete_account'             => 'Delete account ":name"',
 | |
|     'delete_bill'                => 'Delete bill ":name"',
 | |
|     'delete_budget'              => 'Delete budget ":name"',
 | |
|     'delete_category'            => 'Delete category ":name"',
 | |
|     'delete_currency'            => 'Eliminar divisa ":name"',
 | |
|     'delete_journal'             => 'Eliminar la transacción con descripción ":description"',
 | |
|     'delete_attachment'          => 'Eliminar adjunto ":name"',
 | |
|     'delete_rule'                => 'Eliminar regla ":title"',
 | |
|     'delete_rule_group'          => 'Eliminar grupo de reglas ":title"',
 | |
|     'delete_link_type'           => 'Eliminar tipo de enlace ":name"',
 | |
|     'delete_user'                => 'Delete user ":email"',
 | |
|     'user_areYouSure'            => 'If you delete user ":email", everything will be gone. There is no undo, undelete or anything. If you delete yourself, you will lose access to this instance of Firefly III.',
 | |
|     'attachment_areYouSure'      => 'Are you sure you want to delete the attachment named ":name"?',
 | |
|     'account_areYouSure'         => 'Are you sure you want to delete the account named ":name"?',
 | |
|     'bill_areYouSure'            => 'Are you sure you want to delete the bill named ":name"?',
 | |
|     'rule_areYouSure'            => 'Are you sure you want to delete the rule titled ":title"?',
 | |
|     'ruleGroup_areYouSure'       => 'Are you sure you want to delete the rule group titled ":title"?',
 | |
|     'budget_areYouSure'          => 'Are you sure you want to delete the budget named ":name"?',
 | |
|     'category_areYouSure'        => 'Are you sure you want to delete the category named ":name"?',
 | |
|     'currency_areYouSure'        => 'Are you sure you want to delete the currency named ":name"?',
 | |
|     'piggyBank_areYouSure'       => 'Are you sure you want to delete the piggy bank named ":name"?',
 | |
|     'journal_areYouSure'         => 'Are you sure you want to delete the transaction described ":description"?',
 | |
|     'mass_journal_are_you_sure'  => 'Are you sure you want to delete these transactions?',
 | |
|     'tag_areYouSure'             => 'Are you sure you want to delete the tag ":tag"?',
 | |
|     'journal_link_areYouSure'    => 'Are you sure you want to delete the link between <a href=":source_link">:source</a> and <a href=":destination_link">:destination</a>?',
 | |
|     'linkType_areYouSure'        => 'Are you sure you want to delete the link type ":name" (":inward" / ":outward")?',
 | |
|     'permDeleteWarning'          => 'Deleting stuff from Firely is permanent and cannot be undone.',
 | |
|     'mass_make_selection'        => 'You can still prevent items from being deleted by removing the checkbox.',
 | |
|     'delete_all_permanently'     => 'Delete selected permanently',
 | |
|     'update_all_journals'        => 'Update these transactions',
 | |
|     'also_delete_transactions'   => 'The only transaction connected to this account will be deleted as well.|All :count transactions connected to this account will be deleted as well.',
 | |
|     'also_delete_connections'    => 'The only transaction linked with this link type will lose this connection.|All :count transactions linked with this link type will lose their connection.',
 | |
|     'also_delete_rules'          => 'The only rule connected to this rule group will be deleted as well.|All :count rules connected to this rule group will be deleted as well.',
 | |
|     'also_delete_piggyBanks'     => 'The only piggy bank connected to this account will be deleted as well.|All :count piggy bank connected to this account will be deleted as well.',
 | |
|     'bill_keep_transactions'     => 'The only transaction connected to this bill will not be deleted.|All :count transactions connected to this bill will spared deletion.',
 | |
|     'budget_keep_transactions'   => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.',
 | |
|     'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.',
 | |
|     'tag_keep_transactions'      => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.',
 | |
| 
 | |
|     'email'                 => 'Correo electrónico',
 | |
|     'password'              => 'Contraseña',
 | |
|     'password_confirmation' => 'Contraseña (otra vez)',
 | |
|     'blocked'               => '¿Está bloqueado?',
 | |
|     'blocked_code'          => 'Razón del bloqueo',
 | |
| 
 | |
| 
 | |
|     // admin
 | |
|     'domain'                => 'Dominio',
 | |
|     'single_user_mode'      => 'Modo de un solo usuario',
 | |
|     'is_demo_site'          => 'Está en modo demostración',
 | |
| 
 | |
| 
 | |
|     // import
 | |
|     'import_file'           => 'Importar archivo',
 | |
|     'configuration_file'    => 'Archivo de configuración',
 | |
|     'import_file_type'      => 'Import file type',
 | |
|     'csv_comma'             => 'A comma (,)',
 | |
|     'csv_semicolon'         => 'A semicolon (;)',
 | |
|     'csv_tab'               => 'A tab (invisible)',
 | |
|     'csv_delimiter'         => 'CSV field delimiter',
 | |
|     'csv_import_account'    => 'Default import account',
 | |
|     'csv_config'            => 'CSV import configuration',
 | |
| 
 | |
| 
 | |
|     'due_date'           => 'Due date',
 | |
|     'payment_date'       => 'Payment date',
 | |
|     'invoice_date'       => 'Invoice date',
 | |
|     'internal_reference' => 'Internal reference',
 | |
|     'inward'             => 'Inward description',
 | |
|     'outward'            => 'Outward description',
 | |
|     'rule_group_id'      => 'Rule group',
 | |
| ];
 |