From 5d1ece2c3ebdce2206701717176a6fe2ebda06b2 Mon Sep 17 00:00:00 2001 From: vng Date: Thu, 27 Sep 2012 15:21:38 +0300 Subject: [PATCH] [android] Add GB as "Imperial units" country according to code review. --- android/src/com/mapswithme/maps/UnitLocale.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/src/com/mapswithme/maps/UnitLocale.java b/android/src/com/mapswithme/maps/UnitLocale.java index a5502035e3..495431a3fa 100644 --- a/android/src/com/mapswithme/maps/UnitLocale.java +++ b/android/src/com/mapswithme/maps/UnitLocale.java @@ -10,8 +10,8 @@ public class UnitLocale public static int getCurrent() { final String code = Locale.getDefault().getCountry(); - // USA, Liberia, Burma - String arr[] = { "US", "LR", "MM" }; + // USA, UK, Liberia, Burma + String arr[] = { "US", "GB", "LR", "MM" }; for (String s : arr) if (s.equalsIgnoreCase(code)) return IMPERIAL;