[gnome-initial-setup] "username", not "user name"



commit d2c63a62c79c18cdaa0b14d292f647940a1023c8
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Fri Jun 1 10:42:56 2012 -0400

    "username", not "user name"
    
    We use "username" in the control center panel too, so I'm just
    trying to stay consistent.

 gnome-initial-setup/um-utils.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gnome-initial-setup/um-utils.c b/gnome-initial-setup/um-utils.c
index e74df81..f579cb7 100644
--- a/gnome-initial-setup/um-utils.c
+++ b/gnome-initial-setup/um-utils.c
@@ -509,17 +509,17 @@ is_valid_username (const gchar *username, gchar **tip)
 
         if (!empty && (in_use || too_long || !valid)) {
                 if (in_use) {
-                        *tip = g_strdup_printf (_("A user with the user name '%s' already exists"),
+                        *tip = g_strdup_printf (_("A user with the username '%s' already exists"),
                                                username);
                 }
                 else if (too_long) {
-                        *tip = g_strdup_printf (_("The user name is too long"));
+                        *tip = g_strdup_printf (_("The username is too long"));
                 }
                 else if (username[0] == '-') {
-                        *tip = g_strdup (_("The user name cannot start with a '-'"));
+                        *tip = g_strdup (_("The username cannot start with a '-'"));
                 }
                 else {
-                        *tip = g_strdup (_("The user name must consist of:\n"
+                        *tip = g_strdup (_("The username must consist of:\n"
                                           " \xe2\x9e\xa3 letters from the English alphabet\n"
                                           " \xe2\x9e\xa3 digits\n"
                                           " \xe2\x9e\xa3 any of the characters '.', '-' and '_'"));



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]