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.6 KiB
PHP
40 lines
1.6 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' => 'Home',
|
|
'edit_currency' => 'Edit currency ":name"',
|
|
'delete_currency' => 'Delete currency ":name"',
|
|
'newPiggyBank' => 'Erstellen Sie ein neues Sparschwein',
|
|
'edit_piggyBank' => 'Bearbeite Sparschwein ":name"',
|
|
'preferences' => 'Einstellungen',
|
|
'profile' => 'Profil',
|
|
'changePassword' => 'Passwort ändern',
|
|
'bills' => 'Rechnungen',
|
|
'newBill' => 'Neue Rechnung',
|
|
'edit_bill' => 'Bearbeite Rechnung ":name"',
|
|
'delete_bill' => 'Lösche Rechnung ":name"',
|
|
'reports' => 'Berichte',
|
|
'searchResult' => 'Suche nach ":query"',
|
|
'withdrawal_list' => 'Ausgaben',
|
|
'deposit_list' => 'Umsatz, Einkommen und Einlagen',
|
|
'transfer_list' => 'Transfers',
|
|
'transfers_list' => 'Transfers',
|
|
'create_withdrawal' => 'Create new withdrawal',
|
|
'create_deposit' => 'Create new deposit',
|
|
'create_transfer' => 'Create new transfer',
|
|
'edit_journal' => 'Bearbeite Transaktion ":description"',
|
|
'delete_journal' => 'Lösche Transaktion ":description"',
|
|
'tags' => 'Tags',
|
|
'createTag' => 'Neuen Tag erstellen',
|
|
'edit_tag' => 'Bearbeite Tag ":tag"',
|
|
'delete_tag' => 'Lösche Tag ":tag"',
|
|
];
|