 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
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $lang ['admin'] ['static'] ['submenu'] = array(
 | |
| 	'list' => 'Управление статическими страницами',
 | |
| 	'write' => 'Создать статическую страницу'
 | |
| );
 | |
| 
 | |
| /* main panel */
 | |
| $lang ['admin'] ['static'] ['list'] = array(
 | |
| 	'head' => 'Статические страницы',
 | |
| 	'descr' => 'Пожалуйста, выберите страницу для редактирования или <a href="admin.php?p=static&action=write">создайте новую</a>.',
 | |
| 
 | |
| 	'sel' => 'Sel', // checkbox
 | |
| 	'date' => 'Дата',
 | |
| 	'name' => 'Страница',
 | |
| 	'title' => 'Заголовок',
 | |
| 	'author' => 'Автор',
 | |
| 
 | |
| 	'action' => 'Действия',
 | |
| 	'act_view' => 'Просмотр',
 | |
| 	'act_del' => 'Удалить',
 | |
| 	'act_edit' => 'Редактировать'
 | |
| );
 | |
| 	
 | |
| $lang ['admin'] ['static'] ['list'] ['msgs'] = array(
 | |
| 	1 => 'Page has been saved successfully',
 | |
| 	-1 => 'An error occurred while trying to save the page',
 | |
| 	2 => 'Page has been deleted successfully',
 | |
| 	-2 => 'An error occurred while trying to delete the page'
 | |
| );
 | |
| 
 | |
| /* write panel */
 | |
| $lang ['admin'] ['static'] ['write'] = array(
 | |
| 	'head' => 'Публикация статической страницы',
 | |
| 	'descr' => 'Редактирование формы для публикации страницы',
 | |
| 	'fieldset1' => 'Редактировать',
 | |
| 	'subject' => 'Тема (*):',
 | |
| 	'content' => 'Содержание (*):',
 | |
| 	'fieldset2' => 'Подтвердить',
 | |
| 	'pagename' => 'Наименование страницы (*):',
 | |
| 	'submit' => 'Опубликовать',
 | |
| 	'preview' => 'Предварительный просмотр',
 | |
| 
 | |
| 	'delfset' => 'Удалить',
 | |
| 	'deletemsg' => 'Удалить эту страницу',
 | |
| 	'del' => 'Удалить',
 | |
| 	'success' => 'Ваша страница была успешно опубликована',
 | |
| 	'otheropts' => 'Другие опции'
 | |
| );
 | |
| 
 | |
| $lang ['admin'] ['static'] ['write'] ['error'] = array(
 | |
| 	'subject' => 'Вы не можете оставить тему пустой',
 | |
| 	'content' => 'Вы не можете опубликовать пустую запись',
 | |
| 	'id' => 'Вы должны указать действительный идентификатор'
 | |
| );
 | |
| 
 | |
| /* delete action */	
 | |
| $lang ['admin'] ['static'] ['delete'] = array(
 | |
| 	'head' => 'Удаление страницы', 
 | |
| 	'descr' => 'Вы собираетесь удалить следующую страницу:',
 | |
| 	'preview' => 'Предварительный просмотр',
 | |
| 	'confirm' => 'Вы уверены, что хотите продолжить?',
 | |
| 	'fset' => 'Удалить',
 | |
| 	'ok' => 'Да, удалить эту страницу',
 | |
| 	'cancel' => 'Нет, вернуться в панель управления',
 | |
| 	'err' => 'Указанная страница не существует'
 | |
| );
 | |
| ?>
 |