From b6cf74c90147b0e1118a02f1590c23413b9d18d2 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Mon, 19 Mar 2012 16:30:16 +0100 Subject: [PATCH] * util/getroot.c (grub_make_system_path_relative_to_its_root): Fix missing quotes which caused confusion among translators. --- ChangeLog | 5 +++++ util/getroot.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3abe5c112..85a6f74df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-03-19 Vladimir Serbinenko + + * util/getroot.c (grub_make_system_path_relative_to_its_root): Fix + missing quotes which caused confusion among translators. + 2012-03-19 Vladimir Serbinenko * util/grub-mkconfig_lib.in: Fix typo. diff --git a/util/getroot.c b/util/getroot.c index 868bfc602..be055bc32 100644 --- a/util/getroot.c +++ b/util/getroot.c @@ -2737,9 +2737,9 @@ grub_make_system_path_relative_to_its_root (const char *path) grub_util_error ("%s", /* TRANSLATORS: canonical pathname is the complete one e.g. /etc/fstab. It has - to contain / normally, if it doesn't + to contain `/' normally, if it doesn't we're in trouble and throw this error. */ - _("no / in canonical filename")); + _("no `/' in canonical filename")); if (p != buf) *p = 0; else