mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Cleaned up translation files.
This commit is contained in:
@@ -1,60 +1,45 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* breadcrumbs.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 [
|
||||||
'home' => 'Home',
|
'home' => 'Home',
|
||||||
|
|
||||||
// accounts
|
|
||||||
'cash_accounts' => 'Cash accounts',
|
'cash_accounts' => 'Cash accounts',
|
||||||
'edit_account' => 'Edit account ":name"',
|
'edit_account' => 'Edit account ":name"',
|
||||||
|
|
||||||
// currencies
|
|
||||||
'edit_currency' => 'Edit currencies ":name"',
|
'edit_currency' => 'Edit currencies ":name"',
|
||||||
'delete_currency' => 'Delete currencies ":name"',
|
'delete_currency' => 'Delete currencies ":name"',
|
||||||
|
|
||||||
// piggy banks
|
|
||||||
'newPiggyBank' => 'Create a new piggy bank',
|
'newPiggyBank' => 'Create a new piggy bank',
|
||||||
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
||||||
|
|
||||||
// top menu
|
|
||||||
'preferences' => 'Preferences',
|
'preferences' => 'Preferences',
|
||||||
'profile' => 'Profile',
|
'profile' => 'Profile',
|
||||||
'changePassword' => 'Change your password',
|
'changePassword' => 'Change your password',
|
||||||
|
|
||||||
// bills
|
|
||||||
'bills' => 'Bills',
|
'bills' => 'Bills',
|
||||||
'newBill' => 'New bill',
|
'newBill' => 'New bill',
|
||||||
'edit_bill' => 'Edit bill ":name"',
|
'edit_bill' => 'Edit bill ":name"',
|
||||||
'delete_bill' => 'Delete bill ":name"',
|
'delete_bill' => 'Delete bill ":name"',
|
||||||
|
|
||||||
// reports
|
|
||||||
'reports' => 'Reports',
|
'reports' => 'Reports',
|
||||||
'monthly_report' => 'Monthly report for :date',
|
'monthly_report' => 'Monthly report for :date',
|
||||||
'monthly_report_shared' => 'Monthly report for :date (including shared accounts)',
|
'monthly_report_shared' => 'Monthly report for :date (including shared accounts)',
|
||||||
'yearly_report' => 'Yearly report for :date',
|
'yearly_report' => 'Yearly report for :date',
|
||||||
'yearly_report_shared' => 'Yearly report for :date (including shared accounts)',
|
'yearly_report_shared' => 'Yearly report for :date (including shared accounts)',
|
||||||
'budget_report' => 'Budget report for :date',
|
'budget_report' => 'Budget report for :date',
|
||||||
|
|
||||||
// search
|
|
||||||
'searchResult' => 'Search for ":query"',
|
'searchResult' => 'Search for ":query"',
|
||||||
|
|
||||||
// transaction lists.
|
|
||||||
'withdrawal_list' => 'Expenses',
|
'withdrawal_list' => 'Expenses',
|
||||||
'deposit_list' => 'Revenue, income and deposits',
|
'deposit_list' => 'Revenue, income and deposits',
|
||||||
'transfer_list' => 'Transfers',
|
'transfer_list' => 'Transfers',
|
||||||
'transfers_list' => 'Transfers',
|
'transfers_list' => 'Transfers',
|
||||||
|
|
||||||
// create transactions
|
|
||||||
'create_withdrawal' => 'Create new withdrawal',
|
'create_withdrawal' => 'Create new withdrawal',
|
||||||
'create_deposit' => 'Create new deposit',
|
'create_deposit' => 'Create new deposit',
|
||||||
'create_transfer' => 'Create new transfer',
|
'create_transfer' => 'Create new transfer',
|
||||||
|
|
||||||
// edit transactions
|
|
||||||
'edit_journal' => 'Edit transaction ":description"',
|
'edit_journal' => 'Edit transaction ":description"',
|
||||||
'delete_journal' => 'Delete transaction ":description"',
|
'delete_journal' => 'Delete transaction ":description"',
|
||||||
|
|
||||||
// tags
|
|
||||||
'tags' => 'Tags',
|
'tags' => 'Tags',
|
||||||
'createTag' => 'Create new tag',
|
'createTag' => 'Create new tag',
|
||||||
'edit_tag' => 'Edit tag ":tag"',
|
'edit_tag' => 'Edit tag ":tag"',
|
||||||
'delete_tag' => 'Delete tag ":tag"',
|
'delete_tag' => 'Delete tag ":tag"',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1,4 +1,11 @@
|
|||||||
<?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' => 'en, English, en_US, en_US.utf8',
|
'locale' => 'en, English, en_US, en_US.utf8',
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* form.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 [
|
||||||
|
|
||||||
// new user:
|
// new user:
|
||||||
@@ -83,40 +91,35 @@ return [
|
|||||||
'include_config' => 'Include configuration file',
|
'include_config' => 'Include configuration file',
|
||||||
'include_old_uploads' => 'Include imported data',
|
'include_old_uploads' => 'Include imported data',
|
||||||
'accounts' => 'Export transactions from these accounts',
|
'accounts' => 'Export transactions from these accounts',
|
||||||
|
'csv_comma' => 'A comma (,)',
|
||||||
'csv_comma' => 'A comma (,)',
|
'csv_semicolon' => 'A semicolon (;)',
|
||||||
'csv_semicolon' => 'A semicolon (;)',
|
'csv_tab' => 'A tab (invisible)',
|
||||||
'csv_tab' => 'A tab (invisible)',
|
'delete_account' => 'Delete account ":name"',
|
||||||
|
'delete_bill' => 'Delete bill ":name"',
|
||||||
|
'delete_budget' => 'Delete budget ":name"',
|
||||||
'delete_account' => 'Delete account ":name"',
|
'delete_category' => 'Delete category ":name"',
|
||||||
'delete_bill' => 'Delete bill ":name"',
|
'delete_currency' => 'Delete currency ":name"',
|
||||||
'delete_budget' => 'Delete budget ":name"',
|
'delete_journal' => 'Delete transaction with description ":description"',
|
||||||
'delete_category' => 'Delete category ":name"',
|
'delete_attachment' => 'Delete attachment ":name"',
|
||||||
'delete_currency' => 'Delete currency ":name"',
|
'delete_rule' => 'Delete rule ":title"',
|
||||||
'delete_journal' => 'Delete transaction with description ":description"',
|
'delete_rule_group' => 'Delete rule group ":title"',
|
||||||
'delete_attachment' => 'Delete attachment ":name"',
|
'attachment_areYouSure' => 'Are you sure you want to delete the attachment named ":name"?',
|
||||||
'delete_rule' => 'Delete rule ":title"',
|
'account_areYouSure' => 'Are you sure you want to delete the account named ":name"?',
|
||||||
'delete_rule_group' => 'Delete rule group ":title"',
|
'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"?',
|
||||||
'attachment_areYouSure' => 'Are you sure you want to delete the attachment named ":name"?',
|
'ruleGroup_areYouSure' => 'Are you sure you want to delete the rule group titled ":title"?',
|
||||||
'account_areYouSure' => 'Are you sure you want to delete the account named ":name"?',
|
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
||||||
'bill_areYouSure' => 'Are you sure you want to delete the bill named ":name"?',
|
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
||||||
'rule_areYouSure' => 'Are you sure you want to delete the rule titled ":title"?',
|
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
||||||
'ruleGroup_areYouSure' => 'Are you sure you want to delete the rule group titled ":title"?',
|
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
|
||||||
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
|
||||||
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
'tag_areYouSure' => 'Are you sure you want to delete the tag ":tag"?',
|
||||||
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
||||||
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
|
'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.',
|
||||||
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
|
'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.',
|
||||||
'tag_areYouSure' => 'Are you sure you want to delete the tag ":tag"?',
|
'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.',
|
||||||
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.',
|
||||||
'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.',
|
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.',
|
||||||
'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.',
|
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.',
|
||||||
'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.',
|
|
||||||
];
|
];
|
||||||
|
@@ -1,25 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* help.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 [
|
||||||
|
|
||||||
// tour!
|
// tour!
|
||||||
'main-content-title' => 'Welcome to Firefly III',
|
'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.',
|
'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!',
|
||||||
'account-menu-title' => 'All your accounts',
|
'account-menu-title' => 'All your accounts',
|
||||||
'account-menu-text' => 'Here you can find all the accounts you\'ve made.',
|
'account-menu-text' => 'Here you can find all the accounts you\'ve made.',
|
||||||
'budget-menu-title' => 'Budgets',
|
'budget-menu-title' => 'Budgets',
|
||||||
'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
|
'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
|
||||||
'report-menu-title' => 'Reports',
|
'report-menu-title' => 'Reports',
|
||||||
'report-menu-text' => 'Check this out when you want a solid overview of your fiances.',
|
'report-menu-text' => 'Check this out when you want a solid overview of your fiances.',
|
||||||
'transaction-menu-title' => 'Transactions',
|
'transaction-menu-title' => 'Transactions',
|
||||||
'transaction-menu-text' => 'All transactions you\'ve created can be found here.',
|
'transaction-menu-text' => 'All transactions you\'ve created can be found here.',
|
||||||
'option-menu-title' => 'Options',
|
'option-menu-title' => 'Options',
|
||||||
'option-menu-text' => 'This is pretty self-explanatory.',
|
'option-menu-text' => 'This is pretty self-explanatory.',
|
||||||
'main-content-end-title' => 'The end!',
|
'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.',
|
'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',
|
'index' => 'index',
|
||||||
'home' => 'home',
|
'home' => 'home',
|
||||||
'accounts-index' => 'accounts.index',
|
'accounts-index' => 'accounts.index',
|
||||||
|
@@ -1,6 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
// all table headers.
|
* list.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 [
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
|
@@ -1,19 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* pagination.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 [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Pagination Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used by the paginator library to build
|
|
||||||
| the simple pagination links. You are free to change them to anything
|
|
||||||
| you want to customize your views to better match your application.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'previous' => '« Previous',
|
'previous' => '« Previous',
|
||||||
'next' => 'Next »',
|
'next' => 'Next »',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1,22 +1,17 @@
|
|||||||
<?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 [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are the default lines which match reasons
|
|
||||||
| that are given by the password broker for a password update attempt
|
|
||||||
| has failed, such as for an invalid token or invalid new password.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||||
'user' => 'We can\'t find a user with that e-mail address.',
|
'user' => 'We can\'t find a user with that e-mail address.',
|
||||||
'token' => 'This password reset token is invalid.',
|
'token' => 'This password reset token is invalid.',
|
||||||
'sent' => 'We have e-mailed your password reset link!',
|
'sent' => 'We have e-mailed your password reset link!',
|
||||||
'reset' => 'Your password has been reset!',
|
'reset' => 'Your password has been reset!',
|
||||||
'blocked' => 'Nice try though.',
|
'blocked' => 'Nice try though.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1,4 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* validation.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 [
|
||||||
'iban' => 'This is not a valid IBAN.',
|
'iban' => 'This is not a valid IBAN.',
|
||||||
|
31
resources/lang/fr_FR/breadcrumbs.php
Normal file → Executable file
31
resources/lang/fr_FR/breadcrumbs.php
Normal file → Executable file
@@ -1,60 +1,45 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* breadcrumbs.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 [
|
||||||
'home' => 'Accueil',
|
'home' => 'Accueil',
|
||||||
|
|
||||||
// accounts
|
|
||||||
'cash_accounts' => 'Cash accounts',
|
'cash_accounts' => 'Cash accounts',
|
||||||
'edit_account' => 'Editer le compte : ":name"',
|
'edit_account' => 'Editer le compte : ":name"',
|
||||||
|
|
||||||
// currencies
|
|
||||||
'edit_currency' => 'Editer la devise : ";name"',
|
'edit_currency' => 'Editer la devise : ";name"',
|
||||||
'delete_currency' => 'Supprimer la devise ":name"',
|
'delete_currency' => 'Supprimer la devise ":name"',
|
||||||
|
|
||||||
// piggy banks
|
|
||||||
'newPiggyBank' => 'Create a new piggy bank',
|
'newPiggyBank' => 'Create a new piggy bank',
|
||||||
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
||||||
|
|
||||||
// top menu
|
|
||||||
'preferences' => 'Preferences',
|
'preferences' => 'Preferences',
|
||||||
'profile' => 'Profil',
|
'profile' => 'Profil',
|
||||||
'changePassword' => 'Modifier le mot de passe',
|
'changePassword' => 'Modifier le mot de passe',
|
||||||
|
|
||||||
// bills
|
|
||||||
'bills' => 'Factures',
|
'bills' => 'Factures',
|
||||||
'newBill' => 'Nouvelle facture',
|
'newBill' => 'Nouvelle facture',
|
||||||
'edit_bill' => 'Editer la facture : ":name"',
|
'edit_bill' => 'Editer la facture : ":name"',
|
||||||
'delete_bill' => 'Supprimer la facture ":name"',
|
'delete_bill' => 'Supprimer la facture ":name"',
|
||||||
|
|
||||||
// reports
|
|
||||||
'reports' => 'Rapport',
|
'reports' => 'Rapport',
|
||||||
'monthly_report' => 'Rapport mensuel pour :date',
|
'monthly_report' => 'Rapport mensuel pour :date',
|
||||||
'monthly_report_shared' => 'Rapport mensuel pour :date (avec les comptes joints)',
|
'monthly_report_shared' => 'Rapport mensuel pour :date (avec les comptes joints)',
|
||||||
'yearly_report' => 'Rapport annuel pour :date',
|
'yearly_report' => 'Rapport annuel pour :date',
|
||||||
'yearly_report_shared' => 'Rapport annuel pour :date (avec les comptes joints)',
|
'yearly_report_shared' => 'Rapport annuel pour :date (avec les comptes joints)',
|
||||||
'budget_report' => 'Rapport budgetaire pour :date',
|
'budget_report' => 'Rapport budgetaire pour :date',
|
||||||
|
|
||||||
// search
|
|
||||||
'searchResult' => 'Resultat de recherche pour ":query"',
|
'searchResult' => 'Resultat de recherche pour ":query"',
|
||||||
|
|
||||||
// transaction lists.
|
|
||||||
'withdrawal_list' => 'Dépenses',
|
'withdrawal_list' => 'Dépenses',
|
||||||
'deposit_list' => 'Revenue, Salaire et depots ',
|
'deposit_list' => 'Revenue, Salaire et depots ',
|
||||||
'transfer_list' => 'Transferts',
|
'transfer_list' => 'Transferts',
|
||||||
'transfers_list' => 'Transferts',
|
'transfers_list' => 'Transferts',
|
||||||
|
|
||||||
// create transactions
|
|
||||||
'create_withdrawal' => 'Creer un nouveau retrait',
|
'create_withdrawal' => 'Creer un nouveau retrait',
|
||||||
'create_deposit' => 'Create new deposit',
|
'create_deposit' => 'Create new deposit',
|
||||||
'create_transfer' => 'Creer un nouveau transfert',
|
'create_transfer' => 'Creer un nouveau transfert',
|
||||||
|
|
||||||
// edit transactions
|
|
||||||
'edit_journal' => 'Editer la transaction ":description"',
|
'edit_journal' => 'Editer la transaction ":description"',
|
||||||
'delete_journal' => 'Supprimer la transaction ":description"',
|
'delete_journal' => 'Supprimer la transaction ":description"',
|
||||||
|
|
||||||
// tags
|
|
||||||
'tags' => 'Tags',
|
'tags' => 'Tags',
|
||||||
'createTag' => 'Créer un nouveau tag',
|
'createTag' => 'Créer un nouveau tag',
|
||||||
'edit_tag' => 'Editer le tag ":tag"',
|
'edit_tag' => 'Editer le tag ":tag"',
|
||||||
'delete_tag' => 'Supprimer le tag ":tag"',
|
'delete_tag' => 'Supprimer le tag ":tag"',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
1
resources/lang/fr_FR/config.php
Normal file → Executable file
1
resources/lang/fr_FR/config.php
Normal file → Executable file
@@ -17,5 +17,4 @@ return [
|
|||||||
'quarter_of_year' => '%B %Y',
|
'quarter_of_year' => '%B %Y',
|
||||||
'year' => '%Y',
|
'year' => '%Y',
|
||||||
'half_year' => '%B %Y',
|
'half_year' => '%B %Y',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
986
resources/lang/fr_FR/firefly.php
Normal file → Executable file
986
resources/lang/fr_FR/firefly.php
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
78
resources/lang/fr_FR/form.php
Normal file → Executable file
78
resources/lang/fr_FR/form.php
Normal file → Executable file
@@ -1,4 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* form.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 [
|
||||||
|
|
||||||
// new user:
|
// new user:
|
||||||
@@ -37,6 +45,9 @@ return [
|
|||||||
'revenue_account' => 'Revenue account',
|
'revenue_account' => 'Revenue account',
|
||||||
'amount' => 'Amount',
|
'amount' => 'Amount',
|
||||||
'date' => 'Date',
|
'date' => 'Date',
|
||||||
|
'interest_date' => 'Interest date',
|
||||||
|
'book_date' => 'Book date',
|
||||||
|
'process_date' => 'Processing date',
|
||||||
'category' => 'Category',
|
'category' => 'Category',
|
||||||
'tags' => 'Tags',
|
'tags' => 'Tags',
|
||||||
'deletePermanently' => 'Delete permanently',
|
'deletePermanently' => 'Delete permanently',
|
||||||
@@ -80,40 +91,35 @@ return [
|
|||||||
'include_config' => 'Include configuration file',
|
'include_config' => 'Include configuration file',
|
||||||
'include_old_uploads' => 'Include imported data',
|
'include_old_uploads' => 'Include imported data',
|
||||||
'accounts' => 'Export transactions from these accounts',
|
'accounts' => 'Export transactions from these accounts',
|
||||||
|
'csv_comma' => 'A comma (,)',
|
||||||
'csv_comma' => 'A comma (,)',
|
'csv_semicolon' => 'A semicolon (;)',
|
||||||
'csv_semicolon' => 'A semicolon (;)',
|
'csv_tab' => 'A tab (invisible)',
|
||||||
'csv_tab' => 'A tab (invisible)',
|
'delete_account' => 'Delete account ":name"',
|
||||||
|
'delete_bill' => 'Supprimer la facture ":name"',
|
||||||
|
'delete_budget' => 'Delete budget ":name"',
|
||||||
'delete_account' => 'Delete account ":name"',
|
'delete_category' => 'Delete category ":name"',
|
||||||
'delete_bill' => 'Supprimer la facture ":name"',
|
'delete_currency' => 'Delete currency ":name"',
|
||||||
'delete_budget' => 'Delete budget ":name"',
|
'delete_journal' => 'Delete transaction with description ":description"',
|
||||||
'delete_category' => 'Delete category ":name"',
|
'delete_attachment' => 'Delete attachment ":name"',
|
||||||
'delete_currency' => 'Delete currency ":name"',
|
'delete_rule' => 'Delete rule ":title"',
|
||||||
'delete_journal' => 'Delete transaction with description ":description"',
|
'delete_rule_group' => 'Delete rule group ":title"',
|
||||||
'delete_attachment' => 'Delete attachment ":name"',
|
'attachment_areYouSure' => 'Are you sure you want to delete the attachment named ":name"?',
|
||||||
'delete_rule' => 'Delete rule ":title"',
|
'account_areYouSure' => 'Are you sure you want to delete the account named ":name"?',
|
||||||
'delete_rule_group' => 'Delete rule group ":title"',
|
'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"?',
|
||||||
'attachment_areYouSure' => 'Are you sure you want to delete the attachment named ":name"?',
|
'ruleGroup_areYouSure' => 'Are you sure you want to delete the rule group titled ":title"?',
|
||||||
'account_areYouSure' => 'Are you sure you want to delete the account named ":name"?',
|
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
||||||
'bill_areYouSure' => 'Are you sure you want to delete the bill named ":name"?',
|
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
||||||
'rule_areYouSure' => 'Are you sure you want to delete the rule titled ":title"?',
|
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
||||||
'ruleGroup_areYouSure' => 'Are you sure you want to delete the rule group titled ":title"?',
|
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
|
||||||
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
|
||||||
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
'tag_areYouSure' => 'Are you sure you want to delete the tag ":tag"?',
|
||||||
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
||||||
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
|
'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.',
|
||||||
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
|
'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.',
|
||||||
'tag_areYouSure' => 'Are you sure you want to delete the tag ":tag"?',
|
'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.',
|
||||||
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.',
|
||||||
'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.',
|
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.',
|
||||||
'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.',
|
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.',
|
||||||
'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.',
|
|
||||||
];
|
];
|
||||||
|
10
resources/lang/fr_FR/help.php
Normal file → Executable file
10
resources/lang/fr_FR/help.php
Normal file → Executable file
@@ -1,4 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* help.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 [
|
||||||
|
|
||||||
// tour!
|
// tour!
|
||||||
@@ -18,8 +26,6 @@ return [
|
|||||||
'option-menu-text' => 'C\'est assez explicite.',
|
'option-menu-text' => 'C\'est assez explicite.',
|
||||||
'main-content-end-title' => 'Fin !',
|
'main-content-end-title' => 'Fin !',
|
||||||
'main-content-end-text' => 'N\'oubliez pas que chaque page a un petit point d\'interrogation en haut à droite. Cliquez dessus pour obtenir de l\'aide concernant la page actuelle.',
|
'main-content-end-text' => 'N\'oubliez pas que chaque page a un petit point d\'interrogation en haut à droite. Cliquez dessus pour obtenir de l\'aide concernant la page actuelle.',
|
||||||
|
|
||||||
|
|
||||||
'index' => 'index',
|
'index' => 'index',
|
||||||
'home' => 'home',
|
'home' => 'home',
|
||||||
'accounts-index' => 'accounts.index',
|
'accounts-index' => 'accounts.index',
|
||||||
|
12
resources/lang/fr_FR/list.php
Normal file → Executable file
12
resources/lang/fr_FR/list.php
Normal file → Executable file
@@ -1,6 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
// all table headers.
|
* list.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 [
|
||||||
'name' => 'Nom',
|
'name' => 'Nom',
|
||||||
@@ -19,6 +24,9 @@ return [
|
|||||||
'description' => 'Description',
|
'description' => 'Description',
|
||||||
'amount' => 'Amount',
|
'amount' => 'Amount',
|
||||||
'date' => 'Date',
|
'date' => 'Date',
|
||||||
|
'interest_date' => 'Interest date',
|
||||||
|
'book_date' => 'Book date',
|
||||||
|
'process_date' => 'Processing date',
|
||||||
'from' => 'From',
|
'from' => 'From',
|
||||||
'to' => 'To',
|
'to' => 'To',
|
||||||
'budget' => 'Budget',
|
'budget' => 'Budget',
|
||||||
|
20
resources/lang/fr_FR/pagination.php
Normal file → Executable file
20
resources/lang/fr_FR/pagination.php
Normal file → Executable file
@@ -1,19 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* pagination.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 [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Pagination Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used by the paginator library to build
|
|
||||||
| the simple pagination links. You are free to change them to anything
|
|
||||||
| you want to customize your views to better match your application.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'previous' => '« Precedent',
|
'previous' => '« Precedent',
|
||||||
'next' => 'Suivant »',
|
'next' => 'Suivant »',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
12
resources/lang/fr_FR/passwords.php
Normal file → Executable file
12
resources/lang/fr_FR/passwords.php
Normal file → Executable file
@@ -8,22 +8,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are the default lines which match reasons
|
|
||||||
| that are given by the password broker for a password update attempt
|
|
||||||
| has failed, such as for an invalid token or invalid new password.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||||
'user' => 'We can\'t find a user with that e-mail address.',
|
'user' => 'We can\'t find a user with that e-mail address.',
|
||||||
'token' => 'This password reset token is invalid.',
|
'token' => 'This password reset token is invalid.',
|
||||||
'sent' => 'We have e-mailed your password reset link!',
|
'sent' => 'We have e-mailed your password reset link!',
|
||||||
'reset' => 'Your password has been reset!',
|
'reset' => 'Your password has been reset!',
|
||||||
'blocked' => 'Nice try though.',
|
'blocked' => 'Nice try though.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
7
resources/lang/fr_FR/validation.php
Normal file → Executable file
7
resources/lang/fr_FR/validation.php
Normal file → Executable file
@@ -1,4 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* validation.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 [
|
||||||
'iban' => 'This is not a valid IBAN.',
|
'iban' => 'This is not a valid IBAN.',
|
||||||
|
31
resources/lang/nl_NL/breadcrumbs.php
Normal file → Executable file
31
resources/lang/nl_NL/breadcrumbs.php
Normal file → Executable file
@@ -1,60 +1,45 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* breadcrumbs.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 [
|
||||||
'home' => 'Home',
|
'home' => 'Home',
|
||||||
|
|
||||||
// accounts
|
|
||||||
'cash_accounts' => 'Contant geldrekeningen',
|
'cash_accounts' => 'Contant geldrekeningen',
|
||||||
'edit_account' => 'Wijzig rekening ":name"',
|
'edit_account' => 'Wijzig rekening ":name"',
|
||||||
|
|
||||||
// currencies
|
|
||||||
'edit_currency' => 'Wijzig valuta ":name"',
|
'edit_currency' => 'Wijzig valuta ":name"',
|
||||||
'delete_currency' => 'Verwijder valuta ":name"',
|
'delete_currency' => 'Verwijder valuta ":name"',
|
||||||
|
|
||||||
// piggy banks
|
|
||||||
'newPiggyBank' => 'Nieuw spaarpotje',
|
'newPiggyBank' => 'Nieuw spaarpotje',
|
||||||
'edit_piggyBank' => 'Wijzig spaarpotje ":name"',
|
'edit_piggyBank' => 'Wijzig spaarpotje ":name"',
|
||||||
|
|
||||||
// top menu
|
|
||||||
'preferences' => 'Voorkeuren',
|
'preferences' => 'Voorkeuren',
|
||||||
'profile' => 'Profiel',
|
'profile' => 'Profiel',
|
||||||
'changePassword' => 'Verander je wachtwoord',
|
'changePassword' => 'Verander je wachtwoord',
|
||||||
|
|
||||||
// bills
|
|
||||||
'bills' => 'Contracten',
|
'bills' => 'Contracten',
|
||||||
'newBill' => 'Nieuw contract',
|
'newBill' => 'Nieuw contract',
|
||||||
'edit_bill' => 'Wijzig contract ":name"',
|
'edit_bill' => 'Wijzig contract ":name"',
|
||||||
'delete_bill' => 'Verwijder contract ":name"',
|
'delete_bill' => 'Verwijder contract ":name"',
|
||||||
|
|
||||||
// reports
|
|
||||||
'reports' => 'Overzichten',
|
'reports' => 'Overzichten',
|
||||||
'monthly_report' => 'Maandoverzicht :date',
|
'monthly_report' => 'Maandoverzicht :date',
|
||||||
'monthly_report_shared' => 'Maandoverzicht :date (inclusief gedeelde rekeningen)',
|
'monthly_report_shared' => 'Maandoverzicht :date (inclusief gedeelde rekeningen)',
|
||||||
'yearly_report' => 'Jaaroverzicht :date',
|
'yearly_report' => 'Jaaroverzicht :date',
|
||||||
'yearly_report_shared' => 'Jaaroverzicht :date (inclusief gedeelde rekeningen)',
|
'yearly_report_shared' => 'Jaaroverzicht :date (inclusief gedeelde rekeningen)',
|
||||||
'budget_report' => 'Budgetoverzicht :date',
|
'budget_report' => 'Budgetoverzicht :date',
|
||||||
|
|
||||||
// search
|
|
||||||
'searchResult' => 'Zoeken naar ":query"',
|
'searchResult' => 'Zoeken naar ":query"',
|
||||||
|
|
||||||
// transaction lists.
|
|
||||||
'withdrawal_list' => 'Uitgaven',
|
'withdrawal_list' => 'Uitgaven',
|
||||||
'deposit_list' => 'Inkomsten',
|
'deposit_list' => 'Inkomsten',
|
||||||
'transfer_list' => 'Overschrijvingen',
|
'transfer_list' => 'Overschrijvingen',
|
||||||
'transfers_list' => 'Overschrijvingen',
|
'transfers_list' => 'Overschrijvingen',
|
||||||
|
|
||||||
// create transactions
|
|
||||||
'create_withdrawal' => 'Sla nieuwe uitgave op',
|
'create_withdrawal' => 'Sla nieuwe uitgave op',
|
||||||
'create_deposit' => 'Sla nieuwe inkomsten op',
|
'create_deposit' => 'Sla nieuwe inkomsten op',
|
||||||
'create_transfer' => 'Sla nieuwe overschrijving op',
|
'create_transfer' => 'Sla nieuwe overschrijving op',
|
||||||
|
|
||||||
// edit transactions
|
|
||||||
'edit_journal' => 'Wijzig transactie ":description"',
|
'edit_journal' => 'Wijzig transactie ":description"',
|
||||||
'delete_journal' => 'Verwijder transactie ":description"',
|
'delete_journal' => 'Verwijder transactie ":description"',
|
||||||
|
|
||||||
// tags
|
|
||||||
'tags' => 'Tags',
|
'tags' => 'Tags',
|
||||||
'createTag' => 'Maak nieuwe tag',
|
'createTag' => 'Maak nieuwe tag',
|
||||||
'edit_tag' => 'Wijzig tag ":tag"',
|
'edit_tag' => 'Wijzig tag ":tag"',
|
||||||
'delete_tag' => 'Verwijder tag ":tag"',
|
'delete_tag' => 'Verwijder tag ":tag"',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
1
resources/lang/nl_NL/config.php
Normal file → Executable file
1
resources/lang/nl_NL/config.php
Normal file → Executable file
@@ -17,5 +17,4 @@ return [
|
|||||||
'quarter_of_year' => '%B %Y',
|
'quarter_of_year' => '%B %Y',
|
||||||
'year' => '%Y',
|
'year' => '%Y',
|
||||||
'half_year' => '%B %Y',
|
'half_year' => '%B %Y',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
985
resources/lang/nl_NL/firefly.php
Normal file → Executable file
985
resources/lang/nl_NL/firefly.php
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
80
resources/lang/nl_NL/form.php
Normal file → Executable file
80
resources/lang/nl_NL/form.php
Normal file → Executable file
@@ -1,7 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
return [
|
/**
|
||||||
|
* form.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.
|
||||||
|
*/
|
||||||
|
|
||||||
// new user:
|
return [
|
||||||
'bank_name' => 'Banknaam',
|
'bank_name' => 'Banknaam',
|
||||||
'bank_balance' => 'Saldo',
|
'bank_balance' => 'Saldo',
|
||||||
'savings_balance' => 'Saldo van spaarrekening',
|
'savings_balance' => 'Saldo van spaarrekening',
|
||||||
@@ -37,6 +43,9 @@ return [
|
|||||||
'revenue_account' => 'Debiteur',
|
'revenue_account' => 'Debiteur',
|
||||||
'amount' => 'Bedrag',
|
'amount' => 'Bedrag',
|
||||||
'date' => 'Datum',
|
'date' => 'Datum',
|
||||||
|
'interest_date' => 'Rentedatum',
|
||||||
|
'book_date' => 'Boekdatum',
|
||||||
|
'process_date' => 'Verwerkingsdatum',
|
||||||
'category' => 'Categorie',
|
'category' => 'Categorie',
|
||||||
'tags' => 'Tags',
|
'tags' => 'Tags',
|
||||||
'deletePermanently' => 'Verwijderen',
|
'deletePermanently' => 'Verwijderen',
|
||||||
@@ -80,40 +89,35 @@ return [
|
|||||||
'include_config' => 'Sla ook een configuratiebestand ook',
|
'include_config' => 'Sla ook een configuratiebestand ook',
|
||||||
'include_old_uploads' => 'Sla ook geïmporteerde bestanden op',
|
'include_old_uploads' => 'Sla ook geïmporteerde bestanden op',
|
||||||
'accounts' => 'Exporteer boekingen van deze rekeningen',
|
'accounts' => 'Exporteer boekingen van deze rekeningen',
|
||||||
|
'csv_comma' => 'Een komma (,)',
|
||||||
'csv_comma' => 'Een komma (,)',
|
'csv_semicolon' => 'Een puntkomma (;)',
|
||||||
'csv_semicolon' => 'Een puntkomma (;)',
|
'csv_tab' => 'Een tab (onzichtbaar)',
|
||||||
'csv_tab' => 'Een tab (onzichtbaar)',
|
'delete_account' => 'Verwijder rekening ":name"',
|
||||||
|
'delete_bill' => 'Verwijder contract ":name"',
|
||||||
|
'delete_budget' => 'Verwijder budget ":name"',
|
||||||
'delete_account' => 'Verwijder rekening ":name"',
|
'delete_category' => 'Verwijder categorie ":name"',
|
||||||
'delete_bill' => 'Verwijder contract ":name"',
|
'delete_currency' => 'Verwijder valuta ":name"',
|
||||||
'delete_budget' => 'Verwijder budget ":name"',
|
'delete_journal' => 'Verwijder transactie met omschrijving ":description"',
|
||||||
'delete_category' => 'Verwijder categorie ":name"',
|
'delete_attachment' => 'Verwijder bijlage ":name"',
|
||||||
'delete_currency' => 'Verwijder valuta ":name"',
|
'delete_rule' => 'Verwijder regel ":title"',
|
||||||
'delete_journal' => 'Verwijder transactie met omschrijving ":description"',
|
'delete_rule_group' => 'Verwijder regelgroep ":title"',
|
||||||
'delete_attachment' => 'Verwijder bijlage ":name"',
|
'attachment_areYouSure' => 'Weet je zeker dat je de bijlage met naam ":name" wilt verwijderen?',
|
||||||
'delete_rule' => 'Verwijder regel ":title"',
|
'account_areYouSure' => 'Weet je zeker dat je de rekening met naam ":name" wilt verwijderen?',
|
||||||
'delete_rule_group' => 'Verwijder regelgroep ":title"',
|
'bill_areYouSure' => 'Weet je zeker dat je het contract met naam ":name" wilt verwijderen?',
|
||||||
|
'rule_areYouSure' => 'Weet je zeker dat je regel ":title" wilt verwijderen?',
|
||||||
'attachment_areYouSure' => 'Weet je zeker dat je de bijlage met naam ":name" wilt verwijderen?',
|
'ruleGroup_areYouSure' => 'Weet je zeker dat je regelgroep ":title" wilt verwijderen?',
|
||||||
'account_areYouSure' => 'Weet je zeker dat je de rekening met naam ":name" wilt verwijderen?',
|
'budget_areYouSure' => 'Weet je zeker dat je het budget met naam ":name" wilt verwijderen?',
|
||||||
'bill_areYouSure' => 'Weet je zeker dat je het contract met naam ":name" wilt verwijderen?',
|
'category_areYouSure' => 'Weet je zeker dat je het category met naam ":name" wilt verwijderen?',
|
||||||
'rule_areYouSure' => 'Weet je zeker dat je regel ":title" wilt verwijderen?',
|
'currency_areYouSure' => 'Weet je zeker dat je de valuta met naam ":name" wilt verwijderen?',
|
||||||
'ruleGroup_areYouSure' => 'Weet je zeker dat je regelgroep ":title" wilt verwijderen?',
|
'piggyBank_areYouSure' => 'Weet je zeker dat je het spaarpotje met naam ":name" wilt verwijderen?',
|
||||||
'budget_areYouSure' => 'Weet je zeker dat je het budget met naam ":name" wilt verwijderen?',
|
'journal_areYouSure' => 'Weet je zeker dat je de transactie met naam ":description" wilt verwijderen?',
|
||||||
'category_areYouSure' => 'Weet je zeker dat je het category met naam ":name" wilt verwijderen?',
|
'tag_areYouSure' => 'Weet je zeker dat je de tag met naam ":tag" wilt verwijderen?',
|
||||||
'currency_areYouSure' => 'Weet je zeker dat je de valuta met naam ":name" wilt verwijderen?',
|
'permDeleteWarning' => 'Dingen verwijderen uit Firefly is permanent en kan niet ongedaan gemaakt worden.',
|
||||||
'piggyBank_areYouSure' => 'Weet je zeker dat je het spaarpotje met naam ":name" wilt verwijderen?',
|
'also_delete_transactions' => 'Ook de enige transactie verbonden aan deze rekening wordt verwijderd.|Ook alle :count transacties verbonden aan deze rekening worden verwijderd.',
|
||||||
'journal_areYouSure' => 'Weet je zeker dat je de transactie met naam ":description" wilt verwijderen?',
|
'also_delete_rules' => 'De enige regel in deze regelgroep wordt ook verwijderd.|Alle :count regels in deze regelgroep worden ook verwijderd.',
|
||||||
'tag_areYouSure' => 'Weet je zeker dat je de tag met naam ":tag" wilt verwijderen?',
|
'also_delete_piggyBanks' => 'Ook het spaarpotje verbonden aan deze rekening wordt verwijderd.|Ook alle :count spaarpotjes verbonden aan deze rekening worden verwijderd.',
|
||||||
|
'bill_keep_transactions' => 'De transactie verbonden aan dit contract blijft bewaard.|De :count transacties verbonden aan dit contract blijven bewaard.',
|
||||||
'permDeleteWarning' => 'Dingen verwijderen uit Firefly is permanent en kan niet ongedaan gemaakt worden.',
|
'budget_keep_transactions' => 'De transactie verbonden aan dit budget blijft bewaard.|De :count transacties verbonden aan dit budget blijven bewaard.',
|
||||||
'also_delete_transactions' => 'Ook de enige transactie verbonden aan deze rekening wordt verwijderd.|Ook alle :count transacties verbonden aan deze rekening worden verwijderd.',
|
'category_keep_transactions' => 'De transactie verbonden aan deze categorie blijft bewaard.|De :count transacties verbonden aan deze categorie blijven bewaard.',
|
||||||
'also_delete_rules' => 'De enige regel in deze regelgroep wordt ook verwijderd.|Alle :count regels in deze regelgroep worden ook verwijderd.',
|
'tag_keep_transactions' => 'De transactie verbonden aan deze tag blijft bewaard.|De :count transacties verbonden aan deze tag blijven bewaard.',
|
||||||
'also_delete_piggyBanks' => 'Ook het spaarpotje verbonden aan deze rekening wordt verwijderd.|Ook alle :count spaarpotjes verbonden aan deze rekening worden verwijderd.',
|
|
||||||
'bill_keep_transactions' => 'De transactie verbonden aan dit contract blijft bewaard.|De :count transacties verbonden aan dit contract blijven bewaard.',
|
|
||||||
'budget_keep_transactions' => 'De transactie verbonden aan dit budget blijft bewaard.|De :count transacties verbonden aan dit budget blijven bewaard.',
|
|
||||||
'category_keep_transactions' => 'De transactie verbonden aan deze categorie blijft bewaard.|De :count transacties verbonden aan deze categorie blijven bewaard.',
|
|
||||||
'tag_keep_transactions' => 'De transactie verbonden aan deze tag blijft bewaard.|De :count transacties verbonden aan deze tag blijven bewaard.',
|
|
||||||
];
|
];
|
||||||
|
44
resources/lang/nl_NL/help.php
Normal file → Executable file
44
resources/lang/nl_NL/help.php
Normal file → Executable file
@@ -1,25 +1,29 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* help.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 [
|
||||||
|
'main-content-title' => 'Welkom bij Firefly III',
|
||||||
// tour!
|
'main-content-text' => 'Doe jezelf een lol en volg deze korte tour. Je weet dan precies hoe alles werkt.',
|
||||||
'main-content-title' => 'Welkom bij Firefly III',
|
'sidebar-toggle-title' => 'Sidebar om nieuwe dingen te maken',
|
||||||
'main-content-text' => 'Doe jezelf een lol en volg deze korte tour. Je weet dan precies hoe alles werkt.',
|
'sidebar-toggle-text' => 'Verstopt onder het plusje vind je de knoppen die je nodig hebt om nieuwe dingen te maken.',
|
||||||
'sidebar-toggle-title' => 'Sidebar om nieuwe dingen te maken',
|
'account-menu-title' => 'Alle rekeningen',
|
||||||
'sidebar-toggle-text' => 'Verstopt onder het plusje vind je de knoppen die je nodig hebt om nieuwe dingen te maken.',
|
'account-menu-text' => 'Hier vind je al je rekeningen.',
|
||||||
'account-menu-title' => 'Alle rekeningen',
|
'budget-menu-title' => 'Budgetten',
|
||||||
'account-menu-text' => 'Hier vind je al je rekeningen.',
|
'budget-menu-text' => 'Gebruik deze pagina voor budgetten.',
|
||||||
'budget-menu-title' => 'Budgetten',
|
'report-menu-title' => 'Overzichten',
|
||||||
'budget-menu-text' => 'Gebruik deze pagina voor budgetten.',
|
'report-menu-text' => 'Hier vind je allerlei financiele rapportages.',
|
||||||
'report-menu-title' => 'Overzichten',
|
'transaction-menu-title' => 'Transacties',
|
||||||
'report-menu-text' => 'Hier vind je allerlei financiele rapportages.',
|
'transaction-menu-text' => 'Hier vind je al je bijschrijvingen, afschrijvingen en overboekingen.',
|
||||||
'transaction-menu-title' => 'Transacties',
|
'option-menu-title' => 'Opties',
|
||||||
'transaction-menu-text' => 'Hier vind je al je bijschrijvingen, afschrijvingen en overboekingen.',
|
'option-menu-text' => 'Hier vind je alle opties.',
|
||||||
'option-menu-title' => 'Opties',
|
'main-content-end-title' => 'Einde!',
|
||||||
'option-menu-text' => 'Hier vind je alle opties.',
|
'main-content-end-text' => 'Elke pagina heeft een vraagtekentje rechtsboven. Gebruik deze voor meer hulp. Veel plezier!',
|
||||||
'main-content-end-title' => 'Einde!',
|
|
||||||
'main-content-end-text' => 'Elke pagina heeft een vraagtekentje rechtsboven. Gebruik deze voor meer hulp. Veel plezier!',
|
|
||||||
|
|
||||||
|
|
||||||
'index' => 'index',
|
'index' => 'index',
|
||||||
'home' => 'home',
|
'home' => 'home',
|
||||||
'accounts-index' => 'rekeningen',
|
'accounts-index' => 'rekeningen',
|
||||||
|
12
resources/lang/nl_NL/list.php
Normal file → Executable file
12
resources/lang/nl_NL/list.php
Normal file → Executable file
@@ -1,6 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
// all table headers.
|
* list.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 [
|
||||||
'name' => 'Naam',
|
'name' => 'Naam',
|
||||||
@@ -19,6 +24,9 @@ return [
|
|||||||
'description' => 'Omschrijving',
|
'description' => 'Omschrijving',
|
||||||
'amount' => 'Bedrag',
|
'amount' => 'Bedrag',
|
||||||
'date' => 'Datum',
|
'date' => 'Datum',
|
||||||
|
'interest_date' => 'Rentedatum',
|
||||||
|
'book_date' => 'Boekdatum',
|
||||||
|
'process_date' => 'Verwerkingsdatum',
|
||||||
'from' => 'Van',
|
'from' => 'Van',
|
||||||
'to' => 'Naar',
|
'to' => 'Naar',
|
||||||
'budget' => 'Budget',
|
'budget' => 'Budget',
|
||||||
|
20
resources/lang/nl_NL/pagination.php
Normal file → Executable file
20
resources/lang/nl_NL/pagination.php
Normal file → Executable file
@@ -1,19 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* pagination.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 [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Pagination Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used by the paginator library to build
|
|
||||||
| the simple pagination links. You are free to change them to anything
|
|
||||||
| you want to customize your views to better match your application.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'previous' => '« Vorige',
|
'previous' => '« Vorige',
|
||||||
'next' => 'Volgende »',
|
'next' => 'Volgende »',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
12
resources/lang/nl_NL/passwords.php
Normal file → Executable file
12
resources/lang/nl_NL/passwords.php
Normal file → Executable file
@@ -8,22 +8,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are the default lines which match reasons
|
|
||||||
| that are given by the password broker for a password update attempt
|
|
||||||
| has failed, such as for an invalid token or invalid new password.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'password' => 'Wachtwoorden moeten zes karakters lang zijn, en natuurlijk 2x hetzelfde invoeren.',
|
'password' => 'Wachtwoorden moeten zes karakters lang zijn, en natuurlijk 2x hetzelfde invoeren.',
|
||||||
'user' => 'Geen gebruiker met dat e-mailadres.',
|
'user' => 'Geen gebruiker met dat e-mailadres.',
|
||||||
'token' => 'Ongeldig token! Sorry.',
|
'token' => 'Ongeldig token! Sorry.',
|
||||||
'sent' => 'Je krijgt een mailtje met een linkje om je wachtwoord te herstellen!',
|
'sent' => 'Je krijgt een mailtje met een linkje om je wachtwoord te herstellen!',
|
||||||
'reset' => 'Je wachtwoord is hersteld!',
|
'reset' => 'Je wachtwoord is hersteld!',
|
||||||
'blocked' => 'Leuk geprobeerd wel.',
|
'blocked' => 'Leuk geprobeerd wel.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
0
resources/lang/nl_NL/validation.php
Normal file → Executable file
0
resources/lang/nl_NL/validation.php
Normal file → Executable file
31
resources/lang/pt_BR/breadcrumbs.php
Normal file → Executable file
31
resources/lang/pt_BR/breadcrumbs.php
Normal file → Executable file
@@ -1,60 +1,45 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* breadcrumbs.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 [
|
||||||
'home' => 'Início',
|
'home' => 'Início',
|
||||||
|
|
||||||
// accounts
|
|
||||||
'cash_accounts' => 'Contas Correntes',
|
'cash_accounts' => 'Contas Correntes',
|
||||||
'edit_account' => 'Editar conta ":name"',
|
'edit_account' => 'Editar conta ":name"',
|
||||||
|
|
||||||
// currencies
|
|
||||||
'edit_currency' => 'Editar moedas ":name"',
|
'edit_currency' => 'Editar moedas ":name"',
|
||||||
'delete_currency' => 'Apagar moedas ":name"',
|
'delete_currency' => 'Apagar moedas ":name"',
|
||||||
|
|
||||||
// piggy banks
|
|
||||||
'newPiggyBank' => 'Criar um novo cofrinho',
|
'newPiggyBank' => 'Criar um novo cofrinho',
|
||||||
'edit_piggyBank' => 'Editar cofrinho ":name"',
|
'edit_piggyBank' => 'Editar cofrinho ":name"',
|
||||||
|
|
||||||
// top menu
|
|
||||||
'preferences' => 'Preferências',
|
'preferences' => 'Preferências',
|
||||||
'profile' => 'Perfil',
|
'profile' => 'Perfil',
|
||||||
'changePassword' => 'Alterar sua senha',
|
'changePassword' => 'Alterar sua senha',
|
||||||
|
|
||||||
// bills
|
|
||||||
'bills' => 'Faturas',
|
'bills' => 'Faturas',
|
||||||
'newBill' => 'Nova fatura',
|
'newBill' => 'Nova fatura',
|
||||||
'edit_bill' => 'Editar fatura ":name"',
|
'edit_bill' => 'Editar fatura ":name"',
|
||||||
'delete_bill' => 'Apagar fatura ":name"',
|
'delete_bill' => 'Apagar fatura ":name"',
|
||||||
|
|
||||||
// reports
|
|
||||||
'reports' => 'Relatórios',
|
'reports' => 'Relatórios',
|
||||||
'monthly_report' => 'Relatório Mensal para :date',
|
'monthly_report' => 'Relatório Mensal para :date',
|
||||||
'monthly_report_shared' => 'Relatório mensal para :date (incluindo contas compartilhadas)',
|
'monthly_report_shared' => 'Relatório mensal para :date (incluindo contas compartilhadas)',
|
||||||
'yearly_report' => 'Relatório Anual para :date',
|
'yearly_report' => 'Relatório Anual para :date',
|
||||||
'yearly_report_shared' => 'Relatório anual para :date (incluindo contas compartilhadas)',
|
'yearly_report_shared' => 'Relatório anual para :date (incluindo contas compartilhadas)',
|
||||||
'budget_report' => 'Relatório Orçamentário para :date',
|
'budget_report' => 'Relatório Orçamentário para :date',
|
||||||
|
|
||||||
// search
|
|
||||||
'searchResult' => 'Pesquisa por ":query"',
|
'searchResult' => 'Pesquisa por ":query"',
|
||||||
|
|
||||||
// transaction lists.
|
|
||||||
'withdrawal_list' => 'Despesas',
|
'withdrawal_list' => 'Despesas',
|
||||||
'deposit_list' => 'Receitas, renda e depósitos',
|
'deposit_list' => 'Receitas, renda e depósitos',
|
||||||
'transfer_list' => 'Transferências',
|
'transfer_list' => 'Transferências',
|
||||||
'transfers_list' => 'Transferências',
|
'transfers_list' => 'Transferências',
|
||||||
|
|
||||||
// create transactions
|
|
||||||
'create_withdrawal' => 'Criar uma nova retirada',
|
'create_withdrawal' => 'Criar uma nova retirada',
|
||||||
'create_deposit' => 'Criar um novo depósito',
|
'create_deposit' => 'Criar um novo depósito',
|
||||||
'create_transfer' => 'Criar nova transferência',
|
'create_transfer' => 'Criar nova transferência',
|
||||||
|
|
||||||
// edit transactions
|
|
||||||
'edit_journal' => 'Editar transação ":description"',
|
'edit_journal' => 'Editar transação ":description"',
|
||||||
'delete_journal' => 'Apagar transação ":description"',
|
'delete_journal' => 'Apagar transação ":description"',
|
||||||
|
|
||||||
// tags
|
|
||||||
'tags' => 'Etiquetas',
|
'tags' => 'Etiquetas',
|
||||||
'createTag' => 'Criar nova etiqueta',
|
'createTag' => 'Criar nova etiqueta',
|
||||||
'edit_tag' => 'Editar etiqueta ":tag"',
|
'edit_tag' => 'Editar etiqueta ":tag"',
|
||||||
'delete_tag' => 'Apagar etiqueta ":tag"',
|
'delete_tag' => 'Apagar etiqueta ":tag"',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
1
resources/lang/pt_BR/config.php
Normal file → Executable file
1
resources/lang/pt_BR/config.php
Normal file → Executable file
@@ -17,5 +17,4 @@ return [
|
|||||||
'quarter_of_year' => '%B %Y',
|
'quarter_of_year' => '%B %Y',
|
||||||
'year' => '%Y',
|
'year' => '%Y',
|
||||||
'half_year' => '%B %Y',
|
'half_year' => '%B %Y',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
986
resources/lang/pt_BR/firefly.php
Normal file → Executable file
986
resources/lang/pt_BR/firefly.php
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
79
resources/lang/pt_BR/form.php
Normal file → Executable file
79
resources/lang/pt_BR/form.php
Normal file → Executable file
@@ -1,7 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* form.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 [
|
||||||
|
|
||||||
// new user:
|
|
||||||
'bank_name' => 'Nome do banco',
|
'bank_name' => 'Nome do banco',
|
||||||
'bank_balance' => 'Saldo',
|
'bank_balance' => 'Saldo',
|
||||||
'savings_balance' => 'Salda da Poupança',
|
'savings_balance' => 'Salda da Poupança',
|
||||||
@@ -37,6 +44,9 @@ return [
|
|||||||
'revenue_account' => 'Conta de Receita',
|
'revenue_account' => 'Conta de Receita',
|
||||||
'amount' => 'Valor',
|
'amount' => 'Valor',
|
||||||
'date' => 'Data',
|
'date' => 'Data',
|
||||||
|
'interest_date' => 'Interest date',
|
||||||
|
'book_date' => 'Book date',
|
||||||
|
'process_date' => 'Processing date',
|
||||||
'category' => 'Categoria',
|
'category' => 'Categoria',
|
||||||
'tags' => 'Etiquetas',
|
'tags' => 'Etiquetas',
|
||||||
'deletePermanently' => 'Apagar permanentemente',
|
'deletePermanently' => 'Apagar permanentemente',
|
||||||
@@ -80,40 +90,35 @@ return [
|
|||||||
'include_config' => 'Include configuration file',
|
'include_config' => 'Include configuration file',
|
||||||
'include_old_uploads' => 'Include imported data',
|
'include_old_uploads' => 'Include imported data',
|
||||||
'accounts' => 'Export transactions from these accounts',
|
'accounts' => 'Export transactions from these accounts',
|
||||||
|
'csv_comma' => 'A comma (,)',
|
||||||
'csv_comma' => 'A comma (,)',
|
'csv_semicolon' => 'A semicolon (;)',
|
||||||
'csv_semicolon' => 'A semicolon (;)',
|
'csv_tab' => 'A tab (invisible)',
|
||||||
'csv_tab' => 'A tab (invisible)',
|
'delete_account' => 'Apagar conta ":name"',
|
||||||
|
'delete_bill' => 'Apagar fatura ":name"',
|
||||||
|
'delete_budget' => 'Delete budget ":name"',
|
||||||
'delete_account' => 'Apagar conta ":name"',
|
'delete_category' => 'Delete category ":name"',
|
||||||
'delete_bill' => 'Apagar fatura ":name"',
|
'delete_currency' => 'Delete currency ":name"',
|
||||||
'delete_budget' => 'Delete budget ":name"',
|
'delete_journal' => 'Delete transaction with description ":description"',
|
||||||
'delete_category' => 'Delete category ":name"',
|
'delete_attachment' => 'Apagar anexo ":name"',
|
||||||
'delete_currency' => 'Delete currency ":name"',
|
'delete_rule' => 'Delete rule ":title"',
|
||||||
'delete_journal' => 'Delete transaction with description ":description"',
|
'delete_rule_group' => 'Delete rule group ":title"',
|
||||||
'delete_attachment' => 'Apagar anexo ":name"',
|
'attachment_areYouSure' => 'Are you sure you want to delete the attachment named ":name"?',
|
||||||
'delete_rule' => 'Delete rule ":title"',
|
'account_areYouSure' => 'Are you sure you want to delete the account named ":name"?',
|
||||||
'delete_rule_group' => 'Delete rule group ":title"',
|
'bill_areYouSure' => 'Você tem certeza que quer apagar a fatura ":name"?',
|
||||||
|
'rule_areYouSure' => 'Are you sure you want to delete the rule titled ":title"?',
|
||||||
'attachment_areYouSure' => 'Are you sure you want to delete the attachment named ":name"?',
|
'ruleGroup_areYouSure' => 'Are you sure you want to delete the rule group titled ":title"?',
|
||||||
'account_areYouSure' => 'Are you sure you want to delete the account named ":name"?',
|
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
||||||
'bill_areYouSure' => 'Você tem certeza que quer apagar a fatura ":name"?',
|
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
||||||
'rule_areYouSure' => 'Are you sure you want to delete the rule titled ":title"?',
|
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
||||||
'ruleGroup_areYouSure' => 'Are you sure you want to delete the rule group titled ":title"?',
|
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
|
||||||
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
|
||||||
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
'tag_areYouSure' => 'Você tem certeza que quer apagar a tag ":tag"?',
|
||||||
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
||||||
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
|
'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.',
|
||||||
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
|
'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.',
|
||||||
'tag_areYouSure' => 'Você tem certeza que quer apagar a tag ":tag"?',
|
'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.',
|
||||||
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.',
|
||||||
'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.',
|
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.',
|
||||||
'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.',
|
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.',
|
||||||
'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.',
|
|
||||||
];
|
];
|
||||||
|
43
resources/lang/pt_BR/help.php
Normal file → Executable file
43
resources/lang/pt_BR/help.php
Normal file → Executable file
@@ -1,25 +1,30 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* help.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 [
|
||||||
|
|
||||||
// tour!
|
'main-content-title' => 'Bem Vindo ao Firefly III',
|
||||||
'main-content-title' => 'Bem Vindo ao 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!',
|
'account-menu-title' => 'All your accounts',
|
||||||
'account-menu-title' => 'All your accounts',
|
'account-menu-text' => 'Here you can find all the accounts you\'ve made.',
|
||||||
'account-menu-text' => 'Here you can find all the accounts you\'ve made.',
|
'budget-menu-title' => 'Budgets',
|
||||||
'budget-menu-title' => 'Budgets',
|
'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
|
||||||
'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
|
'report-menu-title' => 'Relatórios',
|
||||||
'report-menu-title' => 'Relatórios',
|
'report-menu-text' => 'Check this out when you want a solid overview of your fiances.',
|
||||||
'report-menu-text' => 'Check this out when you want a solid overview of your fiances.',
|
'transaction-menu-title' => 'Transações',
|
||||||
'transaction-menu-title' => 'Transações',
|
'transaction-menu-text' => 'All transactions you\'ve created can be found here.',
|
||||||
'transaction-menu-text' => 'All transactions you\'ve created can be found here.',
|
'option-menu-title' => 'Opções',
|
||||||
'option-menu-title' => 'Opções',
|
'option-menu-text' => 'This is pretty self-explanatory.',
|
||||||
'option-menu-text' => 'This is pretty self-explanatory.',
|
'main-content-end-title' => 'Fim!',
|
||||||
'main-content-end-title' => 'Fim!',
|
'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.',
|
||||||
'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',
|
'index' => 'index',
|
||||||
'home' => 'home',
|
'home' => 'home',
|
||||||
'accounts-index' => 'accounts.index',
|
'accounts-index' => 'accounts.index',
|
||||||
|
12
resources/lang/pt_BR/list.php
Normal file → Executable file
12
resources/lang/pt_BR/list.php
Normal file → Executable file
@@ -1,6 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
// all table headers.
|
* list.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 [
|
||||||
'name' => 'Nome',
|
'name' => 'Nome',
|
||||||
@@ -19,6 +24,9 @@ return [
|
|||||||
'description' => 'Descrição',
|
'description' => 'Descrição',
|
||||||
'amount' => 'Total',
|
'amount' => 'Total',
|
||||||
'date' => 'Data',
|
'date' => 'Data',
|
||||||
|
'interest_date' => 'Interest date',
|
||||||
|
'book_date' => 'Book date',
|
||||||
|
'process_date' => 'Processing date',
|
||||||
'from' => 'De',
|
'from' => 'De',
|
||||||
'to' => 'Até',
|
'to' => 'Até',
|
||||||
'budget' => 'Orçamento',
|
'budget' => 'Orçamento',
|
||||||
|
20
resources/lang/pt_BR/pagination.php
Normal file → Executable file
20
resources/lang/pt_BR/pagination.php
Normal file → Executable file
@@ -1,19 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* pagination.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 [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Pagination Language Lines
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are used by the paginator library to build
|
|
||||||
| the simple pagination links. You are free to change them to anything
|
|
||||||
| you want to customize your views to better match your application.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'previous' => '« Anterior',
|
'previous' => '« Anterior',
|
||||||
'next' => 'Próximo »',
|
'next' => 'Próximo »',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
19
resources/lang/pt_BR/passwords.php
Normal file → Executable file
19
resources/lang/pt_BR/passwords.php
Normal file → Executable file
@@ -1,22 +1,17 @@
|
|||||||
<?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 [
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| The following language lines are the default lines which match reasons
|
|
||||||
| that are given by the password broker for a password update attempt
|
|
||||||
| has failed, such as for an invalid token or invalid new password.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||||
'user' => 'We can\'t find a user with that e-mail address.',
|
'user' => 'We can\'t find a user with that e-mail address.',
|
||||||
'token' => 'This password reset token is invalid.',
|
'token' => 'This password reset token is invalid.',
|
||||||
'sent' => 'We have e-mailed your password reset link!',
|
'sent' => 'We have e-mailed your password reset link!',
|
||||||
'reset' => 'Your password has been reset!',
|
'reset' => 'Your password has been reset!',
|
||||||
'blocked' => 'Nice try though.',
|
'blocked' => 'Nice try though.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
7
resources/lang/pt_BR/validation.php
Normal file → Executable file
7
resources/lang/pt_BR/validation.php
Normal file → Executable file
@@ -1,4 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* validation.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 [
|
||||||
'iban' => 'This is not a valid IBAN.',
|
'iban' => 'This is not a valid IBAN.',
|
||||||
|
Reference in New Issue
Block a user