24 lines
615 B
PHP
Executable File
24 lines
615 B
PHP
Executable File
<?php
|
|
|
|
$lang['admin']['panel']['main'] = 'Main';
|
|
|
|
$lang['admin']['main']['default'] = array(
|
|
'head' => 'Welcome to the control panel!',
|
|
'descr' => 'Select an action',
|
|
|
|
'op1' => 'New Entry',
|
|
'op1d' => 'Add a new entry',
|
|
'op2' => 'Entries',
|
|
'op2d' => 'Show and manage all the entries',
|
|
'op3' => 'Widgets',
|
|
'op3d' => 'Manage sidebar, bottombar and topbar widgets',
|
|
'op4' => 'Plugins',
|
|
'op4d' => 'Install, enable, disable plugins',
|
|
'op5' => 'Configuration',
|
|
'op5d' => 'Customize your flatpress',
|
|
'op6' => 'Maintenance',
|
|
'op6d' => 'Clean and restore flatpress',
|
|
|
|
);
|
|
?>
|