summaryrefslogtreecommitdiff
path: root/meta/recipes-connectivity/connman/connman-gnome/0006-Fix-status-descriptions-in-properties-tree.patch
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-04-15 03:01:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-15 09:52:21 +0100
commit82744f56f8bfbdcc303034dee3d6e188cf8180b1 (patch)
tree83578508cd82534d6e133b39a96b6e475f6f52db /meta/recipes-connectivity/connman/connman-gnome/0006-Fix-status-descriptions-in-properties-tree.patch
parent4396db54dba4afdb9f1099f4e386dc25c76f49fb (diff)
downloadopenembedded-core-82744f56f8bfbdcc303034dee3d6e188cf8180b1.tar.gz
openembedded-core-82744f56f8bfbdcc303034dee3d6e188cf8180b1.tar.bz2
openembedded-core-82744f56f8bfbdcc303034dee3d6e188cf8180b1.tar.xz
openembedded-core-82744f56f8bfbdcc303034dee3d6e188cf8180b1.zip
connman-gnome: connman 0.79 API fixes
Fix connman-gnome to work with connman 0.79, which made a number of fairly serious DBus API changes. Also switch over to the newly repopulated git repo on kernel.org in which the two previous patches have been merged. Fixes [YOCTO #2202]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman-gnome/0006-Fix-status-descriptions-in-properties-tree.patch')
-rw-r--r--meta/recipes-connectivity/connman/connman-gnome/0006-Fix-status-descriptions-in-properties-tree.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/connman/connman-gnome/0006-Fix-status-descriptions-in-properties-tree.patch b/meta/recipes-connectivity/connman/connman-gnome/0006-Fix-status-descriptions-in-properties-tree.patch
new file mode 100644
index 000000000..99a2df81d
--- /dev/null
+++ b/meta/recipes-connectivity/connman/connman-gnome/0006-Fix-status-descriptions-in-properties-tree.patch
@@ -0,0 +1,42 @@
+From ce510179cba98c906974bdbd6bda2b586b6058c1 Mon Sep 17 00:00:00 2001
+Message-Id: <ce510179cba98c906974bdbd6bda2b586b6058c1.1334369310.git.paul.eggleton@linux.intel.com>
+In-Reply-To: <cover.1334369310.git.paul.eggleton@linux.intel.com>
+References: <cover.1334369310.git.paul.eggleton@linux.intel.com>
+From: Paul Eggleton <paul.eggleton@linux.intel.com>
+Date: Sat, 14 Apr 2012 02:39:15 +0100
+Subject: [PATCH 6/6] Fix status descriptions in properties tree
+
+* configurating -> configuring
+* connnected -> connected
+* Use i18n wrappers
+
+Upstream-Status: Submitted
+
+Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
+---
+ properties/main.c | 6 +++---
+ 1 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/properties/main.c b/properties/main.c
+index e266f03..c05f443 100644
+--- a/properties/main.c
++++ b/properties/main.c
+@@ -332,12 +332,12 @@ static void device_to_text(GtkTreeViewColumn *column, GtkCellRenderer *cell,
+ /* Show the AP name */
+ title = N_(name);
+ if (g_str_equal(state, "association") == TRUE)
+- state = "associating...";
++ state = _("associating...");
+ else if (g_str_equal(state, "configuration") == TRUE)
+- state = "configurating...";
++ state = _("configuring...");
+ else if (g_str_equal(state, "ready") == TRUE ||
+ g_str_equal(state, "online") == TRUE)
+- state = "connnected";
++ state = _("connected");
+ else
+ state = "";
+ markup = g_strdup_printf(" %s\n %s", title, state);
+--
+1.7.5.4
+