From 0ebba112d7b6d11b5fe0ac396d606fe83adf2ada Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 4 Mar 2015 10:08:24 -0500 Subject: [PATCH] Fix the offset calculation again We also need to skip over the \004. https://bugzilla.gnome.org/show_bug.cgi?id=745521 --- src/shell-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell-util.c b/src/shell-util.c index d6815b957..f1afed071 100644 --- a/src/shell-util.c +++ b/src/shell-util.c @@ -229,7 +229,7 @@ shell_util_translate_time_string (const char *str) setlocale (LC_MESSAGES, locale); sep = strchr (str, '\004'); - res = g_dpgettext (NULL, str, sep ? sep - str : 0); + res = g_dpgettext (NULL, str, sep ? sep - str + 1 : 0); setlocale (LC_MESSAGES, "");