]> git.proxmox.com Git - grub2.git/commitdiff
Silence error messages when translations are unavailable
authorColin Watson <cjwatson@ubuntu.com>
Mon, 13 Jan 2014 12:13:02 +0000 (12:13 +0000)
committerColin Watson <cjwatson@debian.org>
Sun, 14 Jun 2015 08:59:42 +0000 (09:59 +0100)
Bug: https://savannah.gnu.org/bugs/?35880
Forwarded: https://savannah.gnu.org/bugs/?35880
Last-Update: 2013-11-14

Patch-Name: gettext_quiet.patch

grub-core/gettext/gettext.c

index 4880cefe3f8af2c83fbb84ae06258b4e3a485872..3098e89184f5f2d8601c5880061e85398e7bdd99 100644 (file)
@@ -427,6 +427,11 @@ grub_gettext_init_ext (struct grub_gettext_context *ctx,
   if (locale[0] == 'e' && locale[1] == 'n'
       && (locale[2] == '\0' || locale[2] == '_'))
     grub_errno = err = GRUB_ERR_NONE;
+
+  /* If no translations are available, fall back to untranslated text. */
+  if (err == GRUB_ERR_FILE_NOT_FOUND)
+    grub_errno = err = GRUB_ERR_NONE;
+
   return err;
 }