62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $lang ['admin'] ['plugin'] ['submenu'] ['bbcode'] = 'BBCode';
 | |
| $lang ['admin'] ['plugin'] ['bbcode'] = array(
 | |
| 	'head' => 'BBCode Configuratie',
 | |
| 	'desc1' => 'Deze plugin maakt het gebruik van <a href="https://wiki.flatpress.org/' . //
 | |
| 		'doc:techfaq#bbcode" class="hint" target="_blank">BBCode</a> mogelijk.',
 | |
| 
 | |
| 	'options' => 'Opties',
 | |
| 
 | |
| 	'editing' => 'Bewerken',
 | |
| 	'allow_html' => 'Inline HTML',
 | |
| 	'allow_html_long' => 'Schakel het gebruik van HTML samen met BBCode in',
 | |
| 	'toolbar' => 'Werkbalk',
 | |
| 	'toolbar_long' => 'Schakel de editorwerkbalk in.',
 | |
| 
 | |
| 	'other' => 'Andere opties',
 | |
| 	'comments' => 'Opmerkingen',
 | |
| 	'comments_long' => 'Sta BBCode toe in opmerkingen',
 | |
| 	'urlmaxlen' => 'URL max lengte',
 | |
| 	'urlmaxlen_long_pre' => 'Verkort URL langer dan ',
 | |
| 	'urlmaxlen_long_post' => ' karakters.',
 | |
| 	'submit' => 'Bewaar de configuratie',
 | |
| 	'msgs' => array(
 | |
| 		1 => 'BBCode-configuratie succesvol opgeslagen.',
 | |
| 		-1 => 'BBCode-configuratie niet opgeslagen.'
 | |
| 	),
 | |
| 
 | |
| 	'editor' => array(
 | |
| 		'formatting' => 'Formatteren',
 | |
| 		'textarea' => 'Textgebied: ',
 | |
| 		'expand' => 'Uitbreiden',
 | |
| 		'expandtitle' => 'Breid hoogte Textgebied uit',
 | |
| 		'reduce' => 'Verminder',
 | |
| 		'reducetitle' => 'Verminder hoogte Textgebied',
 | |
| 		// note: accesskeys are not internationalized...
 | |
| 		// btw. why not :-D
 | |
| 		'bold' => 'B',
 | |
| 		'boldtitle' => 'Bold',
 | |
| 		'italic' => 'I',
 | |
| 		'italictitle' => 'Italic',
 | |
| 		'underline' => 'U',
 | |
| 		'underlinetitle' => 'Underlined',
 | |
| 		'quote' => 'Quote',
 | |
| 		'quotetitle' => 'Quote',
 | |
| 		'code' => 'Code',
 | |
| 		'codetitle' => 'Code',
 | |
| 		'help' => 'BBCode Help',
 | |
| 		'file' => 'File: ',
 | |
| 		'image' => 'Beeld: ',
 | |
| 		'selection' => '-- Selectie --',
 | |
| 		// currently not used
 | |
| 		'status' => 'Statusbalk',
 | |
| 		'statusbar' => 'Normale modus. Druk <Esc> om van bewerkingsmodus te wisselen.'
 | |
| 	)
 | |
| );
 | |
| 
 | |
| $lang ['plugin'] ['bbcode'] = array (
 | |
| 		'go_to' => 'Ga naar',
 | |
| 		'langtag' => 'nl_NL' // language tag for Facebook Video
 | |
| );
 | |
| ?>
 | 
