flatpress/fp-interface/lang/cs-cz/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.4 KiB
PHP

<?php
$lang ['admin'] ['panel'] ['maintain'] = 'Údržba';
$lang ['admin'] ['maintain'] ['default'] = array(
'head' => 'Údržba',
'descr' => 'Vstupte pokud si myslíte, že se něco pokazilo, a možná najdete řešení. Nemusí to ale pomoci.',
'opt0' => '&laquo; Návrat do hlavního menu',
'opt1' => 'Opravit index',
'opt2' => 'Vyčistit cache motivů a šablon',
'opt3' => 'Obnovit oprávnění souborů',
'opt4' => 'Ukázat informace o PHP',
'opt5' => 'Zjistit aktualizace',
'chmod_info' => 'Pokud se oprávnění souboru <strong>nepodařilo</strong> obnovit na ' . decoct(FILE_PERMISSIONS) . ', vlastník souboru pravděpodobně není stejný jako vlastník webového serveru.<br>' . //
'Případně můžete ignorovat toto oznámení.'
);
$lang ['admin'] ['maintain'] ['default'] ['msgs'] = array(
1 => 'Operace kompletní',
-1 => 'Operace se nezdařila'
);
$lang ['admin'] ['maintain'] ['updates'] = array(
'head' => 'Aktualizace',
'list' => '<ul>
<li>Verze FlatPressu <big>%s</big></li>
<li>Poslední stabilní verze FlatPressu je <big><a href="%s">%s</a></big></li>
<li>Poslední nestabilní verze FlatPressu je <big><a href="%s">%s</a></big></li>
</ul>',
'notice' => 'Oznámení:'
);
$lang ['admin'] ['maintain'] ['updates'] ['msgs'] = array(
1 => 'Aktualizace jsou dostupné!',
2 => 'Verze Flatpressu je aktuální',
-1 => 'Nepodařilo sa získat aktualizace'
);
?>