* grub-core/commands/testspeed.c: Reuse formatting string to decrease
new strings to translate.
This commit is contained in:
parent
f8024c3f9a
commit
0dc11c08d7
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/commands/testspeed.c: Reuse formatting string to decrease
|
||||||
|
new strings to translate.
|
||||||
|
|
||||||
2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-05-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* util/grub-mkrescue.in: Replace `STR' with `STRING' to avoid adding
|
* util/grub-mkrescue.in: Replace `STR' with `STRING' to avoid adding
|
||||||
|
|
|
@ -80,9 +80,9 @@ grub_cmd_testspeed (grub_extcmd_context_t ctxt, int argc, char **args)
|
||||||
grub_printf_ (N_("File size: %s\n"),
|
grub_printf_ (N_("File size: %s\n"),
|
||||||
grub_get_human_size (total_size, GRUB_HUMAN_SIZE_NORMAL));
|
grub_get_human_size (total_size, GRUB_HUMAN_SIZE_NORMAL));
|
||||||
whole = grub_divmod64 (end - start, 1000, &fraction);
|
whole = grub_divmod64 (end - start, 1000, &fraction);
|
||||||
grub_printf_ (N_("Elapsed time: %llu.%03llu s \n"),
|
grub_printf_ (N_("Elapsed time: %d.%03d s \n"),
|
||||||
(unsigned long long) whole,
|
(unsigned) whole,
|
||||||
(unsigned long long) fraction);
|
(unsigned) fraction);
|
||||||
|
|
||||||
if (end != start)
|
if (end != start)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue