summaryrefslogtreecommitdiff
path: root/horizon/templatetags
diff options
context:
space:
mode:
authorSayali Lunkad <sayali.92720@gmail.com>2014-07-14 16:57:44 +0530
committerSayali Lunkad <sayali.92720@gmail.com>2014-10-17 15:27:31 +0530
commit057bfd86b7c6c2f24e5879c9bd3f1c530103da0c (patch)
tree8c9941dd31eff0f929e2f3aa72627529e22e09d3 /horizon/templatetags
parent4382c8f4b2ae27065734d30aa194de6dfd3a47a0 (diff)
downloadhorizon-057bfd86b7c6c2f24e5879c9bd3f1c530103da0c.tar.gz
Removes term inconsistency in the dashboard
Makes some text edits in order to bring consistency in the terms mentioned. Closes-bug: #1272141 Change-Id: Ie1c959df7f7074c38fb1e464715194f93b2dc112
Diffstat (limited to 'horizon/templatetags')
-rw-r--r--horizon/templatetags/sizeformat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/horizon/templatetags/sizeformat.py b/horizon/templatetags/sizeformat.py
index cc7428793..937f89df2 100644
--- a/horizon/templatetags/sizeformat.py
+++ b/horizon/templatetags/sizeformat.py
@@ -74,7 +74,7 @@ def float_cast_filesizeformat(value, multiplier=1, format=int_format):
value = float(value)
value = filesizeformat(value * multiplier, format).replace(' ', '')
except (TypeError, ValueError):
- value = value or _('0 bytes')
+ value = value or _('0 Bytes')
return value