Merge pull request #647 from firefly-iii/l10n_develop

New Crowdin translations
This commit is contained in:
James Cole 2017-06-07 12:11:28 +02:00 committed by GitHub
commit 893498238e
26 changed files with 1610 additions and 180 deletions

View File

@ -20,6 +20,7 @@ return [
'everything' => 'Alle', 'everything' => 'Alle',
'customRange' => 'Individueller Bereich', 'customRange' => 'Individueller Bereich',
'apply' => 'Übernehmen', 'apply' => 'Übernehmen',
'select_date' => 'Select date..',
'cancel' => 'Abbrechen', 'cancel' => 'Abbrechen',
'from' => 'Von', 'from' => 'Von',
'to' => 'Bis', 'to' => 'Bis',
@ -112,8 +113,8 @@ return [
'budget_in_period' => 'All transactions for budget ":name" between :start and :end', 'budget_in_period' => 'All transactions for budget ":name" between :start and :end',
'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end', 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end',
'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end', 'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end',
'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end',
'chart_category_all' => 'Chart for all transactions for category ":name"', 'chart_category_all' => 'Chart for all transactions for category ":name"',
'budget_in_period_breadcrumb' => 'Zwischen :start und :end', 'budget_in_period_breadcrumb' => 'Zwischen :start und :end',
'clone_withdrawal' => 'Diese Ausgabe klonen', 'clone_withdrawal' => 'Diese Ausgabe klonen',
'clone_deposit' => 'Diese Einnahme klonen', 'clone_deposit' => 'Diese Einnahme klonen',
@ -963,6 +964,7 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?',
'split_this_transfer' => 'Diese Überweisung aufteilen', 'split_this_transfer' => 'Diese Überweisung aufteilen',
'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.', 'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.',
'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.', 'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.',
'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.',
'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.',
// import // import

View File

@ -25,4 +25,4 @@ return [
'failed' => 'Las credenciales no coinciden con los registros.', 'failed' => 'Las credenciales no coinciden con los registros.',
'throttle' => 'Demasiados intentos de inicio de sesión. Por favor reintente en :seconds segundos.', 'throttle' => 'Demasiados intentos de inicio de sesión. Por favor reintente en :seconds segundos.',
]; ];

View File

@ -25,11 +25,11 @@ return [
'delete_bill' => 'Eliminar factura ":name"', 'delete_bill' => 'Eliminar factura ":name"',
'reports' => 'Reportes', 'reports' => 'Reportes',
'searchResult' => 'Buscar ":query"', 'searchResult' => 'Buscar ":query"',
'withdrawal_list' => 'Expensas', 'withdrawal_list' => 'Gastos',
'deposit_list' => 'Ganancia, ingresos y depósitos', 'deposit_list' => 'Ganancia, ingresos y depósitos',
'transfer_list' => 'Transferencias', 'transfer_list' => 'Transferencias',
'transfers_list' => 'Transferencias', 'transfers_list' => 'Transferencias',
'create_withdrawal' => 'Crear nueva extracción', 'create_withdrawal' => 'Crear nuevo retiro',
'create_deposit' => 'Crear nuevo depósito', 'create_deposit' => 'Crear nuevo depósito',
'create_transfer' => 'Crear nueva transferencia', 'create_transfer' => 'Crear nueva transferencia',
'edit_journal' => 'Editar transacción ":description"', 'edit_journal' => 'Editar transacción ":description"',
@ -38,4 +38,4 @@ return [
'createTag' => 'Crear nueva etiqueta', 'createTag' => 'Crear nueva etiqueta',
'edit_tag' => 'Editar etiqueta ":tag"', 'edit_tag' => 'Editar etiqueta ":tag"',
'delete_tag' => 'Eliminar etiqueta ":tag"', 'delete_tag' => 'Eliminar etiqueta ":tag"',
]; ];

View File

@ -0,0 +1,23 @@
<?php
/**
* 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',
];

View File

@ -9,7 +9,7 @@
* See the LICENSE file for details. * See the LICENSE file for details.
*/ */
declare(strict_types = 1); declare(strict_types=1);
return [ return [
@ -77,4 +77,4 @@ return [
'column_tags-space' => 'Etiquetas (separadas por espacios)', 'column_tags-space' => 'Etiquetas (separadas por espacios)',
'column_account-number' => 'Caja de ahorro (número de cuenta)', 'column_account-number' => 'Caja de ahorro (número de cuenta)',
'column_opposing-number' => 'Cuenta opuesta (número de cuenta)', 'column_opposing-number' => 'Cuenta opuesta (número de cuenta)',
]; ];

View File

@ -12,13 +12,13 @@ return [
'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.', '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.', '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.', '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' => '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.', '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 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-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' => '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>.', '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 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.', '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' => 'These expenses, deposits and transfers are not particularly imaginative. They have been generated automatically.', 'transactions-index' => 'Estos gastos, depósitos y transferencias no son particularmente imaginativos. Se han generado automáticamente.',
'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.', '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-index' => 'Por supuesto, cualquier archivo CSV puede ser importado en Firefly III',
'import-configure-security' => 'Because of security concerns, your upload has been replaced with a local file.', 'import-configure-security' => 'Debido a problemas de seguridad, su subida se ha sustituido por un archivo local.',
'import-configure-configuration' => 'The configuration you see below is correct for the local file.', '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

View File

@ -0,0 +1,189 @@
<?php
/**
* 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_asset_source_account' => 'Asset account (source)',
'journal_source_account_name' => 'Revenue account (source)',
'journal_source_account_id' => 'Asset account (source)',
'BIC' => 'BIC',
'account_from_id' => 'From account',
'account_to_id' => 'To account',
'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',
'tagPosition' => 'Tag location',
'virtualBalance' => 'Virtual balance',
'longitude_latitude' => 'Location',
'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',
'exchanged_amount' => 'Exchanged amount',
'source_amount' => 'Amount (source)',
'destination_amount' => 'Amount (destination)',
'native_amount' => 'Native amount',
'revenue_account_source' => 'Revenue account (source)',
'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',
'tag' => 'Tag',
'under' => 'Under',
'symbol' => 'Symbol',
'code' => 'Code',
'iban' => 'IBAN',
'accountNumber' => 'Account 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',
'noPiggybank' => '(no piggy bank)',
'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"',
'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"?',
'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_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' => 'Single user mode',
'must_confirm_account' => 'New users must activate account',
'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',
];

View File

@ -0,0 +1,33 @@
<?php
/**
* 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' => 'Welcome to 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',
];

View File

@ -0,0 +1,89 @@
<?php
/**
* 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',
'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',
'matchedOn' => 'Encontrado en',
'matchesOn' => 'Encontrado en',
'account_type' => 'Tipo de cuenta',
'created_at' => 'Fecha de creación',
'new_balance' => 'Nuevo balance',
'account' => 'Cuenta',
'matchingAmount' => 'Monto',
'lastMatch' => 'Última coincidencia',
'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_activated' => 'Está activado',
'is_blocked' => 'Está bloqueado',
'is_admin' => '¿Es el administrador?',
'has_two_factor' => 'Tiene 2FA',
'confirmed_from' => 'Confirmado desde',
'registered_from' => 'Registrado desde',
'blocked_code' => 'Bloque de código',
'domain' => 'Dominio',
'registration_attempts' => 'Intentos de registro',
'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',
];

View File

@ -0,0 +1,17 @@
<?php
/**
* 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' => '&laquo; Anterior',
'next' => 'Siguiente &raquo;',
];

View File

@ -16,4 +16,4 @@ return [
'sent' => 'Te enviamos un correo con el link para reestablecer tu contraseña!', 'sent' => 'Te enviamos un correo con el link para reestablecer tu contraseña!',
'reset' => 'Tu contraseña fue reestablecida!', 'reset' => 'Tu contraseña fue reestablecida!',
'blocked' => 'Buen intento.', 'blocked' => 'Buen intento.',
]; ];

View File

@ -11,50 +11,50 @@
return [ return [
'iban' => 'This is not a valid CBU.', 'iban' => 'This is not a valid CBU.',
'unique_account_number_for_user' => 'It looks like this account number is already in use.', 'unique_account_number_for_user' => 'Parece que este número de cuenta ya está en uso.',
'deleted_user' => 'Due to security constraints, you cannot register using this email address.', 'deleted_user' => 'Debido a restricciones de seguridad, no se puede registrar utilizando esta dirección de correo electrónico.',
'rule_trigger_value' => 'This value is invalid for the selected trigger.', 'rule_trigger_value' => 'Este valor es válido para el disparador seleccionado.',
'rule_action_value' => 'This value is invalid for the selected action.', 'rule_action_value' => 'Este valor es inválido para la acción seleccionado.',
'invalid_domain' => 'Due to security constraints, you cannot register from this domain.', 'invalid_domain' => 'Debido a restricciones de seguridad, no se puede registrar utilizando este dominio.',
'file_already_attached' => 'Uploaded file ":name" is already attached to this object.', 'file_already_attached' => 'Archivo ":name" ya ha sido añadido para este objeto.',
'file_attached' => 'Succesfully uploaded file ":name".', 'file_attached' => 'Archivo subido correctamente ": nombre".',
'file_invalid_mime' => 'File ":name" is of type ":mime" which is not accepted as a new upload.', 'file_invalid_mime' => 'Archivo ":name" es de tipo": mime" que no es aceptado como una nueva carga.',
'file_too_large' => 'File ":name" is too large.', 'file_too_large' => 'Archivo ":name" es demasiado grande.',
'belongs_to_user' => 'The value of :attribute is unknown', 'belongs_to_user' => 'El valor de :attribute es desconocido',
'accepted' => 'The :attribute must be accepted.', 'accepted' => 'El :attribute debe ser aceptado.',
'bic' => 'This is not a valid BIC.', 'bic' => 'Esto no es un BIC válido.',
'more' => ':attribute must be larger than zero.', 'more' => ':attribute debe ser mayor que cero.',
'active_url' => 'The :attribute is not a valid URL.', 'active_url' => 'El campo :attribute no es una URL válida.',
'after' => 'The :attribute must be a date after :date.', 'after' => 'El campo :attribute debe ser una fecha posterior a :date.',
'alpha' => 'The :attribute may only contain letters.', 'alpha' => 'El campo :attribute sólo puede contener letras.',
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', 'alpha_dash' => 'El campo :attribute sólo puede contener letras, números y guiones.',
'alpha_num' => 'The :attribute may only contain letters and numbers.', 'alpha_num' => 'El campo :attribute sólo puede contener letras y números.',
'array' => 'The :attribute must be an array.', 'array' => 'El campo :attribute debe ser un arreglo.',
'unique_for_user' => 'There already is an entry with this :attribute.', 'unique_for_user' => 'Ya hay una entrada con esto :attribute.',
'before' => 'The :attribute must be a date before :date.', 'before' => 'El campo :attribute debe contener una fecha anterior a :date.',
'unique_object_for_user' => 'This name is already in use', 'unique_object_for_user' => 'Este nombre ya está en uso',
'unique_account_for_user' => 'This account name is already in use', 'unique_account_for_user' => 'Este nombre cuenta ya está en uso',
'between.numeric' => 'The :attribute must be between :min and :max.', 'between.numeric' => 'El atributo :attribute debe estar entre :min y :max.',
'between.file' => 'The :attribute must be between :min and :max kilobytes.', 'between.file' => 'El atributo :attribute debe estar entre :min y :max kilobytes.',
'between.string' => 'The :attribute must be between :min and :max characters.', 'between.string' => 'El atributo :attribute debe estar entre :min y :max caracteres.',
'between.array' => 'The :attribute must have between :min and :max items.', 'between.array' => 'El atributo :attribute debe estar entre :min y :max items.',
'boolean' => 'The :attribute field must be true or false.', 'boolean' => 'El campo :attribute debe ser verdadero o falso.',
'confirmed' => 'The :attribute confirmation does not match.', 'confirmed' => 'La confirmación de :attribute no coincide.',
'date' => 'The :attribute is not a valid date.', 'date' => 'El campo :attribute no es una fecha válida.',
'date_format' => 'The :attribute does not match the format :format.', 'date_format' => 'El campo :attribute no corresponde con el formato :format.',
'different' => 'The :attribute and :other must be different.', 'different' => 'Los campos :attribute y :other han de ser diferentes.',
'digits' => 'The :attribute must be :digits digits.', 'digits' => 'El campo :attribute debe contener un número de :digits dígitos.',
'digits_between' => 'The :attribute must be between :min and :max digits.', 'digits_between' => 'El campo :attribute debe contener entre :min y :max dígitos.',
'email' => 'The :attribute must be a valid email address.', 'email' => 'El campo :attribute no corresponde con una dirección de e-mail válida.',
'filled' => 'The :attribute field is required.', 'filled' => 'El campo :attribute es requerido.',
'exists' => 'The selected :attribute is invalid.', 'exists' => 'El campo :attribute seleccionado no es correcto.',
'image' => 'The :attribute must be an image.', 'image' => 'El campo :attribute debe ser una imagen.',
'in' => 'The selected :attribute is invalid.', 'in' => 'El campo :attribute seleccionado es inválido.',
'integer' => 'The :attribute must be an integer.', 'integer' => 'El campo :attribute debe ser un entero.',
'ip' => 'The :attribute must be a valid IP address.', 'ip' => 'El campo :attribute debe contener una dirección IP válida.',
'json' => 'The :attribute must be a valid JSON string.', 'json' => 'El campo :attribute debe ser una cadena JSON válida.',
'max.numeric' => 'The :attribute may not be greater than :max.', 'max.numeric' => 'El campo :attribute no puede ser mayor que :max.',
'max.file' => 'The :attribute may not be greater than :max kilobytes.', 'max.file' => 'El campo :attribute no puede ser mayor :max de kilobytes.',
'max.string' => 'The :attribute may not be greater than :max characters.', 'max.string' => 'The :attribute may not be greater than :max characters.',
'max.array' => 'The :attribute may not have more than :max items.', 'max.array' => 'The :attribute may not have more than :max items.',
'mimes' => 'The :attribute must be a file of type: :values.', 'mimes' => 'The :attribute must be a file of type: :values.',
@ -88,4 +88,4 @@ return [
'in_array' => 'The :attribute field does not exist in :other.', 'in_array' => 'The :attribute field does not exist in :other.',
'present' => 'The :attribute field must be present.', 'present' => 'The :attribute field must be present.',
'amount_zero' => 'The total amount cannot be zero', 'amount_zero' => 'The total amount cannot be zero',
]; ];

View File

@ -20,6 +20,7 @@ return [
'everything' => 'Tout', 'everything' => 'Tout',
'customRange' => 'Etendue personnalisée', 'customRange' => 'Etendue personnalisée',
'apply' => 'Appliquer', 'apply' => 'Appliquer',
'select_date' => 'Select date..',
'cancel' => 'Annuler', 'cancel' => 'Annuler',
'from' => 'Depuis', 'from' => 'Depuis',
'to' => 'A', 'to' => 'A',
@ -112,8 +113,8 @@ return [
'budget_in_period' => 'All transactions for budget ":name" between :start and :end', 'budget_in_period' => 'All transactions for budget ":name" between :start and :end',
'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end', 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end',
'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end', 'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end',
'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end',
'chart_category_all' => 'Chart for all transactions for category ":name"', 'chart_category_all' => 'Chart for all transactions for category ":name"',
'budget_in_period_breadcrumb' => 'Between :start and :end', 'budget_in_period_breadcrumb' => 'Between :start and :end',
'clone_withdrawal' => 'Clone this withdrawal', 'clone_withdrawal' => 'Clone this withdrawal',
'clone_deposit' => 'Clone this deposit', 'clone_deposit' => 'Clone this deposit',
@ -962,6 +963,7 @@ return [
'split_this_transfer' => 'Split this transfer', 'split_this_transfer' => 'Split this transfer',
'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.', 'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.',
'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.', 'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.',
'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.',
'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.',
// import // import

View File

@ -20,6 +20,7 @@ return [
'everything' => 'Alles', 'everything' => 'Alles',
'customRange' => 'Zelf bereik kiezen', 'customRange' => 'Zelf bereik kiezen',
'apply' => 'Go', 'apply' => 'Go',
'select_date' => 'Selecteer periode..',
'cancel' => 'Annuleren', 'cancel' => 'Annuleren',
'from' => 'Van', 'from' => 'Van',
'to' => 'Tot', 'to' => 'Tot',
@ -112,8 +113,8 @@ return [
'budget_in_period' => 'Alle transacties voor budget ":name" tussen :start en :end', 'budget_in_period' => 'Alle transacties voor budget ":name" tussen :start en :end',
'chart_budget_in_period' => 'Grafiek voor alle transacties voor budget ":name" tussen :start en :end', 'chart_budget_in_period' => 'Grafiek voor alle transacties voor budget ":name" tussen :start en :end',
'chart_account_in_period' => 'Grafiek voor alle transacties voor rekening ":name" tussen :start en :end', 'chart_account_in_period' => 'Grafiek voor alle transacties voor rekening ":name" tussen :start en :end',
'chart_category_in_period' => 'Grafiek voor alle transacties voor categorie ":name" tussen :start en :end', 'chart_category_in_period' => 'Grafiek voor alle transacties voor categorie ":name" tussen :start en :end',
'chart_category_all' => 'Grafiek voor alle transacties voor categorie ":name"', 'chart_category_all' => 'Grafiek voor alle transacties voor categorie ":name"',
'budget_in_period_breadcrumb' => 'Tussen :start en :end', 'budget_in_period_breadcrumb' => 'Tussen :start en :end',
'clone_withdrawal' => 'Kopieer deze uitgave', 'clone_withdrawal' => 'Kopieer deze uitgave',
'clone_deposit' => 'Kopieer deze inkomsten', 'clone_deposit' => 'Kopieer deze inkomsten',
@ -962,6 +963,7 @@ return [
'split_this_transfer' => 'Splits deze overschrijving', 'split_this_transfer' => 'Splits deze overschrijving',
'cannot_edit_multiple_source' => 'Je kan transactie #:id met omschrijving ":description" niet splitsen, want deze bevat meerdere bronrekeningen.', 'cannot_edit_multiple_source' => 'Je kan transactie #:id met omschrijving ":description" niet splitsen, want deze bevat meerdere bronrekeningen.',
'cannot_edit_multiple_dest' => 'Je kan transactie #:id met omschrijving ":description" niet wijzigen, want deze bevat meerdere doelrekeningen.', 'cannot_edit_multiple_dest' => 'Je kan transactie #:id met omschrijving ":description" niet wijzigen, want deze bevat meerdere doelrekeningen.',
'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.',
'no_edit_multiple_left' => 'Je hebt geen geldige transacties geselecteerd.', 'no_edit_multiple_left' => 'Je hebt geen geldige transacties geselecteerd.',
// import // import

View File

@ -20,6 +20,7 @@ return [
'everything' => 'Wszystko', 'everything' => 'Wszystko',
'customRange' => 'Niestandardowy zakres', 'customRange' => 'Niestandardowy zakres',
'apply' => 'Zastosuj', 'apply' => 'Zastosuj',
'select_date' => 'Select date..',
'cancel' => 'Anuluj', 'cancel' => 'Anuluj',
'from' => 'Z', 'from' => 'Z',
'to' => 'Do', 'to' => 'Do',
@ -112,8 +113,8 @@ return [
'budget_in_period' => 'All transactions for budget ":name" between :start and :end', 'budget_in_period' => 'All transactions for budget ":name" between :start and :end',
'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end', 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end',
'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end', 'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end',
'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end',
'chart_category_all' => 'Chart for all transactions for category ":name"', 'chart_category_all' => 'Chart for all transactions for category ":name"',
'budget_in_period_breadcrumb' => 'Między :start i :end', 'budget_in_period_breadcrumb' => 'Między :start i :end',
'clone_withdrawal' => 'Zduplikuj tę wypłatę', 'clone_withdrawal' => 'Zduplikuj tę wypłatę',
'clone_deposit' => 'Zduplikuj tą wpłatę', 'clone_deposit' => 'Zduplikuj tą wpłatę',
@ -962,6 +963,7 @@ return [
'split_this_transfer' => 'Podziel ten transfer', 'split_this_transfer' => 'Podziel ten transfer',
'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.', 'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.',
'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.', 'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.',
'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.',
'no_edit_multiple_left' => 'Nie wybrałeś żadnych poprawnych transakcji do edycji.', 'no_edit_multiple_left' => 'Nie wybrałeś żadnych poprawnych transakcji do edycji.',
// import // import

View File

@ -20,14 +20,15 @@ return [
'everything' => 'Tudo', 'everything' => 'Tudo',
'customRange' => 'Intervalo Personalizado', 'customRange' => 'Intervalo Personalizado',
'apply' => 'Aplicar', 'apply' => 'Aplicar',
'select_date' => 'Select date..',
'cancel' => 'Cancelar', 'cancel' => 'Cancelar',
'from' => 'De', 'from' => 'De',
'to' => 'Até', 'to' => 'Até',
'showEverything' => 'Mostrar tudo', 'showEverything' => 'Mostrar tudo',
'never' => 'Nunca', 'never' => 'Nunca',
'search_results_for' => 'Pesquisar resultados por ":query"', 'search_results_for' => 'Pesquisar resultados por ":query"',
'advanced_search' => 'Advanced search', 'advanced_search' => 'Busca avançada',
'advanced_search_intro' => 'There are several modifiers that you can use in your search to narrow down the results. If you use any of these, the search will <em>only</em> return transactions. Please click the <i class="fa fa-question-circle"></i>-icon for more information.', 'advanced_search_intro' => 'Existem vários modificadores que você pode usar em sua busca para limitar os resultados. Se você usar qualquer um destes, a busca vai <em>apenas</em> transações de retorno. Por favor, clique no <i class="fa fa-question-circle"></i>-ícone para obter mais informações.',
'bounced_error' => 'A mensagem enviado para :email ressaltado, não tem acesso para você.', 'bounced_error' => 'A mensagem enviado para :email ressaltado, não tem acesso para você.',
'deleted_error' => 'Estas credenciais não correspondem aos nossos registros.', 'deleted_error' => 'Estas credenciais não correspondem aos nossos registros.',
'general_blocked_error' => 'Sua conta foi desativada, você não pode entrar.', 'general_blocked_error' => 'Sua conta foi desativada, você não pode entrar.',
@ -69,12 +70,12 @@ return [
'warning_much_data' => ':days dias de dados podem demorar um pouco para carregar.', 'warning_much_data' => ':days dias de dados podem demorar um pouco para carregar.',
'registered' => 'Você se registrou com sucesso!', 'registered' => 'Você se registrou com sucesso!',
'search' => 'Pesquisa', 'search' => 'Pesquisa',
'search_found_accounts' => 'Found :count account(s) for your query.', 'search_found_accounts' => 'Encontrado: contar conta (s) para sua consulta.',
'search_found_categories' => 'Found :count category(ies) for your query.', 'search_found_categories' => 'Encontrado: contar categoria(s) para sua consulta.',
'search_found_budgets' => 'Found :count budget(s) for your query.', 'search_found_budgets' => 'Encontrado: contagem despesa(s) para a sua consulta.',
'search_found_tags' => 'Found :count tag(s) for your query.', 'search_found_tags' => 'Encontrado: contar Tag (s) para sua consulta.',
'search_found_transactions' => 'Found :count transaction(s) for your query.', 'search_found_transactions' => 'Encontrado: contagem de transação para a sua consulta.',
'results_limited' => 'The results are limited to :count entries.', 'results_limited' => 'Os resultados são limitados a: contar as entradas.',
'tagbalancingAct' => 'Saldo', 'tagbalancingAct' => 'Saldo',
'tagadvancePayment' => 'Pagamento antecipado', 'tagadvancePayment' => 'Pagamento antecipado',
'tagnothing' => '', 'tagnothing' => '',
@ -112,8 +113,8 @@ return [
'budget_in_period' => 'All transactions for budget ":name" between :start and :end', 'budget_in_period' => 'All transactions for budget ":name" between :start and :end',
'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end', 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end',
'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end', 'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end',
'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end',
'chart_category_all' => 'Chart for all transactions for category ":name"', 'chart_category_all' => 'Chart for all transactions for category ":name"',
'budget_in_period_breadcrumb' => 'Between :start and :end', 'budget_in_period_breadcrumb' => 'Between :start and :end',
'clone_withdrawal' => 'Clone this withdrawal', 'clone_withdrawal' => 'Clone this withdrawal',
'clone_deposit' => 'Clone this deposit', 'clone_deposit' => 'Clone this deposit',
@ -962,6 +963,7 @@ return [
'split_this_transfer' => 'Dividir essa transferência', 'split_this_transfer' => 'Dividir essa transferência',
'cannot_edit_multiple_source' => 'Você não pode editar transações parceladas #:id com a descrição ":description" porque ele contém várias contas de origem.', 'cannot_edit_multiple_source' => 'Você não pode editar transações parceladas #:id com a descrição ":description" porque ele contém várias contas de origem.',
'cannot_edit_multiple_dest' => 'Você não pode editar transações parceladas #:id com a descrição ":description" porque ele contém várias contas de destino.', 'cannot_edit_multiple_dest' => 'Você não pode editar transações parceladas #:id com a descrição ":description" porque ele contém várias contas de destino.',
'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.',
'no_edit_multiple_left' => 'Você não selecionou nenhuma transação válida para editar.', 'no_edit_multiple_left' => 'Você não selecionou nenhuma transação válida para editar.',
// import // import

View File

@ -11,7 +11,7 @@
*/ */
return [ return [
'home' => 'Domov', 'home' => 'Prva stran',
'edit_currency' => 'uredi valuto ":name"', 'edit_currency' => 'uredi valuto ":name"',
'delete_currency' => 'izbriši valuto ":name"', 'delete_currency' => 'izbriši valuto ":name"',
'newPiggyBank' => 'ustvari novega pujska', 'newPiggyBank' => 'ustvari novega pujska',
@ -19,10 +19,10 @@ return [
'preferences' => 'nastavitve', 'preferences' => 'nastavitve',
'profile' => 'profil', 'profile' => 'profil',
'changePassword' => 'spremeni geslo', 'changePassword' => 'spremeni geslo',
'bills' => 'Bills', 'bills' => 'Trajniki',
'newBill' => 'New bill', 'newBill' => 'nov trajnik',
'edit_bill' => 'Edit bill ":name"', 'edit_bill' => 'uredi trajnik ":name"',
'delete_bill' => 'Delete bill ":name"', 'delete_bill' => 'izbriši trajnik ":name"',
'reports' => 'Poročila', 'reports' => 'Poročila',
'searchResult' => 'rezultati iskanja za ":query"', 'searchResult' => 'rezultati iskanja za ":query"',
'withdrawal_list' => 'stroški', 'withdrawal_list' => 'stroški',

View File

@ -20,7 +20,7 @@ return [
'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.', '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.',
'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.', '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.',
'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.', '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.',
'upload_not_writeable' => 'The grey box contains a file path. It should be writeable. Please make sure it is.', 'upload_not_writeable' => 'Prosim zagotovite, da ima Firefly dovoljenje za pisanje v datoteko, ki je navedena v sivem okvirčku.',
// roles // roles
'column_roles_title' => 'doličite pomen stolpcev', 'column_roles_title' => 'doličite pomen stolpcev',
@ -34,10 +34,10 @@ return [
'store_column_roles' => 'nadaljuj z uvozom', 'store_column_roles' => 'nadaljuj z uvozom',
'do_not_map' => '(ne poveži)', 'do_not_map' => '(ne poveži)',
'map_title' => 'poveži podatke za uvoz s podatki iz Firefly III', 'map_title' => 'poveži podatke za uvoz s podatki iz Firefly III',
'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_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.',
'field_value' => 'Field value', 'field_value' => 'podatek',
'field_mapped_to' => 'Mapped to', 'field_mapped_to' => 'povezan z',
'store_column_mapping' => 'shrani nastavitve', 'store_column_mapping' => 'shrani nastavitve',
// map things. // map things.
@ -49,8 +49,8 @@ return [
'column_account-name' => 'premoženjski račun (ime)', 'column_account-name' => 'premoženjski račun (ime)',
'column_amount' => 'znesek', 'column_amount' => 'znesek',
'column_amount-comma-separated' => 'znesek (z decimalno vejico)', 'column_amount-comma-separated' => 'znesek (z decimalno vejico)',
'column_bill-id' => 'Bill ID (matching Firefly)', 'column_bill-id' => 'ID trajnika (Firefly)',
'column_bill-name' => 'Bill name', 'column_bill-name' => 'Ime trajnika',
'column_budget-id' => 'ID bugžeta (Firefly)', 'column_budget-id' => 'ID bugžeta (Firefly)',
'column_budget-name' => 'ime budžeta', 'column_budget-name' => 'ime budžeta',
'column_category-id' => 'ID Kategorije (Firefly)', 'column_category-id' => 'ID Kategorije (Firefly)',
@ -59,7 +59,7 @@ return [
'column_currency-id' => 'ID valute (Firefly)', 'column_currency-id' => 'ID valute (Firefly)',
'column_currency-name' => 'ime valute (Firefly)', 'column_currency-name' => 'ime valute (Firefly)',
'column_currency-symbol' => 'simbol valute (Firefly)', 'column_currency-symbol' => 'simbol valute (Firefly)',
'column_date-interest' => 'Interest calculation date', 'column_date-interest' => 'Datum obračuna obresti',
'column_date-book' => 'datum knjiženja transakcije', 'column_date-book' => 'datum knjiženja transakcije',
'column_date-process' => 'datum izvedbe transakcije', 'column_date-process' => 'datum izvedbe transakcije',
'column_date-transaction' => 'datum', 'column_date-transaction' => 'datum',
@ -68,11 +68,11 @@ return [
'column_opposing-id' => 'protiračun (firefly)', 'column_opposing-id' => 'protiračun (firefly)',
'column_external-id' => 'zunanja ID številka', 'column_external-id' => 'zunanja ID številka',
'column_opposing-name' => 'ime ciljnega računa', 'column_opposing-name' => 'ime ciljnega računa',
'column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator', 'column_rabo-debet-credit' => 'Poseben indikator za Rabobank',
'column_ing-debet-credit' => 'ING specific debet/credit indicator', 'column_ing-debet-credit' => 'Poseben indikator za banko ING',
'column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID', 'column_sepa-ct-id' => 'SEPA številka transakcije',
'column_sepa-ct-op' => 'SEPA Credit Transfer opposing account', 'column_sepa-ct-op' => 'SEPA protiračun',
'column_sepa-db' => 'SEPA Direct Debet', 'column_sepa-db' => 'SEPA direktna obremenitev',
'column_tags-comma' => 'značke (ločene z vejicami)', 'column_tags-comma' => 'značke (ločene z vejicami)',
'column_tags-space' => 'značke (ločene s presledki)', 'column_tags-space' => 'značke (ločene s presledki)',
'column_account-number' => 'premoženjski račun (številka računa)', 'column_account-number' => 'premoženjski račun (številka računa)',

View File

@ -20,6 +20,7 @@ return [
'everything' => 'vse', 'everything' => 'vse',
'customRange' => 'obseg po meri', 'customRange' => 'obseg po meri',
'apply' => 'uporabi', 'apply' => 'uporabi',
'select_date' => 'Select date..',
'cancel' => 'prekliči', 'cancel' => 'prekliči',
'from' => 'From', 'from' => 'From',
'to' => 'To', 'to' => 'To',
@ -112,8 +113,8 @@ return [
'budget_in_period' => 'All transactions for budget ":name" between :start and :end', 'budget_in_period' => 'All transactions for budget ":name" between :start and :end',
'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end', 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end',
'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end', 'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end',
'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end',
'chart_category_all' => 'Chart for all transactions for category ":name"', 'chart_category_all' => 'Chart for all transactions for category ":name"',
'budget_in_period_breadcrumb' => 'Between :start and :end', 'budget_in_period_breadcrumb' => 'Between :start and :end',
'clone_withdrawal' => 'Clone this withdrawal', 'clone_withdrawal' => 'Clone this withdrawal',
'clone_deposit' => 'Clone this deposit', 'clone_deposit' => 'Clone this deposit',
@ -962,6 +963,7 @@ return [
'split_this_transfer' => 'Split this transfer', 'split_this_transfer' => 'Split this transfer',
'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.', 'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.',
'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.', 'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.',
'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.',
'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.',
// import // import

View File

@ -12,7 +12,7 @@
return [ return [
// new user: // new user:
'bank_name' => 'Bank name', 'bank_name' => 'Naziv banke',
'bank_balance' => 'Balance', 'bank_balance' => 'Balance',
'savings_balance' => 'Savings balance', 'savings_balance' => 'Savings balance',
'credit_card_limit' => 'Credit card limit', 'credit_card_limit' => 'Credit card limit',

View File

@ -12,7 +12,7 @@
return [ return [
// tour! // tour!
'main-content-title' => 'Welcome to Firefly III', '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.', '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-title' => 'Sidebar to create stuff',
'sidebar-toggle-text' => 'Hidden under the plus icon are all the buttons to create new stuff. Accounts, transactions, everything!', 'sidebar-toggle-text' => 'Hidden under the plus icon are all the buttons to create new stuff. Accounts, transactions, everything!',

View File

@ -10,80 +10,80 @@
*/ */
return [ return [
'buttons' => 'Buttons', 'buttons' => 'Gumbi',
'icon' => 'Icon', 'icon' => 'Ikona',
'id' => 'ID', 'id' => 'ID',
'create_date' => 'Created at', 'create_date' => 'Ustvarjeno',
'update_date' => 'Updated at', 'update_date' => 'Posodobljeno',
'balance_before' => 'Balance before', 'balance_before' => 'Stanje prej',
'balance_after' => 'Balance after', 'balance_after' => 'Stanje potem',
'name' => 'Name', 'name' => 'ime',
'role' => 'Role', 'role' => 'vloga',
'currentBalance' => 'Current balance', 'currentBalance' => 'trenutno stanje',
'active' => 'Is active?', 'active' => 'Aktiviran?',
'lastActivity' => 'Last activity', 'lastActivity' => 'zadnja aktivnost',
'balanceDiff' => 'Balance difference between :start and :end', 'balanceDiff' => 'Razlika stanja med :start in :end',
'matchedOn' => 'Matched on', 'matchedOn' => 'Povezano',
'matchesOn' => 'Matched on', 'matchesOn' => 'Povezano',
'account_type' => 'Account type', 'account_type' => 'vrsta računa',
'created_at' => 'Created at', 'created_at' => 'ustvarjeno',
'new_balance' => 'New balance', 'new_balance' => 'novo stanje',
'account' => 'Account', 'account' => 'račun',
'matchingAmount' => 'Amount', 'matchingAmount' => 'znesek',
'lastMatch' => 'Last match', 'lastMatch' => 'Nazadnje povezano',
'split_number' => 'Split #', 'split_number' => 'Delitev #',
'destination' => 'Destination', 'destination' => 'Ciljni račun',
'source' => 'Source', 'source' => 'Izvor',
'next_expected_match' => 'Next expected match', 'next_expected_match' => 'Naslenje pričakovano ujemanje',
'automatch' => 'Auto match?', 'automatch' => 'Samodejno poveži?',
'repeat_freq' => 'Repeats', 'repeat_freq' => 'Ponovitev',
'description' => 'Description', 'description' => 'Opis',
'amount' => 'Amount', 'amount' => 'Znesek',
'internal_reference' => 'Internal reference', 'internal_reference' => 'Notranji sklic',
'date' => 'Date', 'date' => 'datum',
'interest_date' => 'Interest date', 'interest_date' => 'datum obresti',
'book_date' => 'Book date', 'book_date' => 'datum knjiženja',
'process_date' => 'Processing date', 'process_date' => 'datum izvedbe',
'due_date' => 'Due date', 'due_date' => 'rok plačila',
'payment_date' => 'Payment date', 'payment_date' => 'Datum plačila',
'invoice_date' => 'Invoice date', 'invoice_date' => 'datum računa',
'interal_reference' => 'Internal reference', 'interal_reference' => 'Notranji sklic',
'notes' => 'Notes', 'notes' => 'Zabeležke',
'from' => 'From', 'from' => 'Pošiljatelj',
'piggy_bank' => 'Piggy bank', 'piggy_bank' => 'Pujsek',
'to' => 'To', 'to' => 'Prejemnik',
'budget' => 'Budget', 'budget' => 'Budžet',
'category' => 'Category', 'category' => 'Kategorija',
'bill' => 'Bill', 'bill' => 'Trajnik',
'withdrawal' => 'Withdrawal', 'withdrawal' => 'Odhodek',
'deposit' => 'Deposit', 'deposit' => 'Prihodek',
'transfer' => 'Transfer', 'transfer' => 'Prenos',
'type' => 'Type', 'type' => 'Vrsta',
'completed' => 'Completed', 'completed' => 'Dokončano',
'iban' => 'IBAN', 'iban' => 'IBAN',
'paid_current_period' => 'Paid this period', 'paid_current_period' => 'Plačano v tem obdobju',
'email' => 'Email', 'email' => 'E-pošta',
'registered_at' => 'Registered at', 'registered_at' => 'Registriran pri',
'is_activated' => 'Is activated', 'is_activated' => 'Je aktiviran',
'is_blocked' => 'Is blocked', 'is_blocked' => 'Je blokiran',
'is_admin' => 'Is admin', 'is_admin' => 'Je administrator',
'has_two_factor' => 'Has 2FA', 'has_two_factor' => 'Ima dvostopenjsko overovitev',
'confirmed_from' => 'Confirmed from', 'confirmed_from' => 'Potrjen od',
'registered_from' => 'Registered from', 'registered_from' => 'Registriran',
'blocked_code' => 'Block code', 'blocked_code' => 'Koda vzroka blokade',
'domain' => 'Domain', 'domain' => 'Domena',
'registration_attempts' => 'Registration attempts', 'registration_attempts' => 'Poskusov registriranja',
'source_account' => 'Source account', 'source_account' => 'Izvorni račun',
'destination_account' => 'Destination account', 'destination_account' => 'Ciljni račun',
'accounts_count' => 'Number of accounts', 'accounts_count' => 'Število računov',
'journals_count' => 'Number of transactions', 'journals_count' => 'Število transakcij',
'attachments_count' => 'Number of attachments', 'attachments_count' => 'Število prilog',
'bills_count' => 'Number of bills', 'bills_count' => 'Število trajnikov',
'categories_count' => 'Number of categories', 'categories_count' => 'Število kategorij',
'export_jobs_count' => 'Number of export jobs', 'export_jobs_count' => 'Število izvozov',
'import_jobs_count' => 'Number of import jobs', 'import_jobs_count' => 'Število uvozov',
'budget_count' => 'Number of budgets', 'budget_count' => 'Število budžetov',
'rule_and_groups_count' => 'Number of rules and rule groups', 'rule_and_groups_count' => 'Število pravil in skupin pravil',
'tags_count' => 'Number of tags', 'tags_count' => 'Število značk',
]; ];

View File

@ -11,7 +11,7 @@
return [ return [
'previous' => '&laquo; Previous', 'previous' => '&laquo; Prejšnja stran',
'next' => 'Next &raquo;', 'next' => 'Naslednja stran &raquo;',
]; ];

View File

@ -12,8 +12,8 @@
return [ return [
'iban' => 'To ni veljaven IBAN.', 'iban' => 'To ni veljaven IBAN.',
'unique_account_number_for_user' => 'Kaže, da je ta številka računa že v uporabi.', 'unique_account_number_for_user' => 'Kaže, da je ta številka računa že v uporabi.',
'deleted_user' => 'Due to security constraints, you cannot register using this email address.', 'deleted_user' => 'Iz varnostnih razlogov ne morete ustvariti uporabnika s takim e-poštnim naslovom.',
'rule_trigger_value' => 'This value is invalid for the selected trigger.', 'rule_trigger_value' => 'Ta vrednost je neveljavna za izbrani sprožilec.',
'rule_action_value' => 'This value is invalid for the selected action.', 'rule_action_value' => 'This value is invalid for the selected action.',
'invalid_domain' => 'Due to security constraints, you cannot register from this domain.', 'invalid_domain' => 'Due to security constraints, you cannot register from this domain.',
'file_already_attached' => 'Uploaded file ":name" is already attached to this object.', 'file_already_attached' => 'Uploaded file ":name" is already attached to this object.',

View File

@ -20,6 +20,7 @@ return [
'everything' => '顯示所有', 'everything' => '顯示所有',
'customRange' => '自訂範圍', 'customRange' => '自訂範圍',
'apply' => '套用', 'apply' => '套用',
'select_date' => 'Select date..',
'cancel' => '取消', 'cancel' => '取消',
'from' => '從', 'from' => '從',
'to' => '到', 'to' => '到',
@ -112,8 +113,8 @@ return [
'budget_in_period' => 'All transactions for budget ":name" between :start and :end', 'budget_in_period' => 'All transactions for budget ":name" between :start and :end',
'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end', 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end',
'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end', 'chart_account_in_period' => 'Chart for all transactions for account ":name" between :start and :end',
'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end',
'chart_category_all' => 'Chart for all transactions for category ":name"', 'chart_category_all' => 'Chart for all transactions for category ":name"',
'budget_in_period_breadcrumb' => 'Between :start and :end', 'budget_in_period_breadcrumb' => 'Between :start and :end',
'clone_withdrawal' => 'Clone this withdrawal', 'clone_withdrawal' => 'Clone this withdrawal',
'clone_deposit' => 'Clone this deposit', 'clone_deposit' => 'Clone this deposit',
@ -962,6 +963,7 @@ return [
'split_this_transfer' => 'Split this transfer', 'split_this_transfer' => 'Split this transfer',
'cannot_edit_multiple_source' => '你不能修改描述為 ":description" 的分割交易 #:id 因為他有多個來源帳號。', 'cannot_edit_multiple_source' => '你不能修改描述為 ":description" 的分割交易 #:id 因為他有多個來源帳號。',
'cannot_edit_multiple_dest' => '你不能修改描述為 ":description" 的分割交易 #:id 因為他有多個目標帳號。', 'cannot_edit_multiple_dest' => '你不能修改描述為 ":description" 的分割交易 #:id 因為他有多個目標帳號。',
'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.',
'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.',
// import // import