mirror of https://github.com/M66B/FairEmail.git
LT: use system language as mother tongue
This commit is contained in:
parent
14f726753e
commit
dcec107d05
|
@ -21,6 +21,7 @@ package eu.faircode.email;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
|
import android.content.res.Resources;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.LocaleList;
|
import android.os.LocaleList;
|
||||||
|
@ -110,6 +111,24 @@ public class LanguageTool {
|
||||||
if (code.size() > 0)
|
if (code.size() > 0)
|
||||||
builder.appendQueryParameter("preferredVariants", TextUtils.join(",", code));
|
builder.appendQueryParameter("preferredVariants", TextUtils.join(",", code));
|
||||||
|
|
||||||
|
String motherTongue = null;
|
||||||
|
String slocale = Resources.getSystem().getConfiguration().locale.toLanguageTag();
|
||||||
|
for (int i = 0; i < jlanguages.length(); i++) {
|
||||||
|
JSONObject jlanguage = jlanguages.getJSONObject(i);
|
||||||
|
String c = jlanguage.optString("longCode");
|
||||||
|
if (TextUtils.isEmpty(c))
|
||||||
|
continue;
|
||||||
|
if (slocale.equals(c)) {
|
||||||
|
motherTongue = c;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (slocale.split("-")[0].equals(c))
|
||||||
|
motherTongue = c;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (motherTongue != null)
|
||||||
|
builder.appendQueryParameter("motherTongue", motherTongue);
|
||||||
|
|
||||||
if (lt_picky)
|
if (lt_picky)
|
||||||
builder.appendQueryParameter("level", "picky");
|
builder.appendQueryParameter("level", "picky");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue