From 8f9c683158fe501982edbf443e3b838978129d5d Mon Sep 17 00:00:00 2001 From: Mohammed Sadiq Date: Sun, 31 May 2020 19:18:52 +0530 Subject: [PATCH] =?UTF-8?q?main-window:=20Don=E2=80=99t=20set=20program-na?= =?UTF-8?q?me=20in=20about=20dialog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/calls-main-window.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/calls-main-window.c b/src/calls-main-window.c index 5113dd0..f344f1d 100644 --- a/src/calls-main-window.c +++ b/src/calls-main-window.c @@ -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(). + * Don’t 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,