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:
@@ -102,6 +102,11 @@ about_action (GSimpleAction *action,
|
|||||||
version = g_str_equal (VCS_TAG, "") ? PACKAGE_VERSION:
|
version = g_str_equal (VCS_TAG, "") ? PACKAGE_VERSION:
|
||||||
PACKAGE_VERSION "-" VCS_TAG;
|
PACKAGE_VERSION "-" VCS_TAG;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* “program-name” defaults to g_get_application_name().
|
||||||
|
* Don’t set it explicitly so that there is one less
|
||||||
|
* string to translate.
|
||||||
|
*/
|
||||||
gtk_show_about_dialog (GTK_WINDOW (self),
|
gtk_show_about_dialog (GTK_WINDOW (self),
|
||||||
"artists", artists,
|
"artists", artists,
|
||||||
"authors", authors,
|
"authors", authors,
|
||||||
@@ -109,7 +114,6 @@ about_action (GSimpleAction *action,
|
|||||||
"documenters", documenters,
|
"documenters", documenters,
|
||||||
"license-type", GTK_LICENSE_GPL_3_0,
|
"license-type", GTK_LICENSE_GPL_3_0,
|
||||||
"logo-icon-name", APP_ID,
|
"logo-icon-name", APP_ID,
|
||||||
"program-name", _("Calls"),
|
|
||||||
"translator-credits", _("translator-credits"),
|
"translator-credits", _("translator-credits"),
|
||||||
"version", version,
|
"version", version,
|
||||||
"website", PACKAGE_URL,
|
"website", PACKAGE_URL,
|
||||||
|
|||||||
Reference in New Issue
Block a user