summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2005-06-22 15:44:19 +0000
committerBastien Nocera <hadess@src.gnome.org>2005-06-22 15:44:19 +0000
commitb951ff33ff705e2524195c19213659a6357a4eda (patch)
treec2d5e451f5aa4cdd0f6e383a9a921903ac765dd9
parent759951e13bb1d11e02547e13e73afd5c46138ad8 (diff)
downloadgnome-bluetooth-b951ff33ff705e2524195c19213659a6357a4eda.tar.gz
Remove markup from translatable message (Closes: #150115)
2005-06-22 Bastien Nocera <hadess@hadess.net> * src/fileactiondialog.gob: Remove markup from translatable message (Closes: #150115)
-rw-r--r--ChangeLog5
-rw-r--r--src/fileactiondialog.gob9
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 70d9eb4c..a8216017 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-06-22 Bastien Nocera <hadess@hadess.net>
+ * src/fileactiondialog.gob: Remove markup from translatable message
+ (Closes: #150115)
+
+2005-06-22 Bastien Nocera <hadess@hadess.net>
+
* python/hig_alert.py:
* python/manager.py:
* python/testiconlist.py: patch from Marc O'Morain
diff --git a/src/fileactiondialog.gob b/src/fileactiondialog.gob
index 0854e44b..4d902f97 100644
--- a/src/fileactiondialog.gob
+++ b/src/fileactiondialog.gob
@@ -72,7 +72,7 @@ class Gnomebt:FileActionDialog from Gtk:Dialog {
private void
initialise_gui (self, const gchar *dname)
{
- gchar *exp, *sizetext;
+ gchar *exp, *sizetext, *msg;
GtkWidget *hbox,*vbox,*img;
GtkWidget *iconbox, *iconimg;
GtkWidget *detailslabel;
@@ -132,9 +132,10 @@ class Gnomebt:FileActionDialog from Gtk:Dialog {
gtk_window_set_position (GTK_WINDOW(self),
GTK_WIN_POS_MOUSE);
- /* FIXME: dname needs escaping */
- exp = g_strdup_printf (
- _("<span weight='bold' size='larger'>File received from '%s'. What would you like to do?</span>"), dname);
+ /* FIXME: dname needs escaping */
+ msg = g_strdup_printf (_("File received from '%s'. What would you like to do?"), dname);
+ exp = g_strdup_printf ("<span weight='bold' size='larger'>%s</span>", msg);
+ g_free (msg);
self->_priv->label = GTK_WIDGET (gtk_label_new (NULL));