35 lines
		
	
	
		
			852 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			852 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | ||
| $lang ['admin'] ['head'] = 'Administration';
 | ||
| 
 | ||
| $lang ['admin'] ['panels'] = array(
 | ||
| 	'main' => 'Principal',
 | ||
| 	'config' => 'Options',
 | ||
| 	// 'users' => 'Utilisateurs',
 | ||
| 	'entry' => 'Billets',
 | ||
| 	'static' => 'Pages statiques',
 | ||
| 	'uploader' => 'Uploader',
 | ||
| 	'widgets' => 'Widgets',
 | ||
| 	// 'add' => 'Ajouter',
 | ||
| 	// 'edit' => 'Éditer/Effacer',
 | ||
| 	'maintain' => 'Maintenance',
 | ||
| 	'plugin' => 'Plugins',
 | ||
| 	'themes' => 'Thèmes'
 | ||
| 	// 'updates' => 'Mises <20> jour',
 | ||
| );
 | ||
| 
 | ||
| $lang ['admin'] ['general'] = array(
 | ||
| 	'id' => 'Id', # for entry ids
 | ||
| 	'name' => 'Nom', # for file names
 | ||
| 	'title' => 'Titr', # for entry/posts/static titles
 | ||
| 	'comments' => '#Comms',
 | ||
| 	'author' => 'Auteur',
 | ||
| 	'actdel' => 'Effacer',
 | ||
| 	'actedit' => 'Éditer',
 | ||
| 	'actenable' => 'Activer',
 | ||
| 	'actdisable' => 'Désactiver',
 | ||
| 	'startpage' => 'Page d\'accueil',
 | ||
| 	'logout' => 'Déconnexion'
 | ||
| );
 | ||
| 
 | ||
| ?>
 | 
