diff -Nru psensor-0.6.2.16/debian/changelog psensor-0.6.2.16/debian/changelog --- psensor-0.6.2.16/debian/changelog 2012-04-02 07:01:11.000000000 +0200 +++ psensor-0.6.2.16/debian/changelog 2012-07-17 09:53:27.000000000 +0200 @@ -1,3 +1,10 @@ +psensor (0.6.2.16-1ubuntu4.1) precise-proposed; urgency=low + + * debian/patches/LP1021900.patch: + - added degree Celcius symbol. (LP: #1021900) + + -- Jean-Philippe Orsini Tue, 17 Jul 2012 09:52:04 +0200 + psensor (0.6.2.16-1ubuntu4) precise; urgency=low * debian/patches/LP968912.patch diff -Nru psensor-0.6.2.16/debian/patches/LP1021900.patch psensor-0.6.2.16/debian/patches/LP1021900.patch --- psensor-0.6.2.16/debian/patches/LP1021900.patch 1970-01-01 01:00:00.000000000 +0100 +++ psensor-0.6.2.16/debian/patches/LP1021900.patch 2012-07-17 09:55:14.000000000 +0200 @@ -0,0 +1,26 @@ +Description: added degree Celcius symbol +Author: Jean-Philippe Orsini +Origin: Upstream +Ubuntu-bug: https://bugs.launchpad.net/ubuntu/+source/psensor/+bug/1021900 +Index: psensor-0.6.2.16/src/lib/psensor.c +=================================================================== +--- psensor-0.6.2.16.orig/src/lib/psensor.c 2012-07-17 09:50:02.000000000 +0200 ++++ psensor-0.6.2.16/src/lib/psensor.c 2012-07-17 09:51:56.736295210 +0200 +@@ -207,7 +207,7 @@ + char *unit; + + if (is_temp_type(type)) +- unit = "C"; ++ unit = "°C"; + else if (type & SENSOR_TYPE_CPU_USAGE) + unit = "%"; + else +@@ -427,7 +427,7 @@ + const char *psensor_type_to_unit_str(unsigned int type) + { + if (type & SENSOR_TYPE_TEMP) +- return _("C"); ++ return "\302\260C"; + + if (type & SENSOR_TYPE_FAN) + return _("RPM"); diff -Nru psensor-0.6.2.16/debian/patches/series psensor-0.6.2.16/debian/patches/series --- psensor-0.6.2.16/debian/patches/series 2012-04-02 07:00:41.000000000 +0200 +++ psensor-0.6.2.16/debian/patches/series 2012-07-17 09:50:36.000000000 +0200 @@ -1,2 +1,3 @@ drop_g_thread_init.patch LP968912.patch +LP1021900.patch