yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #20605
[Bug 1366481] [NEW] Concatenation needs to be avoided in Volume Type Extra Spec form
Public bug reported:
dashboards/admin/volumes/templates/volumes/volume_types/extras/_edit.html:20
<p>{% trans 'Update the "extra spec" value for' %} "{{ key
}}"</p>
String concatenation is used and translators cannot control the word
order.
It should be:
<p>{% blocktrans with key=key %}Update the "extra spec" value for "{{
key }}"{% endblocktrans %}</p>
** Affects: horizon
Importance: Low
Assignee: Akihiro Motoki (amotoki)
Status: In Progress
** Tags: i18n
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1366481
Title:
Concatenation needs to be avoided in Volume Type Extra Spec form
Status in OpenStack Dashboard (Horizon):
In Progress
Bug description:
dashboards/admin/volumes/templates/volumes/volume_types/extras/_edit.html:20
<p>{% trans 'Update the "extra spec" value for' %} "{{ key
}}"</p>
String concatenation is used and translators cannot control the word
order.
It should be:
<p>{% blocktrans with key=key %}Update the "extra spec" value for
"{{ key }}"{% endblocktrans %}</p>
To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1366481/+subscriptions
Follow ups
References