1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-13 15:25:32 +00:00

main-window: Don’t set program-name in about dialog

program-name will be retrieved with g_get_application_name().
Let’s not do it explicitly so that there is one less string
to translate
This commit is contained in:
Mohammed Sadiq 2020-05-31 19:18:52 +05:30
parent 89c91c8271
commit 8f9c683158

View file

@ -102,6 +102,11 @@ about_action (GSimpleAction *action,
version = g_str_equal (VCS_TAG, "") ? PACKAGE_VERSION:
PACKAGE_VERSION "-" VCS_TAG;
/*
* program-name defaults to g_get_application_name().
* Dont set it explicitly so that there is one less
* string to translate.
*/
gtk_show_about_dialog (GTK_WINDOW (self),
"artists", artists,
"authors", authors,
@ -109,7 +114,6 @@ about_action (GSimpleAction *action,
"documenters", documenters,
"license-type", GTK_LICENSE_GPL_3_0,
"logo-icon-name", APP_ID,
"program-name", _("Calls"),
"translator-credits", _("translator-credits"),
"version", version,
"website", PACKAGE_URL,