flatpress/fp-interface/lang/ru-ru/lang.admin.maintain.php
Fraenkiman 90d582e88c Use test file for result
- The chmod octal value from the defaults.php file is used for the hint. This has the advantage that you do not have to adjust the 13 language files every time you make a change.
- When restoring the file access rights, a test file in the fp-content directory is used to check whether it is writable. If failed, then -1
2024-02-04 02:25:54 +01:00

39 lines
1.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$lang ['admin'] ['panel'] ['maintain'] = 'Maintainance';
$lang ['admin'] ['maintain'] ['default'] = array(
'head' => 'Техническое обслуживание',
'descr' => 'Заходите сюда, когда вам кажется, что что-то не так, и, возможно, здесь вы найдете решение. Однако это может не сработать.',
'opt0' => '&laquo; Вернуться в главное меню',
'opt1' => 'Переиндексация',
'opt2' => 'Очистить кэш тем и шаблонов',
'opt3' => 'Восстановить права доступа к файлам',
'opt4' => 'Показать информацию о PHP',
'opt5' => 'Проверить наличие обновлений',
'chmod_info' => 'Если права доступа к файлу не удалось сбросить на ' . decoct(FILE_PERMISSIONS) . ', владелец файла, вероятно, не совпадает с владельцем веб-сервера.<br>' . //
'Обычно это уведомление можно проигнорировать.'
);
$lang ['admin'] ['maintain'] ['default'] ['msgs'] = array(
1 => 'Операция выполнена',
-1 => 'Операция не удалась'
);
$lang ['admin'] ['maintain'] ['updates'] = array(
'head' => 'Обновления',
'list' => '<ul>
<li>Ваша текущая версия FlatPress: <big>%s</big></li>
<li>Последняя стабильная версия FlatPress: <big><a href="%s">%s</a></big></li>
<li>Последняя нестабильная версия FlatPress: <big><a href="%s">%s</a></big></li>
</ul>',
'notice' => 'Примечание:'
);
$lang ['admin'] ['maintain'] ['updates'] ['msgs'] = array(
1 => 'Доступны обновления!',
2 => 'Вы уже обновились',
-1 => 'Невозможно получить обновления'
);
?>