From 01f07fd2d1f4e9c6dfc755ffa1c30bb1281a0ff1 Mon Sep 17 00:00:00 2001 From: Lars Schmertmann Date: Tue, 15 Jan 2019 10:26:37 +0100 Subject: [PATCH] Rename the Indonesian Android translation folder to fix a lint warning Wrong locale name ----------------- From the java.util.Locale documentation: "Note that Java uses several deprecated two-letter codes. The Hebrew ("he") language code is rewritten as "iw", Indonesian ("id") as "in", and Yiddish ("yi") as "ji". This rewriting happens even if you construct your own Locale object, not just for instances returned by the various lookup methods. Because of this, if you add your localized resources in for example values-he they will not be used, since the system will look for values-iw instead. To work around this, place your resources in a values folder using the deprecated language code instead. See also: http://www.apps4android.org/?p=3695 https://issuetracker.google.com/issues/36908826 Change-Id: I726c43f282156b21e8d6b073029f3c3b8fd42a30 Reviewed-by: Edward Welbourne Reviewed-by: BogDan Vatra --- src/android/java/res/{values-id => values-in}/strings.xml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/android/java/res/{values-id => values-in}/strings.xml (100%) diff --git a/src/android/java/res/values-id/strings.xml b/src/android/java/res/values-in/strings.xml similarity index 100% rename from src/android/java/res/values-id/strings.xml rename to src/android/java/res/values-in/strings.xml