 f46df8aafe
			
		
	
	
		f46df8aafe
		
	
	
	
	
		
			
			- For future new language packs, a clean basis has been created with the existing language packs. - Removed unnecessary line breaks, spaces and tabs to avoid unexpected views in the responsive design. - Updated links to external sources. - Missing language files created in plugins. - Gallerycaptions plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Mediamanager plugin: el-gr, fr-fr - PhotoSwipe plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Readmore plugin: el-gr, fr-fr - Seometataginfo plugin: pt-br
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $lang ['admin'] ['themes'] ['submenu'] = array(
 | |
| 	'default' => 'Themas',
 | |
| 	'style' => 'Stijl'
 | |
| );
 | |
| 
 | |
| /* default panel action (change theme) */
 | |
| $lang ['admin'] ['themes'] ['default'] = array(
 | |
| 	'head1' => 'Huidig thema',
 | |
| 
 | |
| 	'head2' => 'Beschikbare themas',
 | |
| 	'descr' => 'Selecteer het thema dat u wilt gebruiken',
 | |
| 
 | |
| 	'nodescr' => 'Geen beschrijving',
 | |
| 	'noauthor' => 'Onbekende auteur'
 | |
| );
 | |
| 
 | |
| $lang ['admin'] ['themes'] ['default'] ['msgs'] = array(
 | |
| 	1 => 'Thema is gewijzigd.',
 | |
| 	-1 => 'Er is een fout opgetreden tijdens het wijzigen van het thema.',
 | |
| 	-2 => 'Het thema dat u hebt gekozen bestaat niet.'
 | |
| );
 | |
| 
 | |
| /* select style */
 | |
| $lang ['admin'] ['themes'] ['style'] = array(
 | |
| 	'head1' => 'Huidige stijl',
 | |
| 
 | |
| 	'head2' => 'Beschikbare stijlen',
 | |
| 	'descr' => 'Selecteer de stijl die u met dit thema wilt gebruiken',
 | |
| 
 | |
| 	'nodescr' => 'Geen beschrijving',
 | |
| 	'noauthor' => 'Onbekende auteur'
 | |
| );
 | |
| 
 | |
| $lang ['admin'] ['themes'] ['style'] ['msgs'] = array(
 | |
| 	1 => 'Stijl is gewijzigd.',
 | |
| 	-1 => 'Er is een fout opgetreden tijdens het wijzigen van de stijl.',
 | |
| 	-2 => 'De stijl die u hebt gekozen, bestaat niet.'
 | |
| );
 | |
| ?>
 |