Status icons are back (#794)
This commit is contained in:
parent
dca050445e
commit
898bbf7a7f
184 changed files with 614 additions and 32 deletions
|
|
@ -61,6 +61,8 @@ To support a new language one needs to:
|
|||
- `hasABC` _(optional)_. Disables ABC mode for this language. Useful for languages where the writing system is not an alphabet, such as East Asian languages. Default: `yes`.
|
||||
- `hasSpaceBetweenWords` _(optional)_ set to `no` when the language does not use spaces between words. For example: Thai, Chinese, Japanese, Korean, and so on. The default is `yes`.
|
||||
- `hasUpperCase` _(optional)_ set to `no` when the language has no upper- and lowercase letters. For example: Arabic, Hebrew, East Asian languages, and so on. The default is `yes`.
|
||||
- `iconABC` _(optional)_ is the name of the ABC icon for this language. The icon must be a Drawable resource in `app/src/main/res/drawable` folder. It must not include `.xml`. The icon will be shown in the system notification are when TT9 is in ABC mode and the respective option is on.
|
||||
- `iconT9` _(optional)_ is the name of the Predictive mode icon for this language. Usage is similar to `iconABC`.
|
||||
- `name` _(optional)_ is automatically generated and equals the native name of the language (e.g. "English", "Deutsch", "Українська"). However, sometimes, the automatically selected name may be ambiguous. For example, both Portuguese in Portugal and Brazil will default to "Português", so assigning "Português brasileiro" would make it clear it's the language used in Brazil.
|
||||
- `numerals` _(optional)_ can be used to set a custom list of numerals. The list must contain exactly 10 characters equivalent to the digits from 0 to 9. For example, in Arabic you could use: `numerals: [٠,١,٢,٣,٤,٥,٦,٧,٨,٩]`.
|
||||
- `sounds` _(mandatory for non-alphabetic languages)_ is an array of elements in the format: `[sound,digits]`. It is used for East Asian or other languages where there are thousands of different characters, that can not be described in the layout property. `sounds` contains all possible vowel and consonant sounds and their respective digit combinations. There must be no repeating sounds. If a single Latin letter stands for a sound, the letter must be capital. If more than one letter is necessary to represent the sound, the first letter must be capital, while the rest must be small. For example, "A", "P", "Wo", "Ei", "Dd". The sounds are then used in the dictionary format with phonetic transcriptions. See `ChinesePinyin.yml` and `Korean.yml` and the respective dictionary files for an example.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import java.util.zip.ZipOutputStream
|
|||
|
||||
apply from: 'dictionary-tools.gradle'
|
||||
|
||||
ext.convertDictionaries = { definitionsInputDir, dictionariesInputDir, dictionariesOutputDir, dictionariesMetaDir ->
|
||||
ext.convertDictionaries = { definitionsInputDir, dictionariesInputDir, dictionariesOutputDir, dictionariesMetaDir, iconsDir ->
|
||||
int errorCount = 0
|
||||
|
||||
def errorStream = fileTree(dir: definitionsInputDir).getFiles().parallelStream().map { definition ->
|
||||
|
|
@ -12,7 +12,7 @@ ext.convertDictionaries = { definitionsInputDir, dictionariesInputDir, dictionar
|
|||
return ""
|
||||
}
|
||||
|
||||
def (_, sounds, prependSoundsToWords, noSyllables, locale, dictionaryFile, langFileErrorCount, langFileErrorMsg) = parseLanguageDefintion(definition, dictionariesInputDir)
|
||||
def (_, sounds, prependSoundsToWords, noSyllables, locale, dictionaryFile, langFileErrorCount, langFileErrorMsg) = parseLanguageDefintion(definition, dictionariesInputDir, iconsDir)
|
||||
errorCount += langFileErrorCount
|
||||
if (!langFileErrorMsg.isEmpty()) {
|
||||
return langFileErrorMsg
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ tasks.register('validateLanguages') {
|
|||
outputs.dir LANGUAGE_VALIDATION_DIR
|
||||
|
||||
doLast {
|
||||
validateLanguageFiles(DEFINITIONS_INPUT_DIR, DICTIONARIES_INPUT_DIR, LANGUAGE_VALIDATION_DIR.get().asFile)
|
||||
validateLanguageFiles(DEFINITIONS_INPUT_DIR, DICTIONARIES_INPUT_DIR, LANGUAGE_VALIDATION_DIR.get().asFile, ICONS_DIR)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ tasks.register('buildDictionaryDownloads') {
|
|||
mustRunAfter validateLanguages
|
||||
|
||||
doLast {
|
||||
convertDictionaries(DEFINITIONS_INPUT_DIR, DICTIONARIES_INPUT_DIR, DICTIONARIES_DOWNLOAD_DIR, DICTIONARY_META_OUTPUT_DIR)
|
||||
convertDictionaries(DEFINITIONS_INPUT_DIR, DICTIONARIES_INPUT_DIR, DICTIONARIES_DOWNLOAD_DIR, DICTIONARY_META_OUTPUT_DIR, ICONS_DIR)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ ext.DICTIONARIES_DOWNLOAD_DIR_NAME = 'downloads'
|
|||
ext.DICTIONARY_SIZES_DIR_NAME = 'dictionary-sizes'
|
||||
|
||||
def APP_ROOT_DIR = "${project.rootDir}/app"
|
||||
ext.ICONS_DIR = "${APP_ROOT_DIR}/src/main/res/drawable"
|
||||
def MAIN_ASSETS_DIR = "${APP_ROOT_DIR}/src/main/assets"
|
||||
def FULL_VERSION_ASSETS_DIR = "${APP_ROOT_DIR}/src/full/assets"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: ar-JO
|
||||
currency: ﷼
|
||||
dictionaryFile: ar-utf8.csv
|
||||
iconABC: ic_lang_alifba
|
||||
iconT9: ic_lang_ar
|
||||
abcString: أﺏﺕ
|
||||
hasUpperCase: no
|
||||
numerals: [٠,١,٢,٣,٤,٥,٦,٧,٨,٩]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: pt-BR
|
||||
dictionaryFile: pt-BR-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_br
|
||||
name: Português / BR
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: bg-BG
|
||||
dictionaryFile: bg-utf8.csv
|
||||
iconABC: ic_lang_cyrillic
|
||||
iconT9: ic_lang_bg
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_DE] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: ca-ES
|
||||
dictionaryFile: ca-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_ca
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR, ·] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
locale: zh-CN
|
||||
dictionaryFile: zh-pinyin.csv
|
||||
iconT9: ic_lang_zh_pinyin
|
||||
name: 中文 / 简体
|
||||
hasABC: no
|
||||
hasSpaceBetweenWords: no
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: hr-HR
|
||||
dictionaryFile: hr-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_hr
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: cs-CZ
|
||||
dictionaryFile: cz-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_cz
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_DE] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: da-DK
|
||||
dictionaryFile: da-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_da
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: nl-NL
|
||||
dictionaryFile: nl-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_nl
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: en
|
||||
dictionaryFile: en-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_en
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: et-EE
|
||||
dictionaryFile: et-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_et
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_DE] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: fa-IR
|
||||
currency: ﷼
|
||||
dictionaryFile: fa-utf8.csv
|
||||
iconABC: ic_lang_alifba
|
||||
iconT9: ic_lang_fa
|
||||
abcString: أﺏﺕ
|
||||
hasUpperCase: no
|
||||
numerals: [۰,۱,۲,۳,۴,۵,۶,۷,۸,۹]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: fi-FI
|
||||
dictionaryFile: fi-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_su
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: fr-FR
|
||||
dictionaryFile: fr-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_fr
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: de-DE
|
||||
dictionaryFile: de-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_de
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_DE] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: el-GR
|
||||
dictionaryFile: gr-utf8.csv
|
||||
iconABC: ic_lang_alfabeta
|
||||
iconT9: ic_lang_el
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_GR] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: gu-IN
|
||||
currency: ૱
|
||||
dictionaryFile: gu-utf8.csv
|
||||
iconABC: ic_lang_gu_abc
|
||||
iconT9: ic_lang_gu
|
||||
abcString: કખગ
|
||||
hasUpperCase: no
|
||||
layout:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: iw-IL
|
||||
currency: ₪
|
||||
dictionaryFile: he-utf8.csv
|
||||
iconABC: ic_lang_alefbet
|
||||
iconT9: ic_lang_he
|
||||
abcString: אבג
|
||||
hasUpperCase: no
|
||||
layout:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: hi-IN
|
||||
currency: ₹
|
||||
dictionaryFile: hi-utf8.csv
|
||||
iconABC: ic_lang_hi_abc
|
||||
iconT9: ic_lang_hi
|
||||
abcString: कखग
|
||||
hasUpperCase: no
|
||||
layout:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: en-IN
|
||||
dictionaryFile: hing-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_hn
|
||||
name: Hinglish
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: hu-HU
|
||||
dictionaryFile: hu-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_mg
|
||||
abcString: abc
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: in-ID
|
||||
dictionaryFile: id-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_id
|
||||
name: Bahasa Indonesia
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: ga-IE
|
||||
dictionaryFile: ga-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_ga
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_IE] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: it-IT
|
||||
dictionaryFile: it-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_it
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
locale: ja-JP
|
||||
dictionaryFile: ja-romaji.csv
|
||||
name: 日本語 / ローマ字
|
||||
iconT9: ic_lang_kanji
|
||||
hasABC: no
|
||||
hasSpaceBetweenWords: no
|
||||
hasUpperCase: no
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: sw-TZ
|
||||
dictionaryFile: sw-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_sw
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
locale: ko-KR
|
||||
currency: ₩
|
||||
dictionaryFile: ko-utf8.csv
|
||||
iconT9: ic_lang_ko
|
||||
hasABC: no
|
||||
hasUpperCase: no
|
||||
layout: # only used for the virtual key labels
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: lv-LV
|
||||
dictionaryFile: lv-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_lv
|
||||
abcString: abc
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: lt-LT
|
||||
dictionaryFile: lt-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_lt
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: nb-NO
|
||||
dictionaryFile: nb-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_no
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: pl-PL
|
||||
dictionaryFile: pl-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_pl
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_DE] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: pt-PT
|
||||
dictionaryFile: pt-PT-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_pt
|
||||
name: Português / PT
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: ro-RO
|
||||
dictionaryFile: ro-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_ro
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: ru-RU
|
||||
currency: ₽
|
||||
dictionaryFile: ru-utf8.csv
|
||||
iconABC: ic_lang_cyrillic
|
||||
iconT9: ic_lang_ru
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: sl-SI
|
||||
dictionaryFile: sl-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_sl
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: es-ES
|
||||
dictionaryFile: es-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_es
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR, ¡, ¿] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: sv-SE
|
||||
dictionaryFile: sv-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_sv
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
locale: zgh-MA
|
||||
dictionaryFile: tamazight-utf8.txt
|
||||
iconABC: ic_lang_tifinagh
|
||||
iconT9: ic_lang_tm_tifinagh
|
||||
hasUpperCase: no
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: zgh-DZ # zgh = Morroccan Tamazight, DZ = Algeria. We combine these just to get a unique ID.
|
||||
name: Tamaziɣt / MA
|
||||
dictionaryFile: tamazight-latin-utf8.txt
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_tm
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: th-TH
|
||||
currency: ฿
|
||||
dictionaryFile: th-utf8.csv
|
||||
iconABC: ic_lang_th_abc
|
||||
iconT9: ic_lang_th
|
||||
abcString: กขค
|
||||
hasSpaceBetweenWords: no
|
||||
hasUpperCase: no
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: tr-TR
|
||||
currency: ₺
|
||||
dictionaryFile: tr-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_tr
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: uk-UA
|
||||
currency: ₴
|
||||
dictionaryFile: uk-utf8.csv
|
||||
iconABC: ic_lang_cyrillic
|
||||
iconT9: ic_lang_uk
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
- [PUNCTUATION_FR] # 1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
locale: vi-VN
|
||||
currency: ₫
|
||||
dictionaryFile: vi-utf8.csv
|
||||
iconABC: ic_lang_latin
|
||||
iconT9: ic_lang_vi
|
||||
abcString: abc
|
||||
layout:
|
||||
- [SPECIAL] # 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
locale: ji-JI
|
||||
dictionaryFile: ji-utf8.csv
|
||||
iconABC: ic_lang_alefbet
|
||||
iconT9: ic_lang_ji
|
||||
abcString: אבג
|
||||
hasUpperCase: no
|
||||
layout:
|
||||
|
|
|
|||
|
|
@ -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
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