mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
61 lines
2.1 KiB
PHP
61 lines
2.1 KiB
PHP
<?php
|
|
return [
|
|
'home' => 'Accueil',
|
|
|
|
// accounts
|
|
'cash_accounts' => 'Cash accounts',
|
|
'edit_account' => 'Editer le compte : ":name"',
|
|
|
|
// currencies
|
|
'edit_currency' => 'Editer la devise : ";name"',
|
|
'delete_currency' => 'Supprimer la devise ":name"',
|
|
|
|
// piggy banks
|
|
'newPiggyBank' => 'Create a new piggy bank',
|
|
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
|
|
|
// top menu
|
|
'preferences' => 'Preferences',
|
|
'profile' => 'Profil',
|
|
'changePassword' => 'Modifier le mot de passe',
|
|
|
|
// bills
|
|
'bills' => 'Factures',
|
|
'newBill' => 'Nouvelle facture',
|
|
'edit_bill' => 'Editer la facture : ":name"',
|
|
'delete_bill' => 'Supprimer la facture ":name"',
|
|
|
|
// reports
|
|
'reports' => 'Rapport',
|
|
'monthly_report' => 'Rapport mensuel pour :date',
|
|
'monthly_report_shared' => 'Rapport mensuel pour :date (avec les comptes joints)',
|
|
'yearly_report' => 'Rapport annuel pour :date',
|
|
'yearly_report_shared' => 'Rapport annuel pour :date (avec les comptes joints)',
|
|
'budget_report' => 'Rapport budgetaire pour :date',
|
|
|
|
// search
|
|
'searchResult' => 'Resultat de recherche pour ":query"',
|
|
|
|
// transaction lists.
|
|
'withdrawal_list' => 'Dépenses',
|
|
'deposit_list' => 'Revenue, Salaire et depots ',
|
|
'transfer_list' => 'Transferts',
|
|
'transfers_list' => 'Transferts',
|
|
|
|
// create transactions
|
|
'create_withdrawal' => 'Creer un nouveau retrait',
|
|
'create_deposit' => 'Create new deposit',
|
|
'create_transfer' => 'Creer un nouveau transfert',
|
|
|
|
// edit transactions
|
|
'edit_journal' => 'Editer la transaction ":description"',
|
|
'delete_journal' => 'Supprimer la transaction ":description"',
|
|
|
|
// tags
|
|
'tags' => 'Tags',
|
|
'createTag' => 'Créer un nouveau tag',
|
|
'edit_tag' => 'Editer le tag ":tag"',
|
|
'delete_tag' => 'Supprimer le tag ":tag"',
|
|
|
|
];
|