Fix invalid UTF-8

Current translation sync fail with:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 3:
ordinal not in range(128)

Example:
http://logs.openstack.org/periodic/zun-ui-propose-translation-update/2f95b23/

The problem are two wrong " " UTF-8 characters, replace them with ASCII
ones.

Note that the diff will not show this as real difference. But comparing files before and
after using "file" shows before: UTF-8 Unicode text
And now: ASCII text.

This was introduced with change I2eba1ac77deec797342fc1adff60f45e8ea0a70f.

See
http://status.openstack.org/openstack-health/#/job/zun-ui-upstream-translation-update
for when the failures start.

Change-Id: Idd443c3a432c78374f6d10d48f759ff5787e439c
This commit is contained in:
Andreas Jaeger 2017-07-30 10:01:32 +02:00
parent 72b5ea6c07
commit 58b554daf2
2 changed files with 4 additions and 3 deletions

View File

@ -40,7 +40,7 @@
ctrl.text = {
/* eslint-disable max-len */
help: gettext('You can specify scheduler hints by moving items from the left column to the right column. Use the "Custom" option to add scheduler hints with the key of your choice.'),
help: gettext('You can specify scheduler hints by moving items from the left column to the right column. Use the "Custom" option to add scheduler hints with the key of your choice.'),
/* eslint-enable max-len */
available: gettext('Available Scheduler Hints'),
existing: gettext('Existing Scheduler Hints'),

View File

@ -2,6 +2,7 @@
<dt translate>Scheduler Hints</dt>
<dd>
<p translate>Scheduler hints allow you to pass additional placement related information to the Zun's scheduler.</p>
<p translate>For now, only Label Filter is available. So there are no scheduler hint definitions in the left column. Please set key that included in labels.</p>
<p translate>For now, only Label Filter is available. So there are
no scheduler hint definitions in the left column. Please set key that included in labels.</p>
</dd>
</dl>
</dl>