mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Remove incomplete languages from code base [skip ci]
This commit is contained in:
parent
3ad833b3ae
commit
c9f188e5a6
@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* auth.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 [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Authentication Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used during authentication for various
|
|
||||||
| messages that we need to display to the user. You are free to modify
|
|
||||||
| these language lines according to your application's requirements.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'failed' => 'Las credenciales no coinciden con los registros.',
|
|
||||||
'throttle' => 'Demasiados intentos de inicio de sesión. Por favor reintente en :seconds segundos.',
|
|
||||||
|
|
||||||
];
|
|
@ -1,8 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
return [
|
|
||||||
'bunq_prerequisites_title' => 'Requisitos previos para una importación de bunq',
|
|
||||||
'bunq_prerequisites_text' => 'Para importar de bunq, necesita obtener una clave de API. Puedes hacer esto a través de la aplicación.',
|
|
||||||
];
|
|
@ -1,46 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* breadcrumbs.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 [
|
|
||||||
'home' => 'Inicio',
|
|
||||||
'edit_currency' => 'Editar moneda ":name"',
|
|
||||||
'delete_currency' => 'Eliminar moneda ":name"',
|
|
||||||
'newPiggyBank' => 'Crear nueva alcancía',
|
|
||||||
'edit_piggyBank' => 'Editar alcancía ":name"',
|
|
||||||
'preferences' => 'Preferencias',
|
|
||||||
'profile' => 'Perfil',
|
|
||||||
'changePassword' => 'Cambiar contraseña',
|
|
||||||
'bills' => 'Facturas',
|
|
||||||
'newBill' => 'Nueva factura',
|
|
||||||
'edit_bill' => 'Editar factura ":name"',
|
|
||||||
'delete_bill' => 'Eliminar factura ":name"',
|
|
||||||
'reports' => 'Reportes',
|
|
||||||
'search_result' => 'Resultados de la búsqueda para ":query"',
|
|
||||||
'withdrawal_list' => 'Gastos',
|
|
||||||
'deposit_list' => 'Ganancia, ingresos y depósitos',
|
|
||||||
'transfer_list' => 'Transferencias',
|
|
||||||
'transfers_list' => 'Transferencias',
|
|
||||||
'reconciliation_list' => 'Reconciliations',
|
|
||||||
'create_withdrawal' => 'Crear nuevo retiro',
|
|
||||||
'create_deposit' => 'Crear nuevo depósito',
|
|
||||||
'create_transfer' => 'Crear nueva transferencia',
|
|
||||||
'edit_journal' => 'Editar transacción ":description"',
|
|
||||||
'edit_reconciliation' => 'Edit ":description"',
|
|
||||||
'delete_journal' => 'Eliminar transacción ":description"',
|
|
||||||
'tags' => 'Etiquetas',
|
|
||||||
'createTag' => 'Crear nueva etiqueta',
|
|
||||||
'edit_tag' => 'Editar etiqueta ":tag"',
|
|
||||||
'delete_tag' => 'Eliminar etiqueta ":tag"',
|
|
||||||
'delete_journal_link' => 'Eliminar enlace entre transacciones',
|
|
||||||
];
|
|
@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* config.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 [
|
|
||||||
'locale' => 'es, Spanish, es_ES, es_ES.utf8, es_ES.UTF-8',
|
|
||||||
'month' => '%B %Y',
|
|
||||||
'month_and_day' => '%B %e, %Y',
|
|
||||||
'date_time' => '%B %e, %Y, @ %T',
|
|
||||||
'specific_day' => '%e %B %Y',
|
|
||||||
'week_in_year' => 'Semana %W, %Y',
|
|
||||||
'quarter_of_year' => '%B %Y',
|
|
||||||
'year' => '%Y',
|
|
||||||
'half_year' => '%B %Y',
|
|
||||||
|
|
||||||
];
|
|
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* csv.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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
// initial config
|
|
||||||
'initial_title' => 'Configuración de importación (1/3) - Configuración de importación de CSV simple',
|
|
||||||
'initial_text' => 'Para poder importar correctamente el archivo, por favor comprueba las opciones a continuación.',
|
|
||||||
'initial_box' => 'Configuración de importación de CSV simple',
|
|
||||||
'initial_box_title' => 'Opciones de configuración para importación de CSV simple',
|
|
||||||
'initial_header_help' => 'Marque aquí si el CSV contiene títulos de columna en la primera fila.',
|
|
||||||
'initial_date_help' => 'Formato de fecha y hora en el CSV. Siga un formato como los que indica <a href="https://secure.php.net/manual/es/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">esta página</a>. El valor por defecto interpretará fechas que se vean así: :dateExample.',
|
|
||||||
'initial_delimiter_help' => 'Elija el delimitador de campos de su archivo de entrada. Si no está seguro, la coma es la opción más segura.',
|
|
||||||
'initial_import_account_help' => 'Si su archivo CSV NO contiene información sobre su(s) caja(s) de ahorros, seleccione una opción del desplegable para definir a qué cuenta pertenecen las transacciones del CSV.',
|
|
||||||
'initial_submit' => 'Continúe con el paso 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' => 'Configuración de importación (2/3) - Define el rol de cada columna',
|
|
||||||
'roles_text' => 'Cada columna en su archivo CSV contiene ciertos datos. Indique qué tipo de datos debe esperar el importador. La opción de "mapear" datos significa que enlazará cada entrada encontrada en la columna con un valor en su base de datos. Una columna a menudo mapeada es la columna que contiene el IBAN de la cuenta de contrapartida. Eso puede enlazarse fácilmente con cuentas IBAN ya presentes en su base de datos.',
|
|
||||||
'roles_table' => 'Tabla',
|
|
||||||
'roles_column_name' => 'Nombre de la columna',
|
|
||||||
'roles_column_example' => 'Ejemplo de datos de columna',
|
|
||||||
'roles_column_role' => 'Significado de los datos de la columna',
|
|
||||||
'roles_do_map_value' => 'Mapear estos valores',
|
|
||||||
'roles_column' => 'Columna',
|
|
||||||
'roles_no_example_data' => 'No hay datos de ejemplo disponibles',
|
|
||||||
'roles_submit' => 'Continúe con el paso 3/3',
|
|
||||||
'roles_warning' => 'Como mínimo, marque una columna como la columna de importe. También es aconsejable seleccionar una columna para la descripción, fecha y la cuenta de contrapartida.',
|
|
||||||
|
|
||||||
// map data
|
|
||||||
'map_title' => 'Configuración de la importación (3/3) - Conecta los datos de importación a los datos de Firefly III',
|
|
||||||
'map_text' => 'En las siguientes tablas el valor de la izquierda muestra información encontrada en el CSV cargado. Es su tarea mapear este valor, si es posible, a un valor ya presente en su base de datos. Firefly respeterá este mapeo. Si no hay un valor hacia el cual mapear o no desea mapear un valor específico, no seleccione ninguno.',
|
|
||||||
'map_field_value' => 'Valor del campo',
|
|
||||||
'map_field_mapped_to' => 'Mapeado a',
|
|
||||||
'map_do_not_map' => '(no mapear)',
|
|
||||||
'map_submit' => 'Iniciar la importación',
|
|
||||||
|
|
||||||
// map things.
|
|
||||||
'column__ignore' => '(ignorar esta columna)',
|
|
||||||
'column_account-iban' => 'Caja de ahorro (CBU)',
|
|
||||||
'column_account-id' => 'ID de la caja de ahorro (coincide con Firefly)',
|
|
||||||
'column_account-name' => 'Caja de ahorro (nombre)',
|
|
||||||
'column_amount' => 'Monto',
|
|
||||||
'column_amount_debet' => 'Amount (debet column)',
|
|
||||||
'column_amount_credit' => 'Amount (credit column)',
|
|
||||||
'column_amount-comma-separated' => 'Monto (coma como separador de decimales)',
|
|
||||||
'column_bill-id' => 'ID de factura (coincide con Firefly)',
|
|
||||||
'column_bill-name' => 'Nombre de factura',
|
|
||||||
'column_budget-id' => 'ID de presupuesto (coincide con Firefly)',
|
|
||||||
'column_budget-name' => 'Nombre de presupuesto',
|
|
||||||
'column_category-id' => 'ID de categoría (coincide con Firefly)',
|
|
||||||
'column_category-name' => 'Nombre de categoría',
|
|
||||||
'column_currency-code' => 'Código de moneda (ISO 4217)',
|
|
||||||
'column_currency-id' => 'ID de moneda (coincide con Firefly)',
|
|
||||||
'column_currency-name' => 'Nombre de moneda (coincide con Firefly)',
|
|
||||||
'column_currency-symbol' => 'Símbolo de moneda (coincide con Firefly)',
|
|
||||||
'column_date-interest' => 'Fecha de cálculo de intereses',
|
|
||||||
'column_date-book' => 'Fecha de registro de transacción',
|
|
||||||
'column_date-process' => 'Fecha de proceso de transacción',
|
|
||||||
'column_date-transaction' => 'Fecha',
|
|
||||||
'column_description' => 'Descripción',
|
|
||||||
'column_opposing-iban' => 'Cuenta opuesta (CBU)',
|
|
||||||
'column_opposing-id' => 'ID de cuenta opuesta (coincide con Firefly)',
|
|
||||||
'column_external-id' => 'ID externo',
|
|
||||||
'column_opposing-name' => 'Cuenta opuesta (nombre)',
|
|
||||||
'column_rabo-debet-credit' => 'Indicador de débito/crédito específico de Rabobank',
|
|
||||||
'column_ing-debet-credit' => 'Indicador de débito/crédito específico de ING',
|
|
||||||
'column_sepa-ct-id' => 'ID de transferencia de crédito end-to-end de SEPA',
|
|
||||||
'column_sepa-ct-op' => 'Transferencia de crédito a cuenta opuesta SEPA',
|
|
||||||
'column_sepa-db' => 'Débito directo SEPA',
|
|
||||||
'column_tags-comma' => 'Etiquetas (separadas por comas)',
|
|
||||||
'column_tags-space' => 'Etiquetas (separadas por espacios)',
|
|
||||||
'column_account-number' => 'Caja de ahorro (número de cuenta)',
|
|
||||||
'column_opposing-number' => 'Cuenta opuesta (número de cuenta)',
|
|
||||||
];
|
|
@ -1,26 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* demo.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 [
|
|
||||||
'no_demo_text' => 'Lamentablemente no hay textos de ayuda para <abbr title=":route">esta página</abbr>.',
|
|
||||||
'see_help_icon' => 'Sin embargo, el ícono <i class="fa fa-question-circle"></i> en la esquina superior-derecha puede tener más información.',
|
|
||||||
'index' => '¡Bienvenido a <strong>Firefly III</strong>! En esta página tendrá una vista rápida de sus finanzas. Para más información, mire sus cuentas rarr; <a href=":asset">Asset Accounts</a> y, claro, las páginas de <a href=":budgets">presupuestos</a> y <a href=":reports">reportes</a>. O simplemente investigue la aplicación por su cuenta.',
|
|
||||||
'accounts-index' => 'Las cajas de ahorro son sus cuentas de banco personales. Las cuentas de gastos contienen sus gastos habituales como compras y salidas con amigos. Las cuentas de ingresos repesentan ingresos de su trabajo u otras fuentes. En esta página puede editarlas o eliminarlas.',
|
|
||||||
'budgets-index' => 'Esta página le muestra una visión general de sus presupuestos. La barra superior muestra la cantidad que está disponible para ser presupuestado. Esto se puede personalizar para cualquier período haciendo clic en la cantidad a la derecha. La cantidad que has gastado hasta ahora se muestra en la barra de abajo. Debajo están los gastos por presupuesto y lo que ha presupuestado para ellos.',
|
|
||||||
'reports-index-start' => 'Firefly III admite cuatro tipos de informes. Lea sobre ellos haciendo clic en el icono <i class="fa fa-question-circle"> en la esquina superior derecha.',
|
|
||||||
'reports-index-examples' => 'Asegúrese de revisar estos ejemplos: <a href=":one"> un resumen financiero mensual </a>, <a href=":two"> un resumen financiero anual </a> y <a href=":three"> una vista general del presupuesto</a>.',
|
|
||||||
'currencies-index' => 'Firefly III admite múltiples monedas. A pesar de que la moneda por defecto es el Euro, se puede seleccionar el Dólar de EE.UU, y muchas otras monedas. Como se puede ver se ha incluido una pequeña selección de monedas, pero puedes agregar tu propia moneda si lo deseas. Sin embargo, cambiar la moneda predeterminada no cambiará la moneda de las transacciones existentes: Firefly III admite el uso de varias monedas al mismo tiempo.',
|
|
||||||
'transactions-index' => 'Estos gastos, depósitos y transferencias no son particularmente imaginativos. Se han generado automáticamente.',
|
|
||||||
'piggy-banks-index' => 'Como puede ver, hay tres alcancías. Utilice los botones más y menos para influir en la cantidad de dinero en cada alcancía. Haga clic en el nombre de la alcancía para ver la administración de cada una.',
|
|
||||||
'import-index' => 'Of course, any CSV file can be imported into Firefly III',
|
|
||||||
'import-configure-security' => 'Debido a problemas de seguridad, su subida se ha sustituido por un archivo local.',
|
|
||||||
'import-configure-configuration' => 'La configuración que ves a continuación es correcta para el archivo local.',
|
|
||||||
];
|
|
File diff suppressed because it is too large
Load Diff
@ -1,198 +0,0 @@
|
|||||||
<?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' => 'Cuenta de ingresos (origen)',
|
|
||||||
'journal_source_account_id' => 'Cuenta de activos (origen)',
|
|
||||||
'BIC' => 'BIC',
|
|
||||||
'verify_password' => 'Verificar la seguridad de contraseña',
|
|
||||||
'source_account' => 'Cuenta origen',
|
|
||||||
'destination_account' => 'Cuenta destino',
|
|
||||||
'journal_destination_account_id' => 'Cuenta de activos (destino)',
|
|
||||||
'asset_destination_account' => 'Cuenta de activos (destino)',
|
|
||||||
'asset_source_account' => 'Cuenta de activos (origen)',
|
|
||||||
'journal_description' => 'Descripción',
|
|
||||||
'note' => 'Notas',
|
|
||||||
'split_journal' => 'Dividir esta transacción',
|
|
||||||
'split_journal_explanation' => 'Dividir esta transacción en múltiples partes',
|
|
||||||
'currency' => 'Divisa',
|
|
||||||
'account_id' => 'Cuenta',
|
|
||||||
'budget_id' => 'Presupuesto',
|
|
||||||
'openingBalance' => 'Saldo inicial',
|
|
||||||
'tagMode' => 'Modo de etiqueta',
|
|
||||||
'tag_position' => 'Etiquetar ubicación',
|
|
||||||
'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' => 'Nueva dirección de email',
|
|
||||||
'verification' => 'Verificación',
|
|
||||||
'api_key' => 'Clave de API',
|
|
||||||
|
|
||||||
'source_account_asset' => 'Cuenta de origen (cuenta de activos)',
|
|
||||||
'destination_account_expense' => 'Cuenta de destino (cuenta de gastos)',
|
|
||||||
'destination_account_asset' => 'Cuenta de destino (cuenta de activos)',
|
|
||||||
'source_account_revenue' => 'Cuenta de origen (cuenta de ingresos)',
|
|
||||||
'type' => 'Tipo',
|
|
||||||
'convert_Withdrawal' => 'Convertir extracción',
|
|
||||||
'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' => 'Fecha tope',
|
|
||||||
'startdate' => 'Start 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' => 'Inicio del rango de exportación',
|
|
||||||
'export_end_range' => 'Fin del rango de exportación',
|
|
||||||
'export_format' => 'Formato del archivo',
|
|
||||||
'include_attachments' => 'Incluir archivos adjuntos subidos',
|
|
||||||
'include_old_uploads' => 'Incluir datos importados',
|
|
||||||
'accounts' => 'Exportar transacciones de estas cuentas',
|
|
||||||
'delete_account' => 'Borrar cuenta ":name"',
|
|
||||||
'delete_bill' => 'Eliminar factura ":name"',
|
|
||||||
'delete_budget' => 'Eliminar presupuesto ":name"',
|
|
||||||
'delete_category' => 'Eliminar categoría ":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' => 'Eliminar usuario ":email"',
|
|
||||||
'user_areYouSure' => 'Si elimina usuario ":email", todo desaparecerá. No hay deshacer, recuperar ni nada. Si te eliminas, perderás el acceso a esta instancia de Firefly III.',
|
|
||||||
'attachment_areYouSure' => '¿Seguro que quieres eliminar el archivo adjunto llamado "name"?',
|
|
||||||
'account_areYouSure' => '¿Seguro que quieres eliminar la cuenta llamada ":name"?',
|
|
||||||
'bill_areYouSure' => '¿Seguro que quieres eliminar la factura llamada ":name"?',
|
|
||||||
'rule_areYouSure' => '¿Seguro que quieres eliminar la regla titulada ":title"?',
|
|
||||||
'ruleGroup_areYouSure' => '¿Seguro que quieres eliminar el grupo de reglas titulado ":title"?',
|
|
||||||
'budget_areYouSure' => '¿Seguro que quieres eliminar el presupuesto llamado ":name"?',
|
|
||||||
'category_areYouSure' => '¿Seguro que quieres eliminar la categoría llamada ":name"?',
|
|
||||||
'currency_areYouSure' => '¿Está seguro que desea eliminar la moneda denominada ":name"?',
|
|
||||||
'piggyBank_areYouSure' => '¿Está seguro que desea eliminar la hucha llamada ":name"?',
|
|
||||||
'journal_areYouSure' => '¿Estás seguro de que deseas eliminar la transacción descrita ":description"?',
|
|
||||||
'mass_journal_are_you_sure' => 'Are you sure you want to delete these transactions?',
|
|
||||||
'tag_areYouSure' => '¿Seguro que quieres eliminar la etiqueta ":tag"?',
|
|
||||||
'journal_link_areYouSure' => '¿Seguro que quieres eliminar el vínculo entre <a href=":source_link">:source</a> y <a href=":destination_link">:destination</a>?',
|
|
||||||
'linkType_areYouSure' => '¿Estás seguro de que deseas eliminar el tipo de vínculo ":name" (":inward" / ":outward")?',
|
|
||||||
'permDeleteWarning' => 'Eliminar cosas de Firely es permanente y no se puede deshacer.',
|
|
||||||
'mass_make_selection' => 'Aún puede evitar que se eliminen elementos quitando la casilla de verificación.',
|
|
||||||
'delete_all_permanently' => 'Eliminar selección permanentemente',
|
|
||||||
'update_all_journals' => 'Actualiza estas transacciones',
|
|
||||||
'also_delete_transactions' => 'La única transacción conectada a esta cuenta también se eliminará. | Todas las :count transacciones conectadas a esta cuenta también se eliminarán.',
|
|
||||||
'also_delete_connections' => 'La única transacción vinculada con este tipo de enlace perderá esta conexión. | Todas las :count transacciones vinculadas con este tipo de enlace perderán su conexión.',
|
|
||||||
'also_delete_rules' => 'La única regla conectada a este grupo de reglas también se eliminará. | Todas las :count reglas conectadas a este grupo de reglas también se eliminarán.',
|
|
||||||
'also_delete_piggyBanks' => 'La única alcancía conectada a esta cuenta también se eliminará. | Todas las :count alcancías conectadas a esta cuenta también se eliminará.',
|
|
||||||
'bill_keep_transactions' => 'La única transacción conectada a esta factura no se eliminará. | Todas las :count transacciones conectadas a esta factura evitarán la eliminación.',
|
|
||||||
'budget_keep_transactions' => 'La única transacción conectada a este presupuesto no se eliminará. | Todas las :count transacciones conectadas a este presupuesto evitarán la eliminación.',
|
|
||||||
'category_keep_transactions' => 'La única transacción conectada a esta categoría no se eliminará. | Todas las :count transacciones conectadas a esta categoría evitarán la eliminación.',
|
|
||||||
'tag_keep_transactions' => 'La única transacción conectada a esta etiqueta no se eliminará. | Todas las :count transacciones conectadas a esta etiqueta evitarán la eliminación.',
|
|
||||||
|
|
||||||
'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' => 'Deshabilitar registro de usuario',
|
|
||||||
'is_demo_site' => 'Está en modo demostración',
|
|
||||||
|
|
||||||
|
|
||||||
// import
|
|
||||||
'import_file' => 'Importar archivo',
|
|
||||||
'configuration_file' => 'Archivo de configuración',
|
|
||||||
'import_file_type' => 'Importar tipo de archivo',
|
|
||||||
'csv_comma' => 'Una coma (,)',
|
|
||||||
'csv_semicolon' => 'Un punto y coma (;)',
|
|
||||||
'csv_tab' => 'Un tabulador (invisible)',
|
|
||||||
'csv_delimiter' => 'Delimitador de campo CSV',
|
|
||||||
'csv_import_account' => 'Cuenta de importación predeterminada',
|
|
||||||
'csv_config' => 'Configuración de importación de CSV',
|
|
||||||
|
|
||||||
|
|
||||||
'due_date' => 'Fecha de vencimiento',
|
|
||||||
'payment_date' => 'Fecha de pago',
|
|
||||||
'invoice_date' => 'Fecha de la factura',
|
|
||||||
'internal_reference' => 'Referencia interna',
|
|
||||||
'inward' => 'Descripción interna',
|
|
||||||
'outward' => 'Descripción externa',
|
|
||||||
'rule_group_id' => 'Grupo de reglas',
|
|
||||||
];
|
|
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* help.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 [
|
|
||||||
|
|
||||||
// tour!
|
|
||||||
'main-content-title' => 'Bienvenido a Firefly III',
|
|
||||||
'main-content-text' => 'Hazte un favor y sigue esta breve guía para asegurarte de que sabes manejarte en el sistema.',
|
|
||||||
'sidebar-toggle-title' => 'Barra lateral para crear items',
|
|
||||||
'sidebar-toggle-text' => 'Ocultos bajo el icono más (+) encontrará botones para crear items nuevos. Cuentas, transacciones, ¡de todo!',
|
|
||||||
'account-menu-title' => 'Todas sus cuentas',
|
|
||||||
'account-menu-text' => 'Aquí puede encontrar todas las cuentas que ha creado.',
|
|
||||||
'budget-menu-title' => 'Presupuestos',
|
|
||||||
'budget-menu-text' => 'Utilice esta página para organizar sus finanzas y limitar el gasto.',
|
|
||||||
'report-menu-title' => 'Informes',
|
|
||||||
'report-menu-text' => 'Comprueba esto cuando quieras tener una visión general de tus finanzas.',
|
|
||||||
'transaction-menu-title' => 'Transacciones',
|
|
||||||
'transaction-menu-text' => 'Aquí encontrarás todas las transacciones que has creado.',
|
|
||||||
'option-menu-title' => 'Opciones',
|
|
||||||
'option-menu-text' => 'Esto se explica por sí solo.',
|
|
||||||
'main-content-end-title' => '¡Fin!',
|
|
||||||
'main-content-end-text' => 'Recuerde que cada página tiene un pequeño signo de interrogación en la parte superior derecha. Haz clic en él para obtener ayuda sobre la página en la que estás.',
|
|
||||||
'index' => 'índice',
|
|
||||||
'home' => 'inicio',
|
|
||||||
];
|
|
@ -1,122 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* intro.php
|
|
||||||
* Copyright (c) 2017 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 [
|
|
||||||
// index
|
|
||||||
'index_intro' => 'Bienvenido a la página de índice de Firefly III. Por favor tómate tu tiempo para revisar esta guía y que puedas hacerte una idea de cómo funciona Firefly III.',
|
|
||||||
'index_accounts-chart' => 'Este gráfico muestra el saldo actual de tus cuentas. Puedes seleccionar las cuentas que se muestran en él desde tus preferencias.',
|
|
||||||
'index_box_out_holder' => 'Esta pequeña caja y las cajas a continuación te darán una visión rápida de tu situación financiera.',
|
|
||||||
'index_help' => 'Si alguna vez necesitas ayuda en una página o formulario, pulsa este botón.',
|
|
||||||
'index_outro' => 'La mayoría de las páginas de Firefly III comenzarán con una pequeña introducción como ésta. Por favor, ponte en contacto conmigo si tienes preguntas o comentarios. ¡Disfruta!',
|
|
||||||
'index_sidebar-toggle' => 'Para crear nuevas transacciones, cuentas u otros elementos, utiliza el menú bajo este icono.',
|
|
||||||
|
|
||||||
// create account:
|
|
||||||
'accounts_create_iban' => 'Indica un IBAN válido en tus cuentas. Esto facilitará la importación de datos en el futuro.',
|
|
||||||
'accounts_create_asset_opening_balance' => 'Las cuentas pueden tener un "saldo de apertura", que indica el saldo inicial de esta cuenta en Firefly.',
|
|
||||||
'accounts_create_asset_currency' => 'Firefly III admite múltiples divisas. Las cuentas tienen una divisa principal, que debes indicar aquí.',
|
|
||||||
'accounts_create_asset_virtual' => 'A veces puede ayudar el darle a tu cuenta un balance virtual: una cantidad extra que se añade o resta siempre del balance real.',
|
|
||||||
|
|
||||||
// budgets index
|
|
||||||
'budgets_index_intro' => 'Los presupuestos se utilizan para administrar sus finanzas y son una de las funciones básicas de Firefly III.',
|
|
||||||
'budgets_index_set_budget' => 'Fija tu presupuesto total para cada período, de tal forma que Firefly pueda indicarte si has presupuestado todo el dinero disponible.',
|
|
||||||
'budgets_index_see_expenses_bar' => 'Gastar dinero irá llenando poco a poco esta barra.',
|
|
||||||
'budgets_index_navigate_periods' => 'Navega a través de períodos para configurar fácilmente presupuestos con anticipación.',
|
|
||||||
'budgets_index_new_budget' => 'Crea nuevos presupuestos como mejor te parezca.',
|
|
||||||
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
|
||||||
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
|
||||||
|
|
||||||
// reports (index)
|
|
||||||
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
|
||||||
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
|
||||||
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
|
||||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years.',
|
|
||||||
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
|
||||||
|
|
||||||
// reports (reports)
|
|
||||||
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
|
||||||
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
|
||||||
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
|
||||||
|
|
||||||
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
|
||||||
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
|
||||||
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
|
||||||
|
|
||||||
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
|
||||||
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
|
||||||
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
|
||||||
|
|
||||||
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
|
||||||
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
|
||||||
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
|
||||||
|
|
||||||
// create transaction
|
|
||||||
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
|
||||||
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
|
||||||
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
|
||||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
|
||||||
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
|
||||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
|
||||||
|
|
||||||
// piggy banks index:
|
|
||||||
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
|
||||||
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
|
||||||
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
|
||||||
|
|
||||||
// create piggy
|
|
||||||
'piggy-banks_create_name' => 'What is your goal? A new couch, a camera, money for emergencies?',
|
|
||||||
'piggy-banks_create_date' => 'You can set a target date or a deadline for your piggy bank.',
|
|
||||||
|
|
||||||
// show piggy
|
|
||||||
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
|
||||||
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
|
||||||
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
|
||||||
|
|
||||||
// bill index
|
|
||||||
'bills_index_paid_in_period' => 'This field indicates when the bill was last paid.',
|
|
||||||
'bills_index_expected_in_period' => 'This field indicates for each bill if and when the next bill is expected to hit.',
|
|
||||||
|
|
||||||
// show bill
|
|
||||||
'bills_show_billInfo' => 'This table shows some general information about this bill.',
|
|
||||||
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this bill.',
|
|
||||||
'bills_show_billChart' => 'This chart shows the transactions linked to this bill.',
|
|
||||||
|
|
||||||
// create bill
|
|
||||||
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
|
||||||
'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
|
||||||
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this bill.',
|
|
||||||
'bills_create_repeat_freq_holder' => 'Most bills repeat monthly, but you can set another frequency here.',
|
|
||||||
'bills_create_skip_holder' => 'If a bill repeats every 2 weeks for example, the "skip"-field should be set to "1" to skip every other week.',
|
|
||||||
|
|
||||||
// rules index
|
|
||||||
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
|
||||||
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
|
||||||
'rules_index_new_rule' => 'Create as many rules as you like.',
|
|
||||||
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
|
||||||
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
|
||||||
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
|
||||||
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
|
||||||
|
|
||||||
// create rule:
|
|
||||||
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
|
||||||
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
|
||||||
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
|
||||||
'rules_create_actions' => 'Set as many actions as you like.',
|
|
||||||
|
|
||||||
// preferences
|
|
||||||
'preferences_index_tabs' => 'More options are available behind these tabs.',
|
|
||||||
|
|
||||||
// currencies
|
|
||||||
'currencies_index_intro' => 'Firefly III supports multiple currencies, which you can change on this page.',
|
|
||||||
'currencies_index_default' => 'Firefly III has one default currency. You can always switch of course using these buttons.',
|
|
||||||
|
|
||||||
// create currency
|
|
||||||
'currencies_create_code' => 'This code should be ISO compliant (Google it for your new currency).',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* list.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 [
|
|
||||||
'buttons' => 'Botones',
|
|
||||||
'icon' => 'Icono',
|
|
||||||
'id' => 'ID',
|
|
||||||
'create_date' => 'Fecha de creación',
|
|
||||||
'update_date' => 'Fecha de modificación',
|
|
||||||
'updated_at' => 'Updated at',
|
|
||||||
'balance_before' => 'Balance antes de ',
|
|
||||||
'balance_after' => 'Balance después de la',
|
|
||||||
'name' => 'Nombre',
|
|
||||||
'role' => 'Rol',
|
|
||||||
'currentBalance' => 'Balance actual',
|
|
||||||
'active' => '¿Está Activo?',
|
|
||||||
'lastActivity' => 'Actividad más reciente',
|
|
||||||
'balanceDiff' => 'Diferencia de saldo entre :start y :end',
|
|
||||||
'matchesOn' => 'Encontrado en',
|
|
||||||
'account_type' => 'Tipo de cuenta',
|
|
||||||
'created_at' => 'Fecha de creación',
|
|
||||||
'account' => 'Cuenta',
|
|
||||||
'matchingAmount' => 'Monto',
|
|
||||||
'split_number' => 'División #',
|
|
||||||
'destination' => 'Destino',
|
|
||||||
'source' => 'Origen',
|
|
||||||
'next_expected_match' => 'Próxima coincidencia esperada',
|
|
||||||
'automatch' => '¿Buscar coincidencia automaticamente?',
|
|
||||||
'repeat_freq' => 'Repetición:',
|
|
||||||
'description' => 'Descripción',
|
|
||||||
'amount' => 'Monto',
|
|
||||||
'internal_reference' => 'Referencia interna',
|
|
||||||
'date' => 'Fecha',
|
|
||||||
'interest_date' => 'Tasa de interés',
|
|
||||||
'book_date' => 'Libro fecha',
|
|
||||||
'process_date' => 'Fecha de procesamiento',
|
|
||||||
'due_date' => 'Fecha de vencimiento',
|
|
||||||
'payment_date' => 'Fecha de pago',
|
|
||||||
'invoice_date' => 'Fecha de facturación',
|
|
||||||
'interal_reference' => 'Referencia interna',
|
|
||||||
'notes' => 'Notas',
|
|
||||||
'from' => 'Desde',
|
|
||||||
'piggy_bank' => 'Alcancilla',
|
|
||||||
'to' => 'Hasta',
|
|
||||||
'budget' => 'Presupuesto',
|
|
||||||
'category' => 'Categoría',
|
|
||||||
'bill' => 'Factura',
|
|
||||||
'withdrawal' => 'Retiro',
|
|
||||||
'deposit' => 'Depósito',
|
|
||||||
'transfer' => 'Trasferencia',
|
|
||||||
'type' => 'Tipo',
|
|
||||||
'completed' => 'Completado',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'paid_current_period' => 'Pagado este período',
|
|
||||||
'email' => 'Email',
|
|
||||||
'registered_at' => 'Registrado el',
|
|
||||||
'is_blocked' => 'Está bloqueado',
|
|
||||||
'is_admin' => '¿Es el administrador?',
|
|
||||||
'has_two_factor' => 'Tiene 2FA',
|
|
||||||
'blocked_code' => 'Bloque de código',
|
|
||||||
'source_account' => 'Cuenta origen',
|
|
||||||
'destination_account' => 'Cuenta destino',
|
|
||||||
'accounts_count' => 'Número de cuentas',
|
|
||||||
'journals_count' => 'Número de transacciones',
|
|
||||||
'attachments_count' => 'Núm. de datos adjuntos',
|
|
||||||
'bills_count' => 'Número de facturas',
|
|
||||||
'categories_count' => 'Número de categorías',
|
|
||||||
'export_jobs_count' => 'Número de operaciones de exportación',
|
|
||||||
'import_jobs_count' => 'Número de operaciones de importación',
|
|
||||||
'budget_count' => 'Número de presupuestos',
|
|
||||||
'rule_and_groups_count' => 'Número de reglas y grupos de reglas',
|
|
||||||
'tags_count' => 'Número de etiquetas',
|
|
||||||
'inward' => 'Descripción interna',
|
|
||||||
'outward' => 'Descripción externa',
|
|
||||||
'number_of_transactions' => 'Número de transacciones',
|
|
||||||
'total_amount' => 'Total',
|
|
||||||
'sum' => 'Suma',
|
|
||||||
'sum_excluding_transfers' => 'Sum (excluding transfers)',
|
|
||||||
'sum_withdrawals' => 'Sum of withdrawals',
|
|
||||||
'sum_deposits' => 'Sum of deposits',
|
|
||||||
'sum_transfers' => 'Suma de transferencias',
|
|
||||||
'reconcile' => 'Reconcile',
|
|
||||||
];
|
|
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* pagination.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 [
|
|
||||||
|
|
||||||
'previous' => '« Anterior',
|
|
||||||
'next' => 'Siguiente »',
|
|
||||||
|
|
||||||
];
|
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* passwords.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 [
|
|
||||||
'password' => 'Las contraseñas deben tener al menos seis caracteres y coincidir entre sí.',
|
|
||||||
'user' => 'No podemos encontrar un usuario con esa dirección de correo electrónico.',
|
|
||||||
'token' => 'Este token para reestablecer la contraseña no es válido.',
|
|
||||||
'sent' => 'Te enviamos un correo con el link para reestablecer tu contraseña!',
|
|
||||||
'reset' => 'Tu contraseña fue reestablecida!',
|
|
||||||
'blocked' => 'Buen intento.',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* validation.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 [
|
|
||||||
'iban' => 'Este no es un IBAN válido.',
|
|
||||||
'unique_account_number_for_user' => 'Parece que este número de cuenta ya está en uso.',
|
|
||||||
'deleted_user' => 'Debido a restricciones de seguridad, no se puede registrar utilizando esta dirección de correo electrónico.',
|
|
||||||
'rule_trigger_value' => 'Este valor es incorrecto para el disparador seleccionado.',
|
|
||||||
'rule_action_value' => 'Este valor es incorrecto para la acción seleccionada.',
|
|
||||||
'file_already_attached' => 'El archivo ":name" ya ha sido añadido a este objeto.',
|
|
||||||
'file_attached' => 'Archivo subido correctamente ": nombre".',
|
|
||||||
'file_invalid_mime' => 'El archivo ":name" es de tipo ": mime", el cual no se acepta.',
|
|
||||||
'file_too_large' => 'El archivo ":name" es demasiado grande.',
|
|
||||||
'belongs_to_user' => 'El valor de :attribute es desconocido',
|
|
||||||
'accepted' => 'El :attribute debe ser aceptado.',
|
|
||||||
'bic' => 'Esto no es un BIC válido.',
|
|
||||||
'more' => ':attribute debe ser mayor que cero.',
|
|
||||||
'active_url' => 'El campo :attribute no es una URL válida.',
|
|
||||||
'after' => 'El campo :attribute debe ser una fecha posterior a :date.',
|
|
||||||
'alpha' => 'El campo :attribute sólo puede contener letras.',
|
|
||||||
'alpha_dash' => 'El campo :attribute sólo puede contener letras, números y guiones.',
|
|
||||||
'alpha_num' => 'El campo :attribute sólo puede contener letras y números.',
|
|
||||||
'array' => 'El campo :attribute debe ser un arreglo.',
|
|
||||||
'unique_for_user' => 'Ya hay una entrada con esto :attribute.',
|
|
||||||
'before' => 'El campo :attribute debe contener una fecha anterior a :date.',
|
|
||||||
'unique_object_for_user' => 'Este nombre ya está en uso',
|
|
||||||
'unique_account_for_user' => 'Este nombre cuenta ya está en uso',
|
|
||||||
'between.numeric' => 'El atributo :attribute debe estar entre :min y :max.',
|
|
||||||
'between.file' => 'El atributo :attribute debe estar entre :min y :max kilobytes.',
|
|
||||||
'between.string' => 'El atributo :attribute debe estar entre :min y :max caracteres.',
|
|
||||||
'between.array' => 'El atributo :attribute debe estar entre :min y :max items.',
|
|
||||||
'boolean' => 'El campo :attribute debe ser verdadero o falso.',
|
|
||||||
'confirmed' => 'La confirmación de :attribute no coincide.',
|
|
||||||
'date' => 'El campo :attribute no es una fecha válida.',
|
|
||||||
'date_format' => 'El campo :attribute no corresponde con el formato :format.',
|
|
||||||
'different' => 'Los campos :attribute y :other han de ser diferentes.',
|
|
||||||
'digits' => 'El campo :attribute debe contener un número de :digits dígitos.',
|
|
||||||
'digits_between' => 'El campo :attribute debe contener entre :min y :max dígitos.',
|
|
||||||
'email' => 'El campo :attribute no corresponde con una dirección de e-mail válida.',
|
|
||||||
'filled' => 'El campo :attribute es requerido.',
|
|
||||||
'exists' => 'El campo :attribute seleccionado no es correcto.',
|
|
||||||
'image' => 'El campo :attribute debe ser una imagen.',
|
|
||||||
'in' => 'El campo :attribute seleccionado es inválido.',
|
|
||||||
'integer' => 'El campo :attribute debe ser un entero.',
|
|
||||||
'ip' => 'El campo :attribute debe contener una dirección IP válida.',
|
|
||||||
'json' => 'El campo :attribute debe ser una cadena JSON válida.',
|
|
||||||
'max.numeric' => 'El campo :attribute no puede ser mayor que :max.',
|
|
||||||
'max.file' => 'El campo :attribute no puede ser mayor :max de kilobytes.',
|
|
||||||
'max.string' => 'El campo :attribute debe contener menos de :max caracteres.',
|
|
||||||
'max.array' => 'El campo :attribute debe contener al menos :max elementos.',
|
|
||||||
'mimes' => 'El campo :attribute debe ser un archivo de tipo :values.',
|
|
||||||
'min.numeric' => 'El campo :attribute debe ser al menos :min.',
|
|
||||||
'min.file' => 'El campo :attribute debe ser al menos :min kilobytes.',
|
|
||||||
'min.string' => 'El campo :attribute debe contener al menos :min caracteres.',
|
|
||||||
'min.array' => 'El campo :attribute debe tener al menos :min elementos.',
|
|
||||||
'not_in' => 'El campo :attribute seleccionado es incorrecto.',
|
|
||||||
'numeric' => 'El campo :attribute debe ser un número.',
|
|
||||||
'regex' => 'El formato del campo :attribute no es válido.',
|
|
||||||
'required' => 'El campo :attribute es obligatorio.',
|
|
||||||
'required_if' => 'El campo :attribute es obligatorio cuando el campo :other es :value.',
|
|
||||||
'required_unless' => 'El campo :attribute es obligatorio a menos que :other se encuentre en :values.',
|
|
||||||
'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
|
|
||||||
'required_with_all' => 'El campo :attribute es obligatorio cuando :values está presente.',
|
|
||||||
'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.',
|
|
||||||
'required_without_all' => 'El campo :attribute es obligatorio cuando ningún campo :values está presente.',
|
|
||||||
'same' => 'El campo atributo :attribute y :other deben coincidir.',
|
|
||||||
'size.numeric' => 'El tamaño de :attribute debe ser :size.',
|
|
||||||
'size.file' => 'El tamaño de :attribute debe ser :size kilobytes.',
|
|
||||||
'size.string' => 'El campo :attribute debe tener :size caracteres.',
|
|
||||||
'size.array' => 'El campo :attribute debe contener :size elementos.',
|
|
||||||
'unique' => 'El elemento :attribute ya está en uso.',
|
|
||||||
'string' => 'El campo :atribute debe ser un texto.',
|
|
||||||
'url' => 'El formato del campo :attribute no es válido.',
|
|
||||||
'timezone' => 'El campo :attribute debe contener una zona válida.',
|
|
||||||
'2fa_code' => 'El campo :attribute no es válido.',
|
|
||||||
'dimensions' => 'Las dimensiones de la imagen :attribute son incorrectas.',
|
|
||||||
'distinct' => 'El campo :attribute tiene un valor duplicado.',
|
|
||||||
'file' => 'El campo :attribute debe ser un fichero.',
|
|
||||||
'in_array' => 'El campo :attribute no existe en :other.',
|
|
||||||
'present' => 'El campo :attribute debe estar presente.',
|
|
||||||
'amount_zero' => 'La cantidad total no puede ser cero',
|
|
||||||
'secure_password' => 'Esta contraseña no es segura. Por favor inténtalo de nuevo. Para más información, visita https://goo.gl/NCh2tN',
|
|
||||||
];
|
|
@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* auth.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 [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Authentication Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used during authentication for various
|
|
||||||
| messages that we need to display to the user. You are free to modify
|
|
||||||
| these language lines according to your application's requirements.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'failed' => 'Kredensial ini tidak sesuai dengan catatan kami.',
|
|
||||||
'throttle' => 'Terlalu banyak upaya login. Silakan coba lagi dalam :seconds detik.',
|
|
||||||
|
|
||||||
];
|
|
@ -1,8 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
return [
|
|
||||||
'bunq_prerequisites_title' => 'Prasyarat untuk impor dari bunq',
|
|
||||||
'bunq_prerequisites_text' => 'Untuk mengimpor dari bunq, Anda perlu mendapatkan kunci API. Anda dapat melakukan ini melalui aplikasi.',
|
|
||||||
];
|
|
@ -1,46 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* breadcrumbs.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 [
|
|
||||||
'home' => 'Beranda',
|
|
||||||
'edit_currency' => 'Edit mata uang ":name"',
|
|
||||||
'delete_currency' => 'Hapus mata uang ":name"',
|
|
||||||
'newPiggyBank' => 'Buat celengan baru',
|
|
||||||
'edit_piggyBank' => 'Edit celengan ":name"',
|
|
||||||
'preferences' => 'Preferensi',
|
|
||||||
'profile' => 'Profil',
|
|
||||||
'changePassword' => 'Ubah kata sandi Anda',
|
|
||||||
'bills' => 'Tagihan',
|
|
||||||
'newBill' => 'Tagihan baru',
|
|
||||||
'edit_bill' => 'Edit tagihan ":name"',
|
|
||||||
'delete_bill' => 'Hapus tagihan ":name"',
|
|
||||||
'reports' => 'Laporan',
|
|
||||||
'search_result' => 'Hasil pencarian untuk ":query"',
|
|
||||||
'withdrawal_list' => 'Pengeluaran',
|
|
||||||
'deposit_list' => 'Pendapatan, pemasukan, dan deposit',
|
|
||||||
'transfer_list' => 'Transfer',
|
|
||||||
'transfers_list' => 'Transfer',
|
|
||||||
'reconciliation_list' => 'Reconciliations',
|
|
||||||
'create_withdrawal' => 'Buat penarikan baru',
|
|
||||||
'create_deposit' => 'Buat deposit baru',
|
|
||||||
'create_transfer' => 'Buat transfer baru',
|
|
||||||
'edit_journal' => 'Edit transaksi ":description"',
|
|
||||||
'edit_reconciliation' => 'Edit ":description"',
|
|
||||||
'delete_journal' => 'Hapus transaksi ":description"',
|
|
||||||
'tags' => 'Label',
|
|
||||||
'createTag' => 'Buat label baru',
|
|
||||||
'edit_tag' => 'Edit label ":tag"',
|
|
||||||
'delete_tag' => 'Hapus label ":tag"',
|
|
||||||
'delete_journal_link' => 'Hapus tautan antar transaksi',
|
|
||||||
];
|
|
@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* config.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 [
|
|
||||||
'locale' => 'id, Bahasa Indonesia, id_ID, id_ID.utf8, id_ID.UTF-8',
|
|
||||||
'month' => '%B %Y',
|
|
||||||
'month_and_day' => '%e %B %Y',
|
|
||||||
'date_time' => '%e %B %Y, @ %T',
|
|
||||||
'specific_day' => '%e %B %Y',
|
|
||||||
'week_in_year' => 'Minggu %W, %Y',
|
|
||||||
'quarter_of_year' => '%B %Y',
|
|
||||||
'year' => '%Y',
|
|
||||||
'half_year' => '%B %Y',
|
|
||||||
|
|
||||||
];
|
|
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* csv.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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
// initial config
|
|
||||||
'initial_title' => 'Pengaturan impor (1/3) - Pengaturan dasar impor CSV',
|
|
||||||
'initial_text' => 'Untuk dapat mengimpor file Anda dengan benar, mohon periksa pilihan-pilihan di bawah ini.',
|
|
||||||
'initial_box' => 'Pengaturan dasar impor CSV',
|
|
||||||
'initial_box_title' => 'Opsi pengaturan dasar impor CSV',
|
|
||||||
'initial_header_help' => 'Centang kotak ini jika baris pertama file CSV Anda adalah judul kolom.',
|
|
||||||
'initial_date_help' => 'Format tanggal dan waktu dalam CSV Anda. Ikuti format seperti ditunjukkan pada <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">halaman ini</a>. Nilai default akan membaca tanggal yang serupa dengan ini: :dateExample.',
|
|
||||||
'initial_delimiter_help' => 'Pilih pembatas kolom yang digunakan dalam file masukan Anda. Jika tidak yakin, koma adalah pilihan teraman.',
|
|
||||||
'initial_import_account_help' => 'Jika file CSV Anda TIDAK berisi informasi tentang akun-akun aset Anda, gunakan daftar ini untuk memilih akun yang akan digunakan untuk menyimpan transaksi dari CSV Anda.',
|
|
||||||
'initial_submit' => 'Lanjutkan dengan langkah 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' => 'Pengaturan impor (2/3) - Tentukan peran masing-masing kolom',
|
|
||||||
'roles_text' => 'Setiap kolom dalam file CSV Anda berisi data tertentu. Mohon tunjukkan jenis data yang akan dibaca oleh pengimpor. Pilihan untuk memetakan data berarti Anda akan menghubungkan setiap entri yang ditemukan di kolom ke nilai di basis data Anda. Kolom yang sering dipetakan adalah kolom yang berisi IBAN dari akun lawan. Itu dapat dengan mudah disesuaikan dengan IBAN yang sudah ada dalam basis data Anda.',
|
|
||||||
'roles_table' => 'Tabel',
|
|
||||||
'roles_column_name' => 'Nama kolom',
|
|
||||||
'roles_column_example' => 'Contoh data di kolom ini',
|
|
||||||
'roles_column_role' => 'Arti data di kolom ini',
|
|
||||||
'roles_do_map_value' => 'Petakan nilai-nilai ini',
|
|
||||||
'roles_column' => 'Kolom',
|
|
||||||
'roles_no_example_data' => 'Contoh data tidak tersedia',
|
|
||||||
'roles_submit' => 'Lanjutkan dengan langkah 3/3',
|
|
||||||
'roles_warning' => 'Tandai satu kolom sebagai kolom jumlah. Sebaiknya pilih juga kolom deskripsi, tanggal, dan akun lawan.',
|
|
||||||
|
|
||||||
// map data
|
|
||||||
'map_title' => 'Pengaturan impor (3/3) - Hubungkan data impor dengan data Firefly III',
|
|
||||||
'map_text' => 'Pada tabel-tabel berikut, nilai kiri menunjukkan informasi yang ada dalam file CSV yang Anda unggah. Tugas Anda adalah memetakan nilai ini, jika memungkinkan, dengan nilai yang sudah ada dalam basis data Anda. Firefly akan terus menggunakan pemetaan ini. Jika tidak ada nilai untuk dipetakan, atau jika Anda tidak ingin memetakan nilai tertentu, jangan memilih apa-apa.',
|
|
||||||
'map_field_value' => 'Nilai kolom',
|
|
||||||
'map_field_mapped_to' => 'Dipetakan ke',
|
|
||||||
'map_do_not_map' => '(jangan petakan)',
|
|
||||||
'map_submit' => 'Mulai impor',
|
|
||||||
|
|
||||||
// map things.
|
|
||||||
'column__ignore' => '(abaikan kolom ini)',
|
|
||||||
'column_account-iban' => 'Akun aset (IBAN)',
|
|
||||||
'column_account-id' => 'ID akun aset (yang cocok dengan Firefly)',
|
|
||||||
'column_account-name' => 'Akun aset (nama)',
|
|
||||||
'column_amount' => 'Jumlah',
|
|
||||||
'column_amount_debet' => 'Amount (debet column)',
|
|
||||||
'column_amount_credit' => 'Amount (credit column)',
|
|
||||||
'column_amount-comma-separated' => 'Jumlah (koma sebagai tanda desimal)',
|
|
||||||
'column_bill-id' => 'ID tagihan (yang cocok dengan Firefly)',
|
|
||||||
'column_bill-name' => 'Nama tagihan',
|
|
||||||
'column_budget-id' => 'ID anggaran (yang cocok dengan Firefly)',
|
|
||||||
'column_budget-name' => 'Nama anggaran',
|
|
||||||
'column_category-id' => 'ID kategori (yang cocok dengan Firefly)',
|
|
||||||
'column_category-name' => 'Nama kategori',
|
|
||||||
'column_currency-code' => 'Kode mata uang (ISO 4217)',
|
|
||||||
'column_currency-id' => 'ID mata uang (yang cocok dengan Firefly)',
|
|
||||||
'column_currency-name' => 'Nama mata uang (yang cocok dengan Firefly)',
|
|
||||||
'column_currency-symbol' => 'Simbol mata uang (yang cocok dengan Firefly)',
|
|
||||||
'column_date-interest' => 'Tanggal penghitungan bunga',
|
|
||||||
'column_date-book' => 'Tanggal pembukuan transaksi',
|
|
||||||
'column_date-process' => 'Tanggal pemrosesan transaksi',
|
|
||||||
'column_date-transaction' => 'Tanggal',
|
|
||||||
'column_description' => 'Deskripsi',
|
|
||||||
'column_opposing-iban' => 'Akun lawan (IBAN)',
|
|
||||||
'column_opposing-id' => 'ID akun lawan (yang cocok dengan Firefly)',
|
|
||||||
'column_external-id' => 'ID eksternal',
|
|
||||||
'column_opposing-name' => 'Akun lawan (nama)',
|
|
||||||
'column_rabo-debet-credit' => 'Indikator debet/kredit spesifik Rabobank',
|
|
||||||
'column_ing-debet-credit' => 'Indikator debet/kredit spesifik ING',
|
|
||||||
'column_sepa-ct-id' => 'Nomor Transaksi Transfer Kredit SEPA',
|
|
||||||
'column_sepa-ct-op' => 'Akun lawan Transfer Kredit SEPA',
|
|
||||||
'column_sepa-db' => 'Debit Langsung SEPA',
|
|
||||||
'column_tags-comma' => 'Label (dipisahkan koma)',
|
|
||||||
'column_tags-space' => 'Label (dipisahkan spasi)',
|
|
||||||
'column_account-number' => 'Akun aset (nomor akun)',
|
|
||||||
'column_opposing-number' => 'Akun lawan (nomor akun)',
|
|
||||||
];
|
|
@ -1,26 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* demo.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 [
|
|
||||||
'no_demo_text' => 'Sorry, there is no extra demo-explanation text for <abbr title=":route">this page</abbr>.',
|
|
||||||
'see_help_icon' => 'However, the <i class="fa fa-question-circle"></i>-icon in the top right corner may tell you more.',
|
|
||||||
'index' => 'Welcome to <strong>Firefly III</strong>! On this page you get a quick overview of your finances. For more information, check out Accounts → <a href=":asset">Asset Accounts</a> and of course the <a href=":budgets">Budgets</a> and <a href=":reports">Reports</a> pages. Or just take a look around and see where you end up.',
|
|
||||||
'accounts-index' => 'Asset accounts are your personal bank accounts. Expense accounts are the accounts you spend money at, such as stores and friends. Revenue accounts are accounts you receive money from, such as your job, the government or other sources of income. On this page you can edit or remove them.',
|
|
||||||
'budgets-index' => 'This page shows you an overview of your budgets. The top bar shows the amount that is available to be budgeted. This can be customized for any period by clicking the amount on the right. The amount you\'ve actually spent is shown in the bar below. Below that are the expenses per budget and what you\'ve budgeted for them.',
|
|
||||||
'reports-index-start' => 'Firefly III supports four types of reports. Read about them by clicking on the <i class="fa fa-question-circle"></i>-icon in the top right corner.',
|
|
||||||
'reports-index-examples' => 'Be sure to check out these examples: <a href=":one">a monthly financial overview</a>, <a href=":two">a yearly financial overview</a> and <a href=":three">a budget overview</a>.',
|
|
||||||
'currencies-index' => 'Firefly III supports multiple currencies. Although it defaults to the Euro it can be set to the US Dollar and many other currencies. As you can see a small selection of currencies has been included but you can add your own if you wish to. Changing the default currency will not change the currency of existing transactions however: Firefly III supports the use of multiple currencies at the same time.',
|
|
||||||
'transactions-index' => 'These expenses, deposits and transfers are not particularly imaginative. They have been generated automatically.',
|
|
||||||
'piggy-banks-index' => 'As you can see, there are three piggy banks. Use the plus and minus buttons to influence the amount of money in each piggy bank. Click the name of the piggy bank to see the administration for each piggy bank.',
|
|
||||||
'import-index' => 'Of course, any CSV file can be imported into Firefly III',
|
|
||||||
'import-configure-security' => 'Because of security concerns, your upload has been replaced with a local file.',
|
|
||||||
'import-configure-configuration' => 'The configuration you see below is correct for the local file.',
|
|
||||||
];
|
|
File diff suppressed because it is too large
Load Diff
@ -1,198 +0,0 @@
|
|||||||
<?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' => 'Bank name',
|
|
||||||
'bank_balance' => 'Balance',
|
|
||||||
'savings_balance' => 'Savings balance',
|
|
||||||
'credit_card_limit' => 'Credit card limit',
|
|
||||||
'automatch' => 'Match automatically',
|
|
||||||
'skip' => 'Skip',
|
|
||||||
'name' => 'Name',
|
|
||||||
'active' => 'Active',
|
|
||||||
'amount_min' => 'Minimum amount',
|
|
||||||
'amount_max' => 'Maximum amount',
|
|
||||||
'match' => 'Matches on',
|
|
||||||
'repeat_freq' => 'Repeats',
|
|
||||||
'journal_currency_id' => 'Currency',
|
|
||||||
'currency_id' => 'Currency',
|
|
||||||
'attachments' => 'Attachments',
|
|
||||||
'journal_amount' => 'Amount',
|
|
||||||
'journal_source_account_name' => 'Revenue account (source)',
|
|
||||||
'journal_source_account_id' => 'Asset account (source)',
|
|
||||||
'BIC' => 'BIC',
|
|
||||||
'verify_password' => 'Verify password security',
|
|
||||||
'source_account' => 'Source account',
|
|
||||||
'destination_account' => 'Destination account',
|
|
||||||
'journal_destination_account_id' => 'Asset account (destination)',
|
|
||||||
'asset_destination_account' => 'Asset account (destination)',
|
|
||||||
'asset_source_account' => 'Asset account (source)',
|
|
||||||
'journal_description' => 'Description',
|
|
||||||
'note' => 'Notes',
|
|
||||||
'split_journal' => 'Split this transaction',
|
|
||||||
'split_journal_explanation' => 'Split this transaction in multiple parts',
|
|
||||||
'currency' => 'Currency',
|
|
||||||
'account_id' => 'Asset account',
|
|
||||||
'budget_id' => 'Budget',
|
|
||||||
'openingBalance' => 'Opening balance',
|
|
||||||
'tagMode' => 'Tag mode',
|
|
||||||
'tag_position' => 'Tag location',
|
|
||||||
'virtualBalance' => 'Virtual balance',
|
|
||||||
'targetamount' => 'Target amount',
|
|
||||||
'accountRole' => 'Account role',
|
|
||||||
'openingBalanceDate' => 'Opening balance date',
|
|
||||||
'ccType' => 'Credit card payment plan',
|
|
||||||
'ccMonthlyPaymentDate' => 'Credit card monthly payment date',
|
|
||||||
'piggy_bank_id' => 'Piggy bank',
|
|
||||||
'returnHere' => 'Return here',
|
|
||||||
'returnHereExplanation' => 'After storing, return here to create another one.',
|
|
||||||
'returnHereUpdateExplanation' => 'After updating, return here.',
|
|
||||||
'description' => 'Description',
|
|
||||||
'expense_account' => 'Expense account',
|
|
||||||
'revenue_account' => 'Revenue account',
|
|
||||||
'decimal_places' => 'Decimal places',
|
|
||||||
'exchange_rate_instruction' => 'Foreign currencies',
|
|
||||||
'source_amount' => 'Amount (source)',
|
|
||||||
'destination_amount' => 'Amount (destination)',
|
|
||||||
'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' => 'Type',
|
|
||||||
'convert_Withdrawal' => 'Convert withdrawal',
|
|
||||||
'convert_Deposit' => 'Convert deposit',
|
|
||||||
'convert_Transfer' => 'Convert transfer',
|
|
||||||
|
|
||||||
|
|
||||||
'amount' => 'Amount',
|
|
||||||
'date' => 'Date',
|
|
||||||
'interest_date' => 'Interest date',
|
|
||||||
'book_date' => 'Book date',
|
|
||||||
'process_date' => 'Processing date',
|
|
||||||
'category' => 'Category',
|
|
||||||
'tags' => 'Tags',
|
|
||||||
'deletePermanently' => 'Delete permanently',
|
|
||||||
'cancel' => 'Cancel',
|
|
||||||
'targetdate' => 'Target date',
|
|
||||||
'startdate' => 'Start date',
|
|
||||||
'tag' => 'Tag',
|
|
||||||
'under' => 'Under',
|
|
||||||
'symbol' => 'Symbol',
|
|
||||||
'code' => 'Code',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'accountNumber' => 'Account number',
|
|
||||||
'creditCardNumber' => 'Credit card number',
|
|
||||||
'has_headers' => 'Headers',
|
|
||||||
'date_format' => 'Date format',
|
|
||||||
'specifix' => 'Bank- or file specific fixes',
|
|
||||||
'attachments[]' => 'Attachments',
|
|
||||||
'store_new_withdrawal' => 'Store new withdrawal',
|
|
||||||
'store_new_deposit' => 'Store new deposit',
|
|
||||||
'store_new_transfer' => 'Store new transfer',
|
|
||||||
'add_new_withdrawal' => 'Add a new withdrawal',
|
|
||||||
'add_new_deposit' => 'Add a new deposit',
|
|
||||||
'add_new_transfer' => 'Add a new transfer',
|
|
||||||
'title' => 'Title',
|
|
||||||
'notes' => 'Notes',
|
|
||||||
'filename' => 'File name',
|
|
||||||
'mime' => 'Mime type',
|
|
||||||
'size' => 'Size',
|
|
||||||
'trigger' => 'Trigger',
|
|
||||||
'stop_processing' => 'Stop processing',
|
|
||||||
'start_date' => 'Start of range',
|
|
||||||
'end_date' => 'End of range',
|
|
||||||
'export_start_range' => 'Start of export range',
|
|
||||||
'export_end_range' => 'End of export range',
|
|
||||||
'export_format' => 'File format',
|
|
||||||
'include_attachments' => 'Include uploaded attachments',
|
|
||||||
'include_old_uploads' => 'Include imported data',
|
|
||||||
'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' => 'Delete currency ":name"',
|
|
||||||
'delete_journal' => 'Delete transaction with description ":description"',
|
|
||||||
'delete_attachment' => 'Delete attachment ":name"',
|
|
||||||
'delete_rule' => 'Delete rule ":title"',
|
|
||||||
'delete_rule_group' => 'Delete rule group ":title"',
|
|
||||||
'delete_link_type' => 'Delete link type ":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' => 'Email address',
|
|
||||||
'password' => 'Password',
|
|
||||||
'password_confirmation' => 'Password (again)',
|
|
||||||
'blocked' => 'Is blocked?',
|
|
||||||
'blocked_code' => 'Reason for block',
|
|
||||||
|
|
||||||
|
|
||||||
// admin
|
|
||||||
'domain' => 'Domain',
|
|
||||||
'single_user_mode' => 'Disable user registration',
|
|
||||||
'is_demo_site' => 'Is demo site',
|
|
||||||
|
|
||||||
|
|
||||||
// import
|
|
||||||
'import_file' => 'Import file',
|
|
||||||
'configuration_file' => 'Configuration file',
|
|
||||||
'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',
|
|
||||||
];
|
|
@ -1,122 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* intro.php
|
|
||||||
* Copyright (c) 2017 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 [
|
|
||||||
// index
|
|
||||||
'index_intro' => 'Welcome to the index page of Firefly III. Please take the time to walk through this intro to get a feeling of how Firefly III works.',
|
|
||||||
'index_accounts-chart' => 'This chart shows the current balance of your asset accounts. You can select the accounts visible here in your preferences.',
|
|
||||||
'index_box_out_holder' => 'This little box and the boxes next to this one will give you a quick overview of your financial situation.',
|
|
||||||
'index_help' => 'If you ever need help with a page or a form, press this button.',
|
|
||||||
'index_outro' => 'Most pages of Firefly III will start with a little tour like this one. Please contact me when you have questions or comments. Enjoy!',
|
|
||||||
'index_sidebar-toggle' => 'To create new transactions, accounts or other things, use the menu under this icon.',
|
|
||||||
|
|
||||||
// create account:
|
|
||||||
'accounts_create_iban' => 'Give your accounts a valid IBAN. This could make a data import very easy in the future.',
|
|
||||||
'accounts_create_asset_opening_balance' => 'Assets accounts may have an "opening balance", indicating the start of this account\'s history in Firefly.',
|
|
||||||
'accounts_create_asset_currency' => 'Firefly III supports multiple currencies. Asset accounts have one main currency, which you must set here.',
|
|
||||||
'accounts_create_asset_virtual' => 'It can sometimes help to give your account a virtual balance: an extra amount always added to or removed from the actual balance.',
|
|
||||||
|
|
||||||
// budgets index
|
|
||||||
'budgets_index_intro' => 'Budgets are used to manage your finances and form one of the core functions of Firefly III.',
|
|
||||||
'budgets_index_set_budget' => 'Set your total budget for every period so Firefly can tell you if you have budgeted all available money.',
|
|
||||||
'budgets_index_see_expenses_bar' => 'Spending money will slowly fill this bar.',
|
|
||||||
'budgets_index_navigate_periods' => 'Navigate through periods to easily set budgets ahead of time.',
|
|
||||||
'budgets_index_new_budget' => 'Create new budgets as you see fit.',
|
|
||||||
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
|
||||||
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
|
||||||
|
|
||||||
// reports (index)
|
|
||||||
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
|
||||||
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
|
||||||
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
|
||||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years.',
|
|
||||||
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
|
||||||
|
|
||||||
// reports (reports)
|
|
||||||
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
|
||||||
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
|
||||||
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
|
||||||
|
|
||||||
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
|
||||||
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
|
||||||
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
|
||||||
|
|
||||||
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
|
||||||
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
|
||||||
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
|
||||||
|
|
||||||
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
|
||||||
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
|
||||||
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
|
||||||
|
|
||||||
// create transaction
|
|
||||||
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
|
||||||
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
|
||||||
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
|
||||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
|
||||||
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
|
||||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
|
||||||
|
|
||||||
// piggy banks index:
|
|
||||||
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
|
||||||
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
|
||||||
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
|
||||||
|
|
||||||
// create piggy
|
|
||||||
'piggy-banks_create_name' => 'What is your goal? A new couch, a camera, money for emergencies?',
|
|
||||||
'piggy-banks_create_date' => 'You can set a target date or a deadline for your piggy bank.',
|
|
||||||
|
|
||||||
// show piggy
|
|
||||||
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
|
||||||
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
|
||||||
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
|
||||||
|
|
||||||
// bill index
|
|
||||||
'bills_index_paid_in_period' => 'This field indicates when the bill was last paid.',
|
|
||||||
'bills_index_expected_in_period' => 'This field indicates for each bill if and when the next bill is expected to hit.',
|
|
||||||
|
|
||||||
// show bill
|
|
||||||
'bills_show_billInfo' => 'This table shows some general information about this bill.',
|
|
||||||
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this bill.',
|
|
||||||
'bills_show_billChart' => 'This chart shows the transactions linked to this bill.',
|
|
||||||
|
|
||||||
// create bill
|
|
||||||
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
|
||||||
'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
|
||||||
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this bill.',
|
|
||||||
'bills_create_repeat_freq_holder' => 'Most bills repeat monthly, but you can set another frequency here.',
|
|
||||||
'bills_create_skip_holder' => 'If a bill repeats every 2 weeks for example, the "skip"-field should be set to "1" to skip every other week.',
|
|
||||||
|
|
||||||
// rules index
|
|
||||||
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
|
||||||
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
|
||||||
'rules_index_new_rule' => 'Create as many rules as you like.',
|
|
||||||
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
|
||||||
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
|
||||||
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
|
||||||
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
|
||||||
|
|
||||||
// create rule:
|
|
||||||
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
|
||||||
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
|
||||||
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
|
||||||
'rules_create_actions' => 'Set as many actions as you like.',
|
|
||||||
|
|
||||||
// preferences
|
|
||||||
'preferences_index_tabs' => 'More options are available behind these tabs.',
|
|
||||||
|
|
||||||
// currencies
|
|
||||||
'currencies_index_intro' => 'Firefly III supports multiple currencies, which you can change on this page.',
|
|
||||||
'currencies_index_default' => 'Firefly III has one default currency. You can always switch of course using these buttons.',
|
|
||||||
|
|
||||||
// create currency
|
|
||||||
'currencies_create_code' => 'This code should be ISO compliant (Google it for your new currency).',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* list.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 [
|
|
||||||
'buttons' => 'Buttons',
|
|
||||||
'icon' => 'Icon',
|
|
||||||
'id' => 'ID',
|
|
||||||
'create_date' => 'Created at',
|
|
||||||
'update_date' => 'Updated at',
|
|
||||||
'updated_at' => 'Updated at',
|
|
||||||
'balance_before' => 'Balance before',
|
|
||||||
'balance_after' => 'Balance after',
|
|
||||||
'name' => 'Name',
|
|
||||||
'role' => 'Role',
|
|
||||||
'currentBalance' => 'Current balance',
|
|
||||||
'active' => 'Is active?',
|
|
||||||
'lastActivity' => 'Last activity',
|
|
||||||
'balanceDiff' => 'Balance difference between :start and :end',
|
|
||||||
'matchesOn' => 'Matched on',
|
|
||||||
'account_type' => 'Account type',
|
|
||||||
'created_at' => 'Created at',
|
|
||||||
'account' => 'Account',
|
|
||||||
'matchingAmount' => 'Amount',
|
|
||||||
'split_number' => 'Split #',
|
|
||||||
'destination' => 'Destination',
|
|
||||||
'source' => 'Source',
|
|
||||||
'next_expected_match' => 'Next expected match',
|
|
||||||
'automatch' => 'Auto match?',
|
|
||||||
'repeat_freq' => 'Repeats',
|
|
||||||
'description' => 'Description',
|
|
||||||
'amount' => 'Amount',
|
|
||||||
'internal_reference' => 'Internal reference',
|
|
||||||
'date' => 'Date',
|
|
||||||
'interest_date' => 'Interest date',
|
|
||||||
'book_date' => 'Book date',
|
|
||||||
'process_date' => 'Processing date',
|
|
||||||
'due_date' => 'Due date',
|
|
||||||
'payment_date' => 'Payment date',
|
|
||||||
'invoice_date' => 'Invoice date',
|
|
||||||
'interal_reference' => 'Internal reference',
|
|
||||||
'notes' => 'Notes',
|
|
||||||
'from' => 'From',
|
|
||||||
'piggy_bank' => 'Piggy bank',
|
|
||||||
'to' => 'To',
|
|
||||||
'budget' => 'Budget',
|
|
||||||
'category' => 'Category',
|
|
||||||
'bill' => 'Bill',
|
|
||||||
'withdrawal' => 'Withdrawal',
|
|
||||||
'deposit' => 'Deposit',
|
|
||||||
'transfer' => 'Transfer',
|
|
||||||
'type' => 'Type',
|
|
||||||
'completed' => 'Completed',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'paid_current_period' => 'Paid this period',
|
|
||||||
'email' => 'Email',
|
|
||||||
'registered_at' => 'Registered at',
|
|
||||||
'is_blocked' => 'Is blocked',
|
|
||||||
'is_admin' => 'Is admin',
|
|
||||||
'has_two_factor' => 'Has 2FA',
|
|
||||||
'blocked_code' => 'Block code',
|
|
||||||
'source_account' => 'Source account',
|
|
||||||
'destination_account' => 'Destination account',
|
|
||||||
'accounts_count' => 'Number of accounts',
|
|
||||||
'journals_count' => 'Number of transactions',
|
|
||||||
'attachments_count' => 'Number of attachments',
|
|
||||||
'bills_count' => 'Number of bills',
|
|
||||||
'categories_count' => 'Number of categories',
|
|
||||||
'export_jobs_count' => 'Number of export jobs',
|
|
||||||
'import_jobs_count' => 'Number of import jobs',
|
|
||||||
'budget_count' => 'Number of budgets',
|
|
||||||
'rule_and_groups_count' => 'Number of rules and rule groups',
|
|
||||||
'tags_count' => 'Number of tags',
|
|
||||||
'inward' => 'Inward description',
|
|
||||||
'outward' => 'Outward description',
|
|
||||||
'number_of_transactions' => 'Number of transactions',
|
|
||||||
'total_amount' => 'Total amount',
|
|
||||||
'sum' => 'Sum',
|
|
||||||
'sum_excluding_transfers' => 'Sum (excluding transfers)',
|
|
||||||
'sum_withdrawals' => 'Sum of withdrawals',
|
|
||||||
'sum_deposits' => 'Sum of deposits',
|
|
||||||
'sum_transfers' => 'Sum of transfers',
|
|
||||||
'reconcile' => 'Reconcile',
|
|
||||||
];
|
|
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* pagination.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 [
|
|
||||||
|
|
||||||
'previous' => '« Previous',
|
|
||||||
'next' => 'Next »',
|
|
||||||
|
|
||||||
];
|
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* passwords.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 [
|
|
||||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
|
||||||
'user' => 'We can\'t find a user with that e-mail address.',
|
|
||||||
'token' => 'This password reset token is invalid.',
|
|
||||||
'sent' => 'We have e-mailed your password reset link!',
|
|
||||||
'reset' => 'Your password has been reset!',
|
|
||||||
'blocked' => 'Nice try though.',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* validation.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 [
|
|
||||||
'iban' => 'This is not a valid IBAN.',
|
|
||||||
'unique_account_number_for_user' => 'It looks like this account number is already in use.',
|
|
||||||
'deleted_user' => 'Due to security constraints, you cannot register using this email address.',
|
|
||||||
'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_invalid_mime' => 'File ":name" is of type ":mime" which is not accepted as a new upload.',
|
|
||||||
'file_too_large' => 'File ":name" is too large.',
|
|
||||||
'belongs_to_user' => 'The value of :attribute is unknown',
|
|
||||||
'accepted' => 'The :attribute must be accepted.',
|
|
||||||
'bic' => 'This is not a valid BIC.',
|
|
||||||
'more' => ':attribute must be larger than zero.',
|
|
||||||
'active_url' => 'The :attribute is not a valid URL.',
|
|
||||||
'after' => 'The :attribute must be a date after :date.',
|
|
||||||
'alpha' => 'The :attribute may only contain letters.',
|
|
||||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
|
||||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
|
||||||
'array' => 'The :attribute must be an array.',
|
|
||||||
'unique_for_user' => 'There already is an entry with this :attribute.',
|
|
||||||
'before' => 'The :attribute must be a date before :date.',
|
|
||||||
'unique_object_for_user' => 'This name is already in use',
|
|
||||||
'unique_account_for_user' => 'This account name is already in use',
|
|
||||||
'between.numeric' => 'The :attribute must be between :min and :max.',
|
|
||||||
'between.file' => 'The :attribute must be between :min and :max kilobytes.',
|
|
||||||
'between.string' => 'The :attribute must be between :min and :max characters.',
|
|
||||||
'between.array' => 'The :attribute must have between :min and :max items.',
|
|
||||||
'boolean' => 'The :attribute field must be true or false.',
|
|
||||||
'confirmed' => 'The :attribute confirmation does not match.',
|
|
||||||
'date' => 'The :attribute is not a valid date.',
|
|
||||||
'date_format' => 'The :attribute does not match the format :format.',
|
|
||||||
'different' => 'The :attribute and :other must be different.',
|
|
||||||
'digits' => 'The :attribute must be :digits digits.',
|
|
||||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
|
||||||
'email' => 'The :attribute must be a valid email address.',
|
|
||||||
'filled' => 'The :attribute field is required.',
|
|
||||||
'exists' => 'The selected :attribute is invalid.',
|
|
||||||
'image' => 'The :attribute must be an image.',
|
|
||||||
'in' => 'The selected :attribute is invalid.',
|
|
||||||
'integer' => 'The :attribute must be an integer.',
|
|
||||||
'ip' => 'The :attribute must be a valid IP address.',
|
|
||||||
'json' => 'The :attribute must be a valid JSON string.',
|
|
||||||
'max.numeric' => 'The :attribute may not be greater than :max.',
|
|
||||||
'max.file' => 'The :attribute may not be greater than :max kilobytes.',
|
|
||||||
'max.string' => 'The :attribute may not be greater than :max characters.',
|
|
||||||
'max.array' => 'The :attribute may not have more than :max items.',
|
|
||||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
|
||||||
'min.numeric' => 'The :attribute must be at least :min.',
|
|
||||||
'min.file' => 'The :attribute must be at least :min kilobytes.',
|
|
||||||
'min.string' => 'The :attribute must be at least :min characters.',
|
|
||||||
'min.array' => 'The :attribute must have at least :min items.',
|
|
||||||
'not_in' => 'The selected :attribute is invalid.',
|
|
||||||
'numeric' => 'The :attribute must be a number.',
|
|
||||||
'regex' => 'The :attribute format is invalid.',
|
|
||||||
'required' => 'The :attribute field is required.',
|
|
||||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
|
||||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
|
||||||
'required_with' => 'The :attribute field is required when :values is present.',
|
|
||||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
|
||||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
|
||||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
|
||||||
'same' => 'The :attribute and :other must match.',
|
|
||||||
'size.numeric' => 'The :attribute must be :size.',
|
|
||||||
'size.file' => 'The :attribute must be :size kilobytes.',
|
|
||||||
'size.string' => 'The :attribute must be :size characters.',
|
|
||||||
'size.array' => 'The :attribute must contain :size items.',
|
|
||||||
'unique' => 'The :attribute has already been taken.',
|
|
||||||
'string' => 'The :attribute must be a string.',
|
|
||||||
'url' => 'The :attribute format is invalid.',
|
|
||||||
'timezone' => 'The :attribute must be a valid zone.',
|
|
||||||
'2fa_code' => 'The :attribute field is invalid.',
|
|
||||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
|
||||||
'distinct' => 'The :attribute field has a duplicate value.',
|
|
||||||
'file' => 'The :attribute must be a file.',
|
|
||||||
'in_array' => 'The :attribute field does not exist in :other.',
|
|
||||||
'present' => 'The :attribute field must be present.',
|
|
||||||
'amount_zero' => 'The total amount cannot be zero',
|
|
||||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://goo.gl/NCh2tN',
|
|
||||||
];
|
|
@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* auth.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 [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Authentication Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used during authentication for various
|
|
||||||
| messages that we need to display to the user. You are free to modify
|
|
||||||
| these language lines according to your application's requirements.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'failed' => 'Essas credenciais não correspondem aos nossos registros.',
|
|
||||||
'throttle' => 'Muitas tentativas de login. Por favor, tente novamente em :seconds segundos.',
|
|
||||||
|
|
||||||
];
|
|
@ -1,8 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
return [
|
|
||||||
'bunq_prerequisites_title' => 'Prerequisites for an import from bunq',
|
|
||||||
'bunq_prerequisites_text' => 'In order to import from bunq, you need to obtain an API key. You can do this through the app.',
|
|
||||||
];
|
|
@ -1,46 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* breadcrumbs.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 [
|
|
||||||
'home' => 'Início',
|
|
||||||
'edit_currency' => 'Editar moeda ":name"',
|
|
||||||
'delete_currency' => 'Excluir moeda ":moeda"',
|
|
||||||
'newPiggyBank' => 'Criar um novo cofrinho',
|
|
||||||
'edit_piggyBank' => 'Editar cofrinho ":name"',
|
|
||||||
'preferences' => 'Preferências',
|
|
||||||
'profile' => 'Perfil',
|
|
||||||
'changePassword' => 'Alterar sua senha',
|
|
||||||
'bills' => 'Faturas',
|
|
||||||
'newBill' => 'Nova fatura',
|
|
||||||
'edit_bill' => 'Editar fatura ":name"',
|
|
||||||
'delete_bill' => 'Apagar fatura ":name"',
|
|
||||||
'reports' => 'Relatórios',
|
|
||||||
'search_result' => 'Search results for ":query"',
|
|
||||||
'withdrawal_list' => 'Despesas',
|
|
||||||
'deposit_list' => 'Receitas, renda e depósitos',
|
|
||||||
'transfer_list' => 'Transferências',
|
|
||||||
'transfers_list' => 'Transferências',
|
|
||||||
'reconciliation_list' => 'Reconciliations',
|
|
||||||
'create_withdrawal' => 'Criar uma nova retirada',
|
|
||||||
'create_deposit' => 'Criar um novo depósito',
|
|
||||||
'create_transfer' => 'Criar nova transferência',
|
|
||||||
'edit_journal' => 'Editar transação ":description"',
|
|
||||||
'edit_reconciliation' => 'Edit ":description"',
|
|
||||||
'delete_journal' => 'Apagar transação ":description"',
|
|
||||||
'tags' => 'Etiquetas',
|
|
||||||
'createTag' => 'Criar nova etiqueta',
|
|
||||||
'edit_tag' => 'Editar etiqueta ":tag"',
|
|
||||||
'delete_tag' => 'Apagar etiqueta ":tag"',
|
|
||||||
'delete_journal_link' => 'Delete link between transactions',
|
|
||||||
];
|
|
@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* config.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 [
|
|
||||||
'locale' => 'pt-br, pt_BR, pt_BR.utf8, pt_BR.UTF-8',
|
|
||||||
'month' => '%B %Y',
|
|
||||||
'month_and_day' => '%e de %B de %Y',
|
|
||||||
'date_time' => '%B %e, %Y, @ %T',
|
|
||||||
'specific_day' => '%e %B %Y',
|
|
||||||
'week_in_year' => 'Semana %W, %Y',
|
|
||||||
'quarter_of_year' => '%B %Y',
|
|
||||||
'year' => '%Y',
|
|
||||||
'half_year' => '%B %Y',
|
|
||||||
|
|
||||||
];
|
|
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* csv.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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
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' => 'Nas tabelas a seguir, o valor à esquerda mostra informações encontradas no seu arquivo CSV carregado. É sua tarefa mapear esse valor, se possível, para um valor já presente em seu banco de dados. O Firefly vai se ater a esse mapeamento. Se não há nenhum valor para mapear, ou não quer mapear o valor específico, não selecione nada.',
|
|
||||||
'map_field_value' => 'Field value',
|
|
||||||
'map_field_mapped_to' => 'Mapeado para',
|
|
||||||
'map_do_not_map' => '(não mapear)',
|
|
||||||
'map_submit' => 'Start the import',
|
|
||||||
|
|
||||||
// map things.
|
|
||||||
'column__ignore' => '(ignorar esta coluna)',
|
|
||||||
'column_account-iban' => 'Conta de Ativo (IBAN)',
|
|
||||||
'column_account-id' => 'ID da Conta de Ativo (correspondente Firefly)',
|
|
||||||
'column_account-name' => 'Conta de Ativo (nome)',
|
|
||||||
'column_amount' => 'Quantia',
|
|
||||||
'column_amount_debet' => 'Amount (debet column)',
|
|
||||||
'column_amount_credit' => 'Amount (credit column)',
|
|
||||||
'column_amount-comma-separated' => 'Quantia (vírgula como separador decimal)',
|
|
||||||
'column_bill-id' => 'ID Fatura (correspondente Firefly)',
|
|
||||||
'column_bill-name' => 'Nome da Fatura',
|
|
||||||
'column_budget-id' => 'ID do Orçamento (correspondente Firefly)',
|
|
||||||
'column_budget-name' => 'Nome do Orçamento',
|
|
||||||
'column_category-id' => 'ID da Categoria (correspondente Firefly)',
|
|
||||||
'column_category-name' => 'Nome da Categoria',
|
|
||||||
'column_currency-code' => 'Código da Moeda (ISO 4217)',
|
|
||||||
'column_currency-id' => 'ID da Moeda (correspondente Firefly)',
|
|
||||||
'column_currency-name' => 'Nome da Moeda (correspondente Firefly)',
|
|
||||||
'column_currency-symbol' => 'Símbolo da Moeda (correspondente Firefly)',
|
|
||||||
'column_date-interest' => 'Data de cálculo de juros',
|
|
||||||
'column_date-book' => 'Data da reserva de transação',
|
|
||||||
'column_date-process' => 'Data do processo de transação',
|
|
||||||
'column_date-transaction' => 'Data',
|
|
||||||
'column_description' => 'Descrição',
|
|
||||||
'column_opposing-iban' => 'Conta contrária (IBAN)',
|
|
||||||
'column_opposing-id' => 'ID da Conta Cotrária (correspondente Firefly)',
|
|
||||||
'column_external-id' => 'ID Externo',
|
|
||||||
'column_opposing-name' => 'Conta contrária (nome)',
|
|
||||||
'column_rabo-debet-credit' => 'Indicador de débito/crédito do Rabobank',
|
|
||||||
'column_ing-debet-credit' => 'Indicador de débito/crédito do ING',
|
|
||||||
'column_sepa-ct-id' => 'ID da Transferência de Crédito fim-a-fim SEPA',
|
|
||||||
'column_sepa-ct-op' => 'Transferência de Crédito SEPA conta contrária',
|
|
||||||
'column_sepa-db' => 'SEPA Débito Direto',
|
|
||||||
'column_tags-comma' => 'Tags (separadas por vírgula)',
|
|
||||||
'column_tags-space' => 'Tags (separadas por espaço)',
|
|
||||||
'column_account-number' => 'Conta de ativo (número da conta)',
|
|
||||||
'column_opposing-number' => 'Conta Contrária (número da conta)',
|
|
||||||
];
|
|
@ -1,26 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* demo.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 [
|
|
||||||
'no_demo_text' => 'Desculpe, não há nenhum texto extra de explicação para <abbr title=":route"> esta página</abbr>.',
|
|
||||||
'see_help_icon' => 'No entanto, o <i class="fa fa-question-circle"></i>-ícone no canto superior direito pode lhe dizer mais.',
|
|
||||||
'index' => 'Bem-vindo ao <strong>Firefly III</strong>! Nesta página você pode obter uma rápida visão geral de suas finanças. Para mais informações, confira Contas de Ativos → <a href=":asset">Contas de Ativos</a> e, claro, as páginas de <a href=":budgets">Orçamentos</a> e <a href=":reports">Relatório</a>.Ou então, dê uma olhada ao redor e veja onde você vai parar.',
|
|
||||||
'accounts-index' => 'Contas de ativos são suas contas bancárias pessoais. Contas de despesas são as contas em que você gasta dinheiro, como por exemplo, com lojas, amigos. Contas de receita são as contas em que você recebe dinheiro, como seu emprego, auxílio do governo ou outras formas de receita. Nesta página, você pode editá-los ou removê-los.',
|
|
||||||
'budgets-index' => 'Esta página mostra a você uma visão geral dos seus orçamentos. A barra superior mostra a quantidade disponível a ser orçamentada. Isto pode ser personalizado para qualquer valor clicando o montante à direita. A quantidade que você gastou de fato é mostrada na barra abaixo. Abaixo, estão as despesas para cada orçamento e o que você orçou neles.',
|
|
||||||
'reports-index-start' => 'Firefly III suporta quatro tipos de relatórios. Leia sobre eles, clicando sobre o <i class="fa fa-question-circle"></i>-ícone no canto superior direito.',
|
|
||||||
'reports-index-examples' => 'Certifique-se de verificar estes exemplos: <a href=":one"> um quadro financeiro mensal</a>, <a href=":two"> um quadro financeiro anual</a> e <a href=":three"> uma visão geral orçamentária</a>.',
|
|
||||||
'currencies-index' => 'Firefly III oferece suporte a várias moedas. Embora o padrão seja o Euro, ela pode ser definida para o dólar americano e muitas outras moedas. Como você pode ver uma pequena seleção de moedas foi incluída, mas você pode adicionar suas próprias se desejar. No entanto, alterar a moeda padrão não vai mudar a moeda de transações existentes: Firefly III suporta o uso de várias moedas ao mesmo tempo.',
|
|
||||||
'transactions-index' => 'Estas despesas, depósitos e transferências não são fantasiosas. Elas foram geradas automaticamente.',
|
|
||||||
'piggy-banks-index' => 'Como você pode ver, existem três cofrinhos. Use o sinal de mais e menos botões para influenciar a quantidade de dinheiro em cada cofrinho. Clique no nome do cofrinho para ver a administração de cada cofrinho.',
|
|
||||||
'import-index' => 'Of course, any CSV file can be imported into Firefly III',
|
|
||||||
'import-configure-security' => 'Por questões de segurança, seu upload foi substituído por um arquivo local.',
|
|
||||||
'import-configure-configuration' => 'A configuração que você vê abaixo é a correta para o arquivo local.',
|
|
||||||
];
|
|
File diff suppressed because it is too large
Load Diff
@ -1,198 +0,0 @@
|
|||||||
<?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' => 'Nome do banco',
|
|
||||||
'bank_balance' => 'Saldo',
|
|
||||||
'savings_balance' => 'Salda da Poupança',
|
|
||||||
'credit_card_limit' => 'Limite do Cartão de Crédito',
|
|
||||||
'automatch' => 'Equivale automaticamente',
|
|
||||||
'skip' => 'Pular',
|
|
||||||
'name' => 'Nome',
|
|
||||||
'active' => 'Ativar',
|
|
||||||
'amount_min' => 'Valor Mínimo',
|
|
||||||
'amount_max' => 'Valor Máximo',
|
|
||||||
'match' => 'Corresponde em',
|
|
||||||
'repeat_freq' => 'Repetições',
|
|
||||||
'journal_currency_id' => 'Moeda',
|
|
||||||
'currency_id' => 'Moeda',
|
|
||||||
'attachments' => 'Anexos',
|
|
||||||
'journal_amount' => 'Quantia',
|
|
||||||
'journal_source_account_name' => 'Conta de receita (fonte)',
|
|
||||||
'journal_source_account_id' => 'Conta de ativo (fonte)',
|
|
||||||
'BIC' => 'BIC',
|
|
||||||
'verify_password' => 'Verify password security',
|
|
||||||
'source_account' => 'Conta de origem',
|
|
||||||
'destination_account' => 'Conta de destino',
|
|
||||||
'journal_destination_account_id' => 'Conta de ativo (destino)',
|
|
||||||
'asset_destination_account' => 'Conta de ativo (destino)',
|
|
||||||
'asset_source_account' => 'Conta de ativo (fonte)',
|
|
||||||
'journal_description' => 'Descrição',
|
|
||||||
'note' => 'Notas',
|
|
||||||
'split_journal' => 'Dividir essa transação',
|
|
||||||
'split_journal_explanation' => 'Dividir essa transação em várias partes',
|
|
||||||
'currency' => 'Moeda',
|
|
||||||
'account_id' => 'Conta de ativo',
|
|
||||||
'budget_id' => 'Orçamento',
|
|
||||||
'openingBalance' => 'Saldo inicial',
|
|
||||||
'tagMode' => 'Modo de tag',
|
|
||||||
'tag_position' => 'Tag location',
|
|
||||||
'virtualBalance' => 'Saldo virtual',
|
|
||||||
'targetamount' => 'Valor alvo',
|
|
||||||
'accountRole' => 'Tipo de conta',
|
|
||||||
'openingBalanceDate' => 'Data do Saldo inicial',
|
|
||||||
'ccType' => 'Plano de pagamento do Cartão de Crédito',
|
|
||||||
'ccMonthlyPaymentDate' => 'Data do pagamento mensal do Cartão de Crédito',
|
|
||||||
'piggy_bank_id' => 'Cofrinho',
|
|
||||||
'returnHere' => 'Retornar aqui',
|
|
||||||
'returnHereExplanation' => 'Depois de armazenar, retorne aqui para criar outro.',
|
|
||||||
'returnHereUpdateExplanation' => 'Depois da atualização, retorne aqui',
|
|
||||||
'description' => 'Descrição',
|
|
||||||
'expense_account' => 'Conta de Despesa',
|
|
||||||
'revenue_account' => 'Conta de Receita',
|
|
||||||
'decimal_places' => 'Casas décimais',
|
|
||||||
'exchange_rate_instruction' => 'Moedas estrangeiras',
|
|
||||||
'source_amount' => 'Amount (source)',
|
|
||||||
'destination_amount' => 'Amount (destination)',
|
|
||||||
'native_amount' => 'Native amount',
|
|
||||||
'new_email_address' => 'New email address',
|
|
||||||
'verification' => 'Verification',
|
|
||||||
'api_key' => 'API key',
|
|
||||||
|
|
||||||
'source_account_asset' => 'Conta de origem (conta de ativo)',
|
|
||||||
'destination_account_expense' => 'Conta de destino (conta de despesa)',
|
|
||||||
'destination_account_asset' => 'Conta de destino (conta de ativo)',
|
|
||||||
'source_account_revenue' => 'Conta de origem (conta de receita)',
|
|
||||||
'type' => 'Tipo',
|
|
||||||
'convert_Withdrawal' => 'Converter a retirada',
|
|
||||||
'convert_Deposit' => 'Converter o depósito',
|
|
||||||
'convert_Transfer' => 'Converter a transferência',
|
|
||||||
|
|
||||||
|
|
||||||
'amount' => 'Valor',
|
|
||||||
'date' => 'Data',
|
|
||||||
'interest_date' => 'Data de interesse',
|
|
||||||
'book_date' => 'Data reserva',
|
|
||||||
'process_date' => 'Data de processamento',
|
|
||||||
'category' => 'Categoria',
|
|
||||||
'tags' => 'Etiquetas',
|
|
||||||
'deletePermanently' => 'Apagar permanentemente',
|
|
||||||
'cancel' => 'Cancelar',
|
|
||||||
'targetdate' => 'Data Alvo',
|
|
||||||
'startdate' => 'Start date',
|
|
||||||
'tag' => 'Etiqueta',
|
|
||||||
'under' => 'Debaixo',
|
|
||||||
'symbol' => 'Símbolo',
|
|
||||||
'code' => 'Código',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'accountNumber' => 'Número de conta',
|
|
||||||
'creditCardNumber' => 'Credit card number',
|
|
||||||
'has_headers' => 'Cabeçalhos',
|
|
||||||
'date_format' => 'Formato da Data',
|
|
||||||
'specifix' => 'Banco- ou arquivo específico corrigídos',
|
|
||||||
'attachments[]' => 'Anexos',
|
|
||||||
'store_new_withdrawal' => 'Armazenar nova retirada',
|
|
||||||
'store_new_deposit' => 'Armazenar novo depósito',
|
|
||||||
'store_new_transfer' => 'Armazenar nova transferência',
|
|
||||||
'add_new_withdrawal' => 'Adicionar uma nova retirada',
|
|
||||||
'add_new_deposit' => 'Adicionar um novo depósito',
|
|
||||||
'add_new_transfer' => 'Adicionar uma nova transferência',
|
|
||||||
'title' => 'Título',
|
|
||||||
'notes' => 'Notas',
|
|
||||||
'filename' => 'Nome do arquivo',
|
|
||||||
'mime' => 'Tipo do Arquivo (MIME)',
|
|
||||||
'size' => 'Tamanho',
|
|
||||||
'trigger' => 'Disparo',
|
|
||||||
'stop_processing' => 'Parar processamento',
|
|
||||||
'start_date' => 'Início do intervalo',
|
|
||||||
'end_date' => 'Final do intervalo',
|
|
||||||
'export_start_range' => 'Início do intervalo de exportação',
|
|
||||||
'export_end_range' => 'Fim do intervalo de exportação',
|
|
||||||
'export_format' => 'Formato do arquivo',
|
|
||||||
'include_attachments' => 'Incluir anexos enviados',
|
|
||||||
'include_old_uploads' => 'Incluir dados importados',
|
|
||||||
'accounts' => 'Exportar transações destas contas',
|
|
||||||
'delete_account' => 'Apagar conta ":name"',
|
|
||||||
'delete_bill' => 'Apagar fatura ":name"',
|
|
||||||
'delete_budget' => 'Excluir o orçamento ":name"',
|
|
||||||
'delete_category' => 'Excluir categoria ":name"',
|
|
||||||
'delete_currency' => 'Excluir moeda ":moeda"',
|
|
||||||
'delete_journal' => 'Excluir a transação com a descrição ":description"',
|
|
||||||
'delete_attachment' => 'Apagar anexo ":name"',
|
|
||||||
'delete_rule' => 'Excluir regra ":title"',
|
|
||||||
'delete_rule_group' => 'Exclua o grupo de regras ":title"',
|
|
||||||
'delete_link_type' => 'Delete link type ":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' => 'Tem certeza que deseja excluir o anexo denominado ":name"?',
|
|
||||||
'account_areYouSure' => 'Tem certeza que deseja excluir a conta denominada ":name"?',
|
|
||||||
'bill_areYouSure' => 'Você tem certeza que quer apagar a fatura ":name"?',
|
|
||||||
'rule_areYouSure' => 'Tem certeza que deseja excluir a regra intitulada ":title"?',
|
|
||||||
'ruleGroup_areYouSure' => 'Tem certeza que deseja excluir o grupo de regras intitulado ":title"?',
|
|
||||||
'budget_areYouSure' => 'Tem certeza que deseja excluir o orçamento chamado ":name"?',
|
|
||||||
'category_areYouSure' => 'Tem certeza que deseja excluir a categoria com o nome ":name"?',
|
|
||||||
'currency_areYouSure' => 'Tem certeza que deseja excluir a moeda chamada ":name"?',
|
|
||||||
'piggyBank_areYouSure' => 'Tem certeza que deseja excluir o cofrinho chamado ":name"?',
|
|
||||||
'journal_areYouSure' => 'Tem certeza que deseja excluir a transação descrita ":description"?',
|
|
||||||
'mass_journal_are_you_sure' => 'Tem a certeza que pretende apagar estas transações?',
|
|
||||||
'tag_areYouSure' => 'Você tem certeza que quer apagar a 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' => 'Exclusão de dados do Firely são permanentes e não podem ser desfeitos.',
|
|
||||||
'mass_make_selection' => 'Você ainda pode evitar que itens sejam excluídos, removendo a caixa de seleção.',
|
|
||||||
'delete_all_permanently' => 'Exclua os selecionados permanentemente',
|
|
||||||
'update_all_journals' => 'Atualizar essas transações',
|
|
||||||
'also_delete_transactions' => 'A única transação ligada a essa conta será excluída também.|Todas as :count transações ligadas a esta conta serão excluídas também.',
|
|
||||||
'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' => 'A única regra que ligado a este grupo de regras será excluída também.|Todos as :count regras ligadas a este grupo de regras serão excluídas também.',
|
|
||||||
'also_delete_piggyBanks' => 'O único cofrinho conectado a essa conta será excluído também.|Todos os :count cofrinhos conectados a esta conta serão excluídos também.',
|
|
||||||
'bill_keep_transactions' => 'A única transação a esta conta não será excluída.|Todos as :count transações conectadas a esta fatura não serão excluídos.',
|
|
||||||
'budget_keep_transactions' => 'A única transação conectada a este orçamento não será excluída.|Todos :count transações ligadas a este orçamento não serão excluídos.',
|
|
||||||
'category_keep_transactions' => 'A única transação ligada a esta categoria não será excluída.|Todos :count transações ligadas a esta categoria não serão excluídos.',
|
|
||||||
'tag_keep_transactions' => 'A única transação ligada a essa marca não será excluída.|Todos :count transações ligadas a essa marca não serão excluídos.',
|
|
||||||
|
|
||||||
'email' => 'E-mail',
|
|
||||||
'password' => 'Senha',
|
|
||||||
'password_confirmation' => 'Senha(Confirmar)',
|
|
||||||
'blocked' => 'Está bloqueado?',
|
|
||||||
'blocked_code' => 'Reason for block',
|
|
||||||
|
|
||||||
|
|
||||||
// admin
|
|
||||||
'domain' => 'Domínio',
|
|
||||||
'single_user_mode' => 'Disable user registration',
|
|
||||||
'is_demo_site' => 'É o site de demonstração',
|
|
||||||
|
|
||||||
|
|
||||||
// import
|
|
||||||
'import_file' => 'Importar arquivo',
|
|
||||||
'configuration_file' => 'Arquivo de configuração',
|
|
||||||
'import_file_type' => 'Tipo de arquivo de importação',
|
|
||||||
'csv_comma' => 'Uma vírgula (,)',
|
|
||||||
'csv_semicolon' => 'Um ponto e vírgula (;)',
|
|
||||||
'csv_tab' => 'Um Tab (invisível)',
|
|
||||||
'csv_delimiter' => 'Delimitador de campo CSV',
|
|
||||||
'csv_import_account' => 'Conta de importação padrão',
|
|
||||||
'csv_config' => 'Importar CSV de configuração',
|
|
||||||
|
|
||||||
|
|
||||||
'due_date' => 'Data de vencimento',
|
|
||||||
'payment_date' => 'Data de pagamento',
|
|
||||||
'invoice_date' => 'Data da Fatura',
|
|
||||||
'internal_reference' => 'Referência interna',
|
|
||||||
'inward' => 'Inward description',
|
|
||||||
'outward' => 'Outward description',
|
|
||||||
'rule_group_id' => 'Rule group',
|
|
||||||
];
|
|
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* help.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 [
|
|
||||||
|
|
||||||
// tour!
|
|
||||||
'main-content-title' => 'Bem Vindo ao Firefly III',
|
|
||||||
'main-content-text' => 'Faça um favor a você mesmo e siga este pequeno guia para certificar-se de que sabe o caminho de volta.',
|
|
||||||
'sidebar-toggle-title' => 'Barra lateral para criar coisas',
|
|
||||||
'sidebar-toggle-text' => 'Escondido sob o ícone de adição são todos os botões para criar coisas novas. Contas, transações, tudo!',
|
|
||||||
'account-menu-title' => 'Todas suas contas',
|
|
||||||
'account-menu-text' => 'Aqui você pode encontrar todas as contas que você fez.',
|
|
||||||
'budget-menu-title' => 'Orçamentos',
|
|
||||||
'budget-menu-text' => 'Use esta página para organizar suas finanças e limitar as despesas.',
|
|
||||||
'report-menu-title' => 'Relatórios',
|
|
||||||
'report-menu-text' => 'Retire isso quando você quiser uma visão geral de suas finanças.',
|
|
||||||
'transaction-menu-title' => 'Transações',
|
|
||||||
'transaction-menu-text' => 'Todas as transações que você criou podem ser encontradas aqui.',
|
|
||||||
'option-menu-title' => 'Opções',
|
|
||||||
'option-menu-text' => 'Isto é bastante auto-explicativo.',
|
|
||||||
'main-content-end-title' => 'Fim!',
|
|
||||||
'main-content-end-text' => 'Lembre-se que cada página tem um pequeno ponto de interrogação na parte superior direita. Clique nele para obter ajuda sobre a página que você está.',
|
|
||||||
'index' => 'índice',
|
|
||||||
'home' => 'casa',
|
|
||||||
];
|
|
@ -1,122 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* intro.php
|
|
||||||
* Copyright (c) 2017 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 [
|
|
||||||
// index
|
|
||||||
'index_intro' => 'Welcome to the index page of Firefly III. Please take the time to walk through this intro to get a feeling of how Firefly III works.',
|
|
||||||
'index_accounts-chart' => 'This chart shows the current balance of your asset accounts. You can select the accounts visible here in your preferences.',
|
|
||||||
'index_box_out_holder' => 'This little box and the boxes next to this one will give you a quick overview of your financial situation.',
|
|
||||||
'index_help' => 'If you ever need help with a page or a form, press this button.',
|
|
||||||
'index_outro' => 'Most pages of Firefly III will start with a little tour like this one. Please contact me when you have questions or comments. Enjoy!',
|
|
||||||
'index_sidebar-toggle' => 'To create new transactions, accounts or other things, use the menu under this icon.',
|
|
||||||
|
|
||||||
// create account:
|
|
||||||
'accounts_create_iban' => 'Give your accounts a valid IBAN. This could make a data import very easy in the future.',
|
|
||||||
'accounts_create_asset_opening_balance' => 'Assets accounts may have an "opening balance", indicating the start of this account\'s history in Firefly.',
|
|
||||||
'accounts_create_asset_currency' => 'Firefly III supports multiple currencies. Asset accounts have one main currency, which you must set here.',
|
|
||||||
'accounts_create_asset_virtual' => 'It can sometimes help to give your account a virtual balance: an extra amount always added to or removed from the actual balance.',
|
|
||||||
|
|
||||||
// budgets index
|
|
||||||
'budgets_index_intro' => 'Budgets are used to manage your finances and form one of the core functions of Firefly III.',
|
|
||||||
'budgets_index_set_budget' => 'Set your total budget for every period so Firefly can tell you if you have budgeted all available money.',
|
|
||||||
'budgets_index_see_expenses_bar' => 'Spending money will slowly fill this bar.',
|
|
||||||
'budgets_index_navigate_periods' => 'Navigate through periods to easily set budgets ahead of time.',
|
|
||||||
'budgets_index_new_budget' => 'Create new budgets as you see fit.',
|
|
||||||
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
|
||||||
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
|
||||||
|
|
||||||
// reports (index)
|
|
||||||
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
|
||||||
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
|
||||||
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
|
||||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years.',
|
|
||||||
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
|
||||||
|
|
||||||
// reports (reports)
|
|
||||||
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
|
||||||
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
|
||||||
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
|
||||||
|
|
||||||
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
|
||||||
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
|
||||||
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
|
||||||
|
|
||||||
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
|
||||||
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
|
||||||
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
|
||||||
|
|
||||||
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
|
||||||
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
|
||||||
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
|
||||||
|
|
||||||
// create transaction
|
|
||||||
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
|
||||||
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
|
||||||
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
|
||||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
|
||||||
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
|
||||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
|
||||||
|
|
||||||
// piggy banks index:
|
|
||||||
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
|
||||||
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
|
||||||
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
|
||||||
|
|
||||||
// create piggy
|
|
||||||
'piggy-banks_create_name' => 'What is your goal? A new couch, a camera, money for emergencies?',
|
|
||||||
'piggy-banks_create_date' => 'You can set a target date or a deadline for your piggy bank.',
|
|
||||||
|
|
||||||
// show piggy
|
|
||||||
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
|
||||||
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
|
||||||
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
|
||||||
|
|
||||||
// bill index
|
|
||||||
'bills_index_paid_in_period' => 'This field indicates when the bill was last paid.',
|
|
||||||
'bills_index_expected_in_period' => 'This field indicates for each bill if and when the next bill is expected to hit.',
|
|
||||||
|
|
||||||
// show bill
|
|
||||||
'bills_show_billInfo' => 'This table shows some general information about this bill.',
|
|
||||||
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this bill.',
|
|
||||||
'bills_show_billChart' => 'This chart shows the transactions linked to this bill.',
|
|
||||||
|
|
||||||
// create bill
|
|
||||||
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
|
||||||
'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
|
||||||
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this bill.',
|
|
||||||
'bills_create_repeat_freq_holder' => 'Most bills repeat monthly, but you can set another frequency here.',
|
|
||||||
'bills_create_skip_holder' => 'If a bill repeats every 2 weeks for example, the "skip"-field should be set to "1" to skip every other week.',
|
|
||||||
|
|
||||||
// rules index
|
|
||||||
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
|
||||||
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
|
||||||
'rules_index_new_rule' => 'Create as many rules as you like.',
|
|
||||||
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
|
||||||
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
|
||||||
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
|
||||||
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
|
||||||
|
|
||||||
// create rule:
|
|
||||||
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
|
||||||
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
|
||||||
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
|
||||||
'rules_create_actions' => 'Set as many actions as you like.',
|
|
||||||
|
|
||||||
// preferences
|
|
||||||
'preferences_index_tabs' => 'More options are available behind these tabs.',
|
|
||||||
|
|
||||||
// currencies
|
|
||||||
'currencies_index_intro' => 'Firefly III supports multiple currencies, which you can change on this page.',
|
|
||||||
'currencies_index_default' => 'Firefly III has one default currency. You can always switch of course using these buttons.',
|
|
||||||
|
|
||||||
// create currency
|
|
||||||
'currencies_create_code' => 'This code should be ISO compliant (Google it for your new currency).',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* list.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 [
|
|
||||||
'buttons' => 'Botões',
|
|
||||||
'icon' => 'Ícone',
|
|
||||||
'id' => 'ID',
|
|
||||||
'create_date' => 'Criado em',
|
|
||||||
'update_date' => 'Atualizado em',
|
|
||||||
'updated_at' => 'Updated at',
|
|
||||||
'balance_before' => 'Saldo Antes',
|
|
||||||
'balance_after' => 'Saldo depois',
|
|
||||||
'name' => 'Nome',
|
|
||||||
'role' => 'Papel',
|
|
||||||
'currentBalance' => 'Saldo atual',
|
|
||||||
'active' => 'Está ativo?',
|
|
||||||
'lastActivity' => 'Última atividade',
|
|
||||||
'balanceDiff' => 'Saldo diferente entre :start e :end',
|
|
||||||
'matchesOn' => 'Correspondido em',
|
|
||||||
'account_type' => 'Tipo de conta',
|
|
||||||
'created_at' => 'Criado em',
|
|
||||||
'account' => 'Conta',
|
|
||||||
'matchingAmount' => 'Total',
|
|
||||||
'split_number' => 'Dividir #',
|
|
||||||
'destination' => 'Destino',
|
|
||||||
'source' => 'Fonte',
|
|
||||||
'next_expected_match' => 'Próximo correspondente esperado',
|
|
||||||
'automatch' => 'Auto match?',
|
|
||||||
'repeat_freq' => 'Repetições',
|
|
||||||
'description' => 'Descrição',
|
|
||||||
'amount' => 'Total',
|
|
||||||
'internal_reference' => 'Referência interna',
|
|
||||||
'date' => 'Data',
|
|
||||||
'interest_date' => 'Data de interesse',
|
|
||||||
'book_date' => 'Data reserva',
|
|
||||||
'process_date' => 'Data de processamento',
|
|
||||||
'due_date' => 'Prazo',
|
|
||||||
'payment_date' => 'Data de pagamento',
|
|
||||||
'invoice_date' => 'Data da Fatura',
|
|
||||||
'interal_reference' => 'Referência interna',
|
|
||||||
'notes' => 'Notas',
|
|
||||||
'from' => 'De',
|
|
||||||
'piggy_bank' => 'Cofrinho',
|
|
||||||
'to' => 'Até',
|
|
||||||
'budget' => 'Orçamento',
|
|
||||||
'category' => 'Categoria',
|
|
||||||
'bill' => 'Fatura',
|
|
||||||
'withdrawal' => 'Retirada',
|
|
||||||
'deposit' => 'Depósito',
|
|
||||||
'transfer' => 'Transferência',
|
|
||||||
'type' => 'Tipo',
|
|
||||||
'completed' => 'Completo',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'paid_current_period' => 'Pago este período',
|
|
||||||
'email' => 'Email',
|
|
||||||
'registered_at' => 'Registrado em',
|
|
||||||
'is_blocked' => 'Está bloqueado',
|
|
||||||
'is_admin' => 'É admin',
|
|
||||||
'has_two_factor' => 'Tem 2FA',
|
|
||||||
'blocked_code' => 'Bloco de código',
|
|
||||||
'source_account' => 'Conta de origem',
|
|
||||||
'destination_account' => 'Conta de destino',
|
|
||||||
'accounts_count' => 'Número de Contas',
|
|
||||||
'journals_count' => 'Number of transactions',
|
|
||||||
'attachments_count' => 'Número de anexos',
|
|
||||||
'bills_count' => 'Número de contas',
|
|
||||||
'categories_count' => 'Número de categorias',
|
|
||||||
'export_jobs_count' => 'Número de jobs de exportação',
|
|
||||||
'import_jobs_count' => 'Número de jobs de importação',
|
|
||||||
'budget_count' => 'Número de orçamentos',
|
|
||||||
'rule_and_groups_count' => 'Número de regras e grupos de regras',
|
|
||||||
'tags_count' => 'Número de tags',
|
|
||||||
'inward' => 'Inward description',
|
|
||||||
'outward' => 'Outward description',
|
|
||||||
'number_of_transactions' => 'Number of transactions',
|
|
||||||
'total_amount' => 'Total amount',
|
|
||||||
'sum' => 'Sum',
|
|
||||||
'sum_excluding_transfers' => 'Sum (excluding transfers)',
|
|
||||||
'sum_withdrawals' => 'Sum of withdrawals',
|
|
||||||
'sum_deposits' => 'Sum of deposits',
|
|
||||||
'sum_transfers' => 'Sum of transfers',
|
|
||||||
'reconcile' => 'Reconcile',
|
|
||||||
];
|
|
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* pagination.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 [
|
|
||||||
|
|
||||||
'previous' => '« Anterior',
|
|
||||||
'next' => 'Próximo »',
|
|
||||||
|
|
||||||
];
|
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* passwords.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 [
|
|
||||||
'password' => 'A senha precisa ter no mínimo seis caracteres e tem que ser igual à confirmação de senha.',
|
|
||||||
'user' => 'Não foi possível encontrar o usuário com este e-mail.',
|
|
||||||
'token' => 'Este token de redefinição de senha é inválido.',
|
|
||||||
'sent' => 'Nós te enviamos um email com um link para trocar a senha!',
|
|
||||||
'reset' => 'Sua senha foi redefinida!',
|
|
||||||
'blocked' => 'Boa tentativa.',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* validation.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 [
|
|
||||||
'iban' => 'Este não é um válido IBAN.',
|
|
||||||
'unique_account_number_for_user' => 'Parece que este número de conta já está em uso.',
|
|
||||||
'deleted_user' => 'Devido a restrições de segurança, você não pode registrar usando este endereço de e-mail.',
|
|
||||||
'rule_trigger_value' => 'Este valor é inválido para o disparo selecionado.',
|
|
||||||
'rule_action_value' => 'Este valor é inválido para a ação selecionada.',
|
|
||||||
'file_already_attached' => 'Arquivo ":name" carregado já está anexado para este objeto.',
|
|
||||||
'file_attached' => 'Arquivo carregado com sucesso ":name".',
|
|
||||||
'file_invalid_mime' => 'Arquivo ":name" é do tipo ":mime" que não é aceito como um novo upload.',
|
|
||||||
'file_too_large' => 'Arquivo ":name" é muito grande.',
|
|
||||||
'belongs_to_user' => 'O valor de :attribute é desconhecido',
|
|
||||||
'accepted' => 'O campo :attribute deve ser aceito.',
|
|
||||||
'bic' => 'Este não é um BIC válido.',
|
|
||||||
'more' => ':attribute must be larger than zero.',
|
|
||||||
'active_url' => 'O campo :attribute não contém um URL válido.',
|
|
||||||
'after' => 'O campo :attribute deverá conter uma data posterior a :date.',
|
|
||||||
'alpha' => 'O campo :attribute deverá conter apenas letras.',
|
|
||||||
'alpha_dash' => 'O campo :attribute deverá conter apenas letras, números e traços.',
|
|
||||||
'alpha_num' => 'O campo :attribute deverá conter apenas letras e números .',
|
|
||||||
'array' => 'O campo :attribute precisa ser um conjunto.',
|
|
||||||
'unique_for_user' => 'Já existe uma entrada com este :attribute.',
|
|
||||||
'before' => 'O campo :attribute deverá conter uma data anterior a :date.',
|
|
||||||
'unique_object_for_user' => 'Este nome já está em uso',
|
|
||||||
'unique_account_for_user' => 'Este nome de conta já está em uso',
|
|
||||||
'between.numeric' => 'O campo :attribute deverá ter um valor entre :min - :max.',
|
|
||||||
'between.file' => 'O campo :attribute deverá ter um tamanho entre :min - :max kilobytes.',
|
|
||||||
'between.string' => 'O campo :attribute deverá conter entre :min - :max caracteres.',
|
|
||||||
'between.array' => 'O campo :attribute precisar ter entre :min - :max itens.',
|
|
||||||
'boolean' => 'O campo :attribute deverá ter o valor verdadeiro ou falso.',
|
|
||||||
'confirmed' => 'A confirmação para o campo :attribute não coincide.',
|
|
||||||
'date' => 'O campo :attribute não contém uma data válida.',
|
|
||||||
'date_format' => 'A data indicada para o campo :attribute não respeita o formato :format.',
|
|
||||||
'different' => 'Os campos :attribute e :other deverão conter valores diferentes.',
|
|
||||||
'digits' => 'O campo :attribute deverá conter :digits dígitos.',
|
|
||||||
'digits_between' => 'O campo :attribute deverá conter entre :min a :max dígitos.',
|
|
||||||
'email' => 'O campo :attribute não contém um endereço de email válido.',
|
|
||||||
'filled' => 'O campo :attribute é obrigatório.',
|
|
||||||
'exists' => 'O valor selecionado para o campo :attribute é inválido.',
|
|
||||||
'image' => 'O campo :attribute deverá conter uma imagem.',
|
|
||||||
'in' => 'O campo :attribute não contém um valor válido.',
|
|
||||||
'integer' => 'O campo :attribute deverá conter um número inteiro.',
|
|
||||||
'ip' => 'O campo :attribute deverá conter um IP válido.',
|
|
||||||
'json' => 'O campo :attribute deverá conter uma string JSON válida.',
|
|
||||||
'max.numeric' => 'O campo :attribute não deverá conter um valor superior a :max.',
|
|
||||||
'max.file' => 'O campo :attribute não deverá ter um tamanho superior a :max kilobytes.',
|
|
||||||
'max.string' => 'O campo :attribute não deverá conter mais de :max caracteres.',
|
|
||||||
'max.array' => 'O campo :attribute deve ter no máximo :max itens.',
|
|
||||||
'mimes' => 'O campo :attribute deverá conter um arquivo do tipo: :values.',
|
|
||||||
'min.numeric' => 'O campo :attribute deverá ter um valor superior ou igual a :min.',
|
|
||||||
'min.file' => 'O campo :attribute deverá ter no mínimo :min kilobytes.',
|
|
||||||
'min.string' => 'O campo :attribute deverá conter no mínimo :min caracteres.',
|
|
||||||
'min.array' => 'O campo :attribute deve ter no mínimo :min itens.',
|
|
||||||
'not_in' => 'O campo :attribute contém um valor inválido.',
|
|
||||||
'numeric' => 'O campo :attribute deverá conter um valor numérico.',
|
|
||||||
'regex' => 'O formato do valor para o campo :attribute é inválido.',
|
|
||||||
'required' => 'O campo :attribute é obrigatório.',
|
|
||||||
'required_if' => 'O campo :attribute é obrigatório quando o valor do campo :other é igual a :value.',
|
|
||||||
'required_unless' => 'O campo :attribute é obrigatório a menos que :other esteja presente em :values.',
|
|
||||||
'required_with' => 'O campo :attribute é obrigatório quando :values está presente.',
|
|
||||||
'required_with_all' => 'O campo :attribute é obrigatório quando um dos :values está presente.',
|
|
||||||
'required_without' => 'O campo :attribute é obrigatório quanto :values não está presente.',
|
|
||||||
'required_without_all' => 'O campo :attribute é obrigatório quando nenhum dos :values está presente.',
|
|
||||||
'same' => 'Os campos :attribute e :other deverão conter valores iguais.',
|
|
||||||
'size.numeric' => 'O campo :attribute deverá conter o valor :size.',
|
|
||||||
'size.file' => 'O campo :attribute deverá ter o tamanho de :size kilobytes.',
|
|
||||||
'size.string' => 'O campo :attribute deverá conter :size caracteres.',
|
|
||||||
'size.array' => 'O campo :attribute deve ter :size itens.',
|
|
||||||
'unique' => 'O valor indicado para o campo :attribute já se encontra utilizado.',
|
|
||||||
'string' => 'O campo :attribute deve ser uma string.',
|
|
||||||
'url' => 'O formato do URL indicado para o campo :attribute é inválido.',
|
|
||||||
'timezone' => 'O campo :attribute deverá ter um fuso horário válido.',
|
|
||||||
'2fa_code' => 'O campo :attribute é inválido.',
|
|
||||||
'dimensions' => 'O campo :attribute tem dimensões de imagem inválido.',
|
|
||||||
'distinct' => 'O campo :attribute tem um valor duplicado.',
|
|
||||||
'file' => 'O :attribute deve ser um arquivo.',
|
|
||||||
'in_array' => 'O campo :attribute não existe em :other.',
|
|
||||||
'present' => 'O campo :attribute deve estar presente.',
|
|
||||||
'amount_zero' => 'A quantidade total não pode ser zero',
|
|
||||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://goo.gl/NCh2tN',
|
|
||||||
];
|
|
@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* auth.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 [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Authentication Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used during authentication for various
|
|
||||||
| messages that we need to display to the user. You are free to modify
|
|
||||||
| these language lines according to your application's requirements.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'failed' => 'Неправильный адрес электронной почты или пароль.',
|
|
||||||
'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте снова через :seconds секунд.',
|
|
||||||
|
|
||||||
];
|
|
@ -1,8 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
return [
|
|
||||||
'bunq_prerequisites_title' => 'Реквизиты для импорта из bunq',
|
|
||||||
'bunq_prerequisites_text' => 'Для импорта из bunq вам необходимо получить API ключ. Вы можете сделать это через приложение.',
|
|
||||||
];
|
|
@ -1,46 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* breadcrumbs.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 [
|
|
||||||
'home' => 'Главная',
|
|
||||||
'edit_currency' => 'Редактирование валюты ":name"',
|
|
||||||
'delete_currency' => 'Удаление валюты ":name"',
|
|
||||||
'newPiggyBank' => 'Создание новой копилки',
|
|
||||||
'edit_piggyBank' => 'Редактирование копилки ":name"',
|
|
||||||
'preferences' => 'Настройки',
|
|
||||||
'profile' => 'Профиль',
|
|
||||||
'changePassword' => 'Изменение вашего пароля',
|
|
||||||
'bills' => 'Счета к оплате',
|
|
||||||
'newBill' => 'Новый счёт к оплате',
|
|
||||||
'edit_bill' => 'Редактирование счёта к оплате ":name"',
|
|
||||||
'delete_bill' => 'Удаление счёта к оплате ":name"',
|
|
||||||
'reports' => 'Отчёты',
|
|
||||||
'search_result' => 'Результаты поиска для ":query"',
|
|
||||||
'withdrawal_list' => 'Мои расходы',
|
|
||||||
'deposit_list' => 'Мои доходы',
|
|
||||||
'transfer_list' => 'Переводы',
|
|
||||||
'transfers_list' => 'Переводы',
|
|
||||||
'reconciliation_list' => 'Reconciliations',
|
|
||||||
'create_withdrawal' => 'Создать новый расход',
|
|
||||||
'create_deposit' => 'Создать новый доход',
|
|
||||||
'create_transfer' => 'Создать новый перевод',
|
|
||||||
'edit_journal' => 'Редактирование транзакции ":description"',
|
|
||||||
'edit_reconciliation' => 'Edit ":description"',
|
|
||||||
'delete_journal' => 'Удаление транзакции ":description"',
|
|
||||||
'tags' => 'Метки',
|
|
||||||
'createTag' => 'Создать новую метку',
|
|
||||||
'edit_tag' => 'Редактирование метки ":tag"',
|
|
||||||
'delete_tag' => 'Удаление метки ":tag"',
|
|
||||||
'delete_journal_link' => 'Удалить связь между транзакциями',
|
|
||||||
];
|
|
@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* config.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 [
|
|
||||||
'locale' => 'ru, Russian, ru_RU, ru_RU.utf8, ru_RU.UTF-8',
|
|
||||||
'month' => '%B %Y',
|
|
||||||
'month_and_day' => '%B %e, %Y',
|
|
||||||
'date_time' => '%B %e, %Y, @ %T',
|
|
||||||
'specific_day' => '%e %B %Y',
|
|
||||||
'week_in_year' => 'Неделя %W, %Y',
|
|
||||||
'quarter_of_year' => '%B %Y',
|
|
||||||
'year' => '%Y',
|
|
||||||
'half_year' => '%B %Y',
|
|
||||||
|
|
||||||
];
|
|
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* csv.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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
// initial config
|
|
||||||
'initial_title' => 'Импорт данных (1/3) - Подготовка к импорту CSV',
|
|
||||||
'initial_text' => 'Чтобы импорт данных прошёл успешно, пожалуйста проверьте несколько параметров.',
|
|
||||||
'initial_box' => 'Основные параметры импорта CSV',
|
|
||||||
'initial_box_title' => 'Basic CSV import setup options',
|
|
||||||
'initial_header_help' => 'Установите этот флажок, если первая строка CSV-файла содержит заголовки столбцов.',
|
|
||||||
'initial_date_help' => 'Формат даты и времени в вашем CSV-файле. Придерживайтесь формата, описанного <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">на этой</a> странице. По умолчанию дату будут анализироваться на соответствие такому формату: :dateExample.',
|
|
||||||
'initial_delimiter_help' => 'Выберите разделитель полей, который используется в вашем файле. Если вы не уверены, помните, что запятая - это самый безопасный вариант.',
|
|
||||||
'initial_import_account_help' => 'Если ваш CSV-файл НЕ СОДЕРЖИТ информацию о ваших счётах, укажите счета для всех транзакций, выбрав подходящие из выпадающего списка.',
|
|
||||||
'initial_submit' => 'Перейти к шагу 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)',
|
|
||||||
];
|
|
@ -1,26 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* demo.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 [
|
|
||||||
'no_demo_text' => 'Sorry, there is no extra demo-explanation text for <abbr title=":route">this page</abbr>.',
|
|
||||||
'see_help_icon' => 'However, the <i class="fa fa-question-circle"></i>-icon in the top right corner may tell you more.',
|
|
||||||
'index' => 'Добро пожаловать в <strong>Firefly III</strong>! На этой странице вы видите вашу финансовую ситуацию в общих чертах. Более подробная информация доступна на страницах → <a href=":asset">Активные счета</a> <a href=":budgets">Бюджет</a> и <a href=":reports">Отчёты</a>. Или просто внимательно оглядитесь и изучите всё вокруг.',
|
|
||||||
'accounts-index' => 'Asset accounts are your personal bank accounts. Expense accounts are the accounts you spend money at, such as stores and friends. Revenue accounts are accounts you receive money from, such as your job, the government or other sources of income. On this page you can edit or remove them.',
|
|
||||||
'budgets-index' => 'This page shows you an overview of your budgets. The top bar shows the amount that is available to be budgeted. This can be customized for any period by clicking the amount on the right. The amount you\'ve actually spent is shown in the bar below. Below that are the expenses per budget and what you\'ve budgeted for them.',
|
|
||||||
'reports-index-start' => 'Firefly III supports four types of reports. Read about them by clicking on the <i class="fa fa-question-circle"></i>-icon in the top right corner.',
|
|
||||||
'reports-index-examples' => 'Be sure to check out these examples: <a href=":one">a monthly financial overview</a>, <a href=":two">a yearly financial overview</a> and <a href=":three">a budget overview</a>.',
|
|
||||||
'currencies-index' => 'Firefly III supports multiple currencies. Although it defaults to the Euro it can be set to the US Dollar and many other currencies. As you can see a small selection of currencies has been included but you can add your own if you wish to. Changing the default currency will not change the currency of existing transactions however: Firefly III supports the use of multiple currencies at the same time.',
|
|
||||||
'transactions-index' => 'These expenses, deposits and transfers are not particularly imaginative. They have been generated automatically.',
|
|
||||||
'piggy-banks-index' => 'As you can see, there are three piggy banks. Use the plus and minus buttons to influence the amount of money in each piggy bank. Click the name of the piggy bank to see the administration for each piggy bank.',
|
|
||||||
'import-index' => 'Of course, any CSV file can be imported into Firefly III',
|
|
||||||
'import-configure-security' => 'По соображениям безопасности, загружаемый вами файл был заменен локальным.',
|
|
||||||
'import-configure-configuration' => 'The configuration you see below is correct for the local file.',
|
|
||||||
];
|
|
File diff suppressed because it is too large
Load Diff
@ -1,198 +0,0 @@
|
|||||||
<?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' => 'Bank name',
|
|
||||||
'bank_balance' => 'Balance',
|
|
||||||
'savings_balance' => 'Savings balance',
|
|
||||||
'credit_card_limit' => 'Credit card limit',
|
|
||||||
'automatch' => 'Match automatically',
|
|
||||||
'skip' => 'Skip',
|
|
||||||
'name' => 'Name',
|
|
||||||
'active' => 'Active',
|
|
||||||
'amount_min' => 'Minimum amount',
|
|
||||||
'amount_max' => 'Maximum amount',
|
|
||||||
'match' => 'Matches on',
|
|
||||||
'repeat_freq' => 'Repeats',
|
|
||||||
'journal_currency_id' => 'Currency',
|
|
||||||
'currency_id' => 'Currency',
|
|
||||||
'attachments' => 'Attachments',
|
|
||||||
'journal_amount' => 'Amount',
|
|
||||||
'journal_source_account_name' => 'Revenue account (source)',
|
|
||||||
'journal_source_account_id' => 'Asset account (source)',
|
|
||||||
'BIC' => 'BIC',
|
|
||||||
'verify_password' => 'Verify password security',
|
|
||||||
'source_account' => 'Source account',
|
|
||||||
'destination_account' => 'Destination account',
|
|
||||||
'journal_destination_account_id' => 'Asset account (destination)',
|
|
||||||
'asset_destination_account' => 'Asset account (destination)',
|
|
||||||
'asset_source_account' => 'Asset account (source)',
|
|
||||||
'journal_description' => 'Description',
|
|
||||||
'note' => 'Notes',
|
|
||||||
'split_journal' => 'Split this transaction',
|
|
||||||
'split_journal_explanation' => 'Split this transaction in multiple parts',
|
|
||||||
'currency' => 'Currency',
|
|
||||||
'account_id' => 'Asset account',
|
|
||||||
'budget_id' => 'Budget',
|
|
||||||
'openingBalance' => 'Opening balance',
|
|
||||||
'tagMode' => 'Tag mode',
|
|
||||||
'tag_position' => 'Tag location',
|
|
||||||
'virtualBalance' => 'Virtual balance',
|
|
||||||
'targetamount' => 'Target amount',
|
|
||||||
'accountRole' => 'Account role',
|
|
||||||
'openingBalanceDate' => 'Opening balance date',
|
|
||||||
'ccType' => 'Credit card payment plan',
|
|
||||||
'ccMonthlyPaymentDate' => 'Credit card monthly payment date',
|
|
||||||
'piggy_bank_id' => 'Piggy bank',
|
|
||||||
'returnHere' => 'Return here',
|
|
||||||
'returnHereExplanation' => 'After storing, return here to create another one.',
|
|
||||||
'returnHereUpdateExplanation' => 'After updating, return here.',
|
|
||||||
'description' => 'Description',
|
|
||||||
'expense_account' => 'Expense account',
|
|
||||||
'revenue_account' => 'Доходный счет',
|
|
||||||
'decimal_places' => 'Количество цифр после точки',
|
|
||||||
'exchange_rate_instruction' => 'Иностранные валюты',
|
|
||||||
'source_amount' => 'Сумма (источник)',
|
|
||||||
'destination_amount' => 'Сумма (назначение)',
|
|
||||||
'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' => 'Тип',
|
|
||||||
'convert_Withdrawal' => 'Convert withdrawal',
|
|
||||||
'convert_Deposit' => 'Convert deposit',
|
|
||||||
'convert_Transfer' => 'Convert transfer',
|
|
||||||
|
|
||||||
|
|
||||||
'amount' => 'Сумма',
|
|
||||||
'date' => 'Дата',
|
|
||||||
'interest_date' => 'Interest date',
|
|
||||||
'book_date' => 'Book date',
|
|
||||||
'process_date' => 'Processing date',
|
|
||||||
'category' => 'Category',
|
|
||||||
'tags' => 'Tags',
|
|
||||||
'deletePermanently' => 'Delete permanently',
|
|
||||||
'cancel' => 'Отмена',
|
|
||||||
'targetdate' => 'Намеченная дата',
|
|
||||||
'startdate' => 'Start date',
|
|
||||||
'tag' => 'Тег',
|
|
||||||
'under' => 'Under',
|
|
||||||
'symbol' => 'Символ',
|
|
||||||
'code' => 'Код',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'accountNumber' => 'Номер счета',
|
|
||||||
'creditCardNumber' => 'Credit card number',
|
|
||||||
'has_headers' => 'Заголовки',
|
|
||||||
'date_format' => 'Формат даты',
|
|
||||||
'specifix' => 'Bank- or file specific fixes',
|
|
||||||
'attachments[]' => 'Attachments',
|
|
||||||
'store_new_withdrawal' => 'Store new withdrawal',
|
|
||||||
'store_new_deposit' => 'Store new deposit',
|
|
||||||
'store_new_transfer' => 'Store new transfer',
|
|
||||||
'add_new_withdrawal' => 'Add a new withdrawal',
|
|
||||||
'add_new_deposit' => 'Add a new deposit',
|
|
||||||
'add_new_transfer' => 'Add a new transfer',
|
|
||||||
'title' => 'Заголовок',
|
|
||||||
'notes' => 'Заметки',
|
|
||||||
'filename' => 'Имя файла',
|
|
||||||
'mime' => 'Тип Mime',
|
|
||||||
'size' => 'Размер',
|
|
||||||
'trigger' => 'Триггер',
|
|
||||||
'stop_processing' => 'Остановить обработку',
|
|
||||||
'start_date' => 'Start of range',
|
|
||||||
'end_date' => 'End of range',
|
|
||||||
'export_start_range' => 'Start of export range',
|
|
||||||
'export_end_range' => 'End of export range',
|
|
||||||
'export_format' => 'File format',
|
|
||||||
'include_attachments' => 'Include uploaded attachments',
|
|
||||||
'include_old_uploads' => 'Include imported data',
|
|
||||||
'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' => 'Delete currency ":name"',
|
|
||||||
'delete_journal' => 'Delete transaction with description ":description"',
|
|
||||||
'delete_attachment' => 'Delete attachment ":name"',
|
|
||||||
'delete_rule' => 'Delete rule ":title"',
|
|
||||||
'delete_rule_group' => 'Delete rule group ":title"',
|
|
||||||
'delete_link_type' => 'Delete link type ":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' => 'Email address',
|
|
||||||
'password' => 'Password',
|
|
||||||
'password_confirmation' => 'Password (again)',
|
|
||||||
'blocked' => 'Is blocked?',
|
|
||||||
'blocked_code' => 'Reason for block',
|
|
||||||
|
|
||||||
|
|
||||||
// admin
|
|
||||||
'domain' => 'Domain',
|
|
||||||
'single_user_mode' => 'Disable user registration',
|
|
||||||
'is_demo_site' => 'Is demo site',
|
|
||||||
|
|
||||||
|
|
||||||
// import
|
|
||||||
'import_file' => 'Файл импорта',
|
|
||||||
'configuration_file' => 'Файл конфигурации',
|
|
||||||
'import_file_type' => 'Тип файла для импорта',
|
|
||||||
'csv_comma' => 'Запятая (,)',
|
|
||||||
'csv_semicolon' => 'Точка с запятой (;)',
|
|
||||||
'csv_tab' => 'Табулятор (невидимый)',
|
|
||||||
'csv_delimiter' => 'Разделитель полей CSV',
|
|
||||||
'csv_import_account' => 'Профиль для импорта по умолчанию',
|
|
||||||
'csv_config' => 'Параметры импорта CSV',
|
|
||||||
|
|
||||||
|
|
||||||
'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',
|
|
||||||
];
|
|
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* help.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 [
|
|
||||||
|
|
||||||
// tour!
|
|
||||||
'main-content-title' => 'Добро пожаловать в Firefly III',
|
|
||||||
'main-content-text' => 'Пожалуйста, ознакомьтесь с этим кратким руководством, чтобы убедиться, что вы знаете, куда идти дальше.',
|
|
||||||
'sidebar-toggle-title' => 'Основные операции доступны в боковой панели',
|
|
||||||
'sidebar-toggle-text' => 'Под значком со знаком "+" скрываются кнопки для создания новых счётов, расходов, переводов и других операций!',
|
|
||||||
'account-menu-title' => 'Все ваши счета',
|
|
||||||
'account-menu-text' => 'Здесь вы найдёте все созданные вами счета.',
|
|
||||||
'budget-menu-title' => 'Бюджет',
|
|
||||||
'budget-menu-text' => 'Используйте эту страницу, чтобы упорядочить свои финансы и ограничить расходы.',
|
|
||||||
'report-menu-title' => 'Отчёты',
|
|
||||||
'report-menu-text' => 'Взгляните сюда, чтобы увидеть свои финансы с разных сторон.',
|
|
||||||
'transaction-menu-title' => 'Транзакции',
|
|
||||||
'transaction-menu-text' => 'Все ваши финансовые операции (транзакции) можно увидеть здесь.',
|
|
||||||
'option-menu-title' => 'Настройки',
|
|
||||||
'option-menu-text' => 'Все остальное не требует объяснений.',
|
|
||||||
'main-content-end-title' => 'Конец!',
|
|
||||||
'main-content-end-text' => 'Помните, что в правом верхнем углу любой страницы есть небольшой знак вопроса. Нажмите на него, чтобы получить справку о той странице, на которой вы находитесь.',
|
|
||||||
'index' => 'оглавление',
|
|
||||||
'home' => 'главная',
|
|
||||||
];
|
|
@ -1,122 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* intro.php
|
|
||||||
* Copyright (c) 2017 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 [
|
|
||||||
// index
|
|
||||||
'index_intro' => 'Welcome to the index page of Firefly III. Please take the time to walk through this intro to get a feeling of how Firefly III works.',
|
|
||||||
'index_accounts-chart' => 'This chart shows the current balance of your asset accounts. You can select the accounts visible here in your preferences.',
|
|
||||||
'index_box_out_holder' => 'This little box and the boxes next to this one will give you a quick overview of your financial situation.',
|
|
||||||
'index_help' => 'If you ever need help with a page or a form, press this button.',
|
|
||||||
'index_outro' => 'Most pages of Firefly III will start with a little tour like this one. Please contact me when you have questions or comments. Enjoy!',
|
|
||||||
'index_sidebar-toggle' => 'To create new transactions, accounts or other things, use the menu under this icon.',
|
|
||||||
|
|
||||||
// create account:
|
|
||||||
'accounts_create_iban' => 'Give your accounts a valid IBAN. This could make a data import very easy in the future.',
|
|
||||||
'accounts_create_asset_opening_balance' => 'Assets accounts may have an "opening balance", indicating the start of this account\'s history in Firefly.',
|
|
||||||
'accounts_create_asset_currency' => 'Firefly III supports multiple currencies. Asset accounts have one main currency, which you must set here.',
|
|
||||||
'accounts_create_asset_virtual' => 'It can sometimes help to give your account a virtual balance: an extra amount always added to or removed from the actual balance.',
|
|
||||||
|
|
||||||
// budgets index
|
|
||||||
'budgets_index_intro' => 'Budgets are used to manage your finances and form one of the core functions of Firefly III.',
|
|
||||||
'budgets_index_set_budget' => 'Set your total budget for every period so Firefly can tell you if you have budgeted all available money.',
|
|
||||||
'budgets_index_see_expenses_bar' => 'Spending money will slowly fill this bar.',
|
|
||||||
'budgets_index_navigate_periods' => 'Navigate through periods to easily set budgets ahead of time.',
|
|
||||||
'budgets_index_new_budget' => 'Create new budgets as you see fit.',
|
|
||||||
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
|
||||||
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
|
||||||
|
|
||||||
// reports (index)
|
|
||||||
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
|
||||||
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
|
||||||
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
|
||||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years.',
|
|
||||||
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
|
||||||
|
|
||||||
// reports (reports)
|
|
||||||
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
|
||||||
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
|
||||||
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
|
||||||
|
|
||||||
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
|
||||||
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
|
||||||
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
|
||||||
|
|
||||||
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
|
||||||
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
|
||||||
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
|
||||||
|
|
||||||
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
|
||||||
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
|
||||||
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
|
||||||
|
|
||||||
// create transaction
|
|
||||||
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
|
||||||
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
|
||||||
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
|
||||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
|
||||||
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
|
||||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
|
||||||
|
|
||||||
// piggy banks index:
|
|
||||||
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
|
||||||
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
|
||||||
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
|
||||||
|
|
||||||
// create piggy
|
|
||||||
'piggy-banks_create_name' => 'What is your goal? A new couch, a camera, money for emergencies?',
|
|
||||||
'piggy-banks_create_date' => 'You can set a target date or a deadline for your piggy bank.',
|
|
||||||
|
|
||||||
// show piggy
|
|
||||||
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
|
||||||
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
|
||||||
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
|
||||||
|
|
||||||
// bill index
|
|
||||||
'bills_index_paid_in_period' => 'This field indicates when the bill was last paid.',
|
|
||||||
'bills_index_expected_in_period' => 'This field indicates for each bill if and when the next bill is expected to hit.',
|
|
||||||
|
|
||||||
// show bill
|
|
||||||
'bills_show_billInfo' => 'This table shows some general information about this bill.',
|
|
||||||
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this bill.',
|
|
||||||
'bills_show_billChart' => 'This chart shows the transactions linked to this bill.',
|
|
||||||
|
|
||||||
// create bill
|
|
||||||
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
|
||||||
'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
|
||||||
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this bill.',
|
|
||||||
'bills_create_repeat_freq_holder' => 'Most bills repeat monthly, but you can set another frequency here.',
|
|
||||||
'bills_create_skip_holder' => 'If a bill repeats every 2 weeks for example, the "skip"-field should be set to "1" to skip every other week.',
|
|
||||||
|
|
||||||
// rules index
|
|
||||||
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
|
||||||
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
|
||||||
'rules_index_new_rule' => 'Create as many rules as you like.',
|
|
||||||
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
|
||||||
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
|
||||||
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
|
||||||
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
|
||||||
|
|
||||||
// create rule:
|
|
||||||
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
|
||||||
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
|
||||||
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
|
||||||
'rules_create_actions' => 'Set as many actions as you like.',
|
|
||||||
|
|
||||||
// preferences
|
|
||||||
'preferences_index_tabs' => 'More options are available behind these tabs.',
|
|
||||||
|
|
||||||
// currencies
|
|
||||||
'currencies_index_intro' => 'Firefly III supports multiple currencies, which you can change on this page.',
|
|
||||||
'currencies_index_default' => 'Firefly III has one default currency. You can always switch of course using these buttons.',
|
|
||||||
|
|
||||||
// create currency
|
|
||||||
'currencies_create_code' => 'This code should be ISO compliant (Google it for your new currency).',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* list.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 [
|
|
||||||
'buttons' => 'Кнопки',
|
|
||||||
'icon' => 'Значок',
|
|
||||||
'id' => 'ID',
|
|
||||||
'create_date' => 'Создан',
|
|
||||||
'update_date' => 'Обновлён',
|
|
||||||
'updated_at' => 'Updated at',
|
|
||||||
'balance_before' => 'Баланс до',
|
|
||||||
'balance_after' => 'Баланс после',
|
|
||||||
'name' => 'Имя',
|
|
||||||
'role' => 'Роль',
|
|
||||||
'currentBalance' => 'Текущий баланс',
|
|
||||||
'active' => 'Активен?',
|
|
||||||
'lastActivity' => 'Последняя активность',
|
|
||||||
'balanceDiff' => 'Разница баланса между :start и :end',
|
|
||||||
'matchesOn' => 'Matched on',
|
|
||||||
'account_type' => 'Тип профиля',
|
|
||||||
'created_at' => 'Created at',
|
|
||||||
'account' => 'Account',
|
|
||||||
'matchingAmount' => 'Amount',
|
|
||||||
'split_number' => 'Split #',
|
|
||||||
'destination' => 'Destination',
|
|
||||||
'source' => 'Source',
|
|
||||||
'next_expected_match' => 'Next expected match',
|
|
||||||
'automatch' => 'Auto match?',
|
|
||||||
'repeat_freq' => 'Repeats',
|
|
||||||
'description' => 'Описание',
|
|
||||||
'amount' => 'Сумма',
|
|
||||||
'internal_reference' => 'Internal reference',
|
|
||||||
'date' => 'Дата',
|
|
||||||
'interest_date' => 'Interest date',
|
|
||||||
'book_date' => 'Book date',
|
|
||||||
'process_date' => 'Processing date',
|
|
||||||
'due_date' => 'Due date',
|
|
||||||
'payment_date' => 'Payment date',
|
|
||||||
'invoice_date' => 'Invoice date',
|
|
||||||
'interal_reference' => 'Internal reference',
|
|
||||||
'notes' => 'Заметки',
|
|
||||||
'from' => 'Откуда',
|
|
||||||
'piggy_bank' => 'Копилка',
|
|
||||||
'to' => 'Куда',
|
|
||||||
'budget' => 'Бюджет',
|
|
||||||
'category' => 'Категория',
|
|
||||||
'bill' => 'Счет к оплате',
|
|
||||||
'withdrawal' => 'Расход',
|
|
||||||
'deposit' => 'Доход',
|
|
||||||
'transfer' => 'Перевод',
|
|
||||||
'type' => 'Type',
|
|
||||||
'completed' => 'Completed',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'paid_current_period' => 'Paid this period',
|
|
||||||
'email' => 'E-mail',
|
|
||||||
'registered_at' => 'Дата регистрации',
|
|
||||||
'is_blocked' => 'Заблокирован?',
|
|
||||||
'is_admin' => 'Администратор?',
|
|
||||||
'has_two_factor' => 'Защита (2FA)?',
|
|
||||||
'blocked_code' => 'Block code',
|
|
||||||
'source_account' => 'Source account',
|
|
||||||
'destination_account' => 'Destination account',
|
|
||||||
'accounts_count' => 'Всего счетов',
|
|
||||||
'journals_count' => 'Всего транзакций',
|
|
||||||
'attachments_count' => 'Всего вложений',
|
|
||||||
'bills_count' => 'Всего счетов к оплате',
|
|
||||||
'categories_count' => 'Всего категорий',
|
|
||||||
'export_jobs_count' => 'Задачи по экспорту',
|
|
||||||
'import_jobs_count' => 'Задачи по импорту',
|
|
||||||
'budget_count' => 'Всего категорий бюджета',
|
|
||||||
'rule_and_groups_count' => 'Всего правил и групп правил',
|
|
||||||
'tags_count' => 'Всего меток',
|
|
||||||
'inward' => 'Inward description',
|
|
||||||
'outward' => 'Outward description',
|
|
||||||
'number_of_transactions' => 'Number of transactions',
|
|
||||||
'total_amount' => 'Total amount',
|
|
||||||
'sum' => 'Sum',
|
|
||||||
'sum_excluding_transfers' => 'Sum (excluding transfers)',
|
|
||||||
'sum_withdrawals' => 'Sum of withdrawals',
|
|
||||||
'sum_deposits' => 'Sum of deposits',
|
|
||||||
'sum_transfers' => 'Sum of transfers',
|
|
||||||
'reconcile' => 'Reconcile',
|
|
||||||
];
|
|
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* pagination.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 [
|
|
||||||
|
|
||||||
'previous' => '« Предыдущие',
|
|
||||||
'next' => 'Следующие »',
|
|
||||||
|
|
||||||
];
|
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* passwords.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 [
|
|
||||||
'password' => 'Пароль должен содержать не менее 6 символов. Пароль и его подтверждение должны совпадать.',
|
|
||||||
'user' => 'Мы не можем найти пользователя с таким e-mail.',
|
|
||||||
'token' => 'Это неправильный ключ для сброса пароля.',
|
|
||||||
'sent' => 'Мы отправили ссылку для сброса пароля на ваш e-mail!',
|
|
||||||
'reset' => 'Ваш пароль был успешно сброшен!',
|
|
||||||
'blocked' => 'Это была хорошая попытка.',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* validation.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 [
|
|
||||||
'iban' => 'Это некорректный IBAN.',
|
|
||||||
'unique_account_number_for_user' => 'Этот номер счёта уже используется.',
|
|
||||||
'deleted_user' => 'По соображениям безопасности, вы не можете зарегистрироваться, используя этот адрес электронной почты.',
|
|
||||||
'rule_trigger_value' => 'Это значение является недопустимым для выбранного триггера.',
|
|
||||||
'rule_action_value' => 'Это значение является недопустимым для выбранного действия.',
|
|
||||||
'file_already_attached' => 'Загруженный файл ":name" уже прикреплён к этому объекту.',
|
|
||||||
'file_attached' => 'Файл ":name". успешно загружен.',
|
|
||||||
'file_invalid_mime' => 'Файл ":name" имеет тип ":mime". Загрузка файлов такого типа невозможна.',
|
|
||||||
'file_too_large' => 'Файл ":name" слишком большой.',
|
|
||||||
'belongs_to_user' => 'Значение :attribute неизвестно',
|
|
||||||
'accepted' => 'Необходимо принять :attribute.',
|
|
||||||
'bic' => 'Это некорректный BIC.',
|
|
||||||
'more' => ':attribute должен быть больше нуля.',
|
|
||||||
'active_url' => ':attribute не является допустимым URL-адресом.',
|
|
||||||
'after' => ':attribute должна быть позже :date.',
|
|
||||||
'alpha' => ':attribute может содержать только буквы.',
|
|
||||||
'alpha_dash' => ':attribute может содержать только буквы, числа и дефис.',
|
|
||||||
'alpha_num' => ':attribute может содержать только буквы и числа.',
|
|
||||||
'array' => ':attribute должен быть массивом.',
|
|
||||||
'unique_for_user' => 'Уже существует запись с этим :attribute.',
|
|
||||||
'before' => ':attribute должна быть раньше :date.',
|
|
||||||
'unique_object_for_user' => 'Это имя уже используется',
|
|
||||||
'unique_account_for_user' => 'Имя аккаунта уже используется',
|
|
||||||
'between.numeric' => ':attribute должен быть больше :min и меньше :max.',
|
|
||||||
'between.file' => ':attribute должен быть размером :min - :max килобайт.',
|
|
||||||
'between.string' => ':attribute должен содержать :min - :max символов.',
|
|
||||||
'between.array' => ':attribute должен содержать :min - :max элементов.',
|
|
||||||
'boolean' => 'Поле :attribute должно быть истинным или ложным.',
|
|
||||||
'confirmed' => ':attribute не совпадает с подтверждением.',
|
|
||||||
'date' => ':attribute не является верной датой.',
|
|
||||||
'date_format' => ':attribute не совпадает с форматом :format.',
|
|
||||||
'different' => ':attribute и :other не должны совпадать.',
|
|
||||||
'digits' => ':attribute должно содержать :digits цифр.',
|
|
||||||
'digits_between' => ':attribute должен содержать :min - :max цифр.',
|
|
||||||
'email' => ':attribute не является верным email адресом.',
|
|
||||||
'filled' => 'Поле :attribute должно быть заполнено.',
|
|
||||||
'exists' => 'Выбран неверный :attribute.',
|
|
||||||
'image' => ':attribute должен быть изображением.',
|
|
||||||
'in' => 'Выбранный :attribute не верный.',
|
|
||||||
'integer' => ':attribute должно быть целым числом.',
|
|
||||||
'ip' => ':attribute должен быть верным IP-адресом.',
|
|
||||||
'json' => ':attribute должно быть верной JSON строкой.',
|
|
||||||
'max.numeric' => 'The :attribute may not be greater than :max.',
|
|
||||||
'max.file' => 'The :attribute may not be greater than :max kilobytes.',
|
|
||||||
'max.string' => 'The :attribute may not be greater than :max characters.',
|
|
||||||
'max.array' => 'The :attribute may not have more than :max items.',
|
|
||||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
|
||||||
'min.numeric' => ':attribute должен быть минимум :min.',
|
|
||||||
'min.file' => ':attribute должен быть минимум :min килобайт.',
|
|
||||||
'min.string' => 'The :attribute must be at least :min characters.',
|
|
||||||
'min.array' => 'The :attribute must have at least :min items.',
|
|
||||||
'not_in' => 'Выбранный :attribute не верный.',
|
|
||||||
'numeric' => ':attribute должен быть числом.',
|
|
||||||
'regex' => 'The :attribute format is invalid.',
|
|
||||||
'required' => 'The :attribute field is required.',
|
|
||||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
|
||||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
|
||||||
'required_with' => 'The :attribute field is required when :values is present.',
|
|
||||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
|
||||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
|
||||||
'required_without_all' => ':attribute поле обязательно для заполнения, так как ни одно из :values не существует.',
|
|
||||||
'same' => ':attribute и :other должны совпадать.',
|
|
||||||
'size.numeric' => ':attribute должен быть размером :size.',
|
|
||||||
'size.file' => ':attribute должен быть размером :size килобайт.',
|
|
||||||
'size.string' => ':attribute должен состоять из :size символов.',
|
|
||||||
'size.array' => ':attribute должен содержать :size элементов.',
|
|
||||||
'unique' => ':attribute уже занят.',
|
|
||||||
'string' => 'Значение :attribute должно быть строкой.',
|
|
||||||
'url' => 'Неверный формат ввода :attribute.',
|
|
||||||
'timezone' => ':attribute должен быть в допустимом диапазоне.',
|
|
||||||
'2fa_code' => ':attribute введен неверно.',
|
|
||||||
'dimensions' => 'Недопустимые размеры изображения :attribute.',
|
|
||||||
'distinct' => 'Поле :attribute содержит повторяющееся значение.',
|
|
||||||
'file' => ':attribute должен быть файлом.',
|
|
||||||
'in_array' => 'Поле :attribute не существует в :other.',
|
|
||||||
'present' => 'Поле :attribute должно быть заполнено.',
|
|
||||||
'amount_zero' => 'Общее количество не может быть равно нулю',
|
|
||||||
'secure_password' => 'Это не безопасный пароль. Попробуйте еще раз. Для получения справки посетите https://goo.gl/NCh2tN',
|
|
||||||
];
|
|
@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* auth.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 [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Authentication Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used during authentication for various
|
|
||||||
| messages that we need to display to the user. You are free to modify
|
|
||||||
| these language lines according to your application's requirements.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'failed' => 'Podatki se ne ujemajo s podatki v naši bazi.',
|
|
||||||
'throttle' => 'Prevečkrat ste se poskusili prijaviti. Poskusite ponovno čez :seconds sekunde.',
|
|
||||||
|
|
||||||
];
|
|
@ -1,8 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
return [
|
|
||||||
'bunq_prerequisites_title' => 'Predpogoji za uvoz iz bunq',
|
|
||||||
'bunq_prerequisites_text' => 'Če želite uvoziti iz bunq-a, morate pridobiti ključ za API. To lahko storite s pomočjo aplikacije.',
|
|
||||||
];
|
|
@ -1,46 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* breadcrumbs.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 [
|
|
||||||
'home' => 'Prva stran',
|
|
||||||
'edit_currency' => 'uredi valuto ":name"',
|
|
||||||
'delete_currency' => 'izbriši valuto ":name"',
|
|
||||||
'newPiggyBank' => 'ustvari novega pujska',
|
|
||||||
'edit_piggyBank' => 'uredi pujska za ":name"',
|
|
||||||
'preferences' => 'nastavitve',
|
|
||||||
'profile' => 'profil',
|
|
||||||
'changePassword' => 'spremeni geslo',
|
|
||||||
'bills' => 'Trajniki',
|
|
||||||
'newBill' => 'nov trajnik',
|
|
||||||
'edit_bill' => 'uredi trajnik ":name"',
|
|
||||||
'delete_bill' => 'izbriši trajnik ":name"',
|
|
||||||
'reports' => 'Poročila',
|
|
||||||
'search_result' => 'rezultati iskanja za ":query"',
|
|
||||||
'withdrawal_list' => 'stroški',
|
|
||||||
'deposit_list' => 'prihodki',
|
|
||||||
'transfer_list' => 'prenosi',
|
|
||||||
'transfers_list' => 'prenosi',
|
|
||||||
'reconciliation_list' => 'Poravnave',
|
|
||||||
'create_withdrawal' => 'ustvari nov odhodek',
|
|
||||||
'create_deposit' => 'ustvari nov prihodek',
|
|
||||||
'create_transfer' => 'ustvari nov prenos',
|
|
||||||
'edit_journal' => 'uredi transakcijo ":description"',
|
|
||||||
'edit_reconciliation' => 'Uredi ":description"',
|
|
||||||
'delete_journal' => 'izbriši transakcijo ":description"',
|
|
||||||
'tags' => 'značke',
|
|
||||||
'createTag' => 'ustvari novo značko',
|
|
||||||
'edit_tag' => 'uredi značko ":tag"',
|
|
||||||
'delete_tag' => 'izbriši značko ":tag"',
|
|
||||||
'delete_journal_link' => 'Izbriši povezavo med transakcijami',
|
|
||||||
];
|
|
@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* config.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 [
|
|
||||||
'locale' => 'sl, Slovenian, sl_SI, sl_SI.utf8, sl_SI.UTF-8',
|
|
||||||
'month' => '%B %Y',
|
|
||||||
'month_and_day' => '%B %e, %Y',
|
|
||||||
'date_time' => '%B %e, %Y, @ %T',
|
|
||||||
'specific_day' => '%e %B %Y',
|
|
||||||
'week_in_year' => 'teden %W, %Y',
|
|
||||||
'quarter_of_year' => '%B %Y',
|
|
||||||
'year' => '%Y',
|
|
||||||
'half_year' => '%B %Y',
|
|
||||||
|
|
||||||
];
|
|
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* csv.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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
// initial config
|
|
||||||
'initial_title' => 'Nastavitve uvoza (1/3) - Osnovne nastavitve',
|
|
||||||
'initial_text' => 'Če želite pravilno uvoziti svojo datoteko, preverite spodnje nastavitve.',
|
|
||||||
'initial_box' => 'Osnovne nastavitve uvoza CSV',
|
|
||||||
'initial_box_title' => 'Osnovne nastavitve uvoza CSV',
|
|
||||||
'initial_header_help' => 'Obkljukajte ta okvirček, če prva vrstica v CSV datoteki vsebuje naslove stolpcev.',
|
|
||||||
'initial_date_help' => 'Formatiranje datuma in časa v vaši CSV datoteki. Uporabite obliko zapisa kot je navedena<a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters"> na tej strani</a>. Privzeta vrednost bo prepoznala datume, ki so videti takole:: dateExample.',
|
|
||||||
'initial_delimiter_help' => 'Izberi ločilo, ki je uporabljeno za ločevanje med posameznimi stolpci v vaši datoteki. Če niste prepričani, je vejica najbolj pogosta izbira.',
|
|
||||||
'initial_import_account_help' => 'Če vaša CSV datoteka ne vsebuje informacij o vaših premoženjskih računih, uporabite ta seznam, da izberete kateremu računu pripadajo transakcije v CSV datoteki.',
|
|
||||||
'initial_submit' => 'Nadaljujte s korakom 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' => 'Nastavitve uvoza (1/3) - Določite vlogo vsakega stolpca',
|
|
||||||
'roles_text' => 'Vsak stolpec v vaši datoteki CSV vsebuje določene podatke. Določite, kateri podatki se pričakujejo v katerih stolpcih. Možnost »mapiranja« podatkov pomeni, da boste vsak vnos, ki ste ga našli v stolpcu, povezal z vrednostjo v svoji bazi podatkov. Često izbran je stolpec, ki vsebuje IBAN protiračuna. Tako je mogoče transackijo enostavno povezati s protiračunom v vaši bazi podatkov.',
|
|
||||||
'roles_table' => 'Tabela',
|
|
||||||
'roles_column_name' => 'Ime stolpca',
|
|
||||||
'roles_column_example' => 'primeri podatkov v stolpcu',
|
|
||||||
'roles_column_role' => 'pomen podatkov v stolpcu',
|
|
||||||
'roles_do_map_value' => 'poveži te vrednosti',
|
|
||||||
'roles_column' => 'Stolpec',
|
|
||||||
'roles_no_example_data' => 'primerov podatkov ni na voljo',
|
|
||||||
'roles_submit' => 'Nadaljujte s korakom 2/3',
|
|
||||||
'roles_warning' => 'Čisto na koncu določite stolpec z zneskom. Priporočljivo je da izberete tudi stolpce z opisom, datumom in protiračunom.',
|
|
||||||
|
|
||||||
// map data
|
|
||||||
'map_title' => 'Uvozna nastavitev (3/3) - Povežite uvozne podatke s podatki v Firefly III',
|
|
||||||
'map_text' => 'Vrednosti na levi v spodnji tabeli prikazujejo podatke iz naložene CSV datoteke. Vaša naloga je, da jim, če je možno, določite obtoječio vrednost iz podatkovne baze. Firefly bo to upošteval pri uvozu. Če v podatkovni bazi ni ustrezne vrednosti, ali vrednosti ne želite določiti ničesar, potem pustite prazno.',
|
|
||||||
'map_field_value' => 'podatek',
|
|
||||||
'map_field_mapped_to' => 'povezan z',
|
|
||||||
'map_do_not_map' => '(ne poveži)',
|
|
||||||
'map_submit' => 'Začnite uvoz',
|
|
||||||
|
|
||||||
// map things.
|
|
||||||
'column__ignore' => '(ignoriraj ta stolpec)',
|
|
||||||
'column_account-iban' => 'premoženjski račun (IBAN)',
|
|
||||||
'column_account-id' => 'ID premoženjskega računa (Firefly)',
|
|
||||||
'column_account-name' => 'premoženjski račun (ime)',
|
|
||||||
'column_amount' => 'znesek',
|
|
||||||
'column_amount_debet' => 'Znesek v breme',
|
|
||||||
'column_amount_credit' => 'Znesek v dobro',
|
|
||||||
'column_amount-comma-separated' => 'znesek (z decimalno vejico)',
|
|
||||||
'column_bill-id' => 'ID trajnika (Firefly)',
|
|
||||||
'column_bill-name' => 'Ime trajnika',
|
|
||||||
'column_budget-id' => 'ID bugžeta (Firefly)',
|
|
||||||
'column_budget-name' => 'ime budžeta',
|
|
||||||
'column_category-id' => 'ID Kategorije (Firefly)',
|
|
||||||
'column_category-name' => 'ime kategorije',
|
|
||||||
'column_currency-code' => 'koda valute (ISO 4217)',
|
|
||||||
'column_currency-id' => 'ID valute (Firefly)',
|
|
||||||
'column_currency-name' => 'ime valute (Firefly)',
|
|
||||||
'column_currency-symbol' => 'simbol valute (Firefly)',
|
|
||||||
'column_date-interest' => 'Datum obračuna obresti',
|
|
||||||
'column_date-book' => 'datum knjiženja transakcije',
|
|
||||||
'column_date-process' => 'datum izvedbe transakcije',
|
|
||||||
'column_date-transaction' => 'datum',
|
|
||||||
'column_description' => 'opis',
|
|
||||||
'column_opposing-iban' => 'ciljni račun (IBAN)',
|
|
||||||
'column_opposing-id' => 'protiračun (firefly)',
|
|
||||||
'column_external-id' => 'zunanja ID številka',
|
|
||||||
'column_opposing-name' => 'ime ciljnega računa',
|
|
||||||
'column_rabo-debet-credit' => 'Poseben indikator za Rabobank',
|
|
||||||
'column_ing-debet-credit' => 'Poseben indikator za banko ING',
|
|
||||||
'column_sepa-ct-id' => 'SEPA številka transakcije',
|
|
||||||
'column_sepa-ct-op' => 'SEPA protiračun',
|
|
||||||
'column_sepa-db' => 'SEPA direktna obremenitev',
|
|
||||||
'column_tags-comma' => 'značke (ločene z vejicami)',
|
|
||||||
'column_tags-space' => 'značke (ločene s presledki)',
|
|
||||||
'column_account-number' => 'premoženjski račun (številka računa)',
|
|
||||||
'column_opposing-number' => 'protiračun (številka računa)',
|
|
||||||
];
|
|
@ -1,27 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* demo.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 [
|
|
||||||
'no_demo_text' => 'Sorry, there is no extra demo-explanation text for <abbr title=":route">this page</abbr>.',
|
|
||||||
'see_help_icon' => 'However, the <i class="fa fa-question-circle"></i>-icon in the top right corner may tell you more.',
|
|
||||||
'index' => 'Dobrodošli v <strong>Firefly III</strong>! Na tej strani boste dobili hiter pregled nad vašimi financami. Za več informacij preverite račune → <a href=":asset">premoženjski računi</a> in seveda <a href=":budgets">budžet</a> in <a href=":reports">poročila</a>. Ali pa se samo malo razglejte naokoli in videli boste, kje boste končali.',
|
|
||||||
'accounts-index' => 'Premoženjski računi so vaši osebni bančni računi. Konti stroškov so računi na katere zapravljate vaš denar, kot npr. trgovine in prijatelji.
|
|
||||||
Konti prihodkov so računi iz katerih dobivate denar, kot npr. vaš delodajalec, država in drugi viri vaših prihodkov. Na tej strani lahko račune urejate ali jih odstranite.',
|
|
||||||
'budgets-index' => 'Na tej strani najdete pregled nad vašimi budžeti. Zgornji kazalec prikazuje vsoto ki je na razpolago za ta budžet. To lahko nastavljate za katerokoli obdobje, tako da kliknete na vsoto na desni. Vsota, ki ste jo dejansko porabili je prikazana na spodnjem kazalcu. Spodaj so prikazani vaši stroški razporejeni po budžetih.',
|
|
||||||
'reports-index-start' => 'Firefly III supports four types of reports. Read about them by clicking on the <i class="fa fa-question-circle"></i>-icon in the top right corner.',
|
|
||||||
'reports-index-examples' => 'Be sure to check out these examples: <a href=":one">a monthly financial overview</a>, <a href=":two">a yearly financial overview</a> and <a href=":three">a budget overview</a>.',
|
|
||||||
'currencies-index' => 'Firefly III supports multiple currencies. Although it defaults to the Euro it can be set to the US Dollar and many other currencies. As you can see a small selection of currencies has been included but you can add your own if you wish to. Changing the default currency will not change the currency of existing transactions however: Firefly III supports the use of multiple currencies at the same time.',
|
|
||||||
'transactions-index' => 'These expenses, deposits and transfers are not particularly imaginative. They have been generated automatically.',
|
|
||||||
'piggy-banks-index' => 'As you can see, there are three piggy banks. Use the plus and minus buttons to influence the amount of money in each piggy bank. Click the name of the piggy bank to see the administration for each piggy bank.',
|
|
||||||
'import-index' => 'Of course, any CSV file can be imported into Firefly III',
|
|
||||||
'import-configure-security' => 'Because of security concerns, your upload has been replaced with a local file.',
|
|
||||||
'import-configure-configuration' => 'The configuration you see below is correct for the local file.',
|
|
||||||
];
|
|
File diff suppressed because it is too large
Load Diff
@ -1,198 +0,0 @@
|
|||||||
<?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' => 'Naziv banke',
|
|
||||||
'bank_balance' => 'Balance',
|
|
||||||
'savings_balance' => 'Savings balance',
|
|
||||||
'credit_card_limit' => 'Credit card limit',
|
|
||||||
'automatch' => 'Match automatically',
|
|
||||||
'skip' => 'Skip',
|
|
||||||
'name' => 'Name',
|
|
||||||
'active' => 'Active',
|
|
||||||
'amount_min' => 'Minimum amount',
|
|
||||||
'amount_max' => 'Maximum amount',
|
|
||||||
'match' => 'Matches on',
|
|
||||||
'repeat_freq' => 'Repeats',
|
|
||||||
'journal_currency_id' => 'Currency',
|
|
||||||
'currency_id' => 'Currency',
|
|
||||||
'attachments' => 'Attachments',
|
|
||||||
'journal_amount' => 'Amount',
|
|
||||||
'journal_source_account_name' => 'Revenue account (source)',
|
|
||||||
'journal_source_account_id' => 'premoženjski račun (vir)',
|
|
||||||
'BIC' => 'BIC',
|
|
||||||
'verify_password' => 'Verify password security',
|
|
||||||
'source_account' => 'Source account',
|
|
||||||
'destination_account' => 'Destination account',
|
|
||||||
'journal_destination_account_id' => 'premoženjski račun (cilj)',
|
|
||||||
'asset_destination_account' => 'premoženjski račun (cilj)',
|
|
||||||
'asset_source_account' => 'premoženjski račun (vir)',
|
|
||||||
'journal_description' => 'Description',
|
|
||||||
'note' => 'Notes',
|
|
||||||
'split_journal' => 'Split this transaction',
|
|
||||||
'split_journal_explanation' => 'Split this transaction in multiple parts',
|
|
||||||
'currency' => 'Currency',
|
|
||||||
'account_id' => 'premoženjski račun',
|
|
||||||
'budget_id' => 'Budget',
|
|
||||||
'openingBalance' => 'Opening balance',
|
|
||||||
'tagMode' => 'Tag mode',
|
|
||||||
'tag_position' => 'Tag location',
|
|
||||||
'virtualBalance' => 'Virtual balance',
|
|
||||||
'targetamount' => 'Target amount',
|
|
||||||
'accountRole' => 'Account role',
|
|
||||||
'openingBalanceDate' => 'Opening balance date',
|
|
||||||
'ccType' => 'Credit card payment plan',
|
|
||||||
'ccMonthlyPaymentDate' => 'Credit card monthly payment date',
|
|
||||||
'piggy_bank_id' => 'Piggy bank',
|
|
||||||
'returnHere' => 'Return here',
|
|
||||||
'returnHereExplanation' => 'After storing, return here to create another one.',
|
|
||||||
'returnHereUpdateExplanation' => 'After updating, return here.',
|
|
||||||
'description' => 'Description',
|
|
||||||
'expense_account' => 'konto stroškov',
|
|
||||||
'revenue_account' => 'Revenue account',
|
|
||||||
'decimal_places' => 'Decimal places',
|
|
||||||
'exchange_rate_instruction' => 'Foreign currencies',
|
|
||||||
'source_amount' => 'Amount (source)',
|
|
||||||
'destination_amount' => 'Amount (destination)',
|
|
||||||
'native_amount' => 'Native amount',
|
|
||||||
'new_email_address' => 'New email address',
|
|
||||||
'verification' => 'Verification',
|
|
||||||
'api_key' => 'API key',
|
|
||||||
|
|
||||||
'source_account_asset' => 'vir (premoženjski račun)',
|
|
||||||
'destination_account_expense' => 'ciljni konto (stroški)',
|
|
||||||
'destination_account_asset' => 'ciljni račun (premoženjski račun)',
|
|
||||||
'source_account_revenue' => 'Source account (revenue account)',
|
|
||||||
'type' => 'Type',
|
|
||||||
'convert_Withdrawal' => 'Convert withdrawal',
|
|
||||||
'convert_Deposit' => 'Convert deposit',
|
|
||||||
'convert_Transfer' => 'Convert transfer',
|
|
||||||
|
|
||||||
|
|
||||||
'amount' => 'Amount',
|
|
||||||
'date' => 'Date',
|
|
||||||
'interest_date' => 'Interest date',
|
|
||||||
'book_date' => 'Book date',
|
|
||||||
'process_date' => 'Processing date',
|
|
||||||
'category' => 'Category',
|
|
||||||
'tags' => 'Tags',
|
|
||||||
'deletePermanently' => 'Delete permanently',
|
|
||||||
'cancel' => 'Cancel',
|
|
||||||
'targetdate' => 'Target date',
|
|
||||||
'startdate' => 'Start date',
|
|
||||||
'tag' => 'Tag',
|
|
||||||
'under' => 'Under',
|
|
||||||
'symbol' => 'Symbol',
|
|
||||||
'code' => 'Code',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'accountNumber' => 'Account number',
|
|
||||||
'creditCardNumber' => 'Credit card number',
|
|
||||||
'has_headers' => 'Headers',
|
|
||||||
'date_format' => 'Date format',
|
|
||||||
'specifix' => 'Bank- or file specific fixes',
|
|
||||||
'attachments[]' => 'Attachments',
|
|
||||||
'store_new_withdrawal' => 'Store new withdrawal',
|
|
||||||
'store_new_deposit' => 'Store new deposit',
|
|
||||||
'store_new_transfer' => 'Store new transfer',
|
|
||||||
'add_new_withdrawal' => 'Add a new withdrawal',
|
|
||||||
'add_new_deposit' => 'Add a new deposit',
|
|
||||||
'add_new_transfer' => 'Add a new transfer',
|
|
||||||
'title' => 'Title',
|
|
||||||
'notes' => 'Notes',
|
|
||||||
'filename' => 'File name',
|
|
||||||
'mime' => 'Mime type',
|
|
||||||
'size' => 'Size',
|
|
||||||
'trigger' => 'Trigger',
|
|
||||||
'stop_processing' => 'Stop processing',
|
|
||||||
'start_date' => 'Start of range',
|
|
||||||
'end_date' => 'End of range',
|
|
||||||
'export_start_range' => 'Start of export range',
|
|
||||||
'export_end_range' => 'End of export range',
|
|
||||||
'export_format' => 'File format',
|
|
||||||
'include_attachments' => 'Include uploaded attachments',
|
|
||||||
'include_old_uploads' => 'Include imported data',
|
|
||||||
'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' => 'Delete currency ":name"',
|
|
||||||
'delete_journal' => 'Delete transaction with description ":description"',
|
|
||||||
'delete_attachment' => 'Delete attachment ":name"',
|
|
||||||
'delete_rule' => 'Delete rule ":title"',
|
|
||||||
'delete_rule_group' => 'Delete rule group ":title"',
|
|
||||||
'delete_link_type' => 'Delete link type ":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' => 'Email address',
|
|
||||||
'password' => 'Password',
|
|
||||||
'password_confirmation' => 'Password (again)',
|
|
||||||
'blocked' => 'Is blocked?',
|
|
||||||
'blocked_code' => 'Reason for block',
|
|
||||||
|
|
||||||
|
|
||||||
// admin
|
|
||||||
'domain' => 'Domain',
|
|
||||||
'single_user_mode' => 'Disable user registration',
|
|
||||||
'is_demo_site' => 'Is demo site',
|
|
||||||
|
|
||||||
|
|
||||||
// import
|
|
||||||
'import_file' => 'Import file',
|
|
||||||
'configuration_file' => 'Configuration file',
|
|
||||||
'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',
|
|
||||||
];
|
|
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* help.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 [
|
|
||||||
|
|
||||||
// tour!
|
|
||||||
'main-content-title' => 'Dobrodošli na Firefly III',
|
|
||||||
'main-content-text' => 'Do yourself a favor and follow this short guide to make sure you know your way around.',
|
|
||||||
'sidebar-toggle-title' => 'Sidebar to create stuff',
|
|
||||||
'sidebar-toggle-text' => 'Hidden under the plus icon are all the buttons to create new stuff. Accounts, transactions, everything!',
|
|
||||||
'account-menu-title' => 'All your accounts',
|
|
||||||
'account-menu-text' => 'Here you can find all the accounts you\'ve made.',
|
|
||||||
'budget-menu-title' => 'Budgets',
|
|
||||||
'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
|
|
||||||
'report-menu-title' => 'Reports',
|
|
||||||
'report-menu-text' => 'Check this out when you want a solid overview of your finances.',
|
|
||||||
'transaction-menu-title' => 'Transactions',
|
|
||||||
'transaction-menu-text' => 'All transactions you\'ve created can be found here.',
|
|
||||||
'option-menu-title' => 'Options',
|
|
||||||
'option-menu-text' => 'This is pretty self-explanatory.',
|
|
||||||
'main-content-end-title' => 'The end!',
|
|
||||||
'main-content-end-text' => 'Remember that every page has a small question mark at the right top. Click it to get help about the page you\'re on.',
|
|
||||||
'index' => 'index',
|
|
||||||
'home' => 'home',
|
|
||||||
];
|
|
@ -1,122 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* intro.php
|
|
||||||
* Copyright (c) 2017 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 [
|
|
||||||
// index
|
|
||||||
'index_intro' => 'Welcome to the index page of Firefly III. Please take the time to walk through this intro to get a feeling of how Firefly III works.',
|
|
||||||
'index_accounts-chart' => 'This chart shows the current balance of your asset accounts. You can select the accounts visible here in your preferences.',
|
|
||||||
'index_box_out_holder' => 'This little box and the boxes next to this one will give you a quick overview of your financial situation.',
|
|
||||||
'index_help' => 'If you ever need help with a page or a form, press this button.',
|
|
||||||
'index_outro' => 'Most pages of Firefly III will start with a little tour like this one. Please contact me when you have questions or comments. Enjoy!',
|
|
||||||
'index_sidebar-toggle' => 'To create new transactions, accounts or other things, use the menu under this icon.',
|
|
||||||
|
|
||||||
// create account:
|
|
||||||
'accounts_create_iban' => 'Give your accounts a valid IBAN. This could make a data import very easy in the future.',
|
|
||||||
'accounts_create_asset_opening_balance' => 'Assets accounts may have an "opening balance", indicating the start of this account\'s history in Firefly.',
|
|
||||||
'accounts_create_asset_currency' => 'Firefly III supports multiple currencies. Asset accounts have one main currency, which you must set here.',
|
|
||||||
'accounts_create_asset_virtual' => 'It can sometimes help to give your account a virtual balance: an extra amount always added to or removed from the actual balance.',
|
|
||||||
|
|
||||||
// budgets index
|
|
||||||
'budgets_index_intro' => 'Budgets are used to manage your finances and form one of the core functions of Firefly III.',
|
|
||||||
'budgets_index_set_budget' => 'Set your total budget for every period so Firefly can tell you if you have budgeted all available money.',
|
|
||||||
'budgets_index_see_expenses_bar' => 'Spending money will slowly fill this bar.',
|
|
||||||
'budgets_index_navigate_periods' => 'Navigate through periods to easily set budgets ahead of time.',
|
|
||||||
'budgets_index_new_budget' => 'Create new budgets as you see fit.',
|
|
||||||
'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.',
|
|
||||||
'budgets_index_outro' => 'To learn more about budgeting, checkout the help icon in the top right corner.',
|
|
||||||
|
|
||||||
// reports (index)
|
|
||||||
'reports_index_intro' => 'Use these reports to get detailed insights in your finances.',
|
|
||||||
'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.',
|
|
||||||
'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.',
|
|
||||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years.',
|
|
||||||
'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.',
|
|
||||||
|
|
||||||
// reports (reports)
|
|
||||||
'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!',
|
|
||||||
'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.',
|
|
||||||
'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.',
|
|
||||||
|
|
||||||
'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.',
|
|
||||||
'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.',
|
|
||||||
'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.',
|
|
||||||
|
|
||||||
'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.',
|
|
||||||
'reports_report_tag_pieCharts' => 'These charts will give you insight in expenses and income per tag, account, category or budget.',
|
|
||||||
'reports_report_tag_incomeAndExpensesChart' => 'This chart shows your expenses and income per tag.',
|
|
||||||
|
|
||||||
'reports_report_budget_intro' => 'This report will give you insight in one or multiple budgets.',
|
|
||||||
'reports_report_budget_pieCharts' => 'These charts will give you insight in expenses per budget or per account.',
|
|
||||||
'reports_report_budget_incomeAndExpensesChart' => 'This chart shows your expenses per budget.',
|
|
||||||
|
|
||||||
// create transaction
|
|
||||||
'transactions_create_switch_box' => 'Use these buttons to quickly switch the type of transaction you wish to save.',
|
|
||||||
'transactions_create_ffInput_category' => 'You can freely type in this field. Previously created categories will be suggested.',
|
|
||||||
'transactions_create_withdrawal_ffInput_budget' => 'Link your withdrawal to a budget for better financial control.',
|
|
||||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Use this dropdown when your withdrawal is in another currency.',
|
|
||||||
'transactions_create_deposit_currency_dropdown_amount' => 'Use this dropdown when your deposit is in another currency.',
|
|
||||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Select a piggy bank and link this transfer to your savings.',
|
|
||||||
|
|
||||||
// piggy banks index:
|
|
||||||
'piggy-banks_index_saved' => 'This field shows you how much you\'ve saved in each piggy bank.',
|
|
||||||
'piggy-banks_index_button' => 'Next to this progress bar are two buttons (+ and -) to add or remove money from each piggy bank.',
|
|
||||||
'piggy-banks_index_accountStatus' => 'For each asset account with at least one piggy bank the status is listed in this table.',
|
|
||||||
|
|
||||||
// create piggy
|
|
||||||
'piggy-banks_create_name' => 'What is your goal? A new couch, a camera, money for emergencies?',
|
|
||||||
'piggy-banks_create_date' => 'You can set a target date or a deadline for your piggy bank.',
|
|
||||||
|
|
||||||
// show piggy
|
|
||||||
'piggy-banks_show_piggyChart' => 'This chart will show the history of this piggy bank.',
|
|
||||||
'piggy-banks_show_piggyDetails' => 'Some details about your piggy bank',
|
|
||||||
'piggy-banks_show_piggyEvents' => 'Any additions or removals are also listed here.',
|
|
||||||
|
|
||||||
// bill index
|
|
||||||
'bills_index_paid_in_period' => 'This field indicates when the bill was last paid.',
|
|
||||||
'bills_index_expected_in_period' => 'This field indicates for each bill if and when the next bill is expected to hit.',
|
|
||||||
|
|
||||||
// show bill
|
|
||||||
'bills_show_billInfo' => 'This table shows some general information about this bill.',
|
|
||||||
'bills_show_billButtons' => 'Use this button to re-scan old transactions so they will be matched to this bill.',
|
|
||||||
'bills_show_billChart' => 'This chart shows the transactions linked to this bill.',
|
|
||||||
|
|
||||||
// create bill
|
|
||||||
'bills_create_name' => 'Use a descriptive name such as "Rent" or "Health insurance".',
|
|
||||||
'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
|
||||||
'bills_create_amount_min_holder' => 'Select a minimum and maximum amount for this bill.',
|
|
||||||
'bills_create_repeat_freq_holder' => 'Most bills repeat monthly, but you can set another frequency here.',
|
|
||||||
'bills_create_skip_holder' => 'If a bill repeats every 2 weeks for example, the "skip"-field should be set to "1" to skip every other week.',
|
|
||||||
|
|
||||||
// rules index
|
|
||||||
'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.',
|
|
||||||
'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.',
|
|
||||||
'rules_index_new_rule' => 'Create as many rules as you like.',
|
|
||||||
'rules_index_prio_buttons' => 'Order them any way you see fit.',
|
|
||||||
'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.',
|
|
||||||
'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.',
|
|
||||||
'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!',
|
|
||||||
|
|
||||||
// create rule:
|
|
||||||
'rules_create_mandatory' => 'Choose a descriptive title, and set when the rule should be fired.',
|
|
||||||
'rules_create_ruletriggerholder' => 'Add as many triggers as you like, but remember that ALL triggers must match before any actions are fired.',
|
|
||||||
'rules_create_test_rule_triggers' => 'Use this button to see which transactions would match your rule.',
|
|
||||||
'rules_create_actions' => 'Set as many actions as you like.',
|
|
||||||
|
|
||||||
// preferences
|
|
||||||
'preferences_index_tabs' => 'More options are available behind these tabs.',
|
|
||||||
|
|
||||||
// currencies
|
|
||||||
'currencies_index_intro' => 'Firefly III supports multiple currencies, which you can change on this page.',
|
|
||||||
'currencies_index_default' => 'Firefly III has one default currency. You can always switch of course using these buttons.',
|
|
||||||
|
|
||||||
// create currency
|
|
||||||
'currencies_create_code' => 'This code should be ISO compliant (Google it for your new currency).',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* list.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 [
|
|
||||||
'buttons' => 'Gumbi',
|
|
||||||
'icon' => 'Ikona',
|
|
||||||
'id' => 'ID',
|
|
||||||
'create_date' => 'Ustvarjeno',
|
|
||||||
'update_date' => 'Posodobljeno',
|
|
||||||
'updated_at' => 'Posodobljeno',
|
|
||||||
'balance_before' => 'Stanje prej',
|
|
||||||
'balance_after' => 'Stanje potem',
|
|
||||||
'name' => 'ime',
|
|
||||||
'role' => 'vloga',
|
|
||||||
'currentBalance' => 'trenutno stanje',
|
|
||||||
'active' => 'Aktiviran?',
|
|
||||||
'lastActivity' => 'zadnja aktivnost',
|
|
||||||
'balanceDiff' => 'Razlika stanja med :start in :end',
|
|
||||||
'matchesOn' => 'Povezano',
|
|
||||||
'account_type' => 'vrsta računa',
|
|
||||||
'created_at' => 'ustvarjeno',
|
|
||||||
'account' => 'račun',
|
|
||||||
'matchingAmount' => 'znesek',
|
|
||||||
'split_number' => 'Delitev #',
|
|
||||||
'destination' => 'Ciljni račun',
|
|
||||||
'source' => 'Izvor',
|
|
||||||
'next_expected_match' => 'Naslenje pričakovano ujemanje',
|
|
||||||
'automatch' => 'Samodejno poveži?',
|
|
||||||
'repeat_freq' => 'Ponovitev',
|
|
||||||
'description' => 'Opis',
|
|
||||||
'amount' => 'Znesek',
|
|
||||||
'internal_reference' => 'Notranji sklic',
|
|
||||||
'date' => 'datum',
|
|
||||||
'interest_date' => 'datum obresti',
|
|
||||||
'book_date' => 'datum knjiženja',
|
|
||||||
'process_date' => 'datum izvedbe',
|
|
||||||
'due_date' => 'rok plačila',
|
|
||||||
'payment_date' => 'Datum plačila',
|
|
||||||
'invoice_date' => 'datum računa',
|
|
||||||
'interal_reference' => 'Notranji sklic',
|
|
||||||
'notes' => 'Zabeležke',
|
|
||||||
'from' => 'Pošiljatelj',
|
|
||||||
'piggy_bank' => 'Pujsek',
|
|
||||||
'to' => 'Prejemnik',
|
|
||||||
'budget' => 'Budžet',
|
|
||||||
'category' => 'Kategorija',
|
|
||||||
'bill' => 'Trajnik',
|
|
||||||
'withdrawal' => 'Odhodek',
|
|
||||||
'deposit' => 'Prihodek',
|
|
||||||
'transfer' => 'Prenos',
|
|
||||||
'type' => 'Vrsta',
|
|
||||||
'completed' => 'Dokončano',
|
|
||||||
'iban' => 'IBAN',
|
|
||||||
'paid_current_period' => 'Plačano v tem obdobju',
|
|
||||||
'email' => 'E-pošta',
|
|
||||||
'registered_at' => 'Registriran pri',
|
|
||||||
'is_blocked' => 'Je blokiran',
|
|
||||||
'is_admin' => 'Je administrator',
|
|
||||||
'has_two_factor' => 'Ima dvostopenjsko overovitev',
|
|
||||||
'blocked_code' => 'Koda vzroka blokade',
|
|
||||||
'source_account' => 'Izvorni račun',
|
|
||||||
'destination_account' => 'Ciljni račun',
|
|
||||||
'accounts_count' => 'Število računov',
|
|
||||||
'journals_count' => 'Število transakcij',
|
|
||||||
'attachments_count' => 'Število prilog',
|
|
||||||
'bills_count' => 'Število trajnikov',
|
|
||||||
'categories_count' => 'Število kategorij',
|
|
||||||
'export_jobs_count' => 'Število izvozov',
|
|
||||||
'import_jobs_count' => 'Število uvozov',
|
|
||||||
'budget_count' => 'Število budžetov',
|
|
||||||
'rule_and_groups_count' => 'Število pravil in skupin pravil',
|
|
||||||
'tags_count' => 'Število značk',
|
|
||||||
'inward' => 'Interni opis',
|
|
||||||
'outward' => 'Eksterni opis',
|
|
||||||
'number_of_transactions' => 'Število transakcij',
|
|
||||||
'total_amount' => 'Skupni znesek',
|
|
||||||
'sum' => 'Vsota',
|
|
||||||
'sum_excluding_transfers' => 'Vsota (brez prenosov)',
|
|
||||||
'sum_withdrawals' => 'Vsota odlivov',
|
|
||||||
'sum_deposits' => 'Vsota prilivov',
|
|
||||||
'sum_transfers' => 'Vsota prenosov',
|
|
||||||
'reconcile' => 'Poravnaj',
|
|
||||||
];
|
|
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* pagination.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 [
|
|
||||||
|
|
||||||
'previous' => '« Prejšnja stran',
|
|
||||||
'next' => 'Naslednja stran »',
|
|
||||||
|
|
||||||
];
|
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* passwords.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 [
|
|
||||||
'password' => 'Geslo mora biti dolgo vsaj šest znakov in mora biti enako v obeh poljih.',
|
|
||||||
'user' => 'Uporabnika s takim e-poštnim naslovom v naši bazi nismo našli.',
|
|
||||||
'token' => 'Žeton za ponastavitev gesla ni veljaven.',
|
|
||||||
'sent' => 'Poslali smo vam povezavo za ponastavitev gesla!',
|
|
||||||
'reset' => 'Vaše geslo je bilo ponastavljeno!',
|
|
||||||
'blocked' => 'Dober poskus...',
|
|
||||||
];
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* validation.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 [
|
|
||||||
'iban' => 'To ni veljaven IBAN.',
|
|
||||||
'unique_account_number_for_user' => 'Kaže, da je ta številka računa že v uporabi.',
|
|
||||||
'deleted_user' => 'Iz varnostnih razlogov ne morete ustvariti uporabnika s takim e-poštnim naslovom.',
|
|
||||||
'rule_trigger_value' => 'Ta vrednost je neveljavna za izbrani sprožilec.',
|
|
||||||
'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_invalid_mime' => 'File ":name" is of type ":mime" which is not accepted as a new upload.',
|
|
||||||
'file_too_large' => 'File ":name" is too large.',
|
|
||||||
'belongs_to_user' => 'The value of :attribute is unknown',
|
|
||||||
'accepted' => 'The :attribute must be accepted.',
|
|
||||||
'bic' => 'This is not a valid BIC.',
|
|
||||||
'more' => ':attribute must be larger than zero.',
|
|
||||||
'active_url' => 'The :attribute is not a valid URL.',
|
|
||||||
'after' => 'The :attribute must be a date after :date.',
|
|
||||||
'alpha' => 'The :attribute may only contain letters.',
|
|
||||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
|
||||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
|
||||||
'array' => 'The :attribute must be an array.',
|
|
||||||
'unique_for_user' => 'There already is an entry with this :attribute.',
|
|
||||||
'before' => 'The :attribute must be a date before :date.',
|
|
||||||
'unique_object_for_user' => 'This name is already in use',
|
|
||||||
'unique_account_for_user' => 'This account name is already in use',
|
|
||||||
'between.numeric' => 'The :attribute must be between :min and :max.',
|
|
||||||
'between.file' => 'The :attribute must be between :min and :max kilobytes.',
|
|
||||||
'between.string' => 'The :attribute must be between :min and :max characters.',
|
|
||||||
'between.array' => 'The :attribute must have between :min and :max items.',
|
|
||||||
'boolean' => 'The :attribute field must be true or false.',
|
|
||||||
'confirmed' => 'The :attribute confirmation does not match.',
|
|
||||||
'date' => 'The :attribute is not a valid date.',
|
|
||||||
'date_format' => 'The :attribute does not match the format :format.',
|
|
||||||
'different' => 'The :attribute and :other must be different.',
|
|
||||||
'digits' => 'The :attribute must be :digits digits.',
|
|
||||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
|
||||||
'email' => 'The :attribute must be a valid email address.',
|
|
||||||
'filled' => 'The :attribute field is required.',
|
|
||||||
'exists' => 'The selected :attribute is invalid.',
|
|
||||||
'image' => 'The :attribute must be an image.',
|
|
||||||
'in' => 'The selected :attribute is invalid.',
|
|
||||||
'integer' => 'The :attribute must be an integer.',
|
|
||||||
'ip' => 'The :attribute must be a valid IP address.',
|
|
||||||
'json' => 'The :attribute must be a valid JSON string.',
|
|
||||||
'max.numeric' => 'The :attribute may not be greater than :max.',
|
|
||||||
'max.file' => 'The :attribute may not be greater than :max kilobytes.',
|
|
||||||
'max.string' => 'The :attribute may not be greater than :max characters.',
|
|
||||||
'max.array' => 'The :attribute may not have more than :max items.',
|
|
||||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
|
||||||
'min.numeric' => 'The :attribute must be at least :min.',
|
|
||||||
'min.file' => 'The :attribute must be at least :min kilobytes.',
|
|
||||||
'min.string' => 'The :attribute must be at least :min characters.',
|
|
||||||
'min.array' => 'The :attribute must have at least :min items.',
|
|
||||||
'not_in' => 'The selected :attribute is invalid.',
|
|
||||||
'numeric' => 'The :attribute must be a number.',
|
|
||||||
'regex' => 'The :attribute format is invalid.',
|
|
||||||
'required' => 'The :attribute field is required.',
|
|
||||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
|
||||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
|
||||||
'required_with' => 'The :attribute field is required when :values is present.',
|
|
||||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
|
||||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
|
||||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
|
||||||
'same' => 'The :attribute and :other must match.',
|
|
||||||
'size.numeric' => 'The :attribute must be :size.',
|
|
||||||
'size.file' => 'The :attribute must be :size kilobytes.',
|
|
||||||
'size.string' => 'The :attribute must be :size characters.',
|
|
||||||
'size.array' => 'The :attribute must contain :size items.',
|
|
||||||
'unique' => 'The :attribute has already been taken.',
|
|
||||||
'string' => 'The :attribute must be a string.',
|
|
||||||
'url' => 'The :attribute format is invalid.',
|
|
||||||
'timezone' => 'The :attribute must be a valid zone.',
|
|
||||||
'2fa_code' => 'The :attribute field is invalid.',
|
|
||||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
|
||||||
'distinct' => 'The :attribute field has a duplicate value.',
|
|
||||||
'file' => 'The :attribute must be a file.',
|
|
||||||
'in_array' => 'The :attribute field does not exist in :other.',
|
|
||||||
'present' => 'The :attribute field must be present.',
|
|
||||||
'amount_zero' => 'The total amount cannot be zero',
|
|
||||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://goo.gl/NCh2tN',
|
|
||||||
];
|
|
Loading…
Reference in New Issue
Block a user