Minor i18n fixes
Minor fixes that the translator (Yuri) has found in some of the strings. You only know how many typos and thinkos you have when someone is trying to translate it. Signed-off-by: Craig Small <csmall@enc.com.au>
This commit is contained in:
committed by
Craig Small
parent
3569c0351f
commit
2ec9f5c22e
@ -376,15 +376,19 @@ int main(int argc, char *argv[])
|
||||
" %-35s: %.2fK / %.2fK / %.2fK\n\n",
|
||||
/* Translation Hint: Next five strings must not
|
||||
* exceed 35 length in characters. */
|
||||
/* xgettext:no-c-format */
|
||||
_("Active / Total Objects (% used)"),
|
||||
stats.nr_active_objs, stats.nr_objs,
|
||||
100.0 * stats.nr_active_objs / stats.nr_objs,
|
||||
/* xgettext:no-c-format */
|
||||
_("Active / Total Slabs (% used)"),
|
||||
stats.nr_active_slabs, stats.nr_slabs,
|
||||
100.0 * stats.nr_active_slabs / stats.nr_slabs,
|
||||
/* xgettext:no-c-format */
|
||||
_("Active / Total Caches (% used)"),
|
||||
stats.nr_active_caches, stats.nr_caches,
|
||||
100.0 * stats.nr_active_caches / stats.nr_caches,
|
||||
/* xgettext:no-c-format */
|
||||
_("Active / Total Size (% used)"),
|
||||
stats.active_size / 1024.0, stats.total_size / 1024.0,
|
||||
100.0 * stats.active_size / stats.total_size,
|
||||
|
Reference in New Issue
Block a user