diff options
author | rbuj <[email protected]> | 2019-03-19 15:19:20 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-03-22 22:59:46 +0100 |
commit | 6a6d63c017a407c83d49310f9691c7ac4a517c0e (patch) | |
tree | bcadfe26b59650e0cbd548021f8a50b548a79d21 /mate-about/mate-about.c | |
parent | 059d42caa1b36526b645c591a82804ed700f10f8 (diff) | |
download | mate-desktop-6a6d63c017a407c83d49310f9691c7ac4a517c0e.tar.bz2 mate-desktop-6a6d63c017a407c83d49310f9691c7ac4a517c0e.tar.xz |
Make translatable the program name in mate about dialog
Diffstat (limited to 'mate-about/mate-about.c')
-rw-r--r-- | mate-about/mate-about.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-about/mate-about.c b/mate-about/mate-about.c index 83f357f..9e88876 100644 --- a/mate-about/mate-about.c +++ b/mate-about/mate-about.c @@ -54,7 +54,7 @@ void mate_about_run(void) gtk_about_dialog_set_logo_icon_name(mate_about_dialog, icon); // name - gtk_about_dialog_set_program_name(mate_about_dialog, gettext(program_name)); + gtk_about_dialog_set_program_name(mate_about_dialog, _(program_name)); // version gtk_about_dialog_set_version(mate_about_dialog, version); |