aboutsummaryrefslogtreecommitdiff
path: root/shell/callbacks.c
diff options
context:
space:
mode:
authorBurt P <pburt0@gmail.com>2017-08-16 09:09:56 -0500
committerLeandro A. F. Pereira <leandro@hardinfo.org>2017-08-21 05:56:57 -0700
commit6636435cafbbe4275646a87689ccfc5eed71b3d1 (patch)
treef613b6f87dfde558c9980d2d5739810ed11ec1c7 /shell/callbacks.c
parent3b7d49dbf54e5fae9998a156e7aeef6f7639e45d (diff)
Use translations for about module dialog
The about modules strings were marked for translation and translated, but the about dialog wasn't using the translation. Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'shell/callbacks.c')
-rw-r--r--shell/callbacks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/callbacks.c b/shell/callbacks.c
index 95a7bd61..55533f3f 100644
--- a/shell/callbacks.c
+++ b/shell/callbacks.c
@@ -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));