mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-09-03 20:52:58 -05:00
79 lines
4.1 KiB
PHP
79 lines
4.1 KiB
PHP
<?php
|
|||
|
|
|
||
|
|
/**
|
||
|
|
* breadcrumbs.php
|
||
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
||
|
|
*
|
||
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||
|
|
*
|
||
|
|
* This program is free software: you can redistribute it and/or modify
|
||
|
|
* it under the terms of the GNU Affero General Public License as
|
||
|
|
* published by the Free Software Foundation, either version 3 of the
|
||
|
|
* License, or (at your option) any later version.
|
||
|
|
*
|
||
|
|
* This program 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 Affero General Public License for more details.
|
||
|
|
*
|
||
|
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
|
|
*/
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
return [
|
||
|
|
'home' => 'Головна',
|
||
|
|
'budgets' => 'Budgets',
|
||
|
|
'subscriptions' => 'Subscriptions',
|
||
|
|
'transactions' => 'Transactions',
|
||
|
|
'title_expenses' => 'Expenses',
|
||
|
|
'title_withdrawal' => 'Expenses',
|
||
|
|
'title_revenue' => 'Revenue / income',
|
||
|
|
'title_deposit' => 'Revenue / income',
|
||
|
|
'title_transfer' => 'Transfers',
|
||
|
|
'title_transfers' => 'Transfers',
|
||
|
|
'edit_currency' => 'Редагування валюти ":name"',
|
||
|
|
'delete_currency' => 'Видалення валюти ":name"',
|
||
|
|
'newPiggyBank' => 'Створити нову скарбничку',
|
||
|
|
'edit_piggyBank' => 'Редагувати скарбничку ":name"',
|
||
|
|
'preferences' => 'Налаштування',
|
||
|
|
'profile' => 'Профіль',
|
||
|
|
'accounts' => 'Рахунки',
|
||
|
|
'changePassword' => 'Змінити пароль',
|
||
|
|
'change_email' => 'Змінити електронну адресу',
|
||
|
|
'bills' => 'Рахунки до оплати',
|
||
|
|
'newBill' => 'Нових рахунок до оплати',
|
||
|
|
'edit_bill' => 'Редагувати рахунок до оплати ":name"',
|
||
|
|
'delete_bill' => 'Видалити рахунок до оплати ":name"',
|
||
|
|
'reports' => 'Звіти',
|
||
|
|
'search_result' => 'Результати пошуку для ":query"',
|
||
|
|
'withdrawal_list' => 'Витрати',
|
||
|
|
'Withdrawal_list' => 'Витрати',
|
||
|
|
'deposit_list' => 'Доходи',
|
||
|
|
'transfer_list' => 'Перекази',
|
||
|
|
'transfers_list' => 'Перекази',
|
||
|
|
'reconciliation_list' => 'Звірка',
|
||
|
|
'create_withdrawal' => 'Створити нову витрату',
|
||
|
|
'create_deposit' => 'Створити новий дохід',
|
||
|
|
'create_transfer' => 'Створити новий переказ',
|
||
|
|
'create_new_transaction' => 'Створити нову транзакцію',
|
||
|
|
'edit_journal' => 'Редагувати транзакцію ":description"',
|
||
|
|
'edit_reconciliation' => 'Редагувати ":description"',
|
||
|
|
'delete_journal' => 'Видалити транзакцію ":description"',
|
||
|
|
'delete_group' => 'Видалення транзакції ":description"',
|
||
|
|
'tags' => 'Теги',
|
||
|
|
'createTag' => 'Створити нову мітку',
|
||
|
|
'edit_tag' => 'Редагувати мітку ":tag"',
|
||
|
|
'delete_tag' => 'Видалити мітку ":tag"',
|
||
|
|
'delete_journal_link' => 'Видалити зв‘язок між транзакціями',
|
||
|
|
'edit_object_group' => 'Редагувати групу ":title"',
|
||
|
|
'delete_object_group' => 'Видалити групу ":title"',
|
||
|
|
'logout_others' => 'Завершити інші сесії',
|
||
|
|
'asset_accounts' => 'Asset accounts',
|
||
|
|
'expense_accounts' => 'Expense accounts',
|
||
|
|
'revenue_accounts' => 'Revenue accounts',
|
||
|
|
'liabilities_accounts' => 'Liabilities',
|
||
|
|
'placeholder' => '[Placeholder]',
|
||
|
|
];
|