 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' => 'Configuración de BBCode',
 | |
| 	'desc1' => 'Este Plugin permite usar <a href="https://wiki.flatpress.org/' . //
 | |
| 		'doc:techfaq#bbcode" class="hint" target="_blank">BBCode</a> markup.',
 | |
| 
 | |
| 	'options' => 'Opciones',
 | |
| 
 | |
| 	'editing' => 'Edición',
 | |
| 	'allow_html' => 'HTML en línea',
 | |
| 	'allow_html_long' => 'Habilite el uso de HTML junto con BBCode',
 | |
| 	'toolbar' => 'Barra de herramientas',
 | |
| 	'toolbar_long' => 'Habilite la barra de herramientas del editor.',
 | |
| 
 | |
| 	'other' => 'Otras opciones',
 | |
| 	'comments' => 'Comments',
 | |
| 	'comments_long' => 'Permitir BBCode en los comentarios',
 | |
| 	'urlmaxlen' => 'Largo máximo del URL',
 | |
| 	'urlmaxlen_long_pre' => 'Acorte los URL más largos de ',
 | |
| 	'urlmaxlen_long_post' => ' caracteres.',
 | |
| 	'submit' => 'Save configuration',
 | |
| 	'msgs' => array(
 | |
| 			1 => 'BBCode configuration successful saved.',
 | |
| 			-1 => 'Configuración de BBCode no guardada.'
 | |
| 	),
 | |
| 
 | |
| 	'editor' => array(
 | |
| 		'formatting' => 'Formateo',
 | |
| 		'textarea' => 'Área de texto: ',
 | |
| 		'expand' => 'Ampliar',
 | |
| 		'expandtitle' => 'Ampliar la altura del área de texto',
 | |
| 		'reduce' => 'Reducir',
 | |
| 		'reducetitle' => 'Reducir la altura del área de texto',
 | |
| 		'urltitle' => 'URL/ Enlace',
 | |
| 		'mailtitle' => 'Correo electrónico',
 | |
| 		'boldtitle' => 'Negrita',
 | |
| 		'italictitle' => 'Itálica',
 | |
| 		'headlinetitle' => 'Rúbrica',
 | |
| 		'underlinetitle' => 'Subrayada',
 | |
| 		'crossouttitle' => 'Tachado',
 | |
| 		'unorderedlisttitle' => 'Lista sin clasificar',
 | |
| 		'orderedlisttitle' => 'Lista ordenada',
 | |
| 		'quotetitle' => 'Citar',
 | |
| 		'codetitle' => 'Código',
 | |
| 		'htmltitle' => 'Insertar como código HTML',
 | |
| 		'help' => 'Ayuda de BBCode',
 | |
| 		'file' => 'Fichero: ',
 | |
| 		'image' => 'Imagen: ',
 | |
| 		'selection' => '-- Selección --'
 | |
| 	)
 | |
| );
 | |
| 
 | |
| $lang ['plugin'] ['bbcode'] = array (
 | |
| 	'go_to' => 'Ir a',
 | |
| 	'langtag' => 'es_ES' // language tag for Facebook Video
 | |
| );
 | |
| ?>
 |