diff options
author | William Wilgus <me.theuser@yahoo.com> | 2018-12-09 12:09:40 -0600 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2018-12-09 22:54:55 -0600 |
commit | 62a5ed49cc187120793ea50e0eec4e18c8bc0441 (patch) | |
tree | a6714de084a80ea4a61f3da6042a743801b19d12 /apps/lang/english.lang | |
parent | 74701a16a547ab4a68fc9c5a32d939e7a9c91531 (diff) | |
download | rockbox-62a5ed49cc187120793ea50e0eec4e18c8bc0441.tar.gz rockbox-62a5ed49cc187120793ea50e0eec4e18c8bc0441.tar.bz2 rockbox-62a5ed49cc187120793ea50e0eec4e18c8bc0441.zip |
Fix possible truncation misc.c->output_dyn_value + use Kibytes
output_dyn_value now requires the count for number of units
Binary scale now shows Kibibytes instead of kilobytes (g#1742)
Fixes output for negative values as well
Change-Id: I8aa896860e97d2453fa35069e2dfe1caac60109f
Diffstat (limited to 'apps/lang/english.lang')
-rw-r--r-- | apps/lang/english.lang | 66 |
1 files changed, 54 insertions, 12 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang index d4e0697667..f4f1b12032 100644 --- a/apps/lang/english.lang +++ b/apps/lang/english.lang @@ -8441,44 +8441,44 @@ </phrase> <phrase> id: LANG_KILOBYTE - desc: a unit postfix, also voiced + desc: deprecated user: core <source> - *: "KB" + *: "" </source> <dest> - *: "KB" + *: "" </dest> <voice> - *: "kilobyte" + *: "" </voice> </phrase> <phrase> id: LANG_MEGABYTE - desc: a unit postfix, also voiced + desc: deprecated user: core <source> - *: "MB" + *: "" </source> <dest> - *: "MB" + *: "" </dest> <voice> - *: "megabyte" + *: "" </voice> </phrase> <phrase> id: LANG_GIGABYTE - desc: a unit postfix, also voiced + desc: deprecated user: core <source> - *: "GB" + *: "" </source> <dest> - *: "GB" + *: "" </dest> <voice> - *: "gigabyte" + *: "" </voice> </phrase> <phrase> @@ -13647,3 +13647,45 @@ *: "Disable Touch" </voice> </phrase> +<phrase> + id: LANG_KIBIBYTE + desc: a unit postfix, also voiced + user: core + <source> + *: "KiB" + </source> + <dest> + *: "KiB" + </dest> + <voice> + *: "kibibyte" + </voice> +</phrase> +<phrase> + id: LANG_MEBIBYTE + desc: a unit postfix, also voiced + user: core + <source> + *: "MiB" + </source> + <dest> + *: "MiB" + </dest> + <voice> + *: "mebibyte" + </voice> +</phrase> +<phrase> + id: LANG_GIBIBYTE + desc: a unit postfix, also voiced + user: core + <source> + *: "GiB" + </source> + <dest> + *: "GiB" + </dest> + <voice> + *: "gibibyte" + </voice> +</phrase> |