35 lines
778 B
PHP
Executable File
35 lines
778 B
PHP
Executable File
<?php
|
|
$lang ['admin'] ['head'] = 'Administration area';
|
|
|
|
$lang ['admin'] ['panels'] = array(
|
|
'main' => 'Main',
|
|
'config' => 'Options',
|
|
// 'users' => 'Users',
|
|
'entry' => 'Entries',
|
|
'static' => 'Statics',
|
|
'uploader' => 'Uploader',
|
|
'widgets' => 'Widgets',
|
|
// 'add' => 'Add',
|
|
// 'edit' => 'Edit/Delete',
|
|
'maintain' => 'Maintain',
|
|
'plugin' => 'Plugins',
|
|
'themes' => 'Themes'
|
|
// 'updates' => 'Updates',
|
|
);
|
|
|
|
$lang ['admin'] ['general'] = array(
|
|
'id' => 'Id', // for entry ids
|
|
'name' => 'Name', // for file names
|
|
'title' => 'Title', // for entry/posts/static titles
|
|
'comments' => '#Comms',
|
|
'author' => 'Author',
|
|
'actdel' => 'Delete',
|
|
'actedit' => 'Edit',
|
|
'actenable' => 'Enable',
|
|
'actdisable' => 'Disable',
|
|
'startpage' => 'Startpage',
|
|
'logout' => 'Logout'
|
|
);
|
|
|
|
?>
|