From 7333e08a9b47bdfd7cfdcb402191e0d69396e577 Mon Sep 17 00:00:00 2001 From: Michael Catanzaro Date: Fri, 24 Apr 2015 09:24:25 -0500 Subject: [PATCH] power: Improve labels for wifi and mobile broadband toggles Users report the previous labels were still confusing. https://bugzilla.gnome.org/show_bug.cgi?id=695417 --- panels/power/cc-power-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panels/power/cc-power-panel.c b/panels/power/cc-power-panel.c index aa3065371..f07b3db69 100644 --- a/panels/power/cc-power-panel.c +++ b/panels/power/cc-power-panel.c @@ -1695,7 +1695,7 @@ add_power_saving_section (CcPowerPanel *self) gtk_label_set_use_underline (GTK_LABEL (label), TRUE); gtk_box_pack_start (GTK_BOX (box2), label, TRUE, TRUE, 0); - w = gtk_label_new (_("Wireless devices require extra power")); + w = gtk_label_new (_("Turn off Wi-Fi to save power.")); gtk_widget_set_halign (w, GTK_ALIGN_START); gtk_style_context_add_class (gtk_widget_get_style_context (w), GTK_STYLE_CLASS_DIM_LABEL); gtk_box_pack_start (GTK_BOX (box2), w, TRUE, TRUE, 0); @@ -1725,7 +1725,7 @@ add_power_saving_section (CcPowerPanel *self) gtk_label_set_use_underline (GTK_LABEL (label), TRUE); gtk_box_pack_start (GTK_BOX (box2), label, TRUE, TRUE, 0); - w = gtk_label_new (_("Mobile broadband (3G, 4G, WiMax, etc.) devices require extra power")); + w = gtk_label_new (_("Turn off mobile broadband (3G, 4G, WiMax, etc.) to save power.")); gtk_widget_set_halign (w, GTK_ALIGN_START); gtk_style_context_add_class (gtk_widget_get_style_context (w), GTK_STYLE_CLASS_DIM_LABEL); gtk_box_pack_start (GTK_BOX (box2), w, TRUE, TRUE, 0);