```
UPDATE `#REPLACEME#_sys_fields` SET `value` = 'DOS,Windows 1,Windows 2,Windows 3,Windows 95,Windows 98,Windows XP,Windows 2000,Windows ME,Windows Vista,Windows 7,Windows 8,Windows 10,Windows 11', `apiinfo` = 'One of DOS,Windows 1,Windows 2,Windows 3,Windows 95,Windows 98,Windows XP,Windows 2000,Windows ME,Windows Vista,Windows 7,Windows 8,Windows 10,Windows 11' WHERE `#REPLACEME#_sys_fields`.`id` = 17;
UPDATE `#REPLACEME#_menu` SET `action` = 'dashboard' WHERE `#REPLACEME#_menu`.`id` = 1;
+UPDATE `#REPLACEME#_menu_menu` SET `text` = 'menu.show.dashboard' WHERE `#REPLACEME#_menu`.`id` = 1;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.show.collections' WHERE `#REPLACEME#_menu`.`id` = 2;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.show.tags' WHERE `#REPLACEME#_menu`.`id` = 3;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.show.sysinfo' WHERE `#REPLACEME#_menu`.`id` = 19;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.manage.add' WHERE `#REPLACEME#_menu`.`id` = 4;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.manage.tags' WHERE `#REPLACEME#_menu`.`id` = 6;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.manage.collections' WHERE `#REPLACEME#_menu`.`id` = 7;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.manage.users' WHERE `#REPLACEME#_menu`.`id` = 8;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.manage.profile' WHERE `#REPLACEME#_menu`.`id` = 16;
+UPDATE `#REPLACEME#_menu` SET `text` = 'menu.manage.groups' WHERE `#REPLACEME#_menu`.`id` = 17;
```
global.close = "Close"
global.collection = "Collection"
global.collection.select.notice = "Please select a collection first"
+global.collections = "Collections"
global.created = "Created"
global.default = "Default"
global.delete = "Delete"
global.search = "Search"
global.search.resultfor = "Display result for: <b>%s</b>"
global.sort = "Sort"
+global.tags = "Tags"
global.title = "Title"
global.user = "User"
global.username = "Username"
message.headline.success = "Success"
message.headline.warning = "Warning"
-menu.lv1.manage = "Manage"
-menu.lv1.show = "Show"
+menu.manage = "Manage"
+menu.manage.add = global.add
+menu.manage.collections = global.collections
+menu.manage.groups = "Groups"
+menu.manage.profile = "Profile"
+menu.manage.tags = global.tags
+menu.manage.users = "Users"
menu.search = global.search
menu.search.advanced = "Advanced"
menu.search.enter = "Press enter to search"
menu.search.within = "Search within the default search field"
+menu.show = "Show"
+menu.show.collections = global.collections
+menu.show.dashboard = "Dashboard"
+menu.show.sysinfo = "System Information"
+menu.show.tags = global.tags
pagination.gotopage = "Goto page"
pagination.next = "next"
sysinfo.th.description = global.description
sysinfo.th.diskusage = "Disk Usage"
sysinfo.th.entries = "Entries"
-sysinfo.th.tags = "Tags"
+sysinfo.th.tags = global.tags
tags.headline.tagsfor = "Tags for:"
<menu role="tablist">
<?php foreach($_menuShow as $entry) { ?>
<li role="tab" <?php if($_requestMode == $entry['action']) echo 'aria-selected="true"'; ?>>
- <a href="index.php?p=<?php echo $entry['action']; ?>"><?php echo $entry['text']; ?></a>
+ <a href="index.php?p=<?php echo $entry['action']; ?>"><?php echo $I18n->t($entry['text']); ?></a>
</li>
<?php } ?>
<li role="tab">
<a href="index.php?p=advancedsearch"><?php echo $I18n->t('menu.search.advanced'); ?></a>
</li>
<?php if(!empty($_menuManage)) { ?>
- <li role="tab"><a href=""><?php echo $I18n->t('menu.lv1.manage'); ?>:</a></li>
+ <li role="tab"><a href=""><?php echo $I18n->t('menu.manage'); ?>:</a></li>
<?php foreach($_menuManage as $entry) { ?>
<li role="tab" <?php if(!empty($_requestMode) && str_starts_with($entry['action'], $_requestMode)) echo 'aria-selected="true"'; ?>>
- <a href="index.php?p=<?php echo $entry['action']; ?>"><?php echo $entry['text']; ?></a>
+ <a href="index.php?p=<?php echo $entry['action']; ?>"><?php echo $I18n->t($entry['text']); ?></a>
</li>
<?php } ?>
<?php } ?>
<div class="uk-navbar-left">
<ul class="uk-navbar-nav">
<li class="uk-parent">
- <a href=""><?php echo $I18n->t('menu.lv1.show'); ?></a>
+ <a href=""><?php echo $I18n->t('menu.show'); ?></a>
<div class="uk-navbar-dropdown">
<ul class="uk-nav uk-navbar-dropdown-nav">
<?php foreach($_menuShow as $entry) { ?>
<li>
<a href="index.php?p=<?php echo $entry['action']; ?>">
<span class="uk-icon uk-margin-small-right" uk-icon="icon: <?php echo $entry['icon']; ?>"></span>
- <?php echo $entry['text']; ?>
+ <?php echo $I18n->t($entry['text']); ?>
</a>
</li>
<?php } ?>
</li>
<?php if(!empty($_menuManage)) { ?>
<li class="uk-parent">
- <a href=""><?php echo $I18n->t('menu.lv1.manage'); ?></a>
+ <a href=""><?php echo $I18n->t('menu.manage'); ?></a>
<div class="uk-navbar-dropdown">
<ul class="uk-nav uk-navbar-dropdown-nav">
<?php foreach($_menuManage as $entry) { ?>
<li>
<a href="index.php?p=<?php echo $entry['action']; ?>">
<span class="uk-icon uk-margin-small-right" uk-icon="icon: <?php echo $entry['icon']; ?>"></span>
- <?php echo $entry['text']; ?>
+ <?php echo $I18n->t($entry['text']); ?>
</a>
</li>
<?php } ?>