From 314df488b762f1eeec6c29545f93eab23b8e62a8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 25 Oct 2011 17:56:44 +0100 Subject: [PATCH] user-accounts: Improve tooltips Don't speak about 'deleting users'. Instead, use the term 'user account' consistently. https://bugzilla.gnome.org/show_bug.cgi?id=661765 --- panels/user-accounts/um-user-panel.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/panels/user-accounts/um-user-panel.c b/panels/user-accounts/um-user-panel.c index 217898703..41d29abac 100644 --- a/panels/user-accounts/um-user-panel.c +++ b/panels/user-accounts/um-user-panel.c @@ -922,7 +922,7 @@ on_permission_changed (GPermission *permission, widget = get_widget (d, "add-user-toolbutton"); gtk_widget_set_sensitive (widget, is_authorized); if (is_authorized) { - setup_tooltip_with_embedded_icon (widget, _("Create a user"), NULL, NULL); + setup_tooltip_with_embedded_icon (widget, _("Create a user account"), NULL, NULL); } else { gchar *names[3]; @@ -933,7 +933,7 @@ on_permission_changed (GPermission *permission, names[2] = NULL; icon = (GIcon *)g_themed_icon_new_from_names (names, -1); setup_tooltip_with_embedded_icon (widget, - _("To create a user,\nclick the * icon first"), + _("To create a user account,\nclick the * icon first"), "*", icon); g_object_unref (icon); @@ -942,7 +942,7 @@ on_permission_changed (GPermission *permission, widget = get_widget (d, "remove-user-toolbutton"); gtk_widget_set_sensitive (widget, is_authorized && !self_selected); if (is_authorized) { - setup_tooltip_with_embedded_icon (widget, _("Delete the selected user"), NULL, NULL); + setup_tooltip_with_embedded_icon (widget, _("Delete the selected user account"), NULL, NULL); } else { gchar *names[3]; @@ -954,7 +954,7 @@ on_permission_changed (GPermission *permission, icon = (GIcon *)g_themed_icon_new_from_names (names, -1); setup_tooltip_with_embedded_icon (widget, - _("To delete the selected user,\nclick the * icon first"), + _("To delete the selected user account,\nclick the * icon first"), "*", icon); g_object_unref (icon); @@ -1222,12 +1222,12 @@ setup_main_window (UmUserPanelPrivate *d) names[2] = NULL; icon = (GIcon *)g_themed_icon_new_from_names (names, -1); setup_tooltip_with_embedded_icon (button, - _("To create a user,\nclick the * icon first"), + _("To create a user account,\nclick the * icon first"), "*", icon); button = get_widget (d, "remove-user-toolbutton"); setup_tooltip_with_embedded_icon (button, - _("To delete the selected user,\nclick the * icon first"), + _("To delete the selected user account,\nclick the * icon first"), "*", icon); g_object_unref (icon);