aboutsummaryrefslogtreecommitdiff
path: root/shell/menu.c
diff options
context:
space:
mode:
authorbigbear <ns@bigbear.dk>2024-02-08 00:02:48 +0100
committerbigbear <ns@bigbear.dk>2024-02-08 19:52:52 +0100
commitdf41e6968e12f75b514b605968fe3fb9a3c5740e (patch)
tree41b3d7857cee100d978bead071fc7c0f7caf0fb9 /shell/menu.c
parentda0d0d9040b91ecef5985af982d7e77ae435a957 (diff)
ADD Package building for hardinfo2
Diffstat (limited to 'shell/menu.c')
-rw-r--r--shell/menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/menu.c b/shell/menu.c
index d9946c54..e0ed4038 100644
--- a/shell/menu.c
+++ b/shell/menu.c
@@ -83,7 +83,7 @@ static GtkActionEntry entries[] = {
G_CALLBACK(cb_report_bug)},
{"AboutAction", "_About",
- N_("_About HardInfo"), NULL,
+ N_("_About HardInfo2"), NULL,
N_("Displays program version information"),
G_CALLBACK(cb_about)},
@@ -128,7 +128,7 @@ void menu_init(Shell * shell)
/* Create our objects */
menu_box = shell->vbox;
- action_group = gtk_action_group_new("HardInfo");
+ action_group = gtk_action_group_new("HardInfo2");
menu_manager = gtk_ui_manager_new();
shell->action_group = action_group;
@@ -138,7 +138,7 @@ void menu_init(Shell * shell)
* menu_box -> window
* actions -> action_group
* action_group -> menu_manager */
- gtk_action_group_set_translation_domain( action_group, "hardinfo" );//gettext
+ gtk_action_group_set_translation_domain( action_group, "hardinfo2" );//gettext
gtk_action_group_add_actions(action_group, entries,
G_N_ELEMENTS(entries), NULL);
gtk_action_group_add_toggle_actions(action_group, toggle_entries,