~jonathank89/burg/burg-percise

« back to all changes in this revision

Viewing changes to commands/reboot.c

merge mainline into mips

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <grub/dl.h>
21
21
#include <grub/command.h>
22
22
#include <grub/misc.h>
 
23
#include <grub/i18n.h>
23
24
 
24
25
static grub_err_t
25
26
grub_cmd_reboot (grub_command_t cmd __attribute__ ((unused)),
35
36
GRUB_MOD_INIT(reboot)
36
37
{
37
38
  cmd = grub_register_command ("reboot", grub_cmd_reboot,
38
 
                               0, "Reboot the computer.");
 
39
                               0, N_("Reboot the computer."));
39
40
}
40
41
 
41
42
GRUB_MOD_FINI(reboot)