
- Danish translation by DeepL (There may be a correction from Snubbi from the support forum)
35 lines
803 B
PHP
35 lines
803 B
PHP
<?php
|
|
$lang ['admin'] ['head'] = 'Administrationsområde';
|
|
|
|
$lang ['admin'] ['panels'] = array(
|
|
'main' => 'Start',
|
|
'config' => 'Konfiguration',
|
|
// 'users' => 'Users',
|
|
'entry' => 'Bidrag',
|
|
'static' => 'Side',
|
|
'uploader' => 'Uploader',
|
|
'widgets' => 'Widgets',
|
|
// 'add' => 'Add',
|
|
// 'edit' => 'Edit/Delete',
|
|
'maintain' => 'Vedligeholdelse',
|
|
'plugin' => 'Plugins',
|
|
'themes' => 'Temaer'
|
|
// 'updates' => 'Updates',
|
|
);
|
|
|
|
$lang ['admin'] ['general'] = array(
|
|
'id' => 'Id', # for entry ids
|
|
'name' => 'Navn', # for file names
|
|
'title' => 'Titel', # for entry/posts/static titles
|
|
'comments' => '#Kommentarer',
|
|
'author' => 'Forfatter',
|
|
'actdel' => 'Slet',
|
|
'actedit' => 'Rediger',
|
|
'actenable' => 'Aktivér',
|
|
'actdisable' => 'Deaktiver',
|
|
'startpage' => 'Hjemmeside',
|
|
'logout' => 'Log ud'
|
|
);
|
|
|
|
?>
|