mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Update language fields.
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
parent
5310ccebbe
commit
96caace068
@ -1,9 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* config.php
|
||||||
|
* Copyright (C) 2016 Sander Dorigo
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'locale' => 'fr, French, fr_FR, fr_FR.utf8',
|
'locale' => 'fr, French, fr_FR, fr_FR.utf8',
|
||||||
'month' => '%B %Y',
|
'month' => '%B %Y',
|
||||||
'month_and_day' => '%e %B %Y',
|
'month_and_day' => '%e %B %Y',
|
||||||
|
'date_time' => '%B %e, %Y, @ %T',
|
||||||
'specific_day' => '%e %B %Y',
|
'specific_day' => '%e %B %Y',
|
||||||
'week_in_year' => 'Week %W, %Y',
|
'week_in_year' => 'Week %W, %Y',
|
||||||
'quarter_of_year' => '%B %Y',
|
'quarter_of_year' => '%B %Y',
|
||||||
|
@ -44,6 +44,7 @@ return [
|
|||||||
'flash_error' => 'Error!',
|
'flash_error' => 'Error!',
|
||||||
'flash_info_multiple' => 'There is one message|There are :count messages',
|
'flash_info_multiple' => 'There is one message|There are :count messages',
|
||||||
'flash_error_multiple' => 'There is one error|There are :count errors',
|
'flash_error_multiple' => 'There is one error|There are :count errors',
|
||||||
|
'net_worth' => 'Net worth',
|
||||||
|
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
@ -57,6 +58,7 @@ return [
|
|||||||
'include_config_help' => 'For easy re-import into Firefly III',
|
'include_config_help' => 'For easy re-import into Firefly III',
|
||||||
'include_old_uploads_help' => 'Firefly III does not throw away the original CSV files you have imported in the past. You can include them in your export.',
|
'include_old_uploads_help' => 'Firefly III does not throw away the original CSV files you have imported in the past. You can include them in your export.',
|
||||||
'do_export' => 'Export',
|
'do_export' => 'Export',
|
||||||
|
'export_status_never_started' => 'The export has not started yet',
|
||||||
'export_status_make_exporter' => 'Creating exporter thing...',
|
'export_status_make_exporter' => 'Creating exporter thing...',
|
||||||
'export_status_collecting_journals' => 'Collecting your transactions...',
|
'export_status_collecting_journals' => 'Collecting your transactions...',
|
||||||
'export_status_collected_journals' => 'Collected your transactions!',
|
'export_status_collected_journals' => 'Collected your transactions!',
|
||||||
@ -123,8 +125,22 @@ return [
|
|||||||
'stop_executing_other_actions' => 'Stop executing other actions',
|
'stop_executing_other_actions' => 'Stop executing other actions',
|
||||||
'add_rule_action' => 'Add new action',
|
'add_rule_action' => 'Add new action',
|
||||||
'edit_rule' => 'Edit rule ":title"',
|
'edit_rule' => 'Edit rule ":title"',
|
||||||
|
'delete_rule' => 'Delete rule ":title"',
|
||||||
'update_rule' => 'Update rule',
|
'update_rule' => 'Update rule',
|
||||||
|
|
||||||
|
'test_rule_triggers' => 'See matching transactions',
|
||||||
|
'warning_transaction_subset' => 'For performance reasons this list is limited to :max_num_transactions and may only show a subset of matching transactions',
|
||||||
|
'warning_no_matching_transactions' => 'No matching transactions found. Please note that for performance reasons, only the last :num_transactions transactions have been checked.',
|
||||||
|
'warning_no_valid_triggers' => 'No valid triggers provided.',
|
||||||
|
|
||||||
|
'execute_on_existing_transactions' => 'Execute for existing transactions',
|
||||||
|
'execute_on_existing_transactions_intro' => 'When a rule or group has been changed or added, you can execute it for existing transactions',
|
||||||
|
'execute_on_existing_transactions_short' => 'Existing transactions',
|
||||||
|
'executed_group_on_existing_transactions' => 'Executed group ":title" for existing transactions',
|
||||||
|
'execute_group_on_existing_transactions' => 'Execute group ":title" for existing transactions',
|
||||||
|
'include_transactions_from_accounts' => 'Include transactions from these accounts',
|
||||||
|
'execute' => 'Execute',
|
||||||
|
|
||||||
// actions and triggers
|
// actions and triggers
|
||||||
'rule_trigger_user_action' => 'User action is ":trigger_value"',
|
'rule_trigger_user_action' => 'User action is ":trigger_value"',
|
||||||
'rule_trigger_from_account_starts' => 'Source account starts with ":trigger_value"',
|
'rule_trigger_from_account_starts' => 'Source account starts with ":trigger_value"',
|
||||||
@ -214,6 +230,13 @@ return [
|
|||||||
'pref_two_factor_auth' => '2-step verification',
|
'pref_two_factor_auth' => '2-step verification',
|
||||||
'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.',
|
'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.',
|
||||||
'pref_enable_two_factor_auth' => 'Enable 2-step verification',
|
'pref_enable_two_factor_auth' => 'Enable 2-step verification',
|
||||||
|
'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled',
|
||||||
|
'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!',
|
||||||
|
'pref_two_factor_auth_code' => 'Verify code',
|
||||||
|
'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.',
|
||||||
|
'pref_two_factor_auth_reset_code' => 'Reset verification code',
|
||||||
|
'pref_two_factor_auth_remove_code' => 'Remove verification code',
|
||||||
|
'pref_two_factor_auth_remove_will_disable' => '(this will also disable two-factor authentication)',
|
||||||
'pref_save_settings' => 'Save settings',
|
'pref_save_settings' => 'Save settings',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
@ -328,11 +351,14 @@ return [
|
|||||||
'csv_column_opposing-id' => 'Opposing account ID (matching Firefly)',
|
'csv_column_opposing-id' => 'Opposing account ID (matching Firefly)',
|
||||||
'csv_column_opposing-name' => 'Opposing account (name)',
|
'csv_column_opposing-name' => 'Opposing account (name)',
|
||||||
'csv_column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator',
|
'csv_column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator',
|
||||||
|
'csv_column_ing-debet-credit' => 'ING specific debet/credit indicator',
|
||||||
'csv_column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID',
|
'csv_column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID',
|
||||||
'csv_column_sepa-ct-op' => 'SEPA Credit Transfer opposing account',
|
'csv_column_sepa-ct-op' => 'SEPA Credit Transfer opposing account',
|
||||||
'csv_column_sepa-db' => 'SEPA Direct Debet',
|
'csv_column_sepa-db' => 'SEPA Direct Debet',
|
||||||
'csv_column_tags-comma' => 'Tags (comma separated)',
|
'csv_column_tags-comma' => 'Tags (comma separated)',
|
||||||
'csv_column_tags-space' => 'Tags (space separated)',
|
'csv_column_tags-space' => 'Tags (space separated)',
|
||||||
|
'csv_column_account-number' => 'Asset account (account number)',
|
||||||
|
'csv_column_opposing-number' => 'Opposing account (account number)',
|
||||||
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
||||||
'csv_specifix_AbnAmroDescription' => 'Select this when you\'re importing ABN AMRO CSV export files.',
|
'csv_specifix_AbnAmroDescription' => 'Select this when you\'re importing ABN AMRO CSV export files.',
|
||||||
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
||||||
@ -525,6 +551,7 @@ return [
|
|||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Default financial report for :start until :end',
|
'report_default' => 'Default financial report for :start until :end',
|
||||||
|
'report_audit' => 'Transaction history overview for :start until :end',
|
||||||
'quick_link_reports' => 'Quick links',
|
'quick_link_reports' => 'Quick links',
|
||||||
'quick_link_default_report' => 'Default financial report',
|
'quick_link_default_report' => 'Default financial report',
|
||||||
'report_this_month_quick' => 'Current month, all accounts',
|
'report_this_month_quick' => 'Current month, all accounts',
|
||||||
@ -567,6 +594,7 @@ return [
|
|||||||
'categories_spent_in_year' => 'Categories (by spendings)',
|
'categories_spent_in_year' => 'Categories (by spendings)',
|
||||||
'report_type' => 'Report type',
|
'report_type' => 'Report type',
|
||||||
'report_type_default' => 'Default financial report',
|
'report_type_default' => 'Default financial report',
|
||||||
|
'report_type_audit' => 'Transaction history overview (audit)',
|
||||||
'report_included_accounts' => 'Included accounts',
|
'report_included_accounts' => 'Included accounts',
|
||||||
'report_date_range' => 'Date range',
|
'report_date_range' => 'Date range',
|
||||||
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
||||||
|
@ -47,6 +47,7 @@ return [
|
|||||||
'symbol' => 'Symbol',
|
'symbol' => 'Symbol',
|
||||||
'code' => 'Code',
|
'code' => 'Code',
|
||||||
'iban' => 'IBAN',
|
'iban' => 'IBAN',
|
||||||
|
'accountNumber' => 'Account number',
|
||||||
'csv' => 'CSV file',
|
'csv' => 'CSV file',
|
||||||
'has_headers' => 'Headers',
|
'has_headers' => 'Headers',
|
||||||
'date_format' => 'Date format',
|
'date_format' => 'Date format',
|
||||||
@ -70,8 +71,10 @@ return [
|
|||||||
'size' => 'Size',
|
'size' => 'Size',
|
||||||
'trigger' => 'Trigger',
|
'trigger' => 'Trigger',
|
||||||
'stop_processing' => 'Stop processing',
|
'stop_processing' => 'Stop processing',
|
||||||
'start_date' => 'Start of export range',
|
'start_date' => 'Start of range',
|
||||||
'end_date' => 'End of export range',
|
'end_date' => 'End of range',
|
||||||
|
'export_start_range' => 'Start of export range',
|
||||||
|
'export_end_range' => 'End of export range',
|
||||||
'export_format' => 'File format',
|
'export_format' => 'File format',
|
||||||
'include_attachments' => 'Include uploaded attachments',
|
'include_attachments' => 'Include uploaded attachments',
|
||||||
'include_config' => 'Include configuration file',
|
'include_config' => 'Include configuration file',
|
||||||
|
@ -19,11 +19,11 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'password' => 'Le mot de passe doit contenir au moins 6 caractères et correspondre à la confirmation.',
|
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||||
'user' => 'Aucun utilisateur avec cette addresse email.',
|
'user' => 'We can\'t find a user with that e-mail address.',
|
||||||
'token' => 'Le jeton de réinitialisation de mot de passe est invalide.',
|
'token' => 'This password reset token is invalid.',
|
||||||
'sent' => 'Nous avons envoyé votre lien de réinitialisation de mot de passe!',
|
'sent' => 'We have e-mailed your password reset link!',
|
||||||
'reset' => 'Le mot de passe a été réinitialisé!',
|
'reset' => 'Your password has been reset!',
|
||||||
'blocked' => 'Nice try though.',
|
'blocked' => 'Nice try though.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
'iban' => 'This is not a valid IBAN.',
|
||||||
|
'unique_account_number_for_user' => 'It looks like this account number is already in use.',
|
||||||
'rule_trigger_value' => 'This value is invalid for the selected trigger.',
|
'rule_trigger_value' => 'This value is invalid for the selected trigger.',
|
||||||
'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.',
|
||||||
@ -66,4 +68,5 @@ return [
|
|||||||
'string' => 'Le champ :attribute doit être une chaîne de caractères.',
|
'string' => 'Le champ :attribute doit être une chaîne de caractères.',
|
||||||
'url' => 'Le format de l\'URL de :attribute n\'est pas valide.',
|
'url' => 'Le format de l\'URL de :attribute n\'est pas valide.',
|
||||||
'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.',
|
'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.',
|
||||||
|
'2fa_code' => 'The :attribute field is invalid.',
|
||||||
];
|
];
|
||||||
|
@ -1,9 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* config.php
|
||||||
|
* Copyright (C) 2016 Sander Dorigo
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'locale' => 'nl, Dutch, nl_NL, nl_NL.utf8',
|
'locale' => 'nl, Dutch, nl_NL, nl_NL.utf8',
|
||||||
'month' => '%B %Y',
|
'month' => '%B %Y',
|
||||||
'month_and_day' => '%e %B %Y',
|
'month_and_day' => '%e %B %Y',
|
||||||
|
'date_time' => '%e %B %Y, @ %T',
|
||||||
'specific_day' => '%e %B %Y',
|
'specific_day' => '%e %B %Y',
|
||||||
'week_in_year' => 'week %W, %Y',
|
'week_in_year' => 'week %W, %Y',
|
||||||
'quarter_of_year' => '%B %Y',
|
'quarter_of_year' => '%B %Y',
|
||||||
|
@ -58,6 +58,7 @@ return [
|
|||||||
'include_config_help' => 'Voor het makkelijk opnieuw importeren in Firefly III',
|
'include_config_help' => 'Voor het makkelijk opnieuw importeren in Firefly III',
|
||||||
'include_old_uploads_help' => 'Firefly III gooit je oude geïmporteerde CSV bestanden niet weg. Je kan ze meenemen in je exportbestand.',
|
'include_old_uploads_help' => 'Firefly III gooit je oude geïmporteerde CSV bestanden niet weg. Je kan ze meenemen in je exportbestand.',
|
||||||
'do_export' => 'Exporteren',
|
'do_export' => 'Exporteren',
|
||||||
|
'export_status_never_started' => 'Het exporteren is nog niet begonnen',
|
||||||
'export_status_make_exporter' => 'Exporteerding maken...',
|
'export_status_make_exporter' => 'Exporteerding maken...',
|
||||||
'export_status_collecting_journals' => 'Overboekingen verzamelen...',
|
'export_status_collecting_journals' => 'Overboekingen verzamelen...',
|
||||||
'export_status_collected_journals' => 'Overboekingen verzameld!',
|
'export_status_collected_journals' => 'Overboekingen verzameld!',
|
||||||
@ -132,10 +133,11 @@ return [
|
|||||||
'warning_no_matching_transactions' => 'Niks gevonden in je laatste :num_transactions transacties.',
|
'warning_no_matching_transactions' => 'Niks gevonden in je laatste :num_transactions transacties.',
|
||||||
'warning_no_valid_triggers' => 'Geen geldige triggers gevonden.',
|
'warning_no_valid_triggers' => 'Geen geldige triggers gevonden.',
|
||||||
|
|
||||||
'execute_on_existing_transactions' => 'Uitvoeren op bestaande transacties',
|
'execute_on_existing_transactions' => 'Toepassen op bestaande transacties',
|
||||||
'execute_on_existing_transactions_intro' => 'Wanneer een regel of groep is veranderd of toegevoegd, kun je hem hier uitvoeren voor bestaande transacties.',
|
'execute_on_existing_transactions_intro' => 'Wanneer een regel of groep is veranderd of toegevoegd, kun je hem hier uitvoeren voor bestaande transacties',
|
||||||
'execute_on_existing_transactions_short' => 'Bestaande transacties',
|
'execute_on_existing_transactions_short' => 'Bestaande transacties',
|
||||||
'executed_group_on_existing_transactions' => 'Groep :title is uitgevoerd op bestaande transacties',
|
'executed_group_on_existing_transactions' => 'Regelgroep ":title" is uitgevoerd op bestaande transacties',
|
||||||
|
'execute_group_on_existing_transactions' => 'Regelgroep uitvoeren op bestaande transacties',
|
||||||
'include_transactions_from_accounts' => 'Gebruik transacties van deze rekeningen',
|
'include_transactions_from_accounts' => 'Gebruik transacties van deze rekeningen',
|
||||||
'execute' => 'Uitvoeren',
|
'execute' => 'Uitvoeren',
|
||||||
|
|
||||||
@ -228,9 +230,13 @@ return [
|
|||||||
'pref_two_factor_auth' => 'Authenticatie in twee stappen',
|
'pref_two_factor_auth' => 'Authenticatie in twee stappen',
|
||||||
'pref_two_factor_auth_help' => 'Als je authenticatie in twee stappen (ook wel twee-factor authenticatie genoemd) inschakelt voeg je een extra beveiligingslaag toe aan je account. Je logt in met iets dat je weet (je wachtwoord) en iets dat je hebt (een verificatiecode). Verificatiecodes worden gegeneerd door apps op je telefoon, zoals Authy en Google Authenticator.',
|
'pref_two_factor_auth_help' => 'Als je authenticatie in twee stappen (ook wel twee-factor authenticatie genoemd) inschakelt voeg je een extra beveiligingslaag toe aan je account. Je logt in met iets dat je weet (je wachtwoord) en iets dat je hebt (een verificatiecode). Verificatiecodes worden gegeneerd door apps op je telefoon, zoals Authy en Google Authenticator.',
|
||||||
'pref_enable_two_factor_auth' => 'Authenticatie in twee stappen inschakelen',
|
'pref_enable_two_factor_auth' => 'Authenticatie in twee stappen inschakelen',
|
||||||
'pref_two_factor_auth_code' => 'Verifieer code',
|
'pref_two_factor_auth_disabled' => 'Je verificatiecode voor authenticatie in twee stappen is verwijderd, en uitgeschakeld',
|
||||||
'pref_two_factor_auth_code_help' => 'Scan onderstaande QR code met een app op je telefoon zoals Authy of Google Authenticator en vul de code die gegenereerd wordt in.',
|
'pref_two_factor_auth_remove_it' => 'Vergeet niet om je Firefly account uit je authenticatie appje te verwijderen!',
|
||||||
'pref_two_factor_auth_reset_code' => 'Reset verificatiecode',
|
'pref_two_factor_auth_code' => 'Bevestig de code',
|
||||||
|
'pref_two_factor_auth_code_help' => 'Scan deze QR code met een app op je telefoon (zoals Authy of Google Authenticator). Vul de code die je terug krijgt hier in.',
|
||||||
|
'pref_two_factor_auth_reset_code' => 'Reset de verificatiecode',
|
||||||
|
'pref_two_factor_auth_remove_code' => 'Verwijder de verificatiecode',
|
||||||
|
'pref_two_factor_auth_remove_will_disable' => '(hiermee zet je authenticatie in twee stappen ook uit)',
|
||||||
'pref_save_settings' => 'Instellingen opslaan',
|
'pref_save_settings' => 'Instellingen opslaan',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
@ -345,6 +351,7 @@ return [
|
|||||||
'csv_column_opposing-id' => 'Tegenrekening (ID gelijk aan Firefly)',
|
'csv_column_opposing-id' => 'Tegenrekening (ID gelijk aan Firefly)',
|
||||||
'csv_column_opposing-name' => 'Tegenrekeningnaam',
|
'csv_column_opposing-name' => 'Tegenrekeningnaam',
|
||||||
'csv_column_rabo-debet-credit' => 'Rabobankspecifiek bij/af indicator',
|
'csv_column_rabo-debet-credit' => 'Rabobankspecifiek bij/af indicator',
|
||||||
|
'csv_column_ing-debet-credit' => 'ING-specifieke bij/af indicator',
|
||||||
'csv_column_sepa-ct-id' => 'SEPA transactienummer',
|
'csv_column_sepa-ct-id' => 'SEPA transactienummer',
|
||||||
'csv_column_sepa-ct-op' => 'SEPA tegenrekeningnummer',
|
'csv_column_sepa-ct-op' => 'SEPA tegenrekeningnummer',
|
||||||
'csv_column_sepa-db' => 'SEPA "direct debet"-nummer',
|
'csv_column_sepa-db' => 'SEPA "direct debet"-nummer',
|
||||||
@ -544,6 +551,7 @@ return [
|
|||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Standaard financieel rapport (:start tot :end)',
|
'report_default' => 'Standaard financieel rapport (:start tot :end)',
|
||||||
|
'report_audit' => 'Transactiehistorie-overzicht van :start tot :end',
|
||||||
'quick_link_reports' => 'Snelle links',
|
'quick_link_reports' => 'Snelle links',
|
||||||
'quick_link_default_report' => 'Standaard financieel rapport',
|
'quick_link_default_report' => 'Standaard financieel rapport',
|
||||||
'report_this_month_quick' => 'Deze maand, alle rekeningen',
|
'report_this_month_quick' => 'Deze maand, alle rekeningen',
|
||||||
@ -586,6 +594,7 @@ return [
|
|||||||
'categories_spent_in_year' => 'Categorieën (uitgaven)',
|
'categories_spent_in_year' => 'Categorieën (uitgaven)',
|
||||||
'report_type' => 'Rapporttype',
|
'report_type' => 'Rapporttype',
|
||||||
'report_type_default' => 'Standard financieel rapport',
|
'report_type_default' => 'Standard financieel rapport',
|
||||||
|
'report_type_audit' => 'Transactiehistorie-overzicht (audit)',
|
||||||
'report_included_accounts' => 'Accounts in rapport',
|
'report_included_accounts' => 'Accounts in rapport',
|
||||||
'report_date_range' => 'Datumbereik',
|
'report_date_range' => 'Datumbereik',
|
||||||
'report_include_help' => 'Overboekingen naar gedeelde rekeningen tellen als uitgave. Overboekingen van gedeelde rekeningen tellen als inkomsten.',
|
'report_include_help' => 'Overboekingen naar gedeelde rekeningen tellen als uitgave. Overboekingen van gedeelde rekeningen tellen als inkomsten.',
|
||||||
|
@ -71,8 +71,10 @@ return [
|
|||||||
'size' => 'Grootte',
|
'size' => 'Grootte',
|
||||||
'trigger' => 'Trigger',
|
'trigger' => 'Trigger',
|
||||||
'stop_processing' => 'Stop met verwerken',
|
'stop_processing' => 'Stop met verwerken',
|
||||||
'start_date' => 'Start van exportbereik',
|
'start_date' => 'Start van bereik',
|
||||||
'end_date' => 'Einde van exportbereik',
|
'end_date' => 'Einde van bereik',
|
||||||
|
'export_start_range' => 'Start van exportbereik',
|
||||||
|
'export_end_range' => 'Einde van exportbereik',
|
||||||
'export_format' => 'Bestandsformaat',
|
'export_format' => 'Bestandsformaat',
|
||||||
'include_attachments' => 'Sla ook geüploade bijlagen op',
|
'include_attachments' => 'Sla ook geüploade bijlagen op',
|
||||||
'include_config' => 'Sla ook een configuratiebestand ook',
|
'include_config' => 'Sla ook een configuratiebestand ook',
|
||||||
|
@ -68,6 +68,5 @@ return [
|
|||||||
'string' => 'Het :attribute moet een tekenreeks zijn.',
|
'string' => 'Het :attribute moet een tekenreeks zijn.',
|
||||||
'url' => ':attribute is geen geldige URL.',
|
'url' => ':attribute is geen geldige URL.',
|
||||||
'timezone' => 'Het :attribute moet een geldige zone zijn.',
|
'timezone' => 'Het :attribute moet een geldige zone zijn.',
|
||||||
'2fa_code' => ':attribute is ongeldig.',
|
'2fa_code' => 'De waarde in het :attribute-veld is niet geldig.',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,9 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* config.php
|
||||||
|
* Copyright (C) 2016 Sander Dorigo
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'locale' => 'pt_BR, pt_BR.utf8',
|
'locale' => 'pt_BR, pt_BR.utf8',
|
||||||
'month' => '%B %Y',
|
'month' => '%B %Y',
|
||||||
'month_and_day' => '%e de %B de %Y',
|
'month_and_day' => '%e de %B de %Y',
|
||||||
|
'date_time' => '%B %e, %Y, @ %T',
|
||||||
'specific_day' => '%e %B %Y',
|
'specific_day' => '%e %B %Y',
|
||||||
'week_in_year' => 'Week %W, %Y',
|
'week_in_year' => 'Week %W, %Y',
|
||||||
'quarter_of_year' => '%B %Y',
|
'quarter_of_year' => '%B %Y',
|
||||||
|
@ -44,6 +44,7 @@ return [
|
|||||||
'flash_error' => 'Error!',
|
'flash_error' => 'Error!',
|
||||||
'flash_info_multiple' => 'There is one message|There are :count messages',
|
'flash_info_multiple' => 'There is one message|There are :count messages',
|
||||||
'flash_error_multiple' => 'There is one error|There are :count errors',
|
'flash_error_multiple' => 'There is one error|There are :count errors',
|
||||||
|
'net_worth' => 'Net worth',
|
||||||
|
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
@ -57,6 +58,7 @@ return [
|
|||||||
'include_config_help' => 'For easy re-import into Firefly III',
|
'include_config_help' => 'For easy re-import into Firefly III',
|
||||||
'include_old_uploads_help' => 'Firefly III does not throw away the original CSV files you have imported in the past. You can include them in your export.',
|
'include_old_uploads_help' => 'Firefly III does not throw away the original CSV files you have imported in the past. You can include them in your export.',
|
||||||
'do_export' => 'Export',
|
'do_export' => 'Export',
|
||||||
|
'export_status_never_started' => 'The export has not started yet',
|
||||||
'export_status_make_exporter' => 'Creating exporter thing...',
|
'export_status_make_exporter' => 'Creating exporter thing...',
|
||||||
'export_status_collecting_journals' => 'Collecting your transactions...',
|
'export_status_collecting_journals' => 'Collecting your transactions...',
|
||||||
'export_status_collected_journals' => 'Collected your transactions!',
|
'export_status_collected_journals' => 'Collected your transactions!',
|
||||||
@ -123,8 +125,22 @@ return [
|
|||||||
'stop_executing_other_actions' => 'Stop executing other actions',
|
'stop_executing_other_actions' => 'Stop executing other actions',
|
||||||
'add_rule_action' => 'Add new action',
|
'add_rule_action' => 'Add new action',
|
||||||
'edit_rule' => 'Edit rule ":title"',
|
'edit_rule' => 'Edit rule ":title"',
|
||||||
|
'delete_rule' => 'Delete rule ":title"',
|
||||||
'update_rule' => 'Update rule',
|
'update_rule' => 'Update rule',
|
||||||
|
|
||||||
|
'test_rule_triggers' => 'See matching transactions',
|
||||||
|
'warning_transaction_subset' => 'For performance reasons this list is limited to :max_num_transactions and may only show a subset of matching transactions',
|
||||||
|
'warning_no_matching_transactions' => 'No matching transactions found. Please note that for performance reasons, only the last :num_transactions transactions have been checked.',
|
||||||
|
'warning_no_valid_triggers' => 'No valid triggers provided.',
|
||||||
|
|
||||||
|
'execute_on_existing_transactions' => 'Execute for existing transactions',
|
||||||
|
'execute_on_existing_transactions_intro' => 'When a rule or group has been changed or added, you can execute it for existing transactions',
|
||||||
|
'execute_on_existing_transactions_short' => 'Existing transactions',
|
||||||
|
'executed_group_on_existing_transactions' => 'Executed group ":title" for existing transactions',
|
||||||
|
'execute_group_on_existing_transactions' => 'Execute group ":title" for existing transactions',
|
||||||
|
'include_transactions_from_accounts' => 'Include transactions from these accounts',
|
||||||
|
'execute' => 'Execute',
|
||||||
|
|
||||||
// actions and triggers
|
// actions and triggers
|
||||||
'rule_trigger_user_action' => 'User action is ":trigger_value"',
|
'rule_trigger_user_action' => 'User action is ":trigger_value"',
|
||||||
'rule_trigger_from_account_starts' => 'Source account starts with ":trigger_value"',
|
'rule_trigger_from_account_starts' => 'Source account starts with ":trigger_value"',
|
||||||
@ -214,6 +230,13 @@ return [
|
|||||||
'pref_two_factor_auth' => '2-step verification',
|
'pref_two_factor_auth' => '2-step verification',
|
||||||
'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.',
|
'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.',
|
||||||
'pref_enable_two_factor_auth' => 'Enable 2-step verification',
|
'pref_enable_two_factor_auth' => 'Enable 2-step verification',
|
||||||
|
'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled',
|
||||||
|
'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!',
|
||||||
|
'pref_two_factor_auth_code' => 'Verify code',
|
||||||
|
'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.',
|
||||||
|
'pref_two_factor_auth_reset_code' => 'Reset verification code',
|
||||||
|
'pref_two_factor_auth_remove_code' => 'Remove verification code',
|
||||||
|
'pref_two_factor_auth_remove_will_disable' => '(this will also disable two-factor authentication)',
|
||||||
'pref_save_settings' => 'Salvar definições',
|
'pref_save_settings' => 'Salvar definições',
|
||||||
|
|
||||||
// profile:
|
// profile:
|
||||||
@ -328,11 +351,14 @@ return [
|
|||||||
'csv_column_opposing-id' => 'Opposing account ID (matching Firefly)',
|
'csv_column_opposing-id' => 'Opposing account ID (matching Firefly)',
|
||||||
'csv_column_opposing-name' => 'Opposing account (name)',
|
'csv_column_opposing-name' => 'Opposing account (name)',
|
||||||
'csv_column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator',
|
'csv_column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator',
|
||||||
|
'csv_column_ing-debet-credit' => 'ING specific debet/credit indicator',
|
||||||
'csv_column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID',
|
'csv_column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID',
|
||||||
'csv_column_sepa-ct-op' => 'SEPA Credit Transfer opposing account',
|
'csv_column_sepa-ct-op' => 'SEPA Credit Transfer opposing account',
|
||||||
'csv_column_sepa-db' => 'SEPA Direct Debet',
|
'csv_column_sepa-db' => 'SEPA Direct Debet',
|
||||||
'csv_column_tags-comma' => 'Tags (separadas por vírgula)',
|
'csv_column_tags-comma' => 'Tags (separadas por vírgula)',
|
||||||
'csv_column_tags-space' => 'Tags (separadas por espaço)',
|
'csv_column_tags-space' => 'Tags (separadas por espaço)',
|
||||||
|
'csv_column_account-number' => 'Asset account (account number)',
|
||||||
|
'csv_column_opposing-number' => 'Opposing account (account number)',
|
||||||
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
||||||
'csv_specifix_AbnAmroDescription' => 'Select this when you\'re importing ABN AMRO CSV export files.',
|
'csv_specifix_AbnAmroDescription' => 'Select this when you\'re importing ABN AMRO CSV export files.',
|
||||||
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
||||||
@ -525,6 +551,7 @@ return [
|
|||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Default financial report for :start until :end',
|
'report_default' => 'Default financial report for :start until :end',
|
||||||
|
'report_audit' => 'Transaction history overview for :start until :end',
|
||||||
'quick_link_reports' => 'Quick links',
|
'quick_link_reports' => 'Quick links',
|
||||||
'quick_link_default_report' => 'Default financial report',
|
'quick_link_default_report' => 'Default financial report',
|
||||||
'report_this_month_quick' => 'Current month, all accounts',
|
'report_this_month_quick' => 'Current month, all accounts',
|
||||||
@ -567,6 +594,7 @@ return [
|
|||||||
'categories_spent_in_year' => 'Categories (by spendings)',
|
'categories_spent_in_year' => 'Categories (by spendings)',
|
||||||
'report_type' => 'Report type',
|
'report_type' => 'Report type',
|
||||||
'report_type_default' => 'Default financial report',
|
'report_type_default' => 'Default financial report',
|
||||||
|
'report_type_audit' => 'Transaction history overview (audit)',
|
||||||
'report_included_accounts' => 'Included accounts',
|
'report_included_accounts' => 'Included accounts',
|
||||||
'report_date_range' => 'Date range',
|
'report_date_range' => 'Date range',
|
||||||
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
||||||
|
@ -47,6 +47,7 @@ return [
|
|||||||
'symbol' => 'Símbolo',
|
'symbol' => 'Símbolo',
|
||||||
'code' => 'Código',
|
'code' => 'Código',
|
||||||
'iban' => 'IBAN',
|
'iban' => 'IBAN',
|
||||||
|
'accountNumber' => 'Account number',
|
||||||
'csv' => 'Arquivo CSV',
|
'csv' => 'Arquivo CSV',
|
||||||
'has_headers' => 'Cabeçalhos',
|
'has_headers' => 'Cabeçalhos',
|
||||||
'date_format' => 'Formato da Data',
|
'date_format' => 'Formato da Data',
|
||||||
@ -70,8 +71,10 @@ return [
|
|||||||
'size' => 'Tamanho',
|
'size' => 'Tamanho',
|
||||||
'trigger' => 'Trigger',
|
'trigger' => 'Trigger',
|
||||||
'stop_processing' => 'Stop processing',
|
'stop_processing' => 'Stop processing',
|
||||||
'start_date' => 'Start of export range',
|
'start_date' => 'Start of range',
|
||||||
'end_date' => 'End of export range',
|
'end_date' => 'End of range',
|
||||||
|
'export_start_range' => 'Start of export range',
|
||||||
|
'export_end_range' => 'End of export range',
|
||||||
'export_format' => 'File format',
|
'export_format' => 'File format',
|
||||||
'include_attachments' => 'Include uploaded attachments',
|
'include_attachments' => 'Include uploaded attachments',
|
||||||
'include_config' => 'Include configuration file',
|
'include_config' => 'Include configuration file',
|
||||||
|
@ -1,11 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
|
||||||
* passwords.php
|
|
||||||
* Copyright (C) 2016 Sander Dorigo
|
|
||||||
*
|
|
||||||
* This software may be modified and distributed under the terms
|
|
||||||
* of the MIT license. See the LICENSE file for details.
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
@ -19,11 +12,11 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'password' => 'As senhas devem ter pelo menos seis caracteres e devem ser iguais.',
|
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||||
'user' => 'Não podemos encontrar um usuário com esse endereço de e-mail.',
|
'user' => 'We can\'t find a user with that e-mail address.',
|
||||||
'token' => 'Este token de redefinição de senha é inválido.',
|
'token' => 'This password reset token is invalid.',
|
||||||
'sent' => 'Nós te enviamos um email com um link para trocar a senha!',
|
'sent' => 'We have e-mailed your password reset link!',
|
||||||
'reset' => 'Sua senha foi redefinida!',
|
'reset' => 'Your password has been reset!',
|
||||||
'blocked' => 'Boa tentativa.',
|
'blocked' => 'Nice try though.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
'iban' => 'This is not a valid IBAN.',
|
||||||
|
'unique_account_number_for_user' => 'It looks like this account number is already in use.',
|
||||||
'rule_trigger_value' => 'Este valor é inválido para o disparo selecionado.',
|
'rule_trigger_value' => 'Este valor é inválido para o disparo selecionado.',
|
||||||
'rule_action_value' => 'Este valor é inválido para a ação selecionada.',
|
'rule_action_value' => 'Este valor é inválido para a ação selecionada.',
|
||||||
'invalid_domain' => 'Devido a restrições de segurança, você não pode registrar deste domínio.',
|
'invalid_domain' => 'Devido a restrições de segurança, você não pode registrar deste domínio.',
|
||||||
@ -66,4 +68,5 @@ return [
|
|||||||
'string' => 'O campo :attribute deve ser uma string.',
|
'string' => 'O campo :attribute deve ser uma string.',
|
||||||
'url' => 'O formato do URL indicado para o campo :attribute é inválido.',
|
'url' => 'O formato do URL indicado para o campo :attribute é inválido.',
|
||||||
'timezone' => 'O campo :attribute deverá ter um fuso horário válido.',
|
'timezone' => 'O campo :attribute deverá ter um fuso horário válido.',
|
||||||
|
'2fa_code' => 'The :attribute field is invalid.',
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user