Status icons are back (#794)
This commit is contained in:
parent
dca050445e
commit
898bbf7a7f
184 changed files with 614 additions and 32 deletions
|
|
@ -314,6 +314,7 @@ public abstract class HotkeyHandler extends CommandHandler {
|
|||
}
|
||||
|
||||
getSuggestions(null);
|
||||
setStatusIcon(mInputMode, mLanguage);
|
||||
statusBar.setText(mInputMode);
|
||||
suggestionOps.setRTL(isLanguageRTL);
|
||||
mainView.render();
|
||||
|
|
@ -341,6 +342,8 @@ public abstract class HotkeyHandler extends CommandHandler {
|
|||
|
||||
suggestionOps.scheduleDelayedAccept(mInputMode.getAutoAcceptTimeout()); // restart the timer
|
||||
nextInputMode();
|
||||
|
||||
setStatusIcon(mInputMode, mLanguage);
|
||||
statusBar.setText(mInputMode);
|
||||
mainView.render();
|
||||
|
||||
|
|
@ -366,6 +369,7 @@ public abstract class HotkeyHandler extends CommandHandler {
|
|||
if (!nextTextCase()) {
|
||||
return false;
|
||||
}
|
||||
setStatusIcon(mInputMode, mLanguage);
|
||||
statusBar.setText(mInputMode);
|
||||
mainView.render();
|
||||
|
||||
|
|
|
|||
|
|
@ -140,6 +140,7 @@ public class TraditionalT9 extends MainViewHandler {
|
|||
}
|
||||
|
||||
if (isDead || !super.onStart(connection, field)) {
|
||||
setStatusIcon(mInputMode, mLanguage);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -172,7 +173,6 @@ public class TraditionalT9 extends MainViewHandler {
|
|||
stopVoiceInput();
|
||||
onFinishTyping();
|
||||
suggestionOps.clear();
|
||||
setStatusIcon(mInputMode);
|
||||
statusBar.setText(mInputMode);
|
||||
|
||||
if (isInputViewShown()) {
|
||||
|
|
@ -190,6 +190,13 @@ public class TraditionalT9 extends MainViewHandler {
|
|||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void onFinishTyping() {
|
||||
super.onFinishTyping();
|
||||
setStatusIcon(mInputMode, mLanguage);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* On Android 11+ the IME is sometimes not killed when the user switches to a different one.
|
||||
* Here we attempt to detect if we are disabled, then hide and kill ourselves.
|
||||
|
|
|
|||
|
|
@ -2,10 +2,10 @@ package io.github.sspanak.tt9.ime;
|
|||
|
||||
import android.view.inputmethod.InputMethodManager;
|
||||
|
||||
import io.github.sspanak.tt9.R;
|
||||
import io.github.sspanak.tt9.ime.modes.InputMode;
|
||||
import io.github.sspanak.tt9.ime.modes.InputModeKind;
|
||||
import io.github.sspanak.tt9.languages.Language;
|
||||
import io.github.sspanak.tt9.preferences.settings.SettingsStore;
|
||||
import io.github.sspanak.tt9.ui.StatusIcon;
|
||||
import io.github.sspanak.tt9.ui.main.ResizableMainView;
|
||||
import io.github.sspanak.tt9.ui.tray.StatusBar;
|
||||
import io.github.sspanak.tt9.util.sys.DeviceInfo;
|
||||
|
|
@ -43,7 +43,7 @@ abstract class UiHandler extends AbstractHandler {
|
|||
} else {
|
||||
getSuggestionOps().setDarkTheme();
|
||||
}
|
||||
setStatusIcon(inputMode);
|
||||
setStatusIcon(inputMode, getFinalContext().getLanguage());
|
||||
statusBar.setText(inputMode);
|
||||
mainView.hideCommandPalette();
|
||||
mainView.render();
|
||||
|
|
@ -55,11 +55,12 @@ abstract class UiHandler extends AbstractHandler {
|
|||
}
|
||||
|
||||
|
||||
protected void setStatusIcon(InputMode mode) {
|
||||
if (!InputModeKind.isPassthrough(mode) && settings.isStatusIconEnabled()) {
|
||||
showStatusIcon(R.drawable.ic_keyboard);
|
||||
} else {
|
||||
protected void setStatusIcon(InputMode mode, Language language) {
|
||||
int resId = StatusIcon.getResource(this, settings, mode, language);
|
||||
if (resId == 0) {
|
||||
hideStatusIcon();
|
||||
} else {
|
||||
showStatusIcon(resId);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ abstract public class Language {
|
|||
protected boolean hasSpaceBetweenWords = true;
|
||||
protected boolean hasUpperCase = true;
|
||||
protected boolean hasTranscriptionsEmbedded = false;
|
||||
protected String iconABC = "";
|
||||
protected String iconT9 = "";
|
||||
protected boolean isTranscribed = false;
|
||||
protected Locale locale = Locale.ROOT;
|
||||
protected String name;
|
||||
|
|
@ -107,6 +109,14 @@ abstract public class Language {
|
|||
return hasTranscriptionsEmbedded;
|
||||
}
|
||||
|
||||
final public String getIconABC() {
|
||||
return iconABC;
|
||||
}
|
||||
|
||||
final public String getIconT9() {
|
||||
return iconT9;
|
||||
}
|
||||
|
||||
final public boolean isTranscribed() {
|
||||
return isTranscribed;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ public class LanguageDefinition {
|
|||
public boolean hasABC = true;
|
||||
public boolean hasSpaceBetweenWords = true;
|
||||
public boolean hasUpperCase = true;
|
||||
public String iconABC = "";
|
||||
public String iconT9 = "";
|
||||
public boolean isTranscribed = false;
|
||||
public final ArrayList<ArrayList<String>> layout = new ArrayList<>();
|
||||
public String locale = "";
|
||||
|
|
@ -148,6 +150,12 @@ public class LanguageDefinition {
|
|||
case "hasUpperCase":
|
||||
hasUpperCase = parseYamlBoolean(value);
|
||||
return;
|
||||
case "iconABC":
|
||||
iconABC = value;
|
||||
return;
|
||||
case "iconT9":
|
||||
iconT9 = value;
|
||||
return;
|
||||
case "sounds":
|
||||
isTranscribed = true;
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -37,6 +37,8 @@ public class NaturalLanguage extends TranscribedLanguage {
|
|||
lang.hasSpaceBetweenWords = definition.hasSpaceBetweenWords;
|
||||
lang.hasUpperCase = definition.hasUpperCase;
|
||||
lang.hasTranscriptionsEmbedded = definition.filterBySounds;
|
||||
lang.iconABC = definition.iconABC;
|
||||
lang.iconT9 = definition.iconT9;
|
||||
lang.isTranscribed = definition.isTranscribed;
|
||||
lang.name = definition.name.isEmpty() ? lang.name : definition.name;
|
||||
lang.numerals = definition.numerals;
|
||||
|
|
|
|||
91
app/src/main/java/io/github/sspanak/tt9/ui/StatusIcon.java
Normal file
91
app/src/main/java/io/github/sspanak/tt9/ui/StatusIcon.java
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
package io.github.sspanak.tt9.ui;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
import io.github.sspanak.tt9.R;
|
||||
import io.github.sspanak.tt9.ime.modes.InputMode;
|
||||
import io.github.sspanak.tt9.ime.modes.InputModeKind;
|
||||
import io.github.sspanak.tt9.languages.Language;
|
||||
import io.github.sspanak.tt9.preferences.settings.SettingsStore;
|
||||
|
||||
public class StatusIcon {
|
||||
private static final HashMap<String, Integer> cache = new HashMap<>();
|
||||
private final int resourceId;
|
||||
|
||||
|
||||
private StatusIcon(@Nullable Context ctx, @Nullable SettingsStore settings, @Nullable InputMode mode, @Nullable Language language) {
|
||||
resourceId = resolveResourcePerMode(ctx, settings, mode, language);
|
||||
}
|
||||
|
||||
|
||||
private int resolveResourcePerMode(@Nullable Context ctx, @Nullable SettingsStore settings, @Nullable InputMode mode, @Nullable Language language) {
|
||||
if (language == null || mode == null || settings == null || InputModeKind.isPassthrough(mode) || !settings.isStatusIconEnabled()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (InputModeKind.isHiragana(mode)) {
|
||||
return R.drawable.ic_lang_hiragana;
|
||||
} else if (InputModeKind.isKatakana(mode)) {
|
||||
return R.drawable.ic_lang_katakana;
|
||||
} else if (InputModeKind.is123(mode)) {
|
||||
return R.drawable.ic_lang_123;
|
||||
} else if (InputModeKind.isABC(mode)) {
|
||||
return resolveResource(ctx, language.getIconABC(), language.hasUpperCase() ? mode.getTextCase() : InputMode.CASE_UNDEFINED);
|
||||
} else if (InputModeKind.isPredictive(mode)) {
|
||||
return resolveResource(ctx, language.getIconT9(), language.hasUpperCase() ? mode.getTextCase() : InputMode.CASE_UNDEFINED);
|
||||
}
|
||||
|
||||
return R.drawable.ic_keyboard;
|
||||
}
|
||||
|
||||
|
||||
private int resolveResource(Context ctx, String name, int textCase) {
|
||||
if (ctx == null || name == null) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
switch (textCase) {
|
||||
case InputMode.CASE_UPPER:
|
||||
name += "_up";
|
||||
break;
|
||||
case InputMode.CASE_LOWER:
|
||||
name += "_lo";
|
||||
break;
|
||||
case InputMode.CASE_CAPITALIZE:
|
||||
name += "_cp";
|
||||
break;
|
||||
}
|
||||
|
||||
return ctx.getResources().getIdentifier("drawable/" + name, null, ctx.getPackageName());
|
||||
}
|
||||
|
||||
|
||||
@Nullable
|
||||
private static String getCacheKey(@Nullable InputMode mode, @Nullable Language language) {
|
||||
if (mode == null || language == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return mode.getId() + "_" + language.getId() + "_" + (language.hasUpperCase() ? mode.getTextCase() : InputMode.CASE_UNDEFINED);
|
||||
}
|
||||
|
||||
|
||||
public static int getResource(@Nullable Context ctx, @Nullable SettingsStore settings, @Nullable InputMode mode, @Nullable Language language) {
|
||||
final String cacheKey = getCacheKey(mode, language);
|
||||
Integer resId = cache.containsKey(cacheKey) ? cache.get(cacheKey) : Integer.valueOf(0);
|
||||
if (resId != null && resId != 0) {
|
||||
return resId;
|
||||
}
|
||||
|
||||
resId = new StatusIcon(ctx, settings, mode, language).resourceId;
|
||||
if (resId != 0) {
|
||||
cache.put(cacheKey, resId);
|
||||
}
|
||||
|
||||
return resId;
|
||||
}
|
||||
}
|
||||
1
app/src/main/res/drawable/ic_lang_123.xml
Normal file
1
app/src/main/res/drawable/ic_lang_123.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M15,6h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,6h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M14,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,7h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M12,8h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M11,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M10,10h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M27,11h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M36,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M14,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,14h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M14,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M14,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M14,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,27h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M14,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,28h16v1h-16z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_alefbet.xml
Normal file
1
app/src/main/res/drawable/ic_lang_alefbet.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M7,8h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,9h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,10h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,11h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M36,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M29,23h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M6,24h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,25h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M6,26h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M25,27h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_alfabeta_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_alfabeta_lo.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_alfabeta_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_alfabeta_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_alifba.xml
Normal file
1
app/src/main/res/drawable/ic_lang_alifba.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M37,0h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M37,1h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M38,2h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,3h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M37,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,15h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M38,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M38,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,25h28v1h-28z"/><path android:fillColor="#FFFFFF" android:pathData="M38,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h27v1h-27z"/><path android:fillColor="#FFFFFF" android:pathData="M38,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,27h24v1h-24z"/><path android:fillColor="#FFFFFF" android:pathData="M38,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,28h20v1h-20z"/><path android:fillColor="#FFFFFF" android:pathData="M38,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,29h9v1h-9z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ar.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ar.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M21,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,13h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M17,14h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M16,15h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M16,16h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M16,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M16,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M24,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,22h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M17,23h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M18,25h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M17,26h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M16,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M16,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,29h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,30h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,31h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_bg_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_bg_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,6h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M30,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M30,25h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M30,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M30,28h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_bg_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_bg_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M16,4h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M14,5h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M12,6h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M11,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M10,8h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M10,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,11h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M14,13h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M19,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M13,27h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_bg_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_bg_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M8,6h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,6h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,7h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,8h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,9h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,28h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M28,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_br_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_br_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,6h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M36,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,15h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M29,16h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M29,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_br_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_br_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M37,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M36,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M19,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,15h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M29,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,26h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_br_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_br_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_ca_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ca_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M13,5h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M11,6h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,9h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M7,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M6,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M6,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M6,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,19h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M6,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M21,23h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M27,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M10,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M38,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ca_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ca_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M11,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M27,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M10,12h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M26,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M19,14h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M34,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,23h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M24,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M33,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M10,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M36,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,27h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M27,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ca_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ca_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M11,5h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M31,5h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,6h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M31,6h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M7,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,7h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M6,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M30,8h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M6,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M18,9h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M29,9h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M5,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M5,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M4,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M4,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M4,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M4,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M4,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M4,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M4,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M4,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M4,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M4,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M5,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M5,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M19,23h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,24h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M24,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M24,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M23,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M40,27h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_cyrillic_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_cyrillic_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M33,4h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M31,5h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M29,6h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,8h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M27,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,11h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,12h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,13h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M16,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,14h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M17,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M15,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M35,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M18,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M18,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_cyrillic_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_cyrillic_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M11,6h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,6h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M11,7h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M28,7h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M10,8h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M28,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M10,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M28,9h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M6,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M16,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,20h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,22h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,23h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M4,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M4,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M4,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M3,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,28h11v1h-11z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_cz_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_cz_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M15,5h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M13,6h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M11,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M10,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M10,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M22,9h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M23,23h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M29,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,24h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M12,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M14,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h14v1h-14z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_cz_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_cz_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M13,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M26,11h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M12,12h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M26,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M11,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M10,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M21,14h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M34,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M22,23h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M12,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M26,26h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M14,27h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M26,27h14v1h-14z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_cz_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_cz_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M14,5h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M26,5h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M12,6h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,6h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M10,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M26,7h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M21,9h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M36,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M34,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M22,23h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M10,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M26,25h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,26h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M13,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M26,27h17v1h-17z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_da_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_da_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M6,6h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M6,7h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M6,8h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M6,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,9h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M6,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M33,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M6,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M6,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M37,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M6,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M6,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M6,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M6,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M39,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,27h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_da_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_da_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M18,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,19h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M27,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M19,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M38,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M19,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_da_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_da_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_de_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_de_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M6,6h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M6,7h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M6,8h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M6,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,9h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M6,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M33,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M6,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M6,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M6,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M6,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M6,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M29,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M6,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M30,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,27h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M32,27h10v1h-10z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_de_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_de_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M18,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,17h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M19,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M19,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,27h10v1h-10z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_de_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_de_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M7,6h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M30,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M30,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,9h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M30,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M30,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M30,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M30,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M30,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M30,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,28h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M30,28h13v1h-13z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_el_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_el_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M24,5h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,6h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,7h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,8h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,17h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,25h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M23,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_el_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_el_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M24,5h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M24,6h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M24,7h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M27,8h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,11h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,12h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,17h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M10,18h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M27,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,19h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,20h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M19,25h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M24,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,25h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M11,28h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M23,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_el_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_el_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M7,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M30,6h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M29,7h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M7,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M29,8h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M7,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,9h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M7,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,10h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M7,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M36,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M23,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M23,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M23,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,28h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M22,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_en_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_en_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M8,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,12h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,13h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,14h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,15h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M34,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,28h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M24,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_en_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_en_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M25,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,11h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,12h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,13h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M6,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M16,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M35,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,17h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M25,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,27h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_en_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_en_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_es_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_es_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M10,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M10,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M10,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M10,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M10,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M10,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M10,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M37,14h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M10,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,17h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M10,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M10,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,19h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M10,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,20h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M10,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,24h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M34,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,25h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M10,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,27h10v1h-10z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_es_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_es_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M12,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M11,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M10,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M19,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,14h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,20h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M35,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M13,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h10v1h-10z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_es_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_es_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,5h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M30,5h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,6h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,9h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,18h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M35,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,27h9v1h-9z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_et_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_et_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h10v1h-10z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_et_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_et_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M10,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M27,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M11,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h10v1h-10z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_et_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_et_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,28h13v1h-13z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_fa.xml
Normal file
1
app/src/main/res/drawable/ic_lang_fa.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M31,2h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M30,3h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,4h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,5h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,6h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M32,9h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M30,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,19h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,20h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M34,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M33,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,24h28v1h-28z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h27v1h-27z"/><path android:fillColor="#FFFFFF" android:pathData="M12,26h25v1h-25z"/><path android:fillColor="#FFFFFF" android:pathData="M14,27h21v1h-21z"/><path android:fillColor="#FFFFFF" android:pathData="M18,28h10v1h-10z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_fr_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_fr_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M11,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M11,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M11,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M11,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M11,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M11,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M11,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M11,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M11,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M11,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,19h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_fr_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_fr_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M16,5h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M15,6h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M15,7h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M14,8h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,12h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M25,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,13h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M25,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M12,14h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M25,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M14,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M14,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M14,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M14,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_fr_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_fr_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M7,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M7,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,8h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,8h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M7,9h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M25,9h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,11h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,28h6v1h-6z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ga_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ga_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M12,5h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M10,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,9h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M21,9h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M6,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M33,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M5,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M5,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M5,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M37,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M5,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,15h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M38,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,16h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M38,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,17h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M32,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M5,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M5,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M5,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M19,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M19,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M39,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,27h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ga_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ga_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M19,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,9h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,10h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M36,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,15h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,16h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,17h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M15,22h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,22h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M38,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M18,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,25h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,28h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,29h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M16,29h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,30h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,31h13v1h-13z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ga_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ga_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_gu.xml
Normal file
1
app/src/main/res/drawable/ic_lang_gu.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M14,4h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M28,4h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M14,5h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,5h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M14,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,6h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,7h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M19,7h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M21,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M21,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M21,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M21,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M14,12h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M21,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M13,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M14,15h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,16h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,17h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M20,25h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M27,25h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M31,25h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,26h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M20,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M21,28h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M23,29h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,30h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,31h3v1h-3z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_gu_abc.xml
Normal file
1
app/src/main/res/drawable/ic_lang_gu_abc.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,8h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M21,8h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M39,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,9h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M20,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,10h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M20,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,11h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M39,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M22,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,13h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M23,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M23,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M23,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,15h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M23,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,16h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M4,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M23,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M4,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M23,18h20v1h-20z"/><path android:fillColor="#FFFFFF" android:pathData="M5,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,19h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M39,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M5,20h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M14,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,20h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M39,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M14,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M5,22h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M14,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M4,24h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M40,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M4,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M40,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M42,26h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_he.xml
Normal file
1
app/src/main/res/drawable/ic_lang_he.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M6,9h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,10h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M39,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,11h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M27,11h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M38,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M37,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,16h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M15,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,18h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M15,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M15,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M5,23h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M24,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,24h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M24,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M5,25h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M24,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M5,26h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M24,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,26h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_hi.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hi.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M15,6h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M15,7h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M15,8h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M15,9h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M17,13h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M17,14h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M17,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M17,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M17,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M18,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M18,19h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M17,20h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M17,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M17,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M17,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M18,26h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M19,27h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M20,28h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M22,29h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,30h3v1h-3z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_hi_abc.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hi_abc.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_hiragana.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hiragana.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M20,3h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M20,4h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M20,5h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M33,5h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M13,6h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M19,6h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,6h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M12,7h22v1h-22z"/><path android:fillColor="#FFFFFF" android:pathData="M12,8h22v1h-22z"/><path android:fillColor="#FFFFFF" android:pathData="M12,9h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M19,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,12h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M26,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M19,13h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M18,14h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M17,15h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M15,16h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,17h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,18h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M13,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,19h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,20h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M24,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,21h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M19,21h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M34,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,22h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M33,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,23h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M33,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,25h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M31,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M30,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M12,27h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,27h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M12,28h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M20,28h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M25,28h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M26,29h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,30h3v1h-3z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_hn_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hn_cp.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_hn_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hn_lo.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_hn_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hn_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_hr_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hr_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M8,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,6h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M39,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M37,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M31,15h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M31,16h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M31,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M31,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_hr_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hr_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M37,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M29,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M36,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M19,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,15h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,16h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_hr_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_hr_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_id_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_id_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M33,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,5h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M33,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M33,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M33,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,8h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M33,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M33,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,12h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M12,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,13h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M12,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M12,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M22,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M23,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M24,26h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M34,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M25,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M34,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_id_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_id_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M12,4h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M32,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,12h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M11,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,13h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M11,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M11,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M32,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,26h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M33,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M33,27h4v1h-4z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_id_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_id_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M7,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M21,6h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M7,7h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M21,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M7,8h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M21,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M21,9h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M10,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,10h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M10,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,11h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M10,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M21,25h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M21,26h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M21,27h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,28h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M21,28h11v1h-11z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_it_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_it_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M12,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M12,7h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M27,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M13,8h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M27,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M15,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M15,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M12,25h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M27,25h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M12,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M27,26h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M12,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_it_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_it_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M16,4h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M25,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M15,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M15,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M15,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,25h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M15,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,26h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M15,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_it_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_it_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M10,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M22,6h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M10,7h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M22,7h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M10,8h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M22,8h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M11,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M22,9h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M13,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,25h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,28h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ji.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ji.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M15,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M25,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M15,10h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M25,10h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M15,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M25,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M18,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_kanji.xml
Normal file
1
app/src/main/res/drawable/ic_lang_kanji.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M12,1h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M23,1h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M30,1h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,2h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M23,2h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M30,2h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,3h28v1h-28z"/><path android:fillColor="#FFFFFF" android:pathData="M12,4h27v1h-27z"/><path android:fillColor="#FFFFFF" android:pathData="M14,5h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M18,5h21v1h-21z"/><path android:fillColor="#FFFFFF" android:pathData="M15,6h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M22,6h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,6h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M23,7h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M30,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M20,8h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M20,9h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M10,10h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M20,10h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M10,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,11h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M26,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,11h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M20,12h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M26,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,12h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M11,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,13h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M13,14h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M20,14h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,17h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M19,18h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M14,19h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M19,19h19v1h-19z"/><path android:fillColor="#FFFFFF" android:pathData="M14,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M13,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M13,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,22h21v1h-21z"/><path android:fillColor="#FFFFFF" android:pathData="M12,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,23h21v1h-21z"/><path android:fillColor="#FFFFFF" android:pathData="M12,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h20v1h-20z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M21,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,27h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M10,28h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M17,28h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M32,28h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M12,29h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M18,29h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,29h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,30h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M36,30h1v1h-1z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_katakana.xml
Normal file
1
app/src/main/res/drawable/ic_lang_katakana.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M12,5h25v1h-25z"/><path android:fillColor="#FFFFFF" android:pathData="M12,6h26v1h-26z"/><path android:fillColor="#FFFFFF" android:pathData="M12,7h26v1h-26z"/><path android:fillColor="#FFFFFF" android:pathData="M12,8h26v1h-26z"/><path android:fillColor="#FFFFFF" android:pathData="M32,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,11h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M21,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M21,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M27,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h3v1h-3z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,17h1v1h-1z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M21,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M20,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M19,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,25h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M15,26h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M14,27h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M14,28h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M15,29h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,30h1v1h-1z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ko.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ko.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M18,2h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,2h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,3h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,3h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,4h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M30,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,5h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M30,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,6h18v1h-18z"/><path android:fillColor="#FFFFFF" android:pathData="M30,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,7h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M30,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,9h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M30,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,10h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M30,10h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M14,11h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M30,11h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M13,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,12h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M13,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M23,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,13h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M13,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M23,14h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M23,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,19h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,23h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,24h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,25h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,27h20v1h-20z"/><path android:fillColor="#FFFFFF" android:pathData="M16,28h20v1h-20z"/><path android:fillColor="#FFFFFF" android:pathData="M16,29h20v1h-20z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_latin_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_latin_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M26,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M26,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,11h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,12h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,13h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h2v1h-2z"/><path android:fillColor="#FFFFFF" android:pathData="M16,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,17h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M37,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M15,24h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M26,24h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,25h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M18,26h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,26h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M18,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M26,27h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,27h6v1h-6z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_latin_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_latin_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_lt_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_lt_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M11,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M11,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M11,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M11,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M11,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,24h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,25h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,26h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M11,27h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M31,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_lt_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_lt_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M15,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M15,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M15,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,24h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M15,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,25h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M15,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,26h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M15,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_lt_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_lt_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,6h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,7h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,8h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,9h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_lv_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_lv_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,28h6v1h-6z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_lv_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_lv_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M12,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,15h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M12,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M29,21h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,23h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M12,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,24h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M12,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,25h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M12,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,26h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M12,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M12,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,28h6v1h-6z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_lv_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_lv_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M8,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M38,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,10h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M36,13h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M35,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,16h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M34,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,20h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M33,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M33,22h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,25h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M8,27h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M29,27h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M8,28h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_mg_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_mg_cp.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_mg_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_mg_lo.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_mg_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_mg_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_nl_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_nl_cp.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_nl_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_nl_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M32,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M17,12h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M32,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,13h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M32,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,14h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M32,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,15h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M21,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M22,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,17h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M23,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_nl_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_nl_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_no_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_no_cp.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_no_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_no_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M6,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M12,11h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M6,12h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M6,13h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M6,14h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M16,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M17,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M18,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M6,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M6,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M6,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M6,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M6,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_no_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_no_up.xml
Normal file
File diff suppressed because one or more lines are too long
1
app/src/main/res/drawable/ic_lang_pl_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_pl_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M31,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M31,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M31,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,8h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M31,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,9h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M31,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,17h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M31,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,18h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M31,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,19h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M31,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,20h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M31,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M13,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_pl_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_pl_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M31,3h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,4h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,5h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M31,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,11h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M31,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,12h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M31,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,13h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M21,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M22,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M22,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M22,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M22,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,23h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M31,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,24h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M31,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M31,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,29h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,30h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M11,31h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_pl_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_pl_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M8,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,6h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M28,7h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M28,8h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M28,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M28,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M28,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M28,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M28,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,26h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,27h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M8,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,28h14v1h-14z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_pt_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_pt_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M10,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M10,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M31,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M31,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M10,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M10,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M10,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M10,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,15h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,16h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,17h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,19h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M10,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,24h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M10,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,25h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M10,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M31,26h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M10,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_pt_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_pt_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M31,6h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,7h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M31,8h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M17,9h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M30,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,10h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M29,10h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M9,11h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M28,11h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M19,13h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M20,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M21,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M20,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M30,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h16v1h-16z"/><path android:fillColor="#FFFFFF" android:pathData="M30,23h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M31,24h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M31,25h9v1h-9z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,26h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,26h8v1h-8z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,29h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,30h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,31h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_pt_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_pt_up.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M8,6h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M26,6h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M8,7h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M26,7h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M8,8h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M26,8h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M8,9h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,9h17v1h-17z"/><path android:fillColor="#FFFFFF" android:pathData="M8,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,17h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M32,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,18h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M32,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,19h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M32,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,20h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M32,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M8,28h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M32,28h5v1h-5z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ro_cp.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ro_cp.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M7,6h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,7h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M7,8h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M7,9h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,9h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,10h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M31,10h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M7,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,12h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M7,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,13h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,13h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M7,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,15h15v1h-15z"/><path android:fillColor="#FFFFFF" android:pathData="M26,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,16h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M26,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,17h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,18h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M26,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M14,19h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M26,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M38,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M7,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M15,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M16,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M37,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M7,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M36,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M17,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M27,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M35,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M7,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M18,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M28,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M7,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M29,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M7,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M19,27h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M30,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ro_lo.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ro_lo.xml
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="16dp" android:viewportWidth="48" android:viewportHeight="32"><path android:fillColor="#FFFFFF" android:pathData="M9,11h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M16,11h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,11h10v1h-10z"/><path android:fillColor="#FFFFFF" android:pathData="M9,12h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M15,12h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M25,12h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M9,13h12v1h-12z"/><path android:fillColor="#FFFFFF" android:pathData="M24,13h14v1h-14z"/><path android:fillColor="#FFFFFF" android:pathData="M9,14h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M23,14h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M33,14h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,15h7v1h-7z"/><path android:fillColor="#FFFFFF" android:pathData="M23,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,15h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,16h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M23,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,16h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,17h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,18h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,18h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,19h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M35,19h4v1h-4z"/><path android:fillColor="#FFFFFF" android:pathData="M9,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,20h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,21h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M34,22h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M9,23h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M23,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M33,23h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,24h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M24,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M32,24h6v1h-6z"/><path android:fillColor="#FFFFFF" android:pathData="M9,25h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M25,25h13v1h-13z"/><path android:fillColor="#FFFFFF" android:pathData="M9,26h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M26,26h11v1h-11z"/><path android:fillColor="#FFFFFF" android:pathData="M9,27h5v1h-5z"/><path android:fillColor="#FFFFFF" android:pathData="M27,27h8v1h-8z"/></vector>
|
||||
1
app/src/main/res/drawable/ic_lang_ro_up.xml
Normal file
1
app/src/main/res/drawable/ic_lang_ro_up.xml
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue