57 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| $lang['admin']['plugin']['submenu']['bbcode'] = 'BBCode';
 | |
| $lang['admin']['plugin']['bbcode'] = array(
 | |
| 	'head' => 'Configuration du BBCode',
 | |
| 	'desc1' => 'Ce plugin autorise l\'usage du <a href="http://www.phpbb.com/'.
 | |
| 		'phpBB/faq.php?mode=bbcode">BBCode</a> et permet une intégration '.
 | |
| 		'automatique avec une lightbox (si disponible).',
 | |
| 	
 | |
| 	'options' => 'Options',
 | |
| 
 | |
| 	'editing'	=> 'Edition',
 | |
| 	'allow_html'=> 'Prise en charge de l\'HTML',
 | |
| 	'allow_html_long' => 'Autoriser l\'usage de l\'HTML avec le BBCode',
 | |
| 	'toolbar' => 'Barre d\'outils',
 | |
| 	'toolbar_long' => 'Activer la Barre d\'outils d\'édition.',
 | |
| 
 | |
| 	'other'	=>	'Autres options',
 | |
| 	'comments' => 'Commentaires',
 | |
| 	'comments_long' => 'Autoriser le BBCode dans les commentaires',
 | |
| 	'urlmaxlen' => 'Longueur maximum URL',
 | |
| 	'urlmaxlen_long_pre' => 'Pas plus longue que ',
 | |
| 	'urlmaxlen_long_post'=>' caractères.',
 | |
| 	'submit' => 'Enregistrer la configuration',
 | |
| 	'msgs' => array(
 | |
| 		1 => 'Configuration BBCode enregistrée avec succès.',
 | |
| 		-1 => 'Configuration BBCode non enregistrée.'
 | |
| 	),
 | |
| 
 | |
| 	'editor' => array(
 | |
| 		'formatting'     => 'Format',
 | |
| 		'textarea'       => 'Zone de texte: ',
 | |
| 		'expand'         => 'Elargir',
 | |
| 		'expandtitle'    => 'Elargir la hauteur de la zone de texte',
 | |
| 		'reduce'         => 'Réduire',
 | |
| 		'reducetitle'    => 'Réduire la hauteur de la zone de texte',
 | |
| 		// note: accesskeys are not internationalized...
 | |
| 		// btw. why not :-D
 | |
| 		'bold'           => 'G',
 | |
| 		'boldtitle'      => 'Gras',
 | |
| 		'italic'         => 'I',
 | |
| 		'italictitle'    => 'Italique',
 | |
| 		'underline'      => 'S',
 | |
| 		'underlinetitle' => 'Souligné',
 | |
| 		'quote'          => 'Citation',
 | |
| 		'quotetitle'     => 'Citation',
 | |
| 		'code'           => 'Code',
 | |
| 		'codetitle'      => 'Code',
 | |
| 		'help'           => 'Aide BBCode',
 | |
| 		// currently not used
 | |
| 		'status'         => 'barre de statut',
 | |
| 		'statusbar'      => 'Mode Normal. Pressez <Esc> pour passer en mode édition .'
 | |
| 	)
 | |
| );
 | |
| 
 | |
| ?>
 | 
