Commit 405f03a6 by stv

Remove superfluous empty string check

Since we began monkey-patching `django.utils.translation` [1], we no
longer need to check for empty strings before translating them.
Previously, the empty string would be translated into translation
metadata. Now, translating the empty string intuitively yields the empty
string.

[1] 86633df3
parent 55edd327
...@@ -137,7 +137,7 @@ def localize_checklist_text(checklist): ...@@ -137,7 +137,7 @@ def localize_checklist_text(checklist):
# Localize checklist items # Localize checklist items
for item in checklist.get('items'): for item in checklist.get('items'):
item['short_description'] = ugettext(item['short_description']) item['short_description'] = ugettext(item['short_description'])
item['long_description'] = ugettext(item['long_description']) if item['long_description'] != '' else u'' item['long_description'] = ugettext(item['long_description'])
item['action_text'] = ugettext(item['action_text']) if item['action_text'] != "" else u"" item['action_text'] = ugettext(item['action_text'])
return checklist return checklist
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