diff options
author | Burt P <pburt0@gmail.com> | 2017-08-16 16:59:22 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2017-09-10 10:58:58 -0700 |
commit | 20f8ce6c30abcd837fd0255af9bc4a0cbd6c7a4a (patch) | |
tree | 6f636b0916c052451df575333469b793045f95e8 /shell/callbacks.c | |
parent | 9e06c19c9447431530074fe24fa2152cc8091602 (diff) |
Remove the appended "Module" from about module dialog title
The string is constructed one word at a time, "About", X, "Module"
and it ends up being very strange in languages other than English.
Cutting out the module makes it a little better, and not much is
lost. A module could add "Module" to it's title, and then at
least that string can be translated as a complete unit.
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'shell/callbacks.c')
-rw-r--r-- | shell/callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/callbacks.c b/shell/callbacks.c index 55533f3f..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 |