Added Japanese setup translation by North Hill Work Studios - thanks as well! Also: git:ignore for local test content folders
		
			
				
	
	
		
			36 lines
		
	
	
		
			816 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			816 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
//Terminado 15 de fevereiro de 2020.
 | 
						|
 | 
						|
	$lang['admin']['head'] = 'Área de administração';
 | 
						|
	
 | 
						|
	$lang['admin']['panels'] = array(
 | 
						|
		'main'		=> 'Principal',
 | 
						|
		'config'	=> 'Opções',
 | 
						|
		//'users'		=> 'Users',
 | 
						|
		'entry'		=> 'Posts',
 | 
						|
		'static'	=> 'Estáveis',
 | 
						|
		'uploader'	=> 'Carregador',
 | 
						|
		'widgets'	=> 'Widgets',
 | 
						|
		//'add'		=> 'Add',
 | 
						|
		//'edit'		=> 'Edit/Delete',
 | 
						|
		'maintain'	=> 'Manutenção',
 | 
						|
		'plugin'	=> 'Plugins',
 | 
						|
		'themes'	=> 'Temas',
 | 
						|
		//'updates'	=> 'Updates',
 | 
						|
	);
 | 
						|
	
 | 
						|
	
 | 
						|
	$lang['admin']['general'] = array(
 | 
						|
		'id'		=> 'Id',	# for entry ids
 | 
						|
		'name'		=> 'Nome', 	# for file names
 | 
						|
		'title'		=> 'Título', # for entry/posts/static titles
 | 
						|
		'comments'	=> 'Comentários',
 | 
						|
		'author'	=> 'Autor',
 | 
						|
		'actdel'	=> 'Exclua',
 | 
						|
		'actedit'	=> 'Edite',
 | 
						|
		'actenable'	=> 'Ative',
 | 
						|
		'actdisable'	=> 'Desative'
 | 
						|
	);
 | 
						|
 | 
						|
?>
 |