mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-29 20:23:51 -06:00
58 lines
2.9 KiB
PHP
58 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* breadcrumbs.php
|
|
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'home' => 'Главная',
|
|
'edit_currency' => 'Редактирование валюты ":name"',
|
|
'delete_currency' => 'Удаление валюты ":name"',
|
|
'newPiggyBank' => 'Создание новой копилки',
|
|
'edit_piggyBank' => 'Редактирование копилки ":name"',
|
|
'preferences' => 'Настройки',
|
|
'profile' => 'Профиль',
|
|
'changePassword' => 'Изменение вашего пароля',
|
|
'change_email' => 'Изменить адрес электронной почты',
|
|
'bills' => 'Счета к оплате',
|
|
'newBill' => 'Новый счёт к оплате',
|
|
'edit_bill' => 'Редактирование счёта к оплате ":name"',
|
|
'delete_bill' => 'Удаление счёта к оплате ":name"',
|
|
'reports' => 'Отчёты',
|
|
'search_result' => 'Результаты поиска для ":query"',
|
|
'withdrawal_list' => 'Мои расходы',
|
|
'deposit_list' => 'Мои доходы',
|
|
'transfer_list' => 'Переводы',
|
|
'transfers_list' => 'Переводы',
|
|
'reconciliation_list' => 'Сверка',
|
|
'create_withdrawal' => 'Создать новый расход',
|
|
'create_deposit' => 'Создать новый доход',
|
|
'create_transfer' => 'Создать новый перевод',
|
|
'edit_journal' => 'Редактирование транзакции ":description"',
|
|
'edit_reconciliation' => 'Редактировать ":description"',
|
|
'delete_journal' => 'Удаление транзакции ":description"',
|
|
'tags' => 'Метки',
|
|
'createTag' => 'Создать новую метку',
|
|
'edit_tag' => 'Редактирование метки ":tag"',
|
|
'delete_tag' => 'Удаление метки ":tag"',
|
|
'delete_journal_link' => 'Удалить связь между транзакциями',
|
|
];
|