changeset 655f0501f323 in /home/hg/repos/gajim
branches: gtk3
details:http://hg.gajim.org/gajim?cmd=changeset;node=655f0501f323
description: always present room JID LTR. Fixes #7402
diffstat:
src/common/i18n.py | 2 +-
src/groupchat_control.py | 11 ++++++-----
2 files changed, 7 insertions(+), 6 deletions(-)
diffs (47 lines):
diff -r 5dee103853a7 -r 655f0501f323 src/common/i18n.py
--- a/src/common/i18n.py Wed Jul 31 19:15:42 2013 +0200
+++ b/src/common/i18n.py Thu Aug 01 19:05:00 2013 +0200
@@ -28,7 +28,7 @@
import unicodedata
# May be changed after GTK is imported
-direction_mark = '\u200F'
+direction_mark = '\u200E'
def paragraph_direction_mark(text):
"""
diff -r 5dee103853a7 -r 655f0501f323 src/groupchat_control.py
--- a/src/groupchat_control.py Wed Jul 31 19:15:42 2013 +0200
+++ b/src/groupchat_control.py Thu Aug 01 19:05:00 2013 +0200
@@ -242,7 +242,8 @@
_('Sending private message failed'),
#in second %s code replaces with nickname
_('You are no longer in group chat "%(room)s" or '
- '"%(nick)s" has left.') % {'room': room, 'nick': nick})
+ '"%(nick)s" has left.') % {'room': u'\u200E' + room,
+ 'nick': nick})
return
ChatControl.send_message(self, message, xhtml=xhtml,
@@ -790,7 +791,7 @@
name = self.get_continued_conversation_name()
else:
name = self.room_jid
- text = '<span %s>%s</span>' % (font_attrs, name)
+ text = '<span %s>%s</span>' % (font_attrs, u'\u200E' + name)
self.name_label.set_markup(text)
if self.subject:
@@ -2198,9 +2199,9 @@
reason, jid)
# Ask for a reason
- dialogs.DoubleInputDialog(_('Destroying %s') % self.room_jid,
- _('You are going to definitively destroy this room.\n'
- 'You may specify a reason below:'),
+ dialogs.DoubleInputDialog(_('Destroying %s') % u'\u200E' + \
+ self.room_jid, _('You are going to definitively destroy this \
+ room.\nYou may specify a reason below:'),
_('You may also enter an alternate venue:'), ok_handler=on_ok)
def _on_bookmark_room_menuitem_activate(self, widget):
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits