mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
47 lines
2.1 KiB
PHP
47 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* breadcrumbs.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'home' => 'Accueil',
|
|
'cash_accounts' => 'Cash accounts',
|
|
'edit_account' => 'Editer le compte : ":name"',
|
|
'edit_currency' => 'Editer la devise : ";name"',
|
|
'delete_currency' => 'Supprimer la devise ":name"',
|
|
'newPiggyBank' => 'Create a new piggy bank',
|
|
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
|
'preferences' => 'Preferences',
|
|
'profile' => 'Profil',
|
|
'changePassword' => 'Modifier le mot de passe',
|
|
'bills' => 'Factures',
|
|
'newBill' => 'Nouvelle facture',
|
|
'edit_bill' => 'Editer la facture : ":name"',
|
|
'delete_bill' => 'Supprimer la facture ":name"',
|
|
'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',
|
|
'searchResult' => 'Resultat de recherche pour ":query"',
|
|
'withdrawal_list' => 'Dépenses',
|
|
'deposit_list' => 'Revenue, Salaire et depots ',
|
|
'transfer_list' => 'Transferts',
|
|
'transfers_list' => 'Transferts',
|
|
'create_withdrawal' => 'Creer un nouveau retrait',
|
|
'create_deposit' => 'Create new deposit',
|
|
'create_transfer' => 'Creer un nouveau transfert',
|
|
'edit_journal' => 'Editer la transaction ":description"',
|
|
'delete_journal' => 'Supprimer la transaction ":description"',
|
|
'tags' => 'Tags',
|
|
'createTag' => 'Créer un nouveau tag',
|
|
'edit_tag' => 'Editer le tag ":tag"',
|
|
'delete_tag' => 'Supprimer le tag ":tag"',
|
|
];
|