35 lines
833 B
PHP
35 lines
833 B
PHP
<?php
|
|
$lang ['admin'] ['head'] = 'Administratie omgeving';
|
|
|
|
$lang ['admin'] ['panels'] = array(
|
|
'main' => 'Hoofd',
|
|
'config' => 'Opties',
|
|
// 'users' => 'Gebruikers',
|
|
'entry' => 'Vermeldingen',
|
|
'static' => 'Statics',
|
|
'uploader' => 'Uploaden',
|
|
'widgets' => 'Widgets',
|
|
// 'add' => 'Toevoegen',
|
|
// 'edit' => 'Bewerken/verwijderen',
|
|
'maintain' => 'Onderhoud',
|
|
'plugin' => 'Plugins',
|
|
'themes' => 'Themas'
|
|
// 'updates' => 'Updates',
|
|
);
|
|
|
|
$lang ['admin'] ['general'] = array(
|
|
'id' => 'Id', // for entry ids
|
|
'name' => 'Naam', // for file names
|
|
'title' => 'Titel', // for entry/posts/static titles
|
|
'comments' => '#Comms',
|
|
'author' => 'Auteur',
|
|
'actdel' => 'Verwijder',
|
|
'actedit' => 'Bewerk',
|
|
'actenable' => 'Inschakelen',
|
|
'actdisable' => 'Uitschakelen',
|
|
'startpage' => 'Startpagina',
|
|
'logout' => 'Afmelden',
|
|
);
|
|
|
|
?>
|