mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 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
 | |
|  * 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',
 | |
|     'searchResult'      => 'Pesquisa por ":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"',
 | |
| ]; |