[gnome-bluetooth] lib: Fix incorrect use of "Setup" as an adjective



commit d451dbe0ccb71141e1dad980157d4cdbd53b1679
Author: Michael Hill <mdhill gnome org>
Date:   Mon Mar 10 14:54:10 2014 -0400

    lib: Fix incorrect use of "Setup" as an adjective
    
    It's "Set up" as an adjective. "Setup" is a noun.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=726050

 lib/bluetooth-settings-row.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lib/bluetooth-settings-row.c b/lib/bluetooth-settings-row.c
index 5fbc47d..c65f62b 100644
--- a/lib/bluetooth-settings-row.c
+++ b/lib/bluetooth-settings-row.c
@@ -76,7 +76,7 @@ label_might_change (BluetoothSettingsRow *self)
        BluetoothSettingsRowPrivate *priv = BLUETOOTH_SETTINGS_ROW_GET_PRIVATE (self);
 
        if (!priv->paired && !priv->trusted)
-               gtk_label_set_text (GTK_LABEL (priv->status), _("Not Setup"));
+               gtk_label_set_text (GTK_LABEL (priv->status), _("Not Set Up"));
        else if (priv->connected)
                gtk_label_set_text (GTK_LABEL (priv->status), _("Connected"));
        else
@@ -118,7 +118,7 @@ bluetooth_settings_row_init (BluetoothSettingsRow *self)
        g_object_set_data (G_OBJECT (self), "spinner", priv->spinner);
 
        /* Placeholder text */
-       priv->status = gtk_label_new (_("Not Setup"));
+       priv->status = gtk_label_new (_("Not Set Up"));
 
        gtk_widget_set_no_show_all (priv->status, TRUE);
        gtk_misc_set_alignment (GTK_MISC (priv->status), 1, 0.5);


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