mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #14002 -- Modified filesize filter to ensure strings are translatable. Thanks to claudep for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13594 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -807,19 +807,17 @@ def filesizeformat(bytes): | ||||
|     except (TypeError,ValueError,UnicodeDecodeError): | ||||
|         return u"0 bytes" | ||||
|  | ||||
|     BYTE_UNITS = ( | ||||
|         ('KB', 1024), | ||||
|         ('MB', 1024 * 1024), | ||||
|         ('GB', 1024 * 1024 * 1024), | ||||
|         ('TB', 1024 * 1024 * 1024 * 1024), | ||||
|         ('PB', 1024 * 1024 * 1024 * 1024 * 1024) | ||||
|     ) | ||||
|  | ||||
|     if bytes < BYTE_UNITS[0][1]: | ||||
|     if bytes < 1024: | ||||
|         return ungettext("%(size)d byte", "%(size)d bytes", bytes) % {'size': bytes} | ||||
|     for index, (unit, unit_size) in enumerate(BYTE_UNITS): | ||||
|         if bytes < unit_size * 1024 or index == len(BYTE_UNITS) - 1: | ||||
|             return ugettext("%.1f %s") % (bytes / unit_size, unit) | ||||
|     if bytes < 1024 * 1024: | ||||
|         return ugettext("%.1f KB") % (bytes / 1024) | ||||
|     if bytes < 1024 * 1024 * 1024: | ||||
|         return ugettext("%.1f MB") % (bytes / (1024 * 1024)) | ||||
|     if bytes < 1024 * 1024 * 1024 * 1024: | ||||
|         return ugettext("%.1f GB") % (bytes / (1024 * 1024 * 1024)) | ||||
|     if bytes < 1024 * 1024 * 1024 * 1024 * 1024: | ||||
|         return ugettext("%.1f TB") % (bytes / (1024 * 1024 * 1024 * 1024)) | ||||
|     return ugettext("%.1f PB") % (bytes / (1024 * 1024 * 1024 * 1024 * 1024)) | ||||
| filesizeformat.is_safe = True | ||||
|  | ||||
| def pluralize(value, arg=u's'): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user