mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 04:59:25 -06:00
d920537dd2
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
40 lines
1.7 KiB
PHP
40 lines
1.7 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',
|
|
'edit_currency' => 'Edit currency ":name"',
|
|
'delete_currency' => 'Delete currency ":name"',
|
|
'newPiggyBank' => 'Créer une nouvelle tirelire',
|
|
'edit_piggyBank' => 'Modifier la tirelire ":name"',
|
|
'preferences' => 'Préférences',
|
|
'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',
|
|
'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' => 'Créer un nouveau dépôt',
|
|
'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"',
|
|
];
|