 f46df8aafe
			
		
	
	
		f46df8aafe
		
	
	
	
	
		
			
			- For future new language packs, a clean basis has been created with the existing language packs. - Removed unnecessary line breaks, spaces and tabs to avoid unexpected views in the responsive design. - Updated links to external sources. - Missing language files created in plugins. - Gallerycaptions plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Mediamanager plugin: el-gr, fr-fr - PhotoSwipe plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Readmore plugin: el-gr, fr-fr - Seometataginfo plugin: pt-br
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $lang ['admin'] ['static'] ['submenu'] = array(
 | |
| 	'list' => 'Gérer pages statiques',
 | |
| 	'write' => 'Écrire'
 | |
| );
 | |
| 
 | |
| /* main panel */
 | |
| $lang ['admin'] ['static'] ['list'] = array(
 | |
| 	'head' => 'Pages Statiques',
 | |
| 	'descr' => 'Sélectionnez une page à éditer ou <a href="admin.php?p=static&action=write">ajoutez-en une nouvelle</a>.',
 | |
| 
 | |
| 	'sel' => 'Sel', // checkbox
 | |
| 	'date' => 'Date',
 | |
| 	'name' => 'Page',
 | |
| 	'title' => 'Titre',
 | |
| 	'author' => 'Auteur',
 | |
| 
 | |
| 	'action' => 'Action',
 | |
| 	'act_view' => 'Voir',
 | |
| 	'act_del' => 'Effacer',
 | |
| 	'act_edit' => 'Éditer'
 | |
| );
 | |
| 
 | |
| $lang ['admin'] ['static'] ['list'] ['msgs'] = array(
 | |
| 	1 => 'Page enregistrée avec succès',
 | |
| 	-1 => 'Echec de la sauvegarde de la page',
 | |
| 	2 => 'La page a été effacée',
 | |
| 	-2 => 'Echec de la suppression de la page'
 | |
| );
 | |
| 
 | |
| /* write panel */
 | |
| $lang ['admin'] ['static'] ['write'] = array(
 | |
| 	'head' => 'Publier une page statique',
 | |
| 	'descr' => 'Editez le formulaire pour publier la page',
 | |
| 	'fieldset1' => 'Éditer',
 | |
| 	'subject' => 'Sujet (*):',
 | |
| 	'content' => 'Contenu (*):',
 | |
| 	'fieldset2' => 'Soumettre',
 | |
| 	'pagename' => 'Nom de la page (*):',
 | |
| 	'submit' => 'Publier',
 | |
| 	'preview' => 'Aperçu',
 | |
| 
 | |
| 	'delfset' => 'Effacer',
 | |
| 	'deletemsg' => 'Effacer cette page',
 | |
| 	'del' => 'Effacer',
 | |
| 	'success' => 'Votre page a été publiée',
 | |
| 	'otheropts' => 'Autres options',
 | |
| );
 | |
| 
 | |
| $lang ['admin'] ['static'] ['write'] ['error'] = array(
 | |
| 	'subject' => 'Complétez le sujet',
 | |
| 	'content' => 'Complétez les champs requis',
 | |
| 	'id' => 'Vous devez entrer un id valide'
 | |
| );
 | |
| 
 | |
| /* delete action */	
 | |
| $lang ['admin'] ['static'] ['delete'] = array(
 | |
| 	'head' => 'Supprimer Page', 
 | |
| 	'descr' => 'Vous allez effacer la page suivante:',
 | |
| 	'preview' => 'Aperçu',
 | |
| 	'confirm' => 'Confirmer la suppression?',
 | |
| 	'fset' => 'Effacer',
 | |
| 	'ok' => 'Oui, effacer cette page',
 | |
| 	'cancel' => 'Non, retour au panel',
 | |
| 	'err' => 'La page spécifiée n\'existe pas'
 | |
| );
 | |
| ?>
 |