 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' => 'Temi',
 | |
| 	'style' => 'Stili'
 | |
| );
 | |
| 
 | |
| /* default panel action (change theme) */
 | |
| $lang ['admin'] ['themes'] ['default'] = array(
 | |
| 	'head1' => 'Tema in uso',
 | |
| 
 | |
| 	'head2' => 'Temi disponibili',
 | |
| 	'descr' => 'Seleziona il tema che vuoi usare',
 | |
| 
 | |
| 	'nodescr' => 'Nessuna descrizione',
 | |
| 	'noauthor' => 'Autore sconosciuto'
 | |
| );
 | |
| 	
 | |
| $lang ['admin'] ['themes'] ['default'] ['msgs'] = array(
 | |
| 	1 => 'Il tema è stato cambiato.',
 | |
| 	-1 => 'Si è verificato un errore durante il cambiamento del tema.',
 | |
| 	-2 => 'Il tema che hai scelto non esiste.'
 | |
| );
 | |
| 
 | |
| /* select style */
 | |
| $lang ['admin'] ['themes'] ['style'] = array(
 | |
| 	'head1' => 'Stile in uso',
 | |
| 
 | |
| 	'head2' => 'Stili disponibili',
 | |
| 	'descr' => 'Seleziona lo stile che vuoi usare con questo tema',
 | |
| 
 | |
| 	'nodescr' => 'Nessuna descrizione',
 | |
| 	'noauthor' => 'Autore sconosciuto'
 | |
| );
 | |
| 
 | |
| $lang ['admin'] ['themes'] ['style'] ['msgs'] = array(
 | |
| 	1 => 'Lo stile è stato modificato.',
 | |
| 	-1 => 'Si è verificato un errore durante il cambiamento dello stile.',
 | |
| 	-2 => 'Lo stile che hai scelto non esiste.'
 | |
| );
 | |
| ?>
 |