From 3ec764d5844efd0fc71ca132efdc3513afc66b56 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 4 Mar 2015 06:03:10 -0500 Subject: [PATCH] Fix offset calculation for g_dpgettext We need to pass a positive number here. 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 f922f6eb5..d6815b957 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 ? str - sep : 0); + res = g_dpgettext (NULL, str, sep ? sep - str : 0); setlocale (LC_MESSAGES, "");