Revision 4e41f055

b/snf-astakos-app/astakos/im/static/im/js/usage.js
12 12
    if (filesize <= 0) { return '0 bytes'; }
13 13

  
14 14
    var thresholds = [1];
15
    var units = ['bytes', 'Kb', 'Mb', 'Gb', 'Tb', 'Pb'];
15
    var units = ['bytes', 'KB', 'MB', 'GB', 'TB', 'PB'];
16 16
    if (filesize < kilo) { return humanize.numberFormat(filesize, 0) + ' ' + units[0]; }
17 17

  
18 18
    for (var i = 1; i < units.length; i++) {
b/snf-astakos-app/astakos/im/templates/im/projects/projectapplication_form.html
137 137
			    	<div class="form-row">
138 138
			    		<p class="clearfix">
139 139
			    			<label for="{{'id_'|add:rname|add:'_uplimit'}}_proxy" >
140
								Total {% if rdata.unit %}amount{% else %}units{% endif %}   per user
140
								Total {% if rdata.is_abbreviation %}{{ rdata.verbose_name|upper }}{% else %}{{ rdata.verbose_name }}{% endif %}{% if not rdata.unit %}s {% endif  %}  per user
141 141
							</label>
142 142
			    			<input 	type="text" 
143 143
			       						id="{{'id_'|add:rname|add:'_uplimit'}}_proxy" 

Also available in: Unified diff