 f1e34a2a6e
			
		
	
	
		f1e34a2a6e
		
	
	
	
	
		
			
			- Internationalized button titles ready - Remnants of Mootools (plugin_jsutils) removed from the template
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 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="https://wiki.flatpress.org/' . //
 | |
| 		'doc:techfaq#bbcode" class="hint" target="_blank">BBCode</a>.',
 | |
| 
 | |
| 	'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',
 | |
| 		'urltitle' => 'URL/ lien',
 | |
| 		'mailtitle' => 'Adresse e-mail', 
 | |
| 		'boldtitle' => 'Gras',
 | |
| 		'italictitle' => 'Italique',
 | |
| 		'headlinetitle' => 'Titre',
 | |
| 		'underlinetitle' => 'Souligné',
 | |
| 		'crossouttitle' => 'Barré',
 | |
| 		'unorderedlisttitle' => 'Liste non triée',
 | |
| 		'orderedlisttitle' => 'Liste triée',
 | |
| 		'quotetitle' => 'Citation',
 | |
| 		'codetitle' => 'Code',
 | |
| 		'htmltitle' => 'Insérer en tant que code HTML',
 | |
| 		'help' => 'Aide BBCode',
 | |
| 		'file' => 'Fichier: ',
 | |
| 		'image' => 'Image: ',
 | |
| 		'selection' => '-- Sélection --'
 | |
| 	)
 | |
| );
 | |
| 
 | |
| $lang ['plugin'] ['bbcode'] = array (
 | |
| 	'go_to' => 'Aller à',
 | |
| 	'langtag' => 'fr_FR' // language tag for Facebook Video
 | |
| );
 | |
| ?>
 |