 f1e34a2a6e
			
		
	
	
		f1e34a2a6e
		
	
	
	
	
		
			
			- Internationalized button titles ready - Remnants of Mootools (plugin_jsutils) removed from the template
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $lang ['admin'] ['plugin'] ['submenu'] ['bbcode'] = 'BBCode';
 | |
| $lang ['admin'] ['plugin'] ['bbcode'] = array(
 | |
| 	'head' => 'BBCode Configuration',
 | |
| 	'desc1' => 'This plugin allows using <a href="https://wiki.flatpress.org/' . //
 | |
| 		'doc:techfaq#bbcode" class="hint" target="_blank">BBCode</a> markup.',
 | |
| 
 | |
| 	'options' => 'Options',
 | |
| 
 | |
| 	'editing' => 'Editing',
 | |
| 	'allow_html' => 'Inline HTML',
 | |
| 	'allow_html_long' => 'Enable using HTML along with BBCode',
 | |
| 	'toolbar' => 'Toolbar',
 | |
| 	'toolbar_long' => 'Enable the editor toolbar.',
 | |
| 
 | |
| 	'other'	=> 'Other options',
 | |
| 	'comments' => 'Comments',
 | |
| 	'comments_long' => 'Allow BBCode in comments',
 | |
| 	'urlmaxlen' => 'URL max length',
 | |
| 	'urlmaxlen_long_pre' => 'Shorten URLs longer than ',
 | |
| 	'urlmaxlen_long_post' => ' characters.',
 | |
| 	'submit' => 'Save configuration',
 | |
| 	'msgs' => array(
 | |
| 		1 => 'BBCode configuration successful saved.',
 | |
| 		-1 => 'BBCode configuration not saved.'
 | |
| 	),
 | |
| 
 | |
| 	'editor' => array(
 | |
| 		'formatting' => 'Formatting',
 | |
| 		'textarea' => 'Textarea: ',
 | |
| 		'expand' => 'Expand',
 | |
| 		'expandtitle' => 'Expand Textarea Height',
 | |
| 		'reduce' => 'Reduce',
 | |
| 		'reducetitle' => 'Reduce Textarea Height',
 | |
| 		'urltitle' => 'URL/ Link',
 | |
| 		'mailtitle' => 'E-mail address',
 | |
| 		'boldtitle' => 'Bold',
 | |
| 		'italictitle' => 'Italic',
 | |
| 		'headlinetitle' => 'Headline',
 | |
| 		'underlinetitle' => 'Unterstreichen',
 | |
| 		'crossouttitle' => 'Crossed out',
 | |
| 		'unorderedlisttitle' => 'Unsorted list',
 | |
| 		'orderedlisttitle' => 'Sorted list',
 | |
| 		'quotetitle' => 'Quote',
 | |
| 		'codetitle' => 'Code',
 | |
| 		'htmltitle' => 'Als HTML-Code einfügen',
 | |
| 		'help' => 'BBCode Help',
 | |
| 		'file' => 'File: ',
 | |
| 		'image' => 'Image: ',
 | |
| 		'selection' => '-- Selection --'
 | |
| 	)
 | |
| );
 | |
| 
 | |
| $lang ['plugin'] ['bbcode'] = array (
 | |
| 	'go_to' => 'Go to',
 | |
| 	'langtag' => 'en_US' // language tag for Facebook Video
 | |
| );
 | |
| ?>
 |