
- FlatPress provides the admin with all relevant data that could contribute to solving the problem. - In the event that templates are faulty or a plugin is disrupting FlatPress, the support data can be retrieved via the URL http(s)://your-domain.ltd/admin/support.php.
40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
<?php
|
|
$lang ['admin'] ['panel'] ['maintain'] = 'Onderhoud';
|
|
|
|
$lang ['admin'] ['maintain'] ['default'] = array(
|
|
'head' => 'Onderhoud',
|
|
'descr' => 'Kom hier als je denkt dat er iets is verknoeid, en misschien vind je hier een oplossing. Dit werkt echter mogelijk niet.',
|
|
'opt0' => '« Terug naar hoofdmenu',
|
|
'opt1' => 'Herbouw index',
|
|
'opt2' => 'Thema- en sjablonencache opschonen',
|
|
'opt3' => 'Bestandsmachtigingen herstellen',
|
|
'opt4' => 'Toon info over PHP',
|
|
'opt5' => 'Controleren op updates',
|
|
'opt6' => 'Toon ondersteuningsgegevens',
|
|
|
|
'chmod_info' => 'Als de bestandsrechten niet konden worden teruggezet naar ' . decoct(FILE_PERMISSIONS) . ', is de eigenaar van het bestand waarschijnlijk niet dezelfde als de eigenaar van de webserver.<br>' . //
|
|
'Meestal kunt u deze kennisgeving negeren.'
|
|
);
|
|
|
|
$lang ['admin'] ['maintain'] ['default'] ['msgs'] = array(
|
|
1 => 'Operation completed',
|
|
-1 => 'Operatie mislukt'
|
|
);
|
|
|
|
$lang ['admin'] ['maintain'] ['updates'] = array(
|
|
'head' => 'Updates',
|
|
'list' => '<ul>
|
|
<li>Je hebt FlatPress versie <big>%s</big></li>
|
|
<li>Laatste stabiele versie voor FlatPress is <big><a href="%s">%s</a></big></li>
|
|
<li>Laatste onstabiele versie voor FlatPress is <big><a href="%s">%s</a></big></li>
|
|
</ul>',
|
|
'notice' => 'Kennisgeving:'
|
|
);
|
|
|
|
$lang ['admin'] ['maintain'] ['updates'] ['msgs'] = array(
|
|
1 => 'Er zijn updates beschikbaar!',
|
|
2 => 'U bent al up-to-date',
|
|
-1 => 'Kan updates niet ophalen'
|
|
);
|
|
?>
|