diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-05-29 11:10:55 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-05-30 15:50:37 +0200 |
commit | cf6794d7c811dfaa8c0a69225598b5f061b45f96 (patch) | |
tree | 7cf5c551888affc0cce00de716409d4cde0ddde9 /ogcp/templates/actions/setup.html | |
parent | 1f18af1208ede0b16da393641e7e1386690e7aa5 (diff) |
templates: use the correct storage units1.1.3-20
Use base 2 storage units in html templates as that's the correct
representation for the values shown in the web.
Remove units such as "Gbytes" and "MB" for their binary byte unit
counterparts.
Diffstat (limited to 'ogcp/templates/actions/setup.html')
-rw-r--r-- | ogcp/templates/actions/setup.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ogcp/templates/actions/setup.html b/ogcp/templates/actions/setup.html index a81d67e..c64c676 100644 --- a/ogcp/templates/actions/setup.html +++ b/ogcp/templates/actions/setup.html @@ -20,7 +20,7 @@ <tr> <th>{{ _('Disk') }}</th> <th>{{ _('Partition Table Type') }}</th> - <th>{{ _('Total Disk Size') }} (MB)</th> + <th>{{ _('Total Disk Size') }} (MiB)</th> </tr> </thead> @@ -46,7 +46,7 @@ <th>{{ _('Partition') }}</th> <th>{{ _('Type') }}</th> <th>{{ _('Filesystem') }}</th> - <th>{{ _('Size') }} (MB)</th> + <th>{{ _('Size') }} (MiB)</th> <th colspan="2"></th> </tr> </thead> |