summaryrefslogtreecommitdiff
path: root/mini-commander
diff options
context:
space:
mode:
authorKevin Vandersloot <kfv101@psu.edu>2002-04-03 01:50:10 +0000
committerKevin Vandersloot <kevinv@src.gnome.org>2002-04-03 01:50:10 +0000
commit983ad87b89e1c53e19e42ecf86b3d61e3931a8be (patch)
tree191f4dd37b7a4797456f172c43e95e6b623f4e2d /mini-commander
parent1dcb83e2c33636217863a51436d2591c72f0fe8c (diff)
change properties to preferences
2002-04-02 Kevin Vandersloot <kfv101@psu.edu> * src/*.xml: change properties to preferences * src/preferences.c: change properties to preferences and add mnmonics to macros tab. Fixes bug #76805
Diffstat (limited to 'mini-commander')
-rw-r--r--mini-commander/ChangeLog7
-rw-r--r--mini-commander/src/GNOME_MiniCommanderApplet.xml2
-rw-r--r--mini-commander/src/preferences.c10
3 files changed, 13 insertions, 6 deletions
diff --git a/mini-commander/ChangeLog b/mini-commander/ChangeLog
index 5510a82ce..1b2e1db9a 100644
--- a/mini-commander/ChangeLog
+++ b/mini-commander/ChangeLog
@@ -1,3 +1,10 @@
+2002-04-02 Kevin Vandersloot <kfv101@psu.edu>
+
+ * src/*.xml: change properties to preferences
+
+ * src/preferences.c: change properties to preferences and
+ add mnmonics to macros tab. Fixes bug #76805
+
2002-03-31 Deepa Natarajan <deepa.natarajan@wipro.com>
This fixes bug# 76744
diff --git a/mini-commander/src/GNOME_MiniCommanderApplet.xml b/mini-commander/src/GNOME_MiniCommanderApplet.xml
index f950c32fc..367a3f624 100644
--- a/mini-commander/src/GNOME_MiniCommanderApplet.xml
+++ b/mini-commander/src/GNOME_MiniCommanderApplet.xml
@@ -1,7 +1,7 @@
<Root>
<popups>
<popup name="button3">
- <menuitem name="Item 1" verb="Props" _label="Properties..."
+ <menuitem name="Item 1" verb="Props" _label="Preferences..."
pixtype="stock" pixname="gtk-properties"/>
<menuitem name="Item 2" verb="Help" _label="Help"
pixtype="stock" pixname="gtk-help"/>
diff --git a/mini-commander/src/preferences.c b/mini-commander/src/preferences.c
index 348f8b84f..00eaf6e44 100644
--- a/mini-commander/src/preferences.c
+++ b/mini-commander/src/preferences.c
@@ -550,7 +550,7 @@ properties_box(BonoboUIComponent *uic, gpointer data, const gchar *verbname)
return;
}
prop = g_object_get_data (G_OBJECT (applet), "prop");
- mcdata->properties_box = gtk_dialog_new_with_buttons (_("Command Line Properties"),
+ mcdata->properties_box = gtk_dialog_new_with_buttons (_("Command Line Preferences"),
NULL,
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
@@ -844,8 +844,8 @@ properties_box(BonoboUIComponent *uic, gpointer data, const gchar *verbname)
gtk_box_pack_start(GTK_BOX(vbox1), hbox, TRUE, TRUE, 0);
/* prefix */
- g_snprintf(text_label, sizeof(text_label), _("Regex %.2d:"), i+1);
- label = gtk_label_new(text_label);
+ g_snprintf(text_label, sizeof(text_label), _("Regex _%.2d:"), i+1);
+ label = gtk_label_new_with_mnemonic(text_label);
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, TRUE, 0);
entry = gtk_entry_new_with_max_length(MAX_MACRO_PATTERN_LENGTH);
@@ -862,8 +862,8 @@ properties_box(BonoboUIComponent *uic, gpointer data, const gchar *verbname)
gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, TRUE, 0);
/* command */
- g_snprintf(text_label, sizeof(text_label), _(" Macro %.2d:"), i+1);
- label = gtk_label_new(text_label);
+ g_snprintf(text_label, sizeof(text_label), _(" Macro _%.2d:"), i+1);
+ label = gtk_label_new_with_mnemonic(text_label);
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, TRUE, 0);
entry = gtk_entry_new_with_max_length(MAX_COMMAND_LENGTH);