diff options
author | Simon Quigley <tsimonq2@ubuntu.com> | 2017-11-25 13:35:48 -0600 |
---|---|---|
committer | Simon Quigley <tsimonq2@ubuntu.com> | 2017-11-25 13:35:48 -0600 |
commit | 628a525ae2961f0461172613a0675dab6754c65e (patch) | |
tree | 9c16631a75cf703771196cabf274ee9eef9723d8 /shell/callbacks.c | |
parent | ab16195359ad146263dbd7b5ea2d94316caee627 (diff) | |
parent | 11e616945340e87a1f567ab92e6dfac3068875b1 (diff) |
Update upstream source from tag 'upstream/0.5.1+git20171103'
Update to upstream version '0.5.1+git20171103'
with Debian dir 12de6f1245697675c1d76dc1085c08844d715cb0
Diffstat (limited to 'shell/callbacks.c')
-rw-r--r-- | shell/callbacks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/callbacks.c b/shell/callbacks.c index 95a7bd61..9bb5c990 100644 --- a/shell/callbacks.c +++ b/shell/callbacks.c @@ -114,7 +114,7 @@ void cb_about_module(GtkAction * action) gtk_window_set_transient_for(GTK_WINDOW(about), GTK_WINDOW(shell->window)); - text = g_strdup_printf(_("%s Module"), sm->name); + text = g_strdup(sm->name); #if GTK_CHECK_VERSION(2, 12, 0) gtk_about_dialog_set_program_name(GTK_ABOUT_DIALOG(about), text); #else @@ -132,7 +132,7 @@ void cb_about_module(GtkAction * action) if (ma->description) gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(about), - ma->description); + _(ma->description)); gtk_about_dialog_set_logo(GTK_ABOUT_DIALOG(about), sm->icon); gtk_dialog_run(GTK_DIALOG(about)); |