mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 18:01:26 -06:00
43 lines
1.6 KiB
PHP
43 lines
1.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* breadcrumbs.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'home' => 'Início',
|
|
'edit_currency' => 'Editar moeda ":name"',
|
|
'delete_currency' => 'Excluir moeda ":moeda"',
|
|
'newPiggyBank' => 'Criar um novo cofrinho',
|
|
'edit_piggyBank' => 'Editar cofrinho ":name"',
|
|
'preferences' => 'Preferências',
|
|
'profile' => 'Perfil',
|
|
'changePassword' => 'Alterar sua senha',
|
|
'bills' => 'Faturas',
|
|
'newBill' => 'Nova fatura',
|
|
'edit_bill' => 'Editar fatura ":name"',
|
|
'delete_bill' => 'Apagar fatura ":name"',
|
|
'reports' => 'Relatórios',
|
|
'search_result' => 'Search results for ":query"',
|
|
'withdrawal_list' => 'Despesas',
|
|
'deposit_list' => 'Receitas, renda e depósitos',
|
|
'transfer_list' => 'Transferências',
|
|
'transfers_list' => 'Transferências',
|
|
'create_withdrawal' => 'Criar uma nova retirada',
|
|
'create_deposit' => 'Criar um novo depósito',
|
|
'create_transfer' => 'Criar nova transferência',
|
|
'edit_journal' => 'Editar transação ":description"',
|
|
'delete_journal' => 'Apagar transação ":description"',
|
|
'tags' => 'Etiquetas',
|
|
'createTag' => 'Criar nova etiqueta',
|
|
'edit_tag' => 'Editar etiqueta ":tag"',
|
|
'delete_tag' => 'Apagar etiqueta ":tag"',
|
|
]; |