diff options
author | Lukáš Tinkl <lukas.tinkl@canonical.com> | 2016-03-08 23:12:26 +0100 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-06-22 22:56:43 +0200 |
commit | 9b7b8400b7824f19ef1c877f059473a373670e25 (patch) | |
tree | 2f420bb3114128d09d2b12e8b04834f469a5c379 | |
parent | b5ac3ae688550cc04a4a5bcea164b2038431f871 (diff) | |
download | ayatana-indicator-session-9b7b8400b7824f19ef1c877f059473a373670e25.tar.gz ayatana-indicator-session-9b7b8400b7824f19ef1c877f059473a373670e25.tar.bz2 ayatana-indicator-session-9b7b8400b7824f19ef1c877f059473a373670e25.zip |
use ellipsis and convergence friendly "about" caption
-rw-r--r-- | src/service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/service.c b/src/service.c index 3fca33b..f6f6251 100644 --- a/src/service.c +++ b/src/service.c @@ -375,9 +375,9 @@ create_admin_section (void) { GMenu * menu; gchar * desktop_help_label = g_strdup_printf(_("%s Desktop Help"), get_desktop_name()); - gchar * distro_help_label = g_strdup_printf(_("%s Help"), get_distro_name()); + gchar * distro_help_label = g_strdup_printf(_("%s Help…"), get_distro_name()); menu = g_menu_new (); - g_menu_append (menu, _("About This Computer"), "indicator.about"); + g_menu_append (menu, _("About This Device…"), "indicator.about"); g_menu_append (menu, desktop_help_label, "indicator.desktop_help"); g_menu_append (menu, distro_help_label, "indicator.distro_help"); g_free (desktop_help_label); |