~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to grub-core/commands/true.c

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-09-13 18:02:04 UTC
  • mfrom: (1.17.15 upstream)
  • mto: (17.6.27 experimental)
  • mto: This revision was merged to the branch mainline in revision 145.
  • Revision ID: package-import@ubuntu.com-20120913180204-mojnmocbimlom4im
Tags: upstream-2.00
ImportĀ upstreamĀ versionĀ 2.00

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
                int argc __attribute__ ((unused)),
37
37
                char *argv[] __attribute__ ((unused)))
38
38
{
39
 
  return grub_error (GRUB_ERR_TEST_FAILURE, "false");
 
39
  return grub_error (GRUB_ERR_TEST_FAILURE, N_("false"));
40
40
}
41
41
 
42
42
static grub_command_t cmd_true, cmd_false;
46
46
{
47
47
  cmd_true =
48
48
    grub_register_command ("true", grub_cmd_true,
 
49
                           /* TRANSLATORS: it's a command description.  */
49
50
                           0, N_("Do nothing, successfully."));
50
51
  cmd_false =
51
52
    grub_register_command ("false", grub_cmd_false,
 
53
                           /* TRANSLATORS: it's a command description.  */
52
54
                           0, N_("Do nothing, unsuccessfully."));
53
55
}
54
56