36 lines
		
	
	
		
			842 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			842 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áticas',
 | |
| 	'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',
 | |
| 	'startpage' => 'Página inicial',
 | |
| 	'logout' => 'Sair'
 | |
| );
 | |
| 
 | |
| ?>
 | 
