]> git.ktnx.net Git - mobile-ledger.git/commitdiff
English locale String.format
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Sun, 28 Apr 2019 19:30:30 +0000 (22:30 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Sun, 28 Apr 2019 19:30:30 +0000 (22:30 +0300)
app/src/main/java/net/ktnx/mobileledger/utils/Colors.java

index 41f356d9a2d2689b2f08f134b058d65244409e4c..fc2951f648e18f17e02eedc076a1fadcc7e03dc6 100644 (file)
@@ -25,6 +25,8 @@ import net.ktnx.mobileledger.R;
 import net.ktnx.mobileledger.model.Data;
 import net.ktnx.mobileledger.model.MobileLedgerProfile;
 
 import net.ktnx.mobileledger.model.Data;
 import net.ktnx.mobileledger.model.MobileLedgerProfile;
 
+import java.util.Locale;
+
 import androidx.annotation.ColorInt;
 import androidx.annotation.ColorLong;
 import androidx.lifecycle.MutableLiveData;
 import androidx.annotation.ColorInt;
 import androidx.annotation.ColorLong;
 import androidx.lifecycle.MutableLiveData;
@@ -153,7 +155,8 @@ public class Colors {
         float l = yellowLightness + (blueLightness - yellowLightness) *
                                     (float) Math.cos(Math.toRadians(Math.abs(180 - y) / 2f));
         int result = hslColor(hueDegrees/360f, 0.845f, l);
         float l = yellowLightness + (blueLightness - yellowLightness) *
                                     (float) Math.cos(Math.toRadians(Math.abs(180 - y) / 2f));
         int result = hslColor(hueDegrees/360f, 0.845f, l);
-        debug("colors", String.format("getPrimaryColorForHue(%d) = %x", hueDegrees, result));
+        debug("colors", String.format(Locale.ENGLISH, "getPrimaryColorForHue(%d) = %x", hueDegrees,
+                result));
         return result;
     }
     public static void setupTheme(Activity activity) {
         return result;
     }
     public static void setupTheme(Activity activity) {
@@ -241,8 +244,8 @@ public class Colors {
                 break;
             default:
                 activity.setTheme(R.style.AppTheme_NoActionBar);
                 break;
             default:
                 activity.setTheme(R.style.AppTheme_NoActionBar);
-                debug("profiles",
-                        String.format("Theme hue %d not supported, using the default", themeId));
+                debug("profiles", String.format(Locale.ENGLISH,
+                        "Theme hue %d not supported, using the default", themeId));
         }
 
         refreshColors(activity.getTheme());
         }
 
         refreshColors(activity.getTheme());