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:
parent
89c91c8271
commit
8f9c683158
1 changed files with 5 additions and 1 deletions
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue