Roundup Tracker - Issues

Message4803

Author pcaulagi
Recipients pcaulagi, rouilj
Date 2013-02-24.05:05:28
Message-id <51299F91.7040900@wwstay.com>
In-reply-to <1361594775.32.0.757908199684.issue2550795@psf.upfronthosting.co.za>
> In the classic (and minimal, devel and responsive) templates
> the page.html menu column has a number of href links that include
> entries like:
>
>     '@dispname': i18n.gettext('Show Unassigned')
>
> the space needs to be url encoded to %20 so that the page will validate.
> These can be manually changed to %20, so they read:
>
>     '@dispname': i18n.gettext('Show%20Unassigned')

How can I test the translations?  I have not seen a tracker in a 
language other than English.  So how should I test that?

Normally, I have seen that companies get the translations done from an 
external agency.  So in this case, the additional characters would 
confuse the translators.
>
> The user's defined queries at the top of the column needs to be
> fixed as well. To fix those replace:
>
>    a href="#" tal:attributes="href
> string:${qs/klass}?${qs/url}&@dispname=${qs/name}"
>         tal:content="qs/name"
>
> with:
>
>    a href="#" tal:attributes="href
> python:'%s?%s&@dispname=%s'%(qs.klass,qs.url,utils.urlquote(qs.name.plain()))"
>         tal:content="qs/name"
>
Instead, can't we have qs.name.plain() always to urllib.quote before 
returning?
History
Date User Action Args
2013-02-24 05:05:29pcaulagisetrecipients: + pcaulagi, rouilj
2013-02-24 05:05:29pcaulagilinkissue2550795 messages
2013-02-24 05:05:28pcaulagicreate