diff options
author | Gabor Kelemen <kelemeng@gnome.hu> | 2010-03-17 18:37:29 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-17 18:37:29 +0800 |
commit | e7f1335e41ac72ac24684a8126151745a019c5a7 (patch) | |
tree | b3d3d9b15eae920fed9cf719e3d7e85963279066 | |
parent | 7cd5db58862b57db5a1a67b6e2f5e61746e9fb07 (diff) | |
download | gsoc2013-empathy-e7f1335e41ac72ac24684a8126151745a019c5a7.tar gsoc2013-empathy-e7f1335e41ac72ac24684a8126151745a019c5a7.tar.gz gsoc2013-empathy-e7f1335e41ac72ac24684a8126151745a019c5a7.tar.bz2 gsoc2013-empathy-e7f1335e41ac72ac24684a8126151745a019c5a7.tar.lz gsoc2013-empathy-e7f1335e41ac72ac24684a8126151745a019c5a7.tar.xz gsoc2013-empathy-e7f1335e41ac72ac24684a8126151745a019c5a7.tar.zst gsoc2013-empathy-e7f1335e41ac72ac24684a8126151745a019c5a7.zip |
fix escaping of UTF-chars in ui file (#613117)
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.ui | 4 | ||||
-rw-r--r-- | src/empathy-accounts-dialog.ui | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.ui b/libempathy-gtk/empathy-contact-widget.ui index 6a248d5bb..43a754852 100644 --- a/libempathy-gtk/empathy-contact-widget.ui +++ b/libempathy-gtk/empathy-contact-widget.ui @@ -403,7 +403,7 @@ <object class="GtkLabel" id="label653"> <property name="visible">True</property> <property name="xalign">0</property> - <property name="label" translatable="yes">Information requested…</property> + <property name="label" translatable="yes">Information requested…</property> <property name="use_markup">True</property> <property name="wrap">True</property> </object> @@ -572,7 +572,7 @@ <object class="GtkLabel" id="label669"> <property name="visible">True</property> <property name="xalign">0</property> - <property name="label" translatable="yes">Information requested…</property> + <property name="label" translatable="yes">Information requested…</property> <property name="use_markup">True</property> <property name="wrap">True</property> </object> diff --git a/src/empathy-accounts-dialog.ui b/src/empathy-accounts-dialog.ui index 844c1b92d..40851ed77 100644 --- a/src/empathy-accounts-dialog.ui +++ b/src/empathy-accounts-dialog.ui @@ -44,7 +44,7 @@ <property name="homogeneous">True</property> <child> <object class="GtkButton" id="button_add"> - <property name="label" translatable="yes">_Add…</property> + <property name="label" translatable="yes">_Add…</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> @@ -75,7 +75,7 @@ </child> <child> <object class="GtkButton" id="button_import"> - <property name="label" translatable="yes">_Import…</property> + <property name="label" translatable="yes">_Import…</property> <property name="can_focus">True</property> <property name="receives_default">True</property> <property name="use_underline">True</property> |