62 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.0 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',
 | |
| 		// 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',
 | |
| 		'file' => 'Fichier: ',
 | |
| 		'image' => 'Image: ',
 | |
| 		'selection' => '-- Sélection --',
 | |
| 		// currently not used
 | |
| 		'status' => 'barre de statut',
 | |
| 		'statusbar' => 'Mode Normal. Pressez <Esc> pour passer en mode édition .'
 | |
| 	)
 | |
| );
 | |
| 
 | |
| $lang ['plugin'] ['bbcode'] = array (
 | |
| 	'go_to' => 'Aller à',
 | |
| 	'langtag' => 'fr_FR' // language tag for Facebook Video
 | |
| );
 | |
| ?>
 | 
