gnome-bluetooth r460 - trunk/wizard
- From: hadess svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-bluetooth r460 - trunk/wizard
- Date: Thu, 5 Mar 2009 16:41:05 +0000 (UTC)
Author: hadess
Date: Thu Mar 5 16:41:05 2009
New Revision: 460
URL: http://svn.gnome.org/viewvc/gnome-bluetooth?rev=460&view=rev
Log:
Some more strings changes, sorry translators
Modified:
trunk/wizard/main.c
Modified: trunk/wizard/main.c
==============================================================================
--- trunk/wizard/main.c (original)
+++ trunk/wizard/main.c Thu Mar 5 16:41:05 2009
@@ -289,8 +289,11 @@
if (path != NULL) {
gint page;
- text = g_strdup_printf(_("Successfully paired with %s"),
- target_name);
+ /* translators:
+ * The '%s' is the device name, for example:
+ * Successfully paired with 'Sony Bluetooth Headset'
+ */
+ text = g_strdup_printf(_("Successfully paired with '%s'"), target_name);
page = gtk_assistant_get_current_page(assistant);
if (page > 0)
@@ -305,8 +308,11 @@
complete = TRUE;
} else {
- text = g_strdup_printf(_("Pairing with %s failed"),
- target_name);
+ /* translators:
+ * The '%s' is the device name, for example:
+ * Pairing with 'Sony Bluetooth Headset' failed
+ */
+ text = g_strdup_printf(_("Pairing with '%s' failed"), target_name);
}
gtk_label_set_markup(GTK_LABEL(label_setup), text);
@@ -345,7 +351,7 @@
}
if (page == page_setup) {
- gchar *text, *markup, *address, *name;
+ gchar *text, *address, *name;
guint type;
/* Get the info about the device now,
@@ -364,14 +370,14 @@
target_type = type;
- text = g_strdup_printf(_("Connecting to %s now ..."),
- target_name);
- markup = g_strdup_printf("%s\n\n", text);
- g_free(text);
-
- gtk_label_set_markup(GTK_LABEL(label_setup), markup);
+ /* translators:
+ * The '%s' is the device name, for example:
+ * Connecting to 'Sony Bluetooth Headset' now...
+ */
+ text = g_strdup_printf(_("Connecting to '%s' now..."), target_name);
+ gtk_label_set_markup(GTK_LABEL(label_setup), text);
- g_free(markup);
+ g_free(text);
complete = FALSE;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]