mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 13:39:19 -06:00
61 lines
2.1 KiB
PHP
61 lines
2.1 KiB
PHP
<?php
|
|
return [
|
|
'home' => 'Início',
|
|
|
|
// accounts
|
|
'cash_accounts' => 'Contas Correntes',
|
|
'edit_account' => 'Editar conta ":name"',
|
|
|
|
// currencies
|
|
'edit_currency' => 'Editar moedas ":name"',
|
|
'delete_currency' => 'Apagar moedas ":name"',
|
|
|
|
// piggy banks
|
|
'newPiggyBank' => 'Criar um novo cofrinho',
|
|
'edit_piggyBank' => 'Editar cofrinho ":name"',
|
|
|
|
// top menu
|
|
'preferences' => 'Preferências',
|
|
'profile' => 'Perfil',
|
|
'changePassword' => 'Alterar sua senha',
|
|
|
|
// bills
|
|
'bills' => 'Faturas',
|
|
'newBill' => 'Nova fatura',
|
|
'edit_bill' => 'Editar fatura ":name"',
|
|
'delete_bill' => 'Apagar fatura ":name"',
|
|
|
|
// reports
|
|
'reports' => 'Relatórios',
|
|
'monthly_report' => 'Relatório Mensal para :date',
|
|
'monthly_report_shared' => 'Relatório mensal para :date (incluindo contas compartilhadas)',
|
|
'yearly_report' => 'Relatório Anual para :date',
|
|
'yearly_report_shared' => 'Relatório anual para :date (incluindo contas compartilhadas)',
|
|
'budget_report' => 'Relatório Orçamentário para :date',
|
|
|
|
// search
|
|
'searchResult' => 'Pesquisa por ":query"',
|
|
|
|
// transaction lists.
|
|
'withdrawal_list' => 'Despesas',
|
|
'deposit_list' => 'Receitas, renda e depósitos',
|
|
'transfer_list' => 'Transferências',
|
|
'transfers_list' => 'Transferências',
|
|
|
|
// create transactions
|
|
'create_withdrawal' => 'Criar uma nova retirada',
|
|
'create_deposit' => 'Criar um novo depósito',
|
|
'create_transfer' => 'Criar nova transferência',
|
|
|
|
// edit transactions
|
|
'edit_journal' => 'Editar transação ":description"',
|
|
'delete_journal' => 'Apagar transação ":description"',
|
|
|
|
// tags
|
|
'tags' => 'Etiquetas',
|
|
'createTag' => 'Criar nova etiqueta',
|
|
'edit_tag' => 'Editar etiqueta ":tag"',
|
|
'delete_tag' => 'Apagar etiqueta ":tag"',
|
|
|
|
];
|