Commit aeea3d1b authored by Jérome Perrin's avatar Jérome Perrin

xhtml_style: workaround #988 to support RTL languages

add a LEFT-TO-RIGHT EMBEDDING character before adding (%(count)s)
parent dd3a03a4
......@@ -18,7 +18,7 @@
tal:define="name python: action.get('name', '');
index python: name.find(' (');">
<option tal:condition="python: index &gt;= 0"
tal:attributes="value action/url"><tal:block tal:content="python: name[:index]" i18n:translate="" i18n:domain="ui"></tal:block><tal:block tal:replace="python: name[index:]" /></option>
tal:attributes="value action/url"><tal:block tal:content="python: name[:index]" i18n:translate="" i18n:domain="ui"></tal:block><tal:block tal:replace="python: u'\u202a%s' % name[index:]" /></option>
<option tal:condition="python: index &lt; 0"
tal:attributes="value action/url"
tal:content="action/name"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment