diff -Nru ibus-1.3.9/debian/changelog ibus-1.3.9/debian/changelog --- ibus-1.3.9/debian/changelog 2011-01-07 15:33:37.000000000 +0000 +++ ibus-1.3.9/debian/changelog 2011-02-11 15:36:06.000000000 +0000 @@ -1,3 +1,10 @@ +ibus (1.3.9-0ubuntu1ppa1) natty; urgency=low + + * debian/patches/06_fix-locale-parser.patch: use LC_MESSAGES instead of + LC_ALL to fix LP: #716314 + + -- Nobuto MURATA Sat, 12 Feb 2011 00:35:52 +0900 + ibus (1.3.9-0ubuntu1) natty; urgency=low * New upstream release diff -Nru ibus-1.3.9/debian/patches/06_fix-locale-parser.patch ibus-1.3.9/debian/patches/06_fix-locale-parser.patch --- ibus-1.3.9/debian/patches/06_fix-locale-parser.patch 1970-01-01 00:00:00.000000000 +0000 +++ ibus-1.3.9/debian/patches/06_fix-locale-parser.patch 2011-02-11 15:34:47.000000000 +0000 @@ -0,0 +1,16 @@ +## Description: add some description +## Origin/Author: add some origin or author +## Bug: bug URL +Index: ibus-1.3.9/bus/ibusimpl.c +=================================================================== +--- ibus-1.3.9.orig/bus/ibusimpl.c 2011-02-12 00:34:46.777317985 +0900 ++++ ibus-1.3.9/bus/ibusimpl.c 2011-02-12 00:34:39.257317986 +0900 +@@ -351,7 +351,7 @@ + } + + done = TRUE; +- lang = g_strdup (setlocale (LC_ALL, NULL)); ++ lang = g_strdup (setlocale (LC_MESSAGES, NULL)); + p = index (lang, '.'); + if (p) { + *p = '\0'; diff -Nru ibus-1.3.9/debian/patches/series ibus-1.3.9/debian/patches/series --- ibus-1.3.9/debian/patches/series 2010-11-17 13:49:24.000000000 +0000 +++ ibus-1.3.9/debian/patches/series 2011-02-11 15:34:01.000000000 +0000 @@ -1,3 +1,4 @@ 01_ubuntu_desktop 02_title_update.patch 05_appindicator.patch +06_fix-locale-parser.patch