summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-11-08 18:24:58 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-11-08 18:24:58 +0000
commitc16418b1567ee759958f379fde2c83c1eafee06a (patch)
tree12ba10ed764ff3e1687dec6929a8ba4ddfbda403
parent54b95bb50237abd323a69db99cd74ed602728785 (diff)
part of issue 162 - remote exec/commands is the wrong name for the feature, as they are in fact local commands (I use them to call remote ones). Lets call them "actions".
-rw-r--r--src/trg-main-window.c2
-rw-r--r--src/trg-preferences-dialog.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/trg-main-window.c b/src/trg-main-window.c
index cdcb8ae..61e6aaf 100644
--- a/src/trg-main-window.c
+++ b/src/trg-main-window.c
@@ -1621,7 +1621,7 @@ static void trg_torrent_tv_view_menu(GtkWidget * treeview,
GtkImageMenuItem *cmds_menu = GTK_IMAGE_MENU_ITEM(gtk_image_menu_item_new_with_label(GTK_STOCK_EXECUTE));
gtk_image_menu_item_set_use_stock(cmds_menu, TRUE);
gtk_image_menu_item_set_always_show_image(cmds_menu, TRUE);
- gtk_menu_item_set_label(GTK_MENU_ITEM(cmds_menu), _("Remote Commands"));
+ gtk_menu_item_set_label(GTK_MENU_ITEM(cmds_menu), _("Actions"));
cmds_shell = GTK_MENU_SHELL(gtk_menu_new());
gtk_menu_item_set_submenu(GTK_MENU_ITEM(cmds_menu), GTK_WIDGET(cmds_shell));
diff --git a/src/trg-preferences-dialog.c b/src/trg-preferences-dialog.c
index 1f24106..5ca792f 100644
--- a/src/trg-preferences-dialog.c
+++ b/src/trg-preferences-dialog.c
@@ -560,7 +560,7 @@ static GtkWidget *trg_prefs_openExecPage(TrgPreferencesDialog *dlg) {
t = hig_workarea_create();
- hig_workarea_add_section_title(t, &row, _("Remote Commands"));
+ hig_workarea_add_section_title(t, &row, _("Commands"));
model = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_STRING);
@@ -751,7 +751,7 @@ static GObject *trg_preferences_dialog_constructor(GType type,
gtk_notebook_append_page(GTK_NOTEBOOK(notebook),
trg_prefs_openExecPage(TRG_PREFERENCES_DIALOG(object)),
- gtk_label_new(_("Remote Execute")));
+ gtk_label_new(_("Actions")));
gtk_notebook_append_page(GTK_NOTEBOOK(notebook),
trg_prefs_dirsPage(TRG_PREFERENCES_DIALOG(object)),