[Zope3-checkins] CVS: Zope3/src/zope/app - size.py:1.9
Philipp von Weitershausen
philikon at philikon.de
Wed Aug 20 15:21:31 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app
In directory cvs.zope.org:/tmp/cvs-serv32583/src/zope/app
Modified Files:
size.py
Log Message:
Fix i18n message ids. We now have explicit message ids in many places where
the English default text is ambigious. Also, message IDs ending with a colon
have been avoided.
German translation was updated accordingly.
=== Zope3/src/zope/app/size.py 1.8 => 1.9 ===
--- Zope3/src/zope/app/size.py:1.8 Tue Aug 19 10:57:13 2003
+++ Zope3/src/zope/app/size.py Wed Aug 20 14:21:00 2003
@@ -41,7 +41,7 @@
units, size = self._sortingSize
if units == 'byte':
return byteDisplay(size)
- return _('n/a')
+ return _('not-available', 'n/a')
def byteDisplay(size):
if size == 0:
More information about the Zope3-Checkins
mailing list