diff options
author | Andre Klapper <a9016009@gmx.de> | 2012-01-29 20:47:59 +0800 |
---|---|---|
committer | Andre Klapper <a9016009@gmx.de> | 2012-01-29 20:47:59 +0800 |
commit | 515b354a4b0532be9fc61085877515004da4ced5 (patch) | |
tree | 1e43f7c4bf8b5834574eb3ba58d4fdf64266713c /plugins/external-editor | |
parent | 84a7b6f41fbe7fc60367fda3be9e5b6f56135974 (diff) | |
download | gsoc2013-evolution-515b354a4b0532be9fc61085877515004da4ced5.tar.gz gsoc2013-evolution-515b354a4b0532be9fc61085877515004da4ced5.tar.zst gsoc2013-evolution-515b354a4b0532be9fc61085877515004da4ced5.zip |
Fix external editor example. Fixes bug #594736
Diffstat (limited to 'plugins/external-editor')
-rw-r--r-- | plugins/external-editor/external-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/external-editor/external-editor.c b/plugins/external-editor/external-editor.c index 7d67faa5b6..cf9349d674 100644 --- a/plugins/external-editor/external-editor.c +++ b/plugins/external-editor/external-editor.c @@ -112,7 +112,7 @@ e_plugin_lib_get_configure_widget (EPlugin *epl) vbox = gtk_vbox_new (FALSE, 10); textbox = gtk_entry_new (); label = gtk_label_new (_("Command to be executed to launch the editor: ")); - help = gtk_label_new (_("For Emacs use \"xemacs\"\nFor VI use \"gvim -f\"")); + help = gtk_label_new (_("For XEmacs use \"xemacs\"\nFor Vim use \"gvim -f\"")); settings = g_settings_new ("org.gnome.evolution.plugin.external-editor"); editor = g_settings_get_string (settings, "command"); |