diff options
-rw-r--r-- | core/helpers/core_menu.php | 4 | ||||
-rw-r--r-- | modules/comment/helpers/comment_menu.php | 2 | ||||
-rw-r--r-- | modules/spam_filter/helpers/spam_filter_menu.php | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/core/helpers/core_menu.php b/core/helpers/core_menu.php index c863400f..3131c1e8 100644 --- a/core/helpers/core_menu.php +++ b/core/helpers/core_menu.php @@ -78,8 +78,8 @@ class core_menu_Core { ->label(_("Dashboard")) ->url(url::site("admin"))) ->append(Menu::factory("submenu") - ->id("general_settings_menu") - ->label(_("General Settings")) + ->id("settings_menu") + ->label(_("Settings")) ->append(Menu::factory("link") ->id("graphics_toolkits") ->label(_("Graphics")) diff --git a/modules/comment/helpers/comment_menu.php b/modules/comment/helpers/comment_menu.php index b98140a6..2cc6d789 100644 --- a/modules/comment/helpers/comment_menu.php +++ b/modules/comment/helpers/comment_menu.php @@ -22,7 +22,7 @@ class comment_menu_Core { $menu->get("content_menu") ->append(Menu::factory("link") ->id("comments") - ->label(_("Comment Moderation")) + ->label(_("Comments")) ->url("#")); } } diff --git a/modules/spam_filter/helpers/spam_filter_menu.php b/modules/spam_filter/helpers/spam_filter_menu.php index 06ff14d6..7788063c 100644 --- a/modules/spam_filter/helpers/spam_filter_menu.php +++ b/modules/spam_filter/helpers/spam_filter_menu.php @@ -19,10 +19,10 @@ */ class spam_filter_menu_Core { public static function admin($menu, $theme) { - $menu->get("content_menu") + $menu->get("settings_menu") ->append(Menu::factory("link") ->id("spam_filter") - ->label(_("Configure Spam Filter")) + ->label(_("Spam Filtering")) ->url(url::site("admin/spam_filter"))); } } |