Better icon / Black query
This commit is contained in:
@@ -61,6 +61,7 @@ import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.draw.clip
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.tooling.preview.PreviewParameter
|
||||
@@ -87,23 +88,74 @@ private val iconMap = mapOf(
|
||||
"series" to Icons.Default.Book,
|
||||
"type" to Icons.Default.Folder,
|
||||
"language" to Icons.Default.Translate,
|
||||
"tag" to Icons.Default.LocalOffer
|
||||
"tag" to Icons.Default.LocalOffer,
|
||||
)
|
||||
|
||||
private val languageMap = mapOf(
|
||||
"indonesian" to R.drawable.language_indonesian,
|
||||
"javanese" to R.drawable.language_javanese,
|
||||
"catalan" to R.drawable.language_catalan,
|
||||
"cebuano" to R.drawable.language_philippines,
|
||||
"czech" to R.drawable.language_czech,
|
||||
"danish" to R.drawable.language_danish,
|
||||
"german" to R.drawable.language_german,
|
||||
"estonian" to R.drawable.language_estonian,
|
||||
"english" to R.drawable.language_english,
|
||||
"spanish" to R.drawable.language_spanish,
|
||||
"french" to R.drawable.language_french,
|
||||
"italian" to R.drawable.language_italian,
|
||||
"latin" to R.drawable.language_latin,
|
||||
"hungarian" to R.drawable.language_hungarian,
|
||||
"dutch" to R.drawable.language_dutch,
|
||||
"norwegian" to R.drawable.language_norwegian,
|
||||
"polish" to R.drawable.language_polish,
|
||||
"portuguese" to R.drawable.language_portuguese,
|
||||
"romanian" to R.drawable.language_romanian,
|
||||
"albanian" to R.drawable.language_albanian,
|
||||
"slovak" to R.drawable.language_slovak,
|
||||
"finnish" to R.drawable.language_finnish,
|
||||
"swedish" to R.drawable.language_swedish,
|
||||
"tagalog" to R.drawable.language_philippines,
|
||||
"vietnamese" to R.drawable.language_vietnamese,
|
||||
"turkish" to R.drawable.language_turkish,
|
||||
"greek" to R.drawable.language_greek,
|
||||
"mongolian" to R.drawable.language_mongolian,
|
||||
"russian" to R.drawable.language_russian,
|
||||
"ukrainian" to R.drawable.language_ukrainian,
|
||||
"hebrew" to R.drawable.language_hebrew,
|
||||
"persian" to R.drawable.language_persian,
|
||||
"thai" to R.drawable.language_thai,
|
||||
"korean" to R.drawable.language_korean,
|
||||
"chinese" to R.drawable.language_chinese,
|
||||
"japanese" to R.drawable.language_japanese,
|
||||
)
|
||||
|
||||
@Composable
|
||||
fun TagChipIcon(tag: SearchQuery.Tag) {
|
||||
val icon = iconMap[tag.namespace]
|
||||
|
||||
if (icon != null)
|
||||
Icon(
|
||||
icon,
|
||||
contentDescription = "icon",
|
||||
modifier = Modifier
|
||||
.padding(4.dp)
|
||||
.size(24.dp)
|
||||
)
|
||||
else
|
||||
if (icon != null) {
|
||||
if (tag.namespace == "language" && languageMap.contains(tag.tag)) {
|
||||
Icon(
|
||||
painter = painterResource(languageMap[tag.tag]!!),
|
||||
contentDescription = "icon",
|
||||
modifier = Modifier
|
||||
.padding(4.dp)
|
||||
.size(24.dp),
|
||||
tint = Color.Unspecified
|
||||
)
|
||||
} else {
|
||||
Icon(
|
||||
icon,
|
||||
contentDescription = "icon",
|
||||
modifier = Modifier
|
||||
.padding(4.dp)
|
||||
.size(24.dp)
|
||||
)
|
||||
}
|
||||
} else {
|
||||
Spacer(Modifier.width(16.dp))
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
@@ -163,10 +215,9 @@ fun TagChip(
|
||||
)
|
||||
}
|
||||
|
||||
@Preview
|
||||
@Composable
|
||||
fun QueryView(
|
||||
@PreviewParameter(SearchQueryPreviewParameterProvider::class) query: SearchQuery,
|
||||
query: SearchQuery,
|
||||
topLevel: Boolean = true
|
||||
) {
|
||||
val modifier = if (topLevel) {
|
||||
@@ -188,9 +239,9 @@ fun QueryView(
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
horizontalArrangement = Arrangement.spacedBy(4.dp),
|
||||
) {
|
||||
query.queries.forEachIndexed { index, subquery ->
|
||||
query.queries.forEachIndexed { index, subQuery ->
|
||||
if (index != 0) { Text("+") }
|
||||
QueryView(subquery, topLevel = false)
|
||||
QueryView(subQuery, topLevel = false)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -287,7 +338,9 @@ fun SearchBar(
|
||||
.horizontalScroll(rememberScrollState()),
|
||||
verticalAlignment = Alignment.CenterVertically
|
||||
) {
|
||||
Box(Modifier.size(8.dp))
|
||||
QueryView(query!!)
|
||||
Box(Modifier.size(8.dp))
|
||||
}
|
||||
}
|
||||
androidx.compose.animation.AnimatedVisibility(focused, enter = fadeIn(), exit = fadeOut()) {
|
||||
|
||||
@@ -121,7 +121,7 @@ fun EditableTagChip(
|
||||
enabled: Boolean = true,
|
||||
leftIcon: @Composable (SearchQuery.Tag) -> Unit = { tag -> TagChipIcon(tag) },
|
||||
rightIcon: @Composable (SearchQuery.Tag) -> Unit = { _ -> Spacer(Modifier.width(16.dp)) },
|
||||
content: @Composable (SearchQuery.Tag) -> Unit = { tag -> Text(tag.tag) },
|
||||
content: @Composable (SearchQuery.Tag) -> Unit = { tag -> Text(tag.tag.ifBlank { stringResource(R.string.search_bar_edit_tag) }) },
|
||||
) {
|
||||
val namespace by state.namespace
|
||||
val tag by state.tag
|
||||
|
||||
16
app/src/main/res/drawable/language_albanian.xml
Normal file
16
app/src/main/res/drawable/language_albanian.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M400.7,190H308a33.3,33.3 0,0 0,-24.2 -56.4,33.3 33.3,0 0,0 -27.8,14.9 33.4,33.4 0,1 0,-52 41.5h-92.7a45.8,45.8 0,0 0,46 44.5h-1.5c0,24.6 20,44.6 44.5,44.6 0,8 2.1,15.4 5.8,21.8l-37,37 28.4,28.3 40.2,-40.2a30.5,30.5 0,0 0,4.9 1.4l-24.3,54.8L256,423l37.7,-40.8 -24.3,-54.8a30.4,30.4 0,0 0,4.9 -1.4l40.2,40.2 28.3,-28.3 -37,-37a44.2,44.2 0,0 0,5.9 -21.8c24.5,0 44.5,-20 44.5,-44.6h-1.5c24.6,0 46,-19.9 46,-44.5z"
|
||||
android:fillColor="#333"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_catalan.xml
Normal file
16
app/src/main/res/drawable/language_catalan.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0v57l32,29 -32,28v57l32,29 -32,28v57l32,28 -32,28v57l32,29 -32,28v57h512v-57l-32,-28 32,-29v-57l-32,-28 32,-28v-57l-32,-28 32,-29v-57l-32,-28 32,-29V0H0z"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M0,57h512v57L0,114ZM0,171h512v57L0,228ZM0,285h512v56L0,341ZM0,398h512v57L0,455Z"
|
||||
android:fillColor="#d80027"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_chinese.xml
Normal file
16
app/src/main/res/drawable/language_chinese.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="m140.1,155.8 l22.1,68h71.5l-57.8,42.1 22.1,68 -57.9,-42 -57.9,42 22.2,-68 -57.9,-42.1L118,223.8zM303.5,396.5 L286.6,375.7 261.6,385.4 276.1,362.9 259.2,342 285.1,348.9 299.7,326.4 301.1,353.2 327.1,360.1 302,369.7zM337.1,335.5 L345.1,309.9 323.2,294.4 350,294 357.9,268.4 366.6,293.8 393.4,293.5 371.9,309.5 380.5,334.9 358.6,319.4zM382.4,187.9L370.6,212l19.2,18.7 -26.5,-3.8 -11.8,24 -4.6,-26.4 -26.6,-3.8 23.8,-12.5 -4.6,-26.5 19.2,18.7zM304.2,114.9 L302.2,141.6 327.1,151.7 301,158.1 299.1,184.9 285,162.1 258.9,168.5 276.2,148 262,125.3 286.9,135.4z"
|
||||
android:fillColor="#ffda44"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_czech.xml
Normal file
19
app/src/main/res/drawable/language_czech.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v256l-265,45.2z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M210,256h302v256H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M0,0v512l256,-256L0,0z"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_danish.xml
Normal file
16
app/src/main/res/drawable/language_danish.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h133.6l32.7,20.3 34,-20.3H512v222.6L491.4,256l20.6,33.4V512H200.3l-31.7,-20.4 -35,20.4H0V289.4l29.4,-33L0,222.7z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M133.6,0v222.6H0v66.8h133.6V512h66.7V289.4H512v-66.8H200.3V0h-66.7z"
|
||||
android:fillColor="#eee"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_dutch.xml
Normal file
19
app/src/main/res/drawable/language_dutch.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,167 l253.8,-19.3L512,167v178l-254.9,32.3L0,345z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v167H0z"
|
||||
android:fillColor="#a2001d"/>
|
||||
<path
|
||||
android:pathData="M0,345h512v167H0z"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
22
app/src/main/res/drawable/language_english.xml
Normal file
22
app/src/main/res/drawable/language_english.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M256,0 L0,256v64l32,32 -32,32v128l22,-8 23,8h23l54,-32 54,32h32l48,-32 48,32h32l54,-32 54,32h68l-8,-22 8,-23v-23l-32,-54 32,-54v-32l-32,-48 32,-48v-32l-32,-54 32,-54V0H256z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M224,64v64h160l64,-64zM224,192 L256,256 208,304v208h96L304,304h208v-96L304,208l16,-16zM0,320v64h128l-64,64L0,448v64h45l131,-131v-45l16,-16zM336,336 L512,512v-45L381,336Z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M0,0v256h256L256,0L0,0zM512,68L404,176h108L512,68zM404,336l108,108L512,336L404,336zM176,404L68,512h108L176,404zM336,404v108h108L336,404z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="m187,243 l57,-41h-70l57,41 -22,-67zM106,243 L163,202L93,202l57,41 -22,-67zM25,243 L82,202L12,202l57,41 -22,-67zM187,162 L244,121h-70l57,41 -22,-67zM106,162 L163,121L93,121l57,41 -22,-67zM25,162 L82,121L12,121l57,41 -22,-67ZM187,80 L244,39h-70l57,41 -22,-67zM106,80 L163,39L93,39l57,41 -22,-67ZM25,80 L82,39L12,39l57,41 -22,-67Z"
|
||||
android:fillColor="#eee"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_estonian.xml
Normal file
19
app/src/main/res/drawable/language_estonian.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,167 l254.6,-36.6L512,166.9v178l-254.6,36.4L0,344.9z"
|
||||
android:fillColor="#333"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v166.9H0z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M0,344.9h512V512H0z"
|
||||
android:fillColor="#eee"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_finnish.xml
Normal file
16
app/src/main/res/drawable/language_finnish.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h133.6l35.3,16.7L200.3,0H512v222.6l-22.6,31.7 22.6,35.1V512H200.3l-32,-19.8 -34.7,19.8H0V289.4l22.1,-33.3L0,222.6z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M133.6,0v222.6H0v66.8h133.6V512h66.7V289.4H512v-66.8H200.3V0h-66.7z"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_french.xml
Normal file
19
app/src/main/res/drawable/language_french.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M167,0h178l25.9,252.3L345,512H167l-29.8,-253.4z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,0h167v512H0z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M345,0h167v512H345z"
|
||||
android:fillColor="#d80027"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_german.xml
Normal file
19
app/src/main/res/drawable/language_german.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,345 l256.7,-25.5L512,345v167H0z"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="m0,167 l255,-23 257,23v178H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v167H0z"
|
||||
android:fillColor="#333"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_greek.xml
Normal file
16
app/src/main/res/drawable/language_greek.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h99l29,32 28,-32h356v57l-32,28 32,29v57l-32,28 32,29v57l-32,28 32,28v57l-32,29 32,28v57H0v-57l32,-28 -32,-29v-56l32,-29 -32,-28V171l32,-29 -32,-28Z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M99,0v114L0,114v57h99v114L0,285v57h512v-57L156,285L156,171h100v-57L156,114L156,0ZM256,57v57h256L512,57ZM256,171v57h256v-57ZM0,398v57h512v-57z"
|
||||
android:fillColor="#eee"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_hebrew.xml
Normal file
16
app/src/main/res/drawable/language_hebrew.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v55.7l-25,32.7 25,34v267.2l-26,36 26,30.7V512H0v-55.7l24.8,-34.1L0,389.6V122.4l27.2,-33.2L0,55.7z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,55.7v66.7h512L512,55.7zM0,389.6v66.7h512v-66.7zM352.4,200.3L288,200.3l-32,-55.6 -32.1,55.6h-64.3l32.1,55.7 -32,55.7h64.2l32.1,55.6 32.1,-55.6h64.3L320.3,256l32,-55.7zM295.4,256 L275.7,290.2h-39.4L216.5,256l19.8,-34.2h39.4l19.8,34.2zM256,187.6l7.3,12.7h-14.6zM196.8,221.8h14.7l-7.4,12.7zM196.8,290.2 L204.1,277.5 211.5,290.2zM256,324.4 L248.7,311.7h14.6zM315.2,290.2h-14.7l7.4,-12.7zM300.5,221.8h14.7l-7.3,12.7z"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_hungarian.xml
Normal file
19
app/src/main/res/drawable/language_hungarian.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,167 l253.8,-19.3L512,167v178l-254.9,32.3L0,345z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v167H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M0,345h512v167H0z"
|
||||
android:fillColor="#6da544"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_indonesian.xml
Normal file
16
app/src/main/res/drawable/language_indonesian.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,256 l249.6,-41.3L512,256v256H0z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v256H0z"
|
||||
android:fillColor="#a2001d"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_italian.xml
Normal file
19
app/src/main/res/drawable/language_italian.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M167,0h178l25.9,252.3L345,512H167l-29.8,-253.4z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,0h167v512H0z"
|
||||
android:fillColor="#6da544"/>
|
||||
<path
|
||||
android:pathData="M345,0h167v512H345z"
|
||||
android:fillColor="#d80027"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_japanese.xml
Normal file
16
app/src/main/res/drawable/language_japanese.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M256,256m-111.3,0a111.3,111.3 0,1 1,222.6 0a111.3,111.3 0,1 1,-222.6 0"
|
||||
android:fillColor="#d80027"/>
|
||||
</group>
|
||||
</vector>
|
||||
43
app/src/main/res/drawable/language_javanese.xml
Normal file
43
app/src/main/res/drawable/language_javanese.xml
Normal file
@@ -0,0 +1,43 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0Z"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="m256,114 l-6,2 -95,78c-4,3 -4,9 -1,13l102,-33 102,33c3,-4 3,-10 -1,-13l-95,-78 -6,-2z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M278,231h-1zM235,231z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="m256,134 l-99,72 6,22 51,-32 42,25 42,-25 51,32 6,-22z"
|
||||
android:fillColor="#6da544"/>
|
||||
<path
|
||||
android:pathData="m256,191 l-28,60 -9,-21 -10,21 -7,-16 -10,21 -7,-16 -13,27 14,23h140l14,-23 -12,-27 -8,16 -10,-21 -7,16 -10,-21 -9,21zM194,325zM318,325z"
|
||||
android:fillColor="#333"/>
|
||||
<path
|
||||
android:pathData="m183,290 l11,32h124l11,-32h-73z"
|
||||
android:fillColor="#338af3"/>
|
||||
<path
|
||||
android:pathData="M256,129a4,4 0,0 0,-2 1l-100,73a4,4 0,0 0,-2 4l38,117a4,4 0,0 0,4 3h124a4,4 0,0 0,4 -3l38,-117a4,4 0,0 0,-2 -4l-100,-73a4,4 0,0 0,-2 -1zM256,138 L351,208 315,319L197,319l-36,-111 95,-70z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M256.5,170L256.5,170A4.5,4.5 0,0 1,261 174.5L261,307.5A4.5,4.5 0,0 1,256.5 312L256.5,312A4.5,4.5 0,0 1,252 307.5L252,174.5A4.5,4.5 0,0 1,256.5 170z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:pathData="M204,338L308,338A12,12 0,0 1,320 350L320,350A12,12 0,0 1,308 362L204,362A12,12 0,0 1,192 350L192,350A12,12 0,0 1,204 338z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M188,350L324,350A12,12 0,0 1,336 362L336,362A12,12 0,0 1,324 374L188,374A12,12 0,0 1,176 362L176,362A12,12 0,0 1,188 350z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="m242,191 l14,-42 14,42 -36,-26h44z"
|
||||
android:fillColor="#ffda44"/>
|
||||
</group>
|
||||
</vector>
|
||||
28
app/src/main/res/drawable/language_korean.xml
Normal file
28
app/src/main/res/drawable/language_korean.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0Z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="m350,335 l24,-24 16,16 -24,23zM311,374 L335,350 350,366 327,390zM398,382 L421,358 437,374 413,398zM358,421 L382,398 398,413 374,437ZM374,358 L398,335 413,350 390,374zM335,398 L358,374 374,390 350,413zM398,177 L335,114 350,99 414,162zM335,162 L311,138 327,122 350,146zM374,201 L350,177 366,162 390,185zM382,114 L358,91 374,75 398,99ZM421,154 L398,130 413,114 437,138ZM91,358l63,63 -16,16 -63,-63zM154,374 L177,398 162,413 138,390zM114,335 L138,358 122,374 99,350zM138,311 L201,374 185,390 122,327zM154,91 L91,154 75,138 138,75zM177,114 L114,177 99,161 162,98zM201,138 L138,201 122,185 185,122z"
|
||||
android:fillColor="#333"/>
|
||||
<path
|
||||
android:pathData="M319,319 L193,193a89,89 0,1 1,126 126z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M319,319a89,89 0,1 1,-126 -126z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M224.5,224.5m-44.5,0a44.5,44.5 0,1 1,89 0a44.5,44.5 0,1 1,-89 0"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M287.5,287.5m-44.5,0a44.5,44.5 0,1 1,89 0a44.5,44.5 0,1 1,-89 0"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_latin.xml
Normal file
16
app/src/main/res/drawable/language_latin.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0Z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M192,112a16,16 0,0 0,-8 2c-17,9 -33,20 -45,34 -8,-22 -24,-26 -24,-26s-14,13 -7,35c2,9 6,15 10,19 -8,14 -14,29 -18,45 -17,-15 -33,-10 -33,-10s-6,17 11,34c6,6 13,9 18,11 0,17 3,33 7,48 -22,-5 -33,7 -33,7s4,18 26,24c9,3 16,2 21,1 9,14 19,27 31,38 -22,6 -26,23 -26,23s13,14 35,7c9,-2 15,-6 19,-10a159,159 0,0 0,160 0c4,4 10,8 19,10 22,7 35,-7 35,-7s-4,-17 -26,-23c12,-11 22,-24 31,-38 5,1 12,2 21,-1 22,-6 26,-24 26,-24s-11,-12 -33,-7c4,-15 7,-31 7,-48 5,-2 12,-5 18,-11 17,-17 11,-34 11,-34s-16,-5 -33,10c-4,-16 -10,-31 -18,-45 4,-4 8,-10 10,-19 7,-22 -7,-35 -7,-35s-16,4 -24,26c-12,-14 -28,-25 -45,-34a16,16 0,0 0,-8 -2,16 16,0 0,0 -13,9 16,16 0,0 0,7 21c13,7 24,16 34,26 -23,1 -31,16 -31,16s8,16 32,16c8,0 15,-2 19,-5 6,10 10,20 12,31 -20,-11 -35,-2 -35,-2s-1,18 19,30c8,4 14,6 20,6 0,11 -2,23 -5,33l-1,-1c-11,-20 -30,-19 -30,-19s-9,15 3,36c4,7 9,12 14,14 -6,9 -12,18 -20,25 -1,-23 -17,-31 -17,-31s-16,8 -16,32c0,8 3,15 5,19a126,126 0,0 1,-122 0c3,-4 5,-11 5,-19 0,-24 -16,-32 -16,-32s-16,8 -17,31c-7,-7 -14,-16 -20,-25 5,-2 10,-7 14,-14 12,-21 3,-36 3,-36s-19,-1 -30,19v1c-4,-10 -6,-22 -6,-33 6,0 12,-2 20,-6 20,-12 19,-30 19,-30s-15,-9 -35,2c2,-11 6,-21 12,-31 4,3 11,5 19,5 24,0 32,-16 32,-16s-8,-15 -31,-16c10,-10 21,-19 34,-26a16,16 0,0 0,7 -21,16 16,0 0,0 -13,-9z"
|
||||
android:fillColor="#ffda44"/>
|
||||
</group>
|
||||
</vector>
|
||||
28
app/src/main/res/drawable/language_mongolian.xml
Normal file
28
app/src/main/res/drawable/language_mongolian.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h167l84.9,45L345,0h167v512H345l-87.7,-48.1L167,512H0z"
|
||||
android:fillColor="#a2001d"/>
|
||||
<path
|
||||
android:pathData="M167,0h178v512H167z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M122.4,256h22.3v89h-22.3zM33.4,256h22.3v89L33.4,345z"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M89,289.4m-22.3,0a22.3,22.3 0,1 1,44.6 0a22.3,22.3 0,1 1,-44.6 0"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M89,211.5m-11.1,0a11.1,11.1 0,1 1,22.2 0a11.1,11.1 0,1 1,-22.2 0"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M66.8,322.8h44.5L111.3,345L66.8,345zM66.8,233.8h44.5L111.3,256L66.8,256zM89,133.5l8,24.2h25.4l-20.6,15 7.9,24.3L89,182l-20.6,15 7.9,-24.3 -20.6,-15h25.5z"
|
||||
android:fillColor="#ffda44"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_norwegian.xml
Normal file
19
app/src/main/res/drawable/language_norwegian.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h100.2l66.1,53.5L233.7,0H512v189.3L466.3,257l45.7,65.8V512H233.7l-68,-50.7 -65.5,50.7H0V322.8l51.4,-68.5 -51.4,-65z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M100.2,0v189.3H0v33.4l24.6,33L0,289.5v33.4h100.2V512h33.4l30.6,-26.3 36.1,26.3h33.4V322.8H512v-33.4l-24.6,-33.7 24.6,-33v-33.4H233.7V0h-33.4l-33.8,25.3L133.6,0z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M133.6,0v222.7H0v66.7h133.6V512h66.7V289.4H512v-66.7H200.3V0z"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_persian.xml
Normal file
19
app/src/main/res/drawable/language_persian.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,144.7 L258.8,39.6 512,144.7v222.6L257,493 0,367.3z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,0v144.7h105.6v-22.2h33.6v22.2h33.3v-22.2h33.6v22.2h33.3v-22.2H273v22.2h33v-22.2h33.6v22.2h33.2v-22.2h33.6v22.2H512V0z"
|
||||
android:fillColor="#6da544"/>
|
||||
<path
|
||||
android:pathData="M0,367.3L0,512h512L512,367.3L406.4,367.3v22.4h-33.6v-22.4h-33.2v22.4L306,389.7v-22.4h-33v22.4h-33.6v-22.4h-33.3v22.4h-33.6v-22.4h-33.3v22.4h-33.6v-22.4zM339.1,189.3h-33.4c0.2,3.7 0.4,7.4 0.4,11.1 0,24.8 -6.2,48.8 -17,66 -3.3,5.2 -9,12.6 -16.4,17.6v-94.7h-33.4v94.8c-7.5,-5 -13,-12.4 -16.4,-17.7 -10.8,-17 -17,-41 -17,-65.9 0,-3.7 0.2,-7.4 0.4,-11L173,189.5a190,190 0,0 0,-0.4 11c0,68.7 36.7,122.5 83.5,122.5s83.5,-53.8 83.5,-122.5c0,-3.7 -0.1,-7.4 -0.4,-11z"
|
||||
android:fillColor="#d80027"/>
|
||||
</group>
|
||||
</vector>
|
||||
22
app/src/main/res/drawable/language_philippines.xml
Normal file
22
app/src/main/res/drawable/language_philippines.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v256l-265,45.2z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M210,256h302v256H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M0,0v512l256,-256z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M175.3,256 L144,241.3l16.7,-30.3 -34,6.5 -4.3,-34.3 -23.6,25.2L75,183.2l-4.3,34.3 -34,-6.5 16.7,30.3L22.3,256l31.2,14.7L37,301l34,-6.5 4.2,34.3 23.7,-25.2 23.6,25.2 4.3,-34.3 34,6.5 -16.7,-30.3zM68.3,100.2 L78.7,114.7 95.7,109.3 85.1,123.7 95.5,138.2 78.5,132.6L68,147l0.2,-17.9 -17,-5.6 17,-5.4zM68.3,365 L78.7,379.6 95.7,374.2 85.1,388.5 95.5,403.1 78.5,397.4L68,411.8l0.2,-17.9 -17,-5.6 17,-5.4zM216.7,232.6L206.3,247l-17,-5.4 10.5,14.4 -10.4,14.6 17,-5.7 10.6,14.4 -0.1,-17.9 17,-5.6 -17.1,-5.4z"
|
||||
android:fillColor="#ffda44"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_polish.xml
Normal file
16
app/src/main/res/drawable/language_polish.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,256 l256.4,-44.3L512,256v256H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v256H0z"
|
||||
android:fillColor="#eee"/>
|
||||
</group>
|
||||
</vector>
|
||||
25
app/src/main/res/drawable/language_portuguese.xml
Normal file
25
app/src/main/res/drawable/language_portuguese.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,512h167l37.9,-260.3L167,0H0z"
|
||||
android:fillColor="#6da544"/>
|
||||
<path
|
||||
android:pathData="M512,0H167v512h345z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M167,256m-89,0a89,89 0,1 1,178 0a89,89 0,1 1,-178 0"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M116.9,211.5V267a50,50 0,1 0,100.1 0v-55.6H117z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M167,283.8c-9.2,0 -16.7,-7.5 -16.7,-16.7V245h33.4v22c0,9.2 -7.5,16.7 -16.7,16.7z"
|
||||
android:fillColor="#eee"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_romanian.xml
Normal file
19
app/src/main/res/drawable/language_romanian.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M167,0h178l25.9,252.3L345,512H167l-29.8,-253.4z"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M0,0h167v512H0z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M345,0h167v512H345z"
|
||||
android:fillColor="#d80027"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_russian.xml
Normal file
19
app/src/main/res/drawable/language_russian.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M512,170v172l-256,32L0,342V170l256,-32z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M512,0v170H0V0Z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M512,342v170H0V342Z"
|
||||
android:fillColor="#d80027"/>
|
||||
</group>
|
||||
</vector>
|
||||
31
app/src/main/res/drawable/language_slovak.xml
Normal file
31
app/src/main/res/drawable/language_slovak.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,160 l256,-32 256,32v192l-256,32L0,352z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v160H0z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,352h512v160H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M64,63v217c0,104 144,137 144,137s144,-33 144,-137V63z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M96,95v185a83,78 0,0 0,9 34h206a83,77 0,0 0,9 -34V95z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M288,224h-64v-32h32v-32h-32v-32h-32v32h-32v32h32v32h-64v32h64v32h32v-32h64z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M152,359a247,231 0,0 0,56 24c12,-3 34,-11 56,-24a123,115 0,0 0,47 -45,60 56,0 0,0 -34,-10l-14,2a60,56 0,0 0,-110 0,60 56,0 0,0 -14,-2c-12,0 -24,4 -34,10a123,115 0,0 0,47 45z"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
91
app/src/main/res/drawable/language_spanish.xml
Normal file
91
app/src/main/res/drawable/language_spanish.xml
Normal file
@@ -0,0 +1,91 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,128 l256,-32 256,32v256l-256,32L0,384Z"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v128L0,128zM0,384h512v128L0,512z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M144,304h-16v-80h16zM272,304h16v-80h-16z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M160,296a48,32 0,1 0,96 0a48,32 0,1 0,-96 0z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M136,192L136,192A8,8 0,0 1,144 200L144,208A8,8 0,0 1,136 216L136,216A8,8 0,0 1,128 208L128,200A8,8 0,0 1,136 192z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M280,192L280,192A8,8 0,0 1,288 200L288,208A8,8 0,0 1,280 216L280,216A8,8 0,0 1,272 208L272,200A8,8 0,0 1,280 192z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M208,272v24a24,24 0,0 0,24 24,24 24,0 0,0 24,-24v-24h-24z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M128,208L144,208A8,8 0,0 1,152 216L152,216A8,8 0,0 1,144 224L128,224A8,8 0,0 1,120 216L120,216A8,8 0,0 1,128 208z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:pathData="M272,208L288,208A8,8 0,0 1,296 216L296,216A8,8 0,0 1,288 224L272,224A8,8 0,0 1,264 216L264,216A8,8 0,0 1,272 208z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:pathData="M128,304L144,304A8,8 0,0 1,152 312L152,312A8,8 0,0 1,144 320L128,320A8,8 0,0 1,120 312L120,312A8,8 0,0 1,128 304z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:pathData="M272,304L288,304A8,8 0,0 1,296 312L296,312A8,8 0,0 1,288 320L272,320A8,8 0,0 1,264 312L264,312A8,8 0,0 1,272 304z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:pathData="M160,272v24c0,8 4,14 9,19l5,-6 5,10a21,21 0,0 0,10 0l5,-10 5,6c6,-5 9,-11 9,-19v-24h-9l-5,8 -5,-8h-10l-5,8 -5,-8z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M122,252h172m-172,24h28m116,0h28"/>
|
||||
<path
|
||||
android:pathData="M122,248a4,4 0,0 0,-4 4,4 4,0 0,0 4,4h172a4,4 0,0 0,4 -4,4 4,0 0,0 -4,-4zM122,272a4,4 0,0 0,-4 4,4 4,0 0,0 4,4h28a4,4 0,0 0,4 -4,4 4,0 0,0 -4,-4zM266,272a4,4 0,0 0,-4 4,4 4,0 0,0 4,4h28a4,4 0,0 0,4 -4,4 4,0 0,0 -4,-4z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M196,168c-7,0 -13,5 -15,11l-5,-1c-9,0 -16,7 -16,16s7,16 16,16c7,0 13,-4 15,-11a16,16 0,0 0,17 -4,16 16,0 0,0 17,4 16,16 0,1 0,10 -20,16 16,0 0,0 -27,-5c-3,-4 -7,-6 -12,-6zM196,176c5,0 8,4 8,8 0,5 -3,8 -8,8 -4,0 -8,-3 -8,-8 0,-4 4,-8 8,-8zM220,176c5,0 8,4 8,8 0,5 -3,8 -8,8 -4,0 -8,-3 -8,-8 0,-4 4,-8 8,-8zM176,186 L180,187 184,195c0,4 -4,7 -8,7s-8,-3 -8,-8c0,-4 4,-8 8,-8zM240,186c5,0 8,4 8,8 0,5 -3,8 -8,8 -4,0 -8,-3 -8,-7l4,-8z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M200,160h16v32h-16z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:pathData="M208,224h48v48h-48z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="m248,208 l-8,8h-64l-8,-8c0,-13 18,-24 40,-24s40,11 40,24zM160,224h48v48h-48z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M232,232L232,232A10,10 0,0 1,242 242L242,254A10,10 0,0 1,232 264L232,264A10,10 0,0 1,222 254L222,242A10,10 0,0 1,232 232z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M168,232v8h8v16h-8v8h32v-8h-8v-16h8v-8zM176,216h64v8h-64z"
|
||||
android:fillColor="#ff9811"/>
|
||||
<path
|
||||
android:pathData="M186,202m-6,0a6,6 0,1 1,12 0a6,6 0,1 1,-12 0"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M208,202m-6,0a6,6 0,1 1,12 0a6,6 0,1 1,-12 0"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M230,202m-6,0a6,6 0,1 1,12 0a6,6 0,1 1,-12 0"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M169,272v43a24,24 0,0 0,10 4v-47h-10zM189,272v47a24,24 0,0 0,10 -4v-43h-10z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M208,272m-16,0a16,16 0,1 1,32 0a16,16 0,1 1,-32 0"
|
||||
android:fillColor="#338af3"/>
|
||||
<path
|
||||
android:pathData="M272,320L288,320A8,8 0,0 1,296 328L296,328A8,8 0,0 1,288 336L272,336A8,8 0,0 1,264 328L264,328A8,8 0,0 1,272 320z"
|
||||
android:fillColor="#338af3"/>
|
||||
<path
|
||||
android:pathData="M128,320L144,320A8,8 0,0 1,152 328L152,328A8,8 0,0 1,144 336L128,336A8,8 0,0 1,120 328L120,328A8,8 0,0 1,128 320z"
|
||||
android:fillColor="#338af3"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_swedish.xml
Normal file
16
app/src/main/res/drawable/language_swedish.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h133.6l35.3,16.7L200.3,0H512v222.6l-22.6,31.7 22.6,35.1V512H200.3l-32,-19.8 -34.7,19.8H0V289.4l22.1,-33.3L0,222.6z"
|
||||
android:fillColor="#0052b4"/>
|
||||
<path
|
||||
android:pathData="M133.6,0v222.6H0v66.8h133.6V512h66.7V289.4H512v-66.8H200.3V0z"
|
||||
android:fillColor="#ffda44"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_thai.xml
Normal file
19
app/src/main/res/drawable/language_thai.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v89l-79.2,163.7L512,423v89H0v-89l82.7,-169.6L0,89z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="M0,89h512v78l-42.6,91.2L512,345v78H0v-78l40,-92.5L0,167z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M0,167h512v178H0z"
|
||||
android:fillColor="#0052b4"/>
|
||||
</group>
|
||||
</vector>
|
||||
19
app/src/main/res/drawable/language_turkish.xml
Normal file
19
app/src/main/res/drawable/language_turkish.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="m245.5,209.2 l21,29 34,-11.1 -21,29 21,28.9 -34,-11.1 -21,29V267l-34,-11.1 34,-11z"
|
||||
android:fillColor="#eee"/>
|
||||
<path
|
||||
android:pathData="M188.2,328.3a72.3,72.3 0,1 1,34.4 -136,89 89,0 1,0 0,127.3 72,72 0,0 1,-34.4 8.7z"
|
||||
android:fillColor="#eee"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_ukrainian.xml
Normal file
16
app/src/main/res/drawable/language_ukrainian.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="m0,256 l258,-39.4L512,256v256H0z"
|
||||
android:fillColor="#ffda44"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v256H0z"
|
||||
android:fillColor="#338af3"/>
|
||||
</group>
|
||||
</vector>
|
||||
16
app/src/main/res/drawable/language_vietnamese.xml
Normal file
16
app/src/main/res/drawable/language_vietnamese.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="512dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="512">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0"/>
|
||||
<path
|
||||
android:pathData="M0,0h512v512H0z"
|
||||
android:fillColor="#d80027"/>
|
||||
<path
|
||||
android:pathData="m256,133.6 l27.6,85H373L300.7,271l27.6,85 -72.3,-52.5 -72.3,52.6 27.6,-85 -72.3,-52.6h89.4z"
|
||||
android:fillColor="#ffda44"/>
|
||||
</group>
|
||||
</vector>
|
||||
@@ -164,4 +164,5 @@
|
||||
<string name="main_close_navigation_drawer">メニューを閉じる</string>
|
||||
<string name="search_remove_query_item_description">検索構文を除去</string>
|
||||
<string name="search_add_query_item_tag">タグ</string>
|
||||
<string name="search_bar_edit_tag">タッチして編集</string>
|
||||
</resources>
|
||||
@@ -164,4 +164,5 @@
|
||||
<string name="main_close_navigation_drawer">메뉴 닫기</string>
|
||||
<string name="search_remove_query_item_description">검색 구문 제거</string>
|
||||
<string name="search_add_query_item_tag">태그</string>
|
||||
<string name="search_bar_edit_tag">터치하여 수정</string>
|
||||
</resources>
|
||||
@@ -112,6 +112,9 @@
|
||||
<string name="galleryblock_language">Language: %1$s</string>
|
||||
<string name="galleryblock_pagecount" translatable="false">%dP</string>
|
||||
|
||||
<!-- SEARCH BAR -->
|
||||
<string name="search_bar_edit_tag">Touch to edit</string>
|
||||
|
||||
<!-- READER -->
|
||||
|
||||
<string name="reader_loading">Loading</string>
|
||||
|
||||
Reference in New Issue
Block a user