mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 165725ab
: Fix build
* commit '165725aba8a179440af9c93869b35f206b2e133f': Fix build
This commit is contained in:
commit
9fcae31e7e
@ -43,8 +43,8 @@ public class AdditionalSubtype {
|
||||
String localeString, String keyboardLayoutSetName, String extraValue) {
|
||||
final String layoutExtraValue = KEYBOARD_LAYOUT_SET + "=" + keyboardLayoutSetName;
|
||||
final String layoutDisplayNameExtraValue;
|
||||
if (SubtypeLocale.isExceptionalLocale(localeString)
|
||||
&& Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
||||
if (Build.VERSION.SDK_INT >= /* JELLY_BEAN */ 15
|
||||
&& SubtypeLocale.isExceptionalLocale(localeString)) {
|
||||
final String layoutDisplayName = SubtypeLocale.getKeyboardLayoutSetDisplayName(
|
||||
keyboardLayoutSetName);
|
||||
layoutDisplayNameExtraValue = StringUtils.appendToCsvIfNotExists(
|
||||
|
@ -112,8 +112,7 @@ public class SubtypeLocale {
|
||||
}
|
||||
|
||||
public static int getSubtypeNameId(String localeString, String keyboardLayoutName) {
|
||||
if (isExceptionalLocale(localeString)
|
||||
&& Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
||||
if (Build.VERSION.SDK_INT >= /* JELLY_BEAN */ 15 && isExceptionalLocale(localeString)) {
|
||||
return sExceptionalLocaleToWithLayoutNameIdsMap.get(localeString);
|
||||
}
|
||||
final String key = localeString.equals(NO_LANGUAGE)
|
||||
@ -148,8 +147,8 @@ public class SubtypeLocale {
|
||||
// zz azerty T No language (AZERTY) in system locale
|
||||
|
||||
public static String getSubtypeDisplayName(final InputMethodSubtype subtype, Resources res) {
|
||||
final String replacementString =
|
||||
subtype.containsExtraValueKey(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME)
|
||||
final String replacementString = (Build.VERSION.SDK_INT >= /* JELLY_BEAN */ 15
|
||||
&& subtype.containsExtraValueKey(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME))
|
||||
? subtype.getExtraValueOf(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME)
|
||||
: getSubtypeLocaleDisplayName(subtype.getLocale());
|
||||
final int nameResId = subtype.getNameResId();
|
||||
|
Loading…
Reference in New Issue
Block a user