GNOME Bugzilla – Bug 330548
"Log out $user" and "Shut Down" should have ... at the end
Last modified: 2006-02-12 12:36:18 UTC
Since the "Log out $user" and "Shut Down" menuitems open a dialog, it should have a additional ..., just like the "Connect to Server..." and "Search for Files..."
Sorry, should be gnome-panel...
Still looking for the "Shut Down" part... --- panel-menu-items.c 2006-02-09 19:33:30.000000000 +0100 +++ panel-menu-items-patch.c 2006-02-09 19:34:40.000000000 +0100 @@ -1092,7 +1092,7 @@ * panel-action-button.c */ /* Translators: this string is used ONLY if you translated * "panel:showusername|1" to "1" */ - label = g_strdup_printf (_("Log Out %s"), g_get_user_name ()); + label = g_strdup_printf (_("Log Out %s..."), g_get_user_name ()); /* Translators: this string is used ONLY if you translated * "panel:showusername|1" to "1" */ tooltip = g_strdup_printf (_("Log out %s of this session to "
I guess this should be changed also. Correct me if I'm wrong... --- panel-action-button.c 2006-02-09 19:42:32.000000000 +0100 +++ panel-action-button-patch.c 2006-02-09 19:43:26.000000000 +0100 @@ -295,7 +295,7 @@ /* when changing one of those two strings, don't forget to * update the ones in panel-menu-items.c (look for * panel:showusername|1) */ - N_("Log Out"), + N_("Log Out..."), N_("Log out of this session to log in as a different user or to shut down the computer"), "gospanel-20", "ACTION:logout:NEW", @@ -343,7 +343,7 @@ { PANEL_ACTION_SHUTDOWN, "gnome-shutdown", - N_("Shut Down"), + N_("Shut Down..."), N_("Shut down the computer"), "gospanel-20", "ACTION:shutdown:NEW",
Thanks. Fixed in HEAD.