From b2e37c01f1aee3d13ffccb47f50746d297e5ecaa Mon Sep 17 00:00:00 2001 From: Robert Ancell Date: Wed, 20 Apr 2011 12:09:14 +1000 Subject: [PATCH] =?utf8?q?Use=20K=20for=20kelvin,=20not=20=CB=9AK?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- NEWS | 1 + src/unit-manager.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 7848ddb9..8c633ce9 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,7 @@ Overview of changes in gcalctool 6.1.0 (Bug #647327) * Fix crash when not all currencies downloaded * Fix bit editor (Bug #646142) + * Use K for kelvin, not ˚K (Bug #643585) Overview of changes in gcalctool 6.0.0 diff --git a/src/unit-manager.c b/src/unit-manager.c index a1a9dc1e..0803593b 100644 --- a/src/unit-manager.c +++ b/src/unit-manager.c @@ -96,7 +96,7 @@ unit_manager_get_default(void) {NULL, "microsecond", N_("Microseconds"), NC_("unit-format", "%s μs"), "0.000001x", "1000000x", NC_("unit-symbols", "microsecond,microseconds,us")}, {"temperature", "degree-celcius", N_("Celcius"), NC_("unit-format", "%s˚C"), "x+273.15", "x-273.15", NC_("unit-symbols", "degC,˚C")}, {NULL, "degree-farenheit", N_("Farenheit"), NC_("unit-format", "%s˚F"), "(x+459.67)*5/9", "x*9/5-459.67", NC_("unit-symbols", "degF,˚F")}, - {NULL, "degree-kelvin", N_("Kelvin"), NC_("unit-format", "%s˚K"), "x", "x", NC_("unit-symbols", "degK,˚K")}, + {NULL, "degree-kelvin", N_("Kelvin"), NC_("unit-format", "%s K"), "x", "x", NC_("unit-symbols", "K")}, {NULL, "degree-rankine", N_("Rankine"), NC_("unit-format", "%s˚R"), "x*5/9", "x*9/5", NC_("unit-symbols", "degR,˚R")}, { NULL, NULL, NULL, NULL, NULL, NULL } }; -- 2.11.4.GIT