Merge branch 'dynamic-colors' into 'master'

Dynamic Colors

See merge request AuroraOSS/AuroraStore!370
This commit is contained in:
Rahul Patel
2024-09-01 22:02:26 +00:00
126 changed files with 792 additions and 2397 deletions

View File

@@ -38,11 +38,9 @@ import android.view.LayoutInflater
import androidx.browser.customtabs.CustomTabsIntent
import androidx.core.app.ActivityCompat
import androidx.core.app.ActivityOptionsCompat
import androidx.core.content.ContextCompat
import com.aurora.Constants
import com.aurora.gplayapi.data.models.App
import com.aurora.store.R
import com.aurora.store.util.Preferences
private const val TAG = "Context"
@@ -115,44 +113,6 @@ fun Context.getStyledAttributeColor(id: Int): Int {
return styledAttr
}
fun Context.accentColor(): Int {
val color = when (Preferences.getInteger(this, Preferences.PREFERENCE_THEME_ACCENT)) {
0 -> R.color.colorAccent
1 -> R.color.colorAccent01
2 -> R.color.colorAccent02
3 -> R.color.colorAccent03
4 -> R.color.colorAccent04
5 -> R.color.colorAccent05
6 -> R.color.colorAccent06
7 -> R.color.colorAccent07
8 -> R.color.colorAccent08
9 -> R.color.colorAccent09
10 -> R.color.colorAccent10
11 -> R.color.colorAccent11
12 -> R.color.colorAccent12
13 -> R.color.colorAccent13
else -> if (isSAndAbove()) R.color.colorAccent else R.color.colorAccent01
}
return ContextCompat.getColor(this, color)
}
fun Context.backgroundColor(): Int {
val color = when (Preferences.getInteger(this, Preferences.PREFERENCE_THEME_TYPE)) {
1 -> R.color.colorWhite
2 -> R.color.colorDarkBackground
3 -> R.color.colorBlack
4 -> R.color.colorDarkXBackground
5 -> R.color.colorDarkordBackground
else -> null
}
if (color == null) {
return getStyledAttributeColor(com.google.android.material.R.attr.colorSurface)
}
return ContextCompat.getColor(this, color)
}
fun Context.isIgnoringBatteryOptimizations(): Boolean {
return if (isMAndAbove()) {
(getSystemService(Context.POWER_SERVICE) as PowerManager).isIgnoringBatteryOptimizations(

View File

@@ -19,73 +19,12 @@
package com.aurora.extensions
import android.app.UiModeManager
import android.content.Context
import android.graphics.Color
import androidx.appcompat.app.AppCompatActivity
import androidx.appcompat.app.AppCompatDelegate
import androidx.core.graphics.ColorUtils
import androidx.core.view.WindowInsetsControllerCompat
import com.aurora.store.util.CommonUtil
import com.aurora.store.util.Preferences
fun AppCompatActivity.applyThemeAccent() {
val themeId = Preferences.getInteger(this, Preferences.PREFERENCE_THEME_TYPE)
val accentId = Preferences.getInteger(this, Preferences.PREFERENCE_THEME_ACCENT)
val uiModeManager = getSystemService(Context.UI_MODE_SERVICE) as UiModeManager
val themeStyle = CommonUtil.getThemeStyleById(themeId)
val accentStyle = CommonUtil.getAccentStyleById(accentId)
/*Apply Theme*/
setTheme(themeStyle)
theme.applyStyle(accentStyle, true)
when (themeId) {
0 -> {
if (isSAndAbove()) {
uiModeManager.setApplicationNightMode(UiModeManager.MODE_NIGHT_CUSTOM)
} else {
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM)
}
}
1 -> {
if (!isVAndAbove()) setSystemBarConfiguration(light = true)
if (isSAndAbove()) {
uiModeManager.setApplicationNightMode(UiModeManager.MODE_NIGHT_NO)
} else {
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
}
}
else -> {
if (!isVAndAbove()) setSystemBarConfiguration(light = false)
if (isSAndAbove()) {
uiModeManager.setApplicationNightMode(UiModeManager.MODE_NIGHT_YES)
} else {
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES)
}
}
}
}
@Suppress("DEPRECATION")
private fun AppCompatActivity.setSystemBarConfiguration(light: Boolean) {
WindowInsetsControllerCompat(this.window, this.window.decorView.rootView).apply {
// Status bar color
if (isMAndAbove()) {
isAppearanceLightStatusBars = light
} else {
// Add a semi-transparent black color to the status bar & navigation bar
window.statusBarColor = ColorUtils.setAlphaComponent(Color.BLACK, 120)
window.navigationBarColor = ColorUtils.setAlphaComponent(Color.BLACK, 120)
}
// Navigation bar color
if (isOMR1AndAbove()) {
isAppearanceLightNavigationBars = light
window.navigationBarColor = getStyledAttributeColor(android.R.attr.colorBackground)
}
fun setAppTheme(themeStyle: Int) {
when (themeStyle) {
1 -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
2 -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES)
else -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM)
}
}

View File

@@ -20,10 +20,8 @@
package com.aurora.extensions
import android.content.Context
import android.content.res.ColorStateList
import android.view.View
import android.view.inputmethod.InputMethodManager
import com.google.android.material.floatingactionbutton.FloatingActionButton
fun View.isVisible() = visibility == View.VISIBLE
@@ -84,10 +82,3 @@ fun View.flip(resetToZero: Boolean = true, duration: Long = 400) {
fun View.getString(resourceId: Int): String {
return context.getString(resourceId)
}
fun FloatingActionButton.applyColors() {
val accentColor = context.accentColor()
backgroundTintList = ColorStateList.valueOf(accentColor)
imageTintList = ColorStateList.valueOf(contrastingColor(accentColor))
}

View File

@@ -7,6 +7,8 @@ import com.aurora.gplayapi.data.models.StreamCluster
import com.aurora.gplayapi.helpers.contracts.StreamContract
import com.aurora.gplayapi.helpers.contracts.TopChartsContract
typealias MR = com.google.android.material.R.attr
typealias TopChartStash = MutableMap<TopChartsContract.Type, MutableMap<TopChartsContract.Chart, StreamCluster>>
typealias HomeStash = MutableMap<StreamContract.Category, StreamBundle>
typealias CategoryStash = MutableMap<Category.Type, List<Category>>

View File

@@ -25,12 +25,15 @@ import androidx.core.content.ContextCompat
import androidx.hilt.work.HiltWorkerFactory
import androidx.work.Configuration
import com.aurora.extensions.isPAndAbove
import com.aurora.extensions.setAppTheme
import com.aurora.store.data.event.EventFlow
import com.aurora.store.data.receiver.PackageManagerReceiver
import com.aurora.store.util.CommonUtil
import com.aurora.store.util.DownloadWorkerUtil
import com.aurora.store.util.NotificationUtil
import com.aurora.store.util.PackageUtil
import com.aurora.store.util.Preferences
import com.google.android.material.color.DynamicColors
import dagger.hilt.android.HiltAndroidApp
import kotlinx.coroutines.MainScope
import kotlinx.coroutines.cancel
@@ -63,6 +66,13 @@ class AuroraApp : Application(), Configuration.Provider {
override fun onCreate() {
super.onCreate()
// Set the app theme
val themeStyle = Preferences.getInteger(this, Preferences.PREFERENCE_THEME_STYLE)
setAppTheme(themeStyle)
// Apply dynamic colors to activities0
DynamicColors.applyToActivitiesIfAvailable(this)
DynamicColors.wrapContextIfAvailable(this)
// Required for Shizuku installer
if (isPAndAbove()) HiddenApiBypass.addHiddenApiExemptions("I", "L")

View File

@@ -20,13 +20,11 @@
package com.aurora.store
import android.content.res.ColorStateList
import android.os.Bundle
import android.view.View
import androidx.activity.addCallback
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.graphics.ColorUtils
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat
import androidx.core.view.updatePadding
@@ -34,8 +32,6 @@ import androidx.lifecycle.lifecycleScope
import androidx.navigation.FloatingWindow
import androidx.navigation.fragment.NavHostFragment
import androidx.navigation.ui.setupWithNavController
import com.aurora.extensions.accentColor
import com.aurora.extensions.applyThemeAccent
import com.aurora.store.data.event.BusEvent
import com.aurora.store.data.event.InstallerEvent
import com.aurora.store.data.model.NetworkStatus
@@ -75,8 +71,6 @@ class MainActivity : AppCompatActivity() {
super.onCreate(savedInstanceState)
applyThemeAccent()
B = ActivityMainBinding.inflate(layoutInflater)
ViewCompat.setOnApplyWindowInsetsListener(B.root) { view, windowInsets ->
@@ -122,11 +116,7 @@ class MainActivity : AppCompatActivity() {
}
}
B.navView.apply {
val alphaColor = ColorUtils.setAlphaComponent(this@MainActivity.accentColor(), 100)
setupWithNavController(navController)
itemActiveIndicatorColor = ColorStateList.valueOf(alphaColor)
}
B.navView.setupWithNavController(navController)
// Handle quick exit from back actions
val defaultTab = when (Preferences.getInteger(this, PREFERENCE_DEFAULT_SELECTED_TAB)) {

View File

@@ -5,20 +5,18 @@ import android.content.Context
import android.content.Intent
import android.util.Log
import com.aurora.Constants
import com.aurora.extensions.isSAndAbove
import com.aurora.store.data.work.CacheWorker
import com.aurora.store.util.CertUtil
import com.aurora.store.util.Preferences
import com.aurora.store.util.Preferences.PREFERENCE_DISPENSER_URLS
import com.aurora.store.util.Preferences.PREFERENCE_INTRO
import com.aurora.store.util.Preferences.PREFERENCE_MIGRATION_VERSION
import com.aurora.store.util.Preferences.PREFERENCE_THEME_ACCENT
import com.aurora.store.util.Preferences.PREFERENCE_VENDING_VERSION
import com.aurora.store.util.save
import dagger.hilt.android.AndroidEntryPoint
@AndroidEntryPoint
class MigrationReceiver: BroadcastReceiver() {
class MigrationReceiver : BroadcastReceiver() {
companion object {
private const val TAG = "MigrationReceiver"
@@ -47,7 +45,6 @@ class MigrationReceiver: BroadcastReceiver() {
// 58 -> 59
if (currentVersion == 0) {
CacheWorker.scheduleAutomatedCacheCleanup(context) // !1089
if (isSAndAbove()) context.save(PREFERENCE_THEME_ACCENT, 0)
context.save(PREFERENCE_DISPENSER_URLS, setOf(Constants.URL_DISPENSER)) // !1117
if (Preferences.getInteger(context, PREFERENCE_VENDING_VERSION) == -1) {
context.save(PREFERENCE_VENDING_VERSION, 0) // !1049

View File

@@ -23,7 +23,6 @@ import android.content.Context
import android.util.Log
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.ProcessLifecycleOwner
import com.aurora.extensions.isSAndAbove
import com.aurora.store.R
import com.aurora.store.data.model.ProxyInfo
import java.text.DecimalFormat
@@ -158,38 +157,6 @@ object CommonUtil {
}
}
fun getThemeStyleById(themeId: Int): Int {
return when (themeId) {
0 -> R.style.AppTheme
1 -> R.style.AppTheme_Light
2 -> R.style.AppTheme_Dark
3 -> R.style.AppTheme_Black
4 -> R.style.AppTheme_DarkX
5 -> R.style.AppTheme_Darkord
else -> R.style.AppTheme
}
}
fun getAccentStyleById(accentId: Int): Int {
return when (accentId) {
0 -> R.style.Accent00
1 -> R.style.Accent01
2 -> R.style.Accent02
3 -> R.style.Accent03
4 -> R.style.Accent04
5 -> R.style.Accent05
6 -> R.style.Accent06
7 -> R.style.Accent07
8 -> R.style.Accent08
9 -> R.style.Accent09
10 -> R.style.Accent10
11 -> R.style.Accent11
12 -> R.style.Accent12
13 -> R.style.Accent13
else -> if (isSAndAbove()) R.style.Accent00 else R.style.Accent01
}
}
fun parseProxyUrl(proxyUrl: String): ProxyInfo? {
val pattern = """^(https?|socks)://(?:([^\s:@]+):([^\s:@]+)@)?([^\s:@]+):(\d+)$""".toRegex()
val match = pattern.find(proxyUrl)

View File

@@ -13,12 +13,10 @@ import android.net.Uri
import android.os.Build
import androidx.core.app.NotificationCompat
import androidx.core.app.PendingIntentCompat
import androidx.core.content.ContextCompat
import androidx.core.os.bundleOf
import androidx.navigation.NavDeepLinkBuilder
import androidx.work.WorkManager
import com.aurora.Constants
import com.aurora.extensions.getStyledAttributeColor
import com.aurora.store.MainActivity
import com.aurora.store.R
import com.aurora.store.data.activity.InstallActivity
@@ -74,7 +72,6 @@ object NotificationUtil {
fun getDownloadNotification(context: Context): Notification {
return NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_GENERAL)
.setSmallIcon(android.R.drawable.stat_sys_download)
.setColor(ContextCompat.getColor(context, R.color.colorAccent))
.setContentTitle(context.getString(R.string.app_updater_service_notif_title))
.setContentText(context.getString(R.string.app_updater_service_notif_text))
.setOngoing(true)
@@ -89,7 +86,6 @@ object NotificationUtil {
): Notification {
val builder = NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_GENERAL)
builder.setContentTitle(download.displayName)
builder.color = ContextCompat.getColor(context, R.color.colorAccent)
builder.setContentIntent(getContentIntentForDownloads(context))
builder.setLargeIcon(largeIcon)
@@ -163,7 +159,6 @@ object NotificationUtil {
return NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_ALERT)
.setSmallIcon(R.drawable.ic_install)
.setLargeIcon(PackageUtil.getIconForPackage(context, packageName))
.setColor(context.getStyledAttributeColor(R.color.colorAccent))
.setContentTitle(displayName)
.setContentText(context.getString(R.string.installer_status_success))
.setContentIntent(getContentIntentForDetails(context, packageName))
@@ -178,7 +173,6 @@ object NotificationUtil {
): Notification {
return NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_ALERT)
.setSmallIcon(R.drawable.ic_install)
.setColor(context.getStyledAttributeColor(R.color.colorAccent))
.setContentTitle(displayName)
.setContentText(content)
.setContentIntent(getContentIntentForDetails(context, packageName))
@@ -254,7 +248,6 @@ object NotificationUtil {
fun getExportNotification(context: Context): Notification {
return NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_ALERT)
.setSmallIcon(R.drawable.ic_file_copy)
.setColor(context.getStyledAttributeColor(R.color.colorAccent))
.setContentTitle(context.getString(R.string.export_app_title))
.setContentText(context.getString(R.string.export_app_summary))
.setOngoing(false)
@@ -288,7 +281,6 @@ object NotificationUtil {
val builder = NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_ALERT)
.setSmallIcon(R.drawable.ic_file_copy)
.setColor(context.getStyledAttributeColor(R.color.colorAccent))
.setContentTitle(displayName).setContentText(content)
.setContentIntent(getContentIntentForExport(context, uri))
.setAutoCancel(true)

View File

@@ -31,8 +31,7 @@ object Preferences {
const val PREFERENCE_AUTH_DATA = "PREFERENCE_AUTH_DATA"
const val PREFERENCE_INSTALLER_ID = "PREFERENCE_INSTALLER_ID"
const val PREFERENCE_THEME_TYPE = "PREFERENCE_THEME_TYPE"
const val PREFERENCE_THEME_ACCENT = "PREFERENCE_THEME_ACCENT"
const val PREFERENCE_THEME_STYLE = "PREFERENCE_THEME_STYLE"
const val PREFERENCE_FOR_YOU = "PREFERENCE_FOR_YOU"
const val PREFERENCE_DEFAULT_SELECTED_TAB = "PREFERENCE_DEFAULT_SELECTED_TAB"
const val PREFERENCE_SIMILAR = "PREFERENCE_SIMILAR"

View File

@@ -21,14 +21,12 @@ package com.aurora.store.view.custom.layouts
import android.content.Context
import android.content.pm.PackageManager
import android.content.pm.PermissionInfo
import android.content.res.ColorStateList
import android.graphics.drawable.Drawable
import android.util.AttributeSet
import android.widget.ImageView
import android.widget.LinearLayout
import android.widget.TextView
import androidx.core.content.ContextCompat
import com.aurora.extensions.accentColor
import com.aurora.extensions.showDialog
import com.aurora.store.R
import com.aurora.store.data.model.PermissionGroupInfo
@@ -59,7 +57,6 @@ class PermissionGroup @JvmOverloads constructor(
val imageView = findViewById<ImageView>(R.id.img)
imageView.setImageDrawable(getPermissionGroupIcon(permissionGroupInfo))
imageView.imageTintList = ColorStateList.valueOf(context.accentColor())
}
}
@@ -98,7 +95,7 @@ class PermissionGroup @JvmOverloads constructor(
) {
val textView = TextView(context)
textView.text = label
if (isNewPerm) textView.setTextColor(context.accentColor())
if (isNewPerm) textView.setTextColor(ContextCompat.getColor(context, R.color.colorGreen))
textView.setOnClickListener {
var title: String = permissionGroupInfo.label

View File

@@ -20,12 +20,8 @@
package com.aurora.store.view.custom.layouts.button
import android.content.Context
import android.content.res.ColorStateList
import android.util.AttributeSet
import android.widget.RelativeLayout
import com.aurora.extensions.accentColor
import com.aurora.extensions.darkenColor
import com.aurora.extensions.lightenColor
import com.aurora.extensions.runOnUiThread
import com.aurora.store.R
import com.aurora.store.data.model.DownloadStatus
@@ -54,15 +50,6 @@ class UpdateButton : RelativeLayout {
private fun init(context: Context) {
val view = inflate(context, R.layout.view_update_button, this)
binding = ViewUpdateButtonBinding.bind(view)
// Apply primaryColor tint to all buttons with alpha
val alphaAccent = lightenColor(context.accentColor(), alpha = 200)
binding.btnPositive.backgroundTintList = ColorStateList.valueOf(alphaAccent)
binding.btnNegative.backgroundTintList = ColorStateList.valueOf(alphaAccent)
val textColor = darkenColor(context.accentColor())
binding.btnPositive.setTextColor(textColor)
binding.btnNegative.setTextColor(textColor)
}
fun updateState(downloadStatus: DownloadStatus) {

View File

@@ -25,8 +25,6 @@ import com.airbnb.epoxy.CallbackProp
import com.airbnb.epoxy.ModelProp
import com.airbnb.epoxy.ModelView
import com.airbnb.epoxy.OnViewRecycled
import com.aurora.extensions.accentColor
import com.aurora.extensions.contrastingColor
import com.aurora.store.databinding.ViewHeaderUpdateBinding
@@ -48,7 +46,6 @@ class UpdateHeaderView @JvmOverloads constructor(
@ModelProp
fun action(action: String) {
binding.btnAction.text = action
binding.btnAction.setTextColor(contrastingColor(context.accentColor()))
}
@CallbackProp

View File

@@ -26,8 +26,6 @@ import androidx.core.view.isVisible
import com.airbnb.epoxy.CallbackProp
import com.airbnb.epoxy.ModelProp
import com.airbnb.epoxy.ModelView
import com.aurora.extensions.accentColor
import com.aurora.extensions.contrastingColor
import com.aurora.store.databinding.ViewNoAppBinding
import com.aurora.store.view.epoxy.views.BaseModel
import com.aurora.store.view.epoxy.views.BaseView
@@ -64,7 +62,6 @@ class NoAppView @JvmOverloads constructor(
@ModelProp
fun actionMessage(message: String = String()) {
binding.button.text = message
binding.button.setTextColor(contrastingColor(context.accentColor()))
}
@JvmOverloads

View File

@@ -26,7 +26,6 @@ import androidx.fragment.app.FragmentManager
import androidx.lifecycle.Lifecycle
import androidx.navigation.fragment.findNavController
import androidx.viewpager2.adapter.FragmentStateAdapter
import com.aurora.extensions.applyColors
import com.aurora.store.MobileNavigationDirections
import com.aurora.store.R
import com.aurora.store.data.providers.AuthProvider
@@ -102,11 +101,8 @@ class AppsContainerFragment : BaseFragment<FragmentAppsGamesBinding>() {
tab.text = tabTitles[position]
}.attach()
binding.searchFab.apply {
applyColors()
setOnClickListener {
findNavController().navigate(R.id.searchSuggestionFragment)
}
binding.searchFab.setOnClickListener {
findNavController().navigate(R.id.searchSuggestionFragment)
}
}

View File

@@ -10,31 +10,31 @@ import androidx.compose.foundation.BorderStroke
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.requiredSize
import androidx.compose.foundation.layout.wrapContentWidth
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.OutlinedButton
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
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.graphics.ColorFilter
import androidx.compose.ui.graphics.toArgb
import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.platform.ComposeView
import androidx.compose.ui.platform.LocalContext
@@ -52,14 +52,13 @@ import coil.compose.SubcomposeAsyncImage
import coil.request.ImageRequest
import com.aurora.Constants
import com.aurora.Constants.URL_TOS
import com.aurora.extensions.accentColor
import com.aurora.extensions.backgroundColor
import com.aurora.extensions.browse
import com.aurora.extensions.darkenColor
import com.aurora.extensions.getStyledAttributeColor
import com.aurora.extensions.lightenColor
import com.aurora.extensions.setAppTheme
import com.aurora.store.MR
import com.aurora.store.R
import com.aurora.store.data.providers.AuthProvider
import com.aurora.store.util.Preferences
import com.aurora.store.view.theme.AuroraTheme
import com.google.android.material.dialog.MaterialAlertDialogBuilder
import dagger.hilt.android.AndroidEntryPoint
@@ -93,17 +92,14 @@ class MoreDialogFragment : DialogFragment() {
setViewCompositionStrategy(ViewCompositionStrategy.DisposeOnViewTreeLifecycleDestroyed)
setContent {
AuroraTheme {
if (isSystemInDarkTheme()) {
primaryColor = Color(requireContext().backgroundColor())
onPrimaryColor = Color(lightenColor(primaryColor.toArgb(), 0.85f))
secondaryColor = Color(darkenColor(primaryColor.toArgb(), 0.75f))
onSecondaryColor = Color(lightenColor(secondaryColor.toArgb(), 0.85f))
} else {
primaryColor = Color(lightenColor(requireContext().accentColor(), 0.85f))
onPrimaryColor = Color(darkenColor(primaryColor.toArgb(), 0.15f))
secondaryColor = Color(lightenColor(primaryColor.toArgb(), 0.75f))
onSecondaryColor = Color(darkenColor(secondaryColor.toArgb(), 0.15f))
}
primaryColor =
Color(requireContext().getStyledAttributeColor(MR.colorSurface))
onPrimaryColor =
Color(requireContext().getStyledAttributeColor(MR.colorOnSurface))
secondaryColor =
Color(requireContext().getStyledAttributeColor(MR.colorSecondaryContainer))
onSecondaryColor =
Color(requireContext().getStyledAttributeColor(MR.colorOnSecondaryContainer))
Column(
modifier = Modifier
@@ -160,21 +156,30 @@ class MoreDialogFragment : DialogFragment() {
@Composable
fun AppBar(backgroundColor: Color = Color.Transparent, onBackgroundColor: Color) {
Box(contentAlignment = Alignment.CenterEnd) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.SpaceBetween,
modifier = Modifier
.fillMaxWidth()
.padding(4.dp, 10.dp, 4.dp, 10.dp)
) {
ThreeStateIconButton(tint = onBackgroundColor)
Text(
modifier = Modifier.fillMaxWidth(),
modifier = Modifier.wrapContentWidth(),
text = stringResource(id = R.string.app_name),
style = MaterialTheme.typography.titleMedium,
color = onBackgroundColor,
textAlign = TextAlign.Center
)
IconButton(onClick = { findNavController().navigateUp() }) {
Icon(
painter = painterResource(id = R.drawable.ic_cancel),
contentDescription = stringResource(id = R.string.action_cancel),
tint = onBackgroundColor
)
}
Image(
painter = painterResource(id = R.drawable.ic_cancel),
contentDescription = stringResource(id = R.string.action_cancel),
modifier = Modifier.clickable {
findNavController().navigateUp()
},
colorFilter = ColorFilter.tint(onBackgroundColor)
)
}
}
@@ -306,6 +311,56 @@ class MoreDialogFragment : DialogFragment() {
}
}
@Composable
fun ThreeStateIconButton(
tint: Color = Color.White
) {
var currentState by remember {
mutableStateOf(
Preferences.getInteger(
requireContext(),
Preferences.PREFERENCE_THEME_STYLE
).let {
State.entries.getOrNull(it)
} ?: State.Auto
)
}
val iconRes = when (currentState) {
State.Light -> R.drawable.ic_light
State.Dark -> R.drawable.ic_dark
else -> R.drawable.ic_auto
}
Image(
painter = painterResource(id = iconRes),
contentDescription = null,
modifier = Modifier.clickable {
currentState = when (currentState) {
State.Light -> State.Dark
State.Dark -> State.Auto
State.Auto -> State.Light
}
Preferences.putInteger(
requireContext(),
Preferences.PREFERENCE_THEME_STYLE,
currentState.value
)
setAppTheme(currentState.value)
findNavController().navigateUp()
},
colorFilter = ColorFilter.tint(tint)
)
}
enum class State(val value: Int) {
Auto(0),
Light(1),
Dark(2),
}
private fun getOptions(): List<Option> {
return listOf(
Option(

View File

@@ -39,9 +39,7 @@ import coil.load
import coil.transform.RoundedCornersTransformation
import com.aurora.Constants
import com.aurora.Constants.EXODUS_SUBMIT_PAGE
import com.aurora.extensions.accentColor
import com.aurora.extensions.browse
import com.aurora.extensions.contrastingColor
import com.aurora.extensions.getString
import com.aurora.extensions.hide
import com.aurora.extensions.runOnUiThread
@@ -321,7 +319,6 @@ class AppDetailsFragment : BaseFragment<FragmentDetailsBinding>() {
if (it != null) {
binding.layoutDetailsBeta.btnBetaAction.apply {
isEnabled = true
setTextColor(contrastingColor(requireContext().accentColor()))
}
if (it.subscribed) {
updateBetaActions(true)
@@ -358,8 +355,8 @@ class AppDetailsFragment : BaseFragment<FragmentDetailsBinding>() {
setOnClickListener {
it.context.browse("${EXODUS_SUBMIT_PAGE}${app.packageName}")
}
setTextColor(contrastingColor(requireContext().accentColor()))
}
binding.layoutDetailsInstall.progressDownload.clipToOutline = true
binding.layoutDetailsInstall.imgCancel.setOnClickListener {
viewModel.cancelDownload(app)

View File

@@ -26,7 +26,6 @@ import androidx.fragment.app.FragmentManager
import androidx.lifecycle.Lifecycle
import androidx.navigation.fragment.findNavController
import androidx.viewpager2.adapter.FragmentStateAdapter
import com.aurora.extensions.applyColors
import com.aurora.store.MobileNavigationDirections
import com.aurora.store.R
import com.aurora.store.data.providers.AuthProvider
@@ -101,11 +100,8 @@ class GamesContainerFragment : BaseFragment<FragmentAppsGamesBinding>() {
tab.text = tabTitles[position]
}.attach()
binding.searchFab.apply {
applyColors()
setOnClickListener {
findNavController().navigate(R.id.searchSuggestionFragment)
}
binding.searchFab.setOnClickListener {
findNavController().navigate(R.id.searchSuggestionFragment)
}
}

View File

@@ -29,7 +29,6 @@ import androidx.viewpager2.adapter.FragmentStateAdapter
import androidx.viewpager2.widget.ViewPager2.OnPageChangeCallback
import com.aurora.Constants
import com.aurora.extensions.isIgnoringBatteryOptimizations
import com.aurora.extensions.isSAndAbove
import com.aurora.store.R
import com.aurora.store.data.work.CacheWorker
import com.aurora.store.data.work.UpdateWorker
@@ -48,8 +47,7 @@ import com.aurora.store.util.Preferences.PREFERENCE_FOR_YOU
import com.aurora.store.util.Preferences.PREFERENCE_INSTALLER_ID
import com.aurora.store.util.Preferences.PREFERENCE_INTRO
import com.aurora.store.util.Preferences.PREFERENCE_SIMILAR
import com.aurora.store.util.Preferences.PREFERENCE_THEME_ACCENT
import com.aurora.store.util.Preferences.PREFERENCE_THEME_TYPE
import com.aurora.store.util.Preferences.PREFERENCE_THEME_STYLE
import com.aurora.store.util.Preferences.PREFERENCE_UPDATES_AUTO
import com.aurora.store.util.Preferences.PREFERENCE_UPDATES_CHECK_INTERVAL
import com.aurora.store.util.Preferences.PREFERENCE_UPDATES_EXTENDED
@@ -161,8 +159,7 @@ class OnboardingFragment : BaseFragment<FragmentOnboardingBinding>() {
save(PREFERENCE_VENDING_VERSION, 0)
/*Customization*/
save(PREFERENCE_THEME_TYPE, 0)
save(PREFERENCE_THEME_ACCENT, if (isSAndAbove()) 0 else 1)
save(PREFERENCE_THEME_STYLE, 0)
save(PREFERENCE_DEFAULT_SELECTED_TAB, 0)
save(PREFERENCE_FOR_YOU, true)
save(PREFERENCE_SIMILAR, true)

View File

@@ -21,18 +21,14 @@ package com.aurora.store.view.ui.preferences
import android.content.Intent
import android.net.Uri
import android.os.Build
import android.os.Bundle
import android.provider.Settings
import android.view.View
import androidx.appcompat.widget.Toolbar
import androidx.navigation.fragment.findNavController
import androidx.preference.ListPreference
import androidx.preference.Preference
import com.aurora.extensions.isTAndAbove
import com.aurora.store.R
import com.aurora.store.util.Preferences
import com.aurora.store.util.save
import dagger.hilt.android.AndroidEntryPoint
import java.util.Locale
@@ -64,28 +60,5 @@ class UIPreference : BasePreferenceFragment() {
title = getString(R.string.pref_ui_title)
setNavigationOnClickListener { findNavController().navigateUp() }
}
val themePreference: ListPreference? = findPreference(Preferences.PREFERENCE_THEME_TYPE)
themePreference?.let {
it.setOnPreferenceChangeListener { _, newValue ->
val themeId = Integer.parseInt(newValue.toString())
save(Preferences.PREFERENCE_THEME_TYPE, themeId)
requireActivity().recreate()
true
}
}
val accentPreference: ListPreference? = findPreference(Preferences.PREFERENCE_THEME_ACCENT)
accentPreference?.let {
it.isVisible = Build.VERSION.SDK_INT < Build.VERSION_CODES.S
it.setOnPreferenceChangeListener { _, newValue ->
val accentId = Integer.parseInt(newValue.toString())
save(Preferences.PREFERENCE_THEME_ACCENT, accentId)
requireActivity().recreate()
true
}
}
}
}

View File

@@ -21,7 +21,6 @@ package com.aurora.store.view.ui.search
import android.content.SharedPreferences
import android.content.SharedPreferences.OnSharedPreferenceChangeListener
import android.content.res.ColorStateList
import android.os.Bundle
import android.text.Editable
import android.text.TextWatcher
@@ -31,8 +30,6 @@ import android.view.inputmethod.EditorInfo
import android.widget.TextView
import androidx.fragment.app.viewModels
import androidx.navigation.fragment.findNavController
import com.aurora.extensions.accentColor
import com.aurora.extensions.contrastingColor
import com.aurora.extensions.hideKeyboard
import com.aurora.extensions.showKeyboard
import com.aurora.gplayapi.data.models.App
@@ -103,15 +100,8 @@ class SearchResultsFragment : BaseFragment<FragmentSearchResultBinding>(),
binding.recycler.addOnScrollListener(endlessRecyclerOnScrollListener)
// Filter
binding.filterFab.apply {
val onSurfaceColor = contrastingColor(requireContext().accentColor())
setTextColor(onSurfaceColor)
iconTint = ColorStateList.valueOf(onSurfaceColor)
backgroundTintList = ColorStateList.valueOf(requireContext().accentColor())
setOnClickListener {
findNavController().navigate(R.id.filterSheet)
}
binding.filterFab.setOnClickListener {
findNavController().navigate(R.id.filterSheet)
}
viewModel.liveData.observe(viewLifecycleOwner) {

View File

@@ -20,14 +20,11 @@
package com.aurora.store.view.ui.sheets
import android.graphics.drawable.ShapeDrawable
import android.graphics.drawable.shapes.RoundRectShape
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.viewbinding.ViewBinding
import com.aurora.extensions.backgroundColor
import com.google.android.material.bottomsheet.BottomSheetDialogFragment
import java.lang.reflect.ParameterizedType
@@ -44,25 +41,16 @@ abstract class BaseDialogSheet<ViewBindingType : ViewBinding> : BottomSheetDialo
): View? {
val type =
(javaClass.genericSuperclass as ParameterizedType).actualTypeArguments[0] as Class<ViewBindingType>
val method = type.getMethod(
"inflate",
LayoutInflater::class.java,
ViewGroup::class.java,
Boolean::class.java
)
_binding = method.invoke(null, inflater, container, false) as ViewBindingType
val drawable = ShapeDrawable().apply {
shape = RoundRectShape(
floatArrayOf(64f, 64f, 64f, 64f, 0f, 0f, 0f, 0f),
null,
null
)
paint.color = requireContext().backgroundColor()
}
binding.root.background = drawable
return binding.root
}

View File

@@ -20,12 +20,8 @@
package com.aurora.store.view.ui.sheets
import android.content.DialogInterface
import android.content.res.ColorStateList
import android.os.Bundle
import android.view.View
import com.aurora.extensions.accentColor
import com.aurora.extensions.backgroundColor
import com.aurora.extensions.contrastingColor
import com.aurora.store.R
import com.aurora.store.data.model.Filter
import com.aurora.store.data.providers.FilterProvider
@@ -57,7 +53,6 @@ class FilterSheet : BaseDialogSheet<SheetFilterBinding>() {
private fun attachSingleChips() {
binding.filterGfs.apply {
applyColors()
isChecked = filter.gsfDependentApps
setOnCheckedChangeListener { _, checked ->
isChecked = checked
@@ -66,7 +61,6 @@ class FilterSheet : BaseDialogSheet<SheetFilterBinding>() {
}
binding.filterPaid.apply {
applyColors()
isChecked = filter.paidApps
setOnCheckedChangeListener { _, checked ->
isChecked = checked
@@ -75,7 +69,6 @@ class FilterSheet : BaseDialogSheet<SheetFilterBinding>() {
}
binding.filterAds.apply {
applyColors()
isChecked = filter.appsWithAds
setOnCheckedChangeListener { _, checked ->
isChecked = checked
@@ -95,7 +88,6 @@ class FilterSheet : BaseDialogSheet<SheetFilterBinding>() {
chip.id = index
chip.text = value
chip.textColors
chip.applyColors()
chip.isChecked = filter.downloads == downloadValues[index].toInt()
binding.downloadChips.addView(chip)
}
@@ -108,7 +100,6 @@ class FilterSheet : BaseDialogSheet<SheetFilterBinding>() {
val chip = Chip(requireContext())
chip.id = index
chip.text = value
chip.applyColors()
chip.isChecked = filter.rating == ratingValues[index].toFloat()
binding.ratingChips.addView(chip)
}
@@ -117,21 +108,4 @@ class FilterSheet : BaseDialogSheet<SheetFilterBinding>() {
filter = filter.copy(rating = ratingValues[checkedIds[0]].toFloat())
}
}
private fun Chip.applyColors() {
setTextColor(
ColorStateList(
arrayOf(
intArrayOf(android.R.attr.state_checked),
intArrayOf()
),
intArrayOf(
contrastingColor(requireContext().accentColor()),
contrastingColor(requireContext().backgroundColor())
)
)
)
checkedIconTint = ColorStateList.valueOf(contrastingColor(requireContext().accentColor()))
}
}

View File

@@ -45,9 +45,8 @@ class PermissionBottomSheet : BaseDialogSheet<SheetPermissionsBinding>() {
packageManager = requireContext().packageManager
currentPerms = try {
packageManager.getPackageInfo(
args.app.packageName, PackageManager.GET_PERMISSIONS
).requestedPermissions!!.toList()
packageManager.getPackageInfo(args.app.packageName, PackageManager.GET_PERMISSIONS)
.requestedPermissions!!.toList()
} catch (_: Exception) {
emptyList()
}
@@ -62,7 +61,7 @@ class PermissionBottomSheet : BaseDialogSheet<SheetPermissionsBinding>() {
if (permissionGroupWidgets.containsKey(permissionGroupInfo.name)) {
permissionGroup = permissionGroupWidgets[permissionGroupInfo.name]
} else {
permissionGroup = PermissionGroup(context, permissionGroupInfo)
permissionGroup = PermissionGroup(requireContext(), permissionGroupInfo)
permissionGroupWidgets[permissionGroupInfo.name] = permissionGroup
}
@@ -86,29 +85,34 @@ class PermissionBottomSheet : BaseDialogSheet<SheetPermissionsBinding>() {
private fun getPermissionInfo(permissionName: String): PermissionInfo? {
return try {
packageManager.getPermissionInfo(permissionName, 0)
} catch (e: PackageManager.NameNotFoundException) {
} catch (_: PackageManager.NameNotFoundException) {
null
}
}
private fun getPermissionGroupInfo(permissionInfo: PermissionInfo): PermissionGroupInfo {
val permissionGroupInfo: PermissionGroupInfo = if (null == permissionInfo.group) {
getFakePermissionGroupInfo(permissionInfo.packageName)
} else {
try {
val platformGroup = packageManager.getPermissionGroupInfo(permissionInfo.group!!, 0)
PermissionGroupInfo(
platformGroup.name,
platformGroup.icon,
platformGroup.loadLabel(packageManager).toString()
)
} catch (e: PackageManager.NameNotFoundException) {
val permissionGroup = permissionInfo.group
val permissionGroupInfo: PermissionGroupInfo =
if (permissionGroup == null) {
getFakePermissionGroupInfo(permissionInfo.packageName)
} else {
try {
val platformGroup = packageManager.getPermissionGroupInfo(permissionGroup, 0)
PermissionGroupInfo(
platformGroup.name,
platformGroup.icon,
platformGroup.loadLabel(packageManager).toString()
)
} catch (_: PackageManager.NameNotFoundException) {
getFakePermissionGroupInfo(permissionInfo.packageName)
}
}
}
if (permissionGroupInfo.icon == 0) {
permissionGroupInfo.icon = R.drawable.ic_permission_android
}
return permissionGroupInfo
}

View File

@@ -25,7 +25,6 @@ import androidx.fragment.app.viewModels
import androidx.lifecycle.lifecycleScope
import androidx.navigation.fragment.findNavController
import com.aurora.Constants
import com.aurora.extensions.applyColors
import com.aurora.extensions.browse
import com.aurora.store.MobileNavigationDirections
import com.aurora.store.PermissionType
@@ -104,11 +103,8 @@ class UpdatesFragment : BaseFragment<FragmentUpdatesBinding>() {
viewModel.fetchUpdates()
}
binding.searchFab.apply {
applyColors()
setOnClickListener {
findNavController().navigate(R.id.searchSuggestionFragment)
}
binding.searchFab.setOnClickListener {
findNavController().navigate(R.id.searchSuggestionFragment)
}
}

View File

@@ -20,7 +20,7 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="8dp" />
<solid android:color="@color/colorScrim" />
<solid android:color="?colorControlHighlight" />
<padding
android:bottom="@dimen/margin_medium"
android:left="@dimen/margin_medium"

View File

@@ -20,6 +20,6 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="15dp" />
<solid android:color="?colorShimmer" />
<solid android:color="?colorControlHighlight" />
</shape>

View File

@@ -20,6 +20,6 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="8dp" />
<solid android:color="?colorShimmer" />
<solid android:color="?colorControlHighlight" />
</shape>

View File

@@ -22,6 +22,6 @@
<corners android:radius="15dp" />
<stroke
android:width="1dp"
android:color="@color/colorScrim" />
android:color="?colorControlHighlight" />
</shape>

View File

@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:pathData="M396,564q-32,-32 -58.5,-67T289,423q-5,14 -6.5,28.5T281,480q0,83 58,141t141,58q14,0 28.5,-2t28.5,-6q-39,-22 -74,-48.5T396,564ZM453,508q51,51 114,87.5T702,652q-40,51 -98,79.5T481,760q-117,0 -198.5,-81.5T201,480q0,-65 28.5,-123t79.5,-98q20,72 56.5,135T453,508ZM743,580q-20,-5 -39.5,-11T665,555q8,-18 11.5,-36.5T680,480q0,-83 -58.5,-141.5T480,280q-20,0 -38.5,3.5T405,295q-8,-19 -13.5,-38T381,218q24,-9 49,-13.5t51,-4.5q117,0 198.5,81.5T761,480q0,26 -4.5,51T743,580ZM440,120v-120h80v120h-80ZM440,960v-120h80L520,960h-80ZM763,254 L706,197 791,113 848,169 763,254ZM169,847l-57,-56 85,-85 57,57 -85,84ZM840,520v-80h120v80L840,520ZM0,520v-80h120v80L0,520ZM791,848 L706,763 763,706 847,791 791,848ZM197,254l-84,-85 56,-57 85,85 -57,57ZM396,564Z"
android:fillColor="#e8eaed"/>
</vector>

View File

@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:pathData="M480,840q-150,0 -255,-105T120,480q0,-150 105,-255t255,-105q14,0 27.5,1t26.5,3q-41,29 -65.5,75.5T444,300q0,90 63,153t153,63q55,0 101,-24.5t75,-65.5q2,13 3,26.5t1,27.5q0,150 -105,255T480,840ZM480,760q88,0 158,-48.5T740,585q-20,5 -40,8t-40,3q-123,0 -209.5,-86.5T364,300q0,-20 3,-40t8,-40q-78,32 -126.5,102T200,480q0,116 82,198t198,82ZM470,490Z"
android:fillColor="#e8eaed"/>
</vector>

View File

@@ -3,7 +3,7 @@
android:width="24dp"
android:height="24dp"
android:autoMirrored="true"
android:tint="@color/colorAccent"
android:tint="?colorAccent"
android:viewportWidth="960"
android:viewportHeight="960">
<path

View File

@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:pathData="M480,600q50,0 85,-35t35,-85q0,-50 -35,-85t-85,-35q-50,0 -85,35t-35,85q0,50 35,85t85,35ZM480,680q-83,0 -141.5,-58.5T280,480q0,-83 58.5,-141.5T480,280q83,0 141.5,58.5T680,480q0,83 -58.5,141.5T480,680ZM200,520L40,520v-80h160v80ZM920,520L760,520v-80h160v80ZM440,200v-160h80v160h-80ZM440,920v-160h80v160h-80ZM256,310l-101,-97 57,-59 96,100 -52,56ZM748,806 L651,705 704,650 805,747 748,806ZM650,256 L747,155 806,212 706,308 650,256ZM154,748l101,-97 55,53 -97,101 -59,-57ZM480,480Z"
android:fillColor="#e8eaed"/>
</vector>

View File

@@ -20,7 +20,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:tint="@color/colorAccent"
android:tint="?colorAccent"
android:viewportWidth="960"
android:viewportHeight="960">
<path

View File

@@ -18,7 +18,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:tint="@color/colorAccent"
android:tint="?colorAccent"
android:viewportWidth="960"
android:viewportHeight="960">
<path

View File

@@ -2,7 +2,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:tint="?attr/colorAccent"
android:tint="?colorAccent"
android:viewportWidth="960"
android:viewportHeight="960">
<path

View File

@@ -24,7 +24,7 @@
android:shape="ring"
android:thickness="8dp"
android:useLevel="false">
<solid android:color="@color/colorStroke" />
<solid android:color="?colorControlNormal" />
</shape>
</item>
</layer-list>

View File

@@ -43,7 +43,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:backgroundTint="?android:colorBackground"
app:menu="@menu/menu_bottom_nav"
tools:viewBindingType="com.google.android.material.navigation.NavigationBarView" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -30,7 +30,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?android:colorAccent"
app:indicatorColor="?colorAccent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"

View File

@@ -65,8 +65,7 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/btn_backward"
app:layout_constraintTop_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:rippleColor="@color/colorTabDefault" />
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_backward"
@@ -79,8 +78,7 @@
app:layout_constraintEnd_toStartOf="@id/btn_forward"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:rippleColor="@color/colorTabDefault" />
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@@ -51,7 +51,7 @@
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:id="@+id/filter_fab"
style="@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon"
style="@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom"

View File

@@ -69,9 +69,6 @@
android:layout_toStartOf="@id/img_cancel"
android:background="@drawable/bg_rounded_transparent"
android:indeterminate="true"
android:indeterminateTint="@color/colorScrimAlt"
app:indicatorColor="@color/colorScrimAlt"
app:trackColor="@color/colorScrim"
app:trackThickness="@dimen/icon_size_small" />
<LinearLayout

View File

@@ -20,11 +20,13 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:paddingTop="@dimen/margin_xxsmall"
android:paddingBottom="@dimen/margin_xxsmall">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img"
app:tint="?colorAccent"
android:layout_width="@dimen/icon_size_default"
android:layout_height="@dimen/icon_size_default"
android:layout_marginStart="@dimen/margin_small"

View File

@@ -17,11 +17,11 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigation_view"
@@ -32,4 +32,4 @@
app:elevation="0dp"
app:itemTextAppearance="@style/TextAppearance.Aurora.Line1"
app:menu="@menu/menu_app" />
</LinearLayout>
</FrameLayout>

View File

@@ -17,101 +17,108 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<RelativeLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_large"
android:layout_marginBottom="@dimen/margin_large"
android:paddingStart="@dimen/padding_large"
android:paddingEnd="@dimen/padding_large">
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_medium"
android:layout_height="@dimen/icon_size_medium" />
<TextView
android:id="@+id/txt_line1"
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="2"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle"
tools:text="App Name" />
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line1"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:maxLines="1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
tools:text="Company Name" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line2"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:maxLines="1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line3"
tools:text="4.2 45MB" />
</RelativeLayout>
<HorizontalScrollView
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none">
<com.google.android.material.chip.ChipGroup
android:id="@+id/top_tab_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_large"
android:layout_marginBottom="@dimen/margin_large"
android:paddingStart="@dimen/padding_large"
android:paddingEnd="@dimen/padding_large">
<com.google.android.material.chip.Chip
android:id="@+id/chip_favourite"
style="@style/Widget.MaterialComponents.Chip.Action"
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_medium"
android:layout_height="@dimen/icon_size_medium" />
<TextView
android:id="@+id/txt_line1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="2"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle"
tools:text="App Name" />
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line1"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:maxLines="1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
tools:text="Company Name" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line2"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:maxLines="1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line3"
tools:text="4.2 45MB" />
</RelativeLayout>
<HorizontalScrollView
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none">
<com.google.android.material.chip.ChipGroup
android:id="@+id/top_tab_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_wishlist_add" />
android:paddingStart="@dimen/padding_large"
android:paddingEnd="@dimen/padding_large">
<com.google.android.material.chip.Chip
android:id="@+id/chip_blacklist"
style="@style/Widget.MaterialComponents.Chip.Action"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_blacklist_add" />
<com.google.android.material.chip.Chip
android:id="@+id/chip_favourite"
style="@style/Widget.MaterialComponents.Chip.Action"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_wishlist_add" />
<com.google.android.material.chip.Chip
android:id="@+id/chip_ignore_version"
style="@style/Widget.MaterialComponents.Chip.Action"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_ignore_version" />
</com.google.android.material.chip.ChipGroup>
</HorizontalScrollView>
<com.google.android.material.chip.Chip
android:id="@+id/chip_blacklist"
style="@style/Widget.MaterialComponents.Chip.Action"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_blacklist_add" />
<com.google.android.material.button.MaterialButton
style="@style/Widget.Material3.Button.UnelevatedButton"
android:layout_width="match_parent"
android:layout_height="@dimen/height_button"
android:layout_margin="@dimen/margin_large"
android:text="@string/action_install" />
</LinearLayout>
<com.google.android.material.chip.Chip
android:id="@+id/chip_ignore_version"
style="@style/Widget.MaterialComponents.Chip.Action"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_ignore_version" />
</com.google.android.material.chip.ChipGroup>
</HorizontalScrollView>
<com.google.android.material.button.MaterialButton
style="@style/Widget.Material3.Button.UnelevatedButton"
android:layout_width="match_parent"
android:layout_height="@dimen/height_button"
android:layout_margin="@dimen/margin_large"
android:text="@string/action_install" />
</LinearLayout>
</FrameLayout>

View File

@@ -17,104 +17,111 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
tools:src="@drawable/ic_xiaomi_logo" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
tools:src="@drawable/ic_xiaomi_logo" />
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/title_installer"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
</RelativeLayout>
<TextView
android:id="@+id/txt_header"
android:id="@+id/txt_line1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/title_installer"
android:maxLines="3"
android:text="@string/device_miui_title"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
</RelativeLayout>
android:textAppearance="@style/TextAppearance.Aurora.Line1" />
<TextView
android:id="@+id/txt_line1"
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:text="@string/device_miui_subtitle"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_changelog"
android:maxLines="10"
android:text="@string/device_miui_description"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
<TextView
android:id="@+id/txt_line4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:text="@string/device_miui_extra"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
android:textColor="@color/colorRed" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="3"
android:text="@string/device_miui_title"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line1" />
android:orientation="horizontal"
android:weightSum="2">
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:text="@string/device_miui_subtitle"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_ignore" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_changelog"
android:maxLines="10"
android:text="@string/device_miui_description"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
<TextView
android:id="@+id/txt_line4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:text="@string/device_miui_extra"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
android:textColor="@color/colorRed" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_disable" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_ignore" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_disable" />
</LinearLayout>
</LinearLayout>
</FrameLayout>

View File

@@ -17,10 +17,11 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigation_view"
@@ -31,4 +32,4 @@
app:elevation="0dp"
app:itemTextAppearance="@style/TextAppearance.Aurora.Line1"
app:menu="@menu/menu_download_single" />
</LinearLayout>
</FrameLayout>

View File

@@ -1,92 +1,98 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
<ImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
android:src="@drawable/ic_download_manager"
app:tint="@color/colorAccent" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
android:src="@drawable/ic_download_manager"
app:tint="?colorAccent" />
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/device_doze_title"
android:textAlignment="viewStart"
android:textColor="?android:textColorPrimary"
android:textSize="18sp" />
</RelativeLayout>
<TextView
android:id="@+id/txt_header"
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/device_doze_title"
android:maxLines="10"
android:text="@string/device_doze_subtitle"
android:textAlignment="viewStart" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_changelog"
android:maxLines="10"
android:text="@string/device_doze_description"
android:textAlignment="viewStart" />
<TextView
android:id="@+id/txt_line4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:text="@string/device_doze_extra"
android:textAlignment="viewStart"
android:textColor="?android:textColorPrimary"
android:textSize="18sp" />
</RelativeLayout>
android:textColor="@color/colorRed" />
</LinearLayout>
<TextView
android:id="@+id/txt_line2"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:text="@string/device_doze_subtitle"
android:textAlignment="viewStart" />
android:orientation="horizontal"
android:weightSum="2">
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_changelog"
android:maxLines="10"
android:text="@string/device_doze_description"
android:textAlignment="viewStart" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_ignore" />
<TextView
android:id="@+id/txt_line4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:text="@string/device_doze_extra"
android:textAlignment="viewStart"
android:textColor="@color/colorRed" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_disable" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_ignore" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_disable" />
</LinearLayout>
</LinearLayout>
</FrameLayout>

View File

@@ -16,118 +16,122 @@
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
~
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/txt_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_small"
android:paddingHorizontal="@dimen/margin_normal"
android:text="@string/action_filter"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle.Alt" />
<androidx.core.widget.NestedScrollView
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_title"
android:padding="@dimen/padding_medium"
android:scrollbars="none">
android:orientation="vertical">
<LinearLayout
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/txt_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_small"
android:paddingHorizontal="@dimen/margin_normal"
android:text="@string/action_filter"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle.Alt" />
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:targetApi="o">
android:layout_below="@id/txt_title"
android:padding="@dimen/padding_medium"
android:scrollbars="none">
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:text="@string/action_filter_rating"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
<com.google.android.material.chip.ChipGroup
android:id="@+id/rating_chips"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="8dp"
android:paddingEnd="8dp"
app:chipSpacingHorizontal="@dimen/margin_small"
app:chipSpacingVertical="@dimen/margin_xsmall"
app:selectionRequired="true"
app:singleSelection="true" />
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:text="@string/action_filter_downloads"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
<com.google.android.material.chip.ChipGroup
android:id="@+id/download_chips"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="8dp"
android:paddingEnd="8dp"
app:chipSpacingHorizontal="@dimen/margin_small"
app:chipSpacingVertical="@dimen/margin_xsmall"
app:selectionRequired="true"
app:singleSelection="true" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:text="@string/action_filter_misc"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
<com.google.android.material.chip.ChipGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp">
<com.google.android.material.chip.Chip
android:id="@+id/filter_gfs"
style="@style/AppTheme.FilterChip"
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_filter_gsf_dependent_apps" />
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:text="@string/action_filter_rating"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
<com.google.android.material.chip.Chip
android:id="@+id/filter_paid"
style="@style/AppTheme.FilterChip"
<com.google.android.material.chip.ChipGroup
android:id="@+id/rating_chips"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="8dp"
android:paddingEnd="8dp"
app:chipSpacingHorizontal="@dimen/margin_small"
app:chipSpacingVertical="@dimen/margin_xsmall"
app:selectionRequired="true"
app:singleSelection="true" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_filter_paid_apps" />
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:text="@string/action_filter_downloads"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
<com.google.android.material.chip.Chip
android:id="@+id/filter_ads"
style="@style/AppTheme.FilterChip"
<com.google.android.material.chip.ChipGroup
android:id="@+id/download_chips"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="8dp"
android:paddingEnd="8dp"
app:chipSpacingHorizontal="@dimen/margin_small"
app:chipSpacingVertical="@dimen/margin_xsmall"
app:selectionRequired="true"
app:singleSelection="true" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_filter_apps_with_ads" />
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:text="@string/action_filter_misc"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
</com.google.android.material.chip.ChipGroup>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</RelativeLayout>
<com.google.android.material.chip.ChipGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="10dp">
<com.google.android.material.chip.Chip
android:id="@+id/filter_gfs"
style="@style/AppTheme.FilterChip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_filter_gsf_dependent_apps" />
<com.google.android.material.chip.Chip
android:id="@+id/filter_paid"
style="@style/AppTheme.FilterChip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_filter_paid_apps" />
<com.google.android.material.chip.Chip
android:id="@+id/filter_ads"
style="@style/AppTheme.FilterChip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/action_filter_apps_with_ads" />
</com.google.android.material.chip.ChipGroup>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</RelativeLayout>
</FrameLayout>

View File

@@ -17,94 +17,101 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
android:orientation="vertical">
<RelativeLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
tools:src="@drawable/bg_placeholder" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
tools:src="@drawable/bg_placeholder" />
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/title_installer"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
</RelativeLayout>
<TextView
android:id="@+id/txt_header"
android:id="@+id/txt_line1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/title_installer"
android:maxLines="3"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
</RelativeLayout>
android:textAppearance="@style/TextAppearance.Aurora.Line1"
tools:text="Title" />
<TextView
android:id="@+id/txt_line1"
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
android:textColor="@color/colorRed"
tools:text="Error" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
tools:text="Extra" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="3"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line1"
tools:text="Title" />
android:orientation="horizontal"
android:weightSum="2">
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
android:textColor="@color/colorRed"
tools:text="Error" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_copy" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="10"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
tools:text="Extra" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_ok" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_copy" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_ok" />
</LinearLayout>
</LinearLayout>
</FrameLayout>

View File

@@ -17,118 +17,124 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
tools:src="@drawable/bg_placeholder" />
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/title_manual_download"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txt_line1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:textAppearance="@style/TextAppearance.Aurora.Line1"
tools:text="App Name" />
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line1"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
android:textColor="?colorAccent"
tools:text="Package Name" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line2"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line3"
tools:text="Base version" />
</RelativeLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/version_code_layout"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:helperText="@string/manual_download_hint">
android:divider="@drawable/divider"
android:orientation="vertical"
android:padding="@dimen/padding_large"
android:showDividers="middle">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/version_code_inp"
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img_icon"
android:layout_width="@dimen/icon_size_category"
android:layout_height="@dimen/icon_size_category"
android:layout_centerVertical="true"
tools:src="@drawable/bg_placeholder" />
<TextView
android:id="@+id/txt_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:maxLines="1"
android:text="@string/title_manual_download"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txt_line1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:textAppearance="@style/TextAppearance.Aurora.Line1"
tools:text="App Name" />
<TextView
android:id="@+id/txt_line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line1"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:textAppearance="@style/TextAppearance.Aurora.Line2"
android:textColor="?colorAccent"
tools:text="Package Name" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line2"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line3"
tools:text="Base version" />
</RelativeLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/version_code_layout"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionDone"
android:inputType="number" />
app:helperText="@string/manual_download_hint">
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/version_code_inp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionDone"
android:inputType="number" />
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_cancel" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_check" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_secondary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_cancel" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_primary"
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
android:layout_width="0dp"
android:layout_height="@dimen/height_button"
android:layout_weight="1"
android:text="@string/action_check" />
</LinearLayout>
</LinearLayout>
</FrameLayout>

View File

@@ -17,12 +17,11 @@
~
-->
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="@dimen/padding_small">
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/img"
@@ -54,4 +53,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/txt_warning" />
</androidx.constraintlayout.widget.ConstraintLayout>
</FrameLayout>

View File

@@ -17,49 +17,58 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:targetApi="o">
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/permissions_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_small"
android:paddingHorizontal="@dimen/margin_normal"
android:text="@string/details_permission"
android:textAppearance="@style/TextAppearance.Aurora.Title" />
<androidx.core.widget.NestedScrollView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/padding_medium"
android:scrollbars="none">
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/permissions_container"
<com.google.android.material.bottomsheet.BottomSheetDragHandleView
android:id="@+id/drag_handle"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/permissions_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="@dimen/margin_small"
android:paddingHorizontal="@dimen/margin_normal"
android:text="@string/details_permission"
android:textAppearance="@style/TextAppearance.Aurora.Title" />
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
android:padding="@dimen/padding_medium"
android:scrollbars="none">
<LinearLayout
android:id="@+id/permissions_container_widgets"
android:id="@+id/permissions_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/permissions_none"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/details_no_permission"
android:textAppearance="@style/TextAppearance.Aurora.Line1"
android:visibility="gone" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>
<LinearLayout
android:id="@+id/permissions_container_widgets"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/permissions_none"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/details_no_permission"
android:textAppearance="@style/TextAppearance.Aurora.Line1"
android:visibility="gone" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>
</FrameLayout>

View File

@@ -55,7 +55,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
@@ -69,7 +69,7 @@
android:layout_centerVertical="true"
android:layout_marginTop="@dimen/margin_xxsmall"
android:layout_marginBottom="@dimen/margin_xxsmall"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:maxLines="2"
android:textAppearance="@style/TextAppearance.Aurora.Line3" />

View File

@@ -46,7 +46,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_normal"
android:layout_toEndOf="@id/img_icon"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:maxLines="1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line1" />
@@ -59,7 +59,7 @@
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:layout_marginTop="@dimen/margin_xxsmall"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:maxLines="1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
@@ -72,7 +72,7 @@
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:layout_marginTop="@dimen/margin_xxsmall"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:maxLines="1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line3" />

View File

@@ -47,7 +47,7 @@
android:layout_alignEnd="@id/img_icon"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/margin_small"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:textAppearance="@style/TextAppearance.Aurora.Line2" />
<TextView
@@ -59,7 +59,7 @@
android:layout_alignEnd="@id/txt_name"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/margin_xxsmall"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:textAppearance="@style/TextAppearance.Aurora.Line3" />
</RelativeLayout>
</com.facebook.shimmer.ShimmerFrameLayout>

View File

@@ -40,7 +40,7 @@
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toStartOf="@id/img_action"
android:background="?colorShimmer"
android:background="?colorControlHighlight"
android:ellipsize="end"
android:maxLines="1" />
@@ -54,6 +54,6 @@
android:contentDescription="@string/expand"
android:padding="@dimen/padding_xsmall"
app:srcCompat="@drawable/ic_arrow_right"
app:tint="?colorShimmer" />
app:tint="?colorControlHighlight" />
</RelativeLayout>
</com.facebook.shimmer.ShimmerFrameLayout>

View File

@@ -45,14 +45,6 @@
<string name="purchase_invalid">لم يتم شراء التطبيق</string>
<string name="purchase_failed">فشل التنزيل</string>
<string name="pref_ui_title">التخصيص</string>
<string name="pref_ui_theme_title">الثيم</string>
<string name="pref_ui_theme_system">اتبع النظام</string>
<string name="pref_ui_theme_light">مضيء</string>
<string name="pref_ui_theme_darkord">ديسكورد</string>
<string name="pref_ui_theme_dark_x">داكن X</string>
<string name="pref_ui_theme_dark">داكن</string>
<string name="pref_ui_theme_black">أسود</string>
<string name="pref_ui_accent_title">اللون الثانوي</string>
<string name="pref_install_mode_title">طريقة التثبيت</string>
<string name="pref_install_mode_session">مثبت الجلسة</string>
<string name="pref_install_mode_services">خدمات Aurora(مهمل)</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">خدمة تنزيل التطبيق في الخلفية</string>
<string name="installer_am_unavailable">قم بتثبيت مدير التطبيقات أو تغيير المثبت.</string>
<string name="pref_install_mode_am">مثبِّت AM</string>
<string name="ui_accent_4">ذهبي</string>
<string name="ui_accent_5">أخضر</string>
<string name="ui_accent_13">أزرق عميق</string>
<string name="ui_accent_12">الازرق</string>
<string name="ui_accent_1">أزرق</string>
<string name="ui_accent_2">فوشيا</string>
<string name="ui_accent_3">أحمر</string>
<string name="ui_accent_6">بنفسجي</string>
<string name="ui_accent_7">رمادي</string>
<string name="ui_accent_8">وردي</string>
<string name="ui_accent_9">جير</string>
<string name="ui_accent_10">برتقالي</string>
<string name="ui_accent_11">أزرق فاتح</string>
<string name="download_paused">متوقف مؤقتا • <xliff:g id="completed_downloads"> %1$d </xliff:g> / <xliff:g id="all_downloads"> %2$d </xliff:g></string>
<string name="download_eta_min">بقي %1$d دقيقة %2$d ثانية</string>
<string name="download_eta_sec">بقي %1$d ثانية</string>
@@ -286,7 +265,6 @@
<string name="session_good">واو! كل شيء جيد.</string>
<string name="session_init">تجهيز الأمور…</string>
<string name="title_advanced">متقدم</string>
<string name="ui_accent_0">النظام</string>
<string name="updates_available">التحديثات المتاحة</string>
<string name="update_available">التحديث متاح</string>
<string name="download_eta_hrs">بقي %1$d ساعة %2$d دقيقة %3$d ثانية</string>

View File

@@ -15,7 +15,6 @@
<string name="onboarding_title_installer">Instalador</string>
<string name="onboarding_title_permissions">Permisos</string>
<string name="pref_ui_title">Personalización</string>
<string name="pref_ui_theme_title">Estilu</string>
<string name="tab_categories">Categoríes</string>
<string name="title_account_manager">Cuentes</string>
<string name="title_apps">Aplicaciones</string>
@@ -36,7 +35,6 @@
<string name="device_miui_extra">D\'otramiente, pues escoyer l\'instalador nativu mas nun vas poder instalar APKs en paquetes, polo que tu decides.</string>
<string name="filter_review_positive">Reseña positiva</string>
<string name="about_xda">Filu del desendolcu</string>
<string name="pref_ui_theme_light">Claridá</string>
<string name="about_bhim_summary">Dona per UPI</string>
<string name="about_bitcoin_btc_summary">Dona per Bitcoin (BTC)</string>
<string name="action_update">Anovar</string>
@@ -48,7 +46,6 @@
<string name="pref_filter_fdroid_title">Peñerar les aplicaciones de F-Droid</string>
<string name="title_apps_games">Aplicaciones ya xuegos de mio</string>
<string name="title_apps_library">Aplicaciones na biblioteca</string>
<string name="ui_accent_12">Azul Disskord</string>
<string name="action_filter_all">Too</string>
<string name="details_dev_details">Contautu</string>
<string name="details_beta_subscribed">You\'re a beta tester</string>
@@ -57,7 +54,6 @@
<string name="action_get_local_apk">Save App bundle</string>
<string name="filter_review_all">Too</string>
<string name="action_filter_rating">Valoraciones</string>
<string name="pref_ui_theme_darkord">Disskord</string>
<string name="toast_apk_whitelisted">Whitelisted</string>
<string name="pref_ui_no_for_you">Páxines «Pa ti»</string>
<string name="filter_review_one">Una estrella</string>
@@ -88,7 +84,6 @@
<string name="action_close">Zarrar</string>
<string name="action_filter_gsf_dependent_apps">GSF</string>
<string name="download_speed_estimating">Estimando</string>
<string name="ui_accent_1">Azul</string>
<string name="action_granted">Concedióse</string>
<string name="installer_status_failure">L\'instalador falló</string>
<string name="toast_apk_blacklisted">Blacklisted</string>
@@ -104,7 +99,6 @@
<string name="download_failed">La descarga falló</string>
<string name="exodus_view_report">Ver l\'informe</string>
<string name="pref_dialog_to_apply_restart">Esti parámetru va aplicase dempués de que reanicies l\'aplicación</string>
<string name="pref_ui_theme_system">Estilu del sistema</string>
<string name="about_paypal_summary">Dona per PayPal</string>
<string name="about_fdroid">F-Droid</string>
<string name="action_blacklist">Blacklist</string>
@@ -181,7 +175,6 @@
<string name="pref_install_mode_root">Instalador root</string>
<string name="pref_filter_google_summary">Quita toles aplicaciones de Google de los resultaos de busca ya de les categoríes d\'aplicaciones</string>
<string name="pref_ui_no_for_you_desc">Amuesa les páxines «Pa ti» na pantalla d\'aniciu</string>
<string name="pref_ui_accent_title">Color de l\'acentuación</string>
<string name="purchase_failed">La descarga falló</string>
<string name="purchase_not_found">Nun s\'atopó l\'aplicación</string>
<string name="purchase_no_file">Nun se pudieron consiguir los ficheros</string>
@@ -204,8 +197,6 @@
<string name="pref_install_delete_summary">Les APKs desaníciense por defeutu</string>
<string name="pref_install_mode_am">AM installer.</string>
<string name="pref_install_mode_summary">Seleiciona\'l métodu d\'instalación de los ficheros APK</string>
<string name="pref_ui_theme_black">Prietu</string>
<string name="pref_ui_theme_dark_x">Escuridá X</string>
<string name="pref_ui_similar_apps">Aplicaciones asemeyaes ya rellacionaes</string>
<string name="pref_ui_similar_apps_desc">Amuesa les aplicaciones asemeyaes ya rellacionaes nes páxines de detalles de les aplicaciones</string>
<string name="tab_for_you">Pa ti</string>
@@ -216,10 +207,6 @@
<string name="title_advanced">Advanced</string>
<string name="toast_abandon_sessions">Abandonáronse les sesiones d\'instalación antigües</string>
<string name="toast_developer_setting_failed">Activa la configuración pa desendolcadores del preséu p\'abrila.</string>
<string name="ui_accent_6">Moráu</string>
<string name="ui_accent_7">Buxu</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_9">Llima</string>
<string name="action_cancel">Encaboxar</string>
<string name="exodus_powered">Cola potencia d\'Exodus</string>
<string name="exodus_progress">Comprobando los rastrexadores…</string>
@@ -227,7 +214,6 @@
<string name="pref_install_mode_services">Servicios d\'Aurora</string>
<string name="pref_install_mode_session">Instalador de la sesión</string>
<string name="pref_network_title">Networking</string>
<string name="pref_ui_theme_dark">Escuridá</string>
<string name="pref_ui_layout_tab">Llingüeta predeterminada</string>
<string name="download_paused">En posa • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
<string name="download_progress">En descarga • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
@@ -273,14 +259,6 @@
<string name="notification_channel_updater_service">Serviciu de descarga d\'aplicaciones en segundu planu</string>
<string name="app_updater_service_notif_title">Descarga d\'aplicaciones en segundu planu</string>
<string name="app_updater_service_notif_text">Permite la descarga d\'aplicaciones en segundu planu</string>
<string name="ui_accent_0">System</string>
<string name="ui_accent_2">Fucsia</string>
<string name="ui_accent_3">Coloráu</string>
<string name="ui_accent_4">Oru</string>
<string name="ui_accent_5">Verde</string>
<string name="ui_accent_10">Naranxa</string>
<string name="ui_accent_11">Azul claro</string>
<string name="ui_accent_13">Azul escuro</string>
<string name="update_available">anovamientu disponible</string>
<string name="updates_available">anovamientos disponibles</string>
<string name="rate_limited">Oops, This account is rate limited!</string>

View File

@@ -65,8 +65,6 @@
<string name="filter_review_one">Bir</string>
<string name="installer_service_unavailable">Aurora xidmətləri 1.0.9 və ya yuxarısını quraşdır və ya quraşdırıcını dəyişdir.</string>
<string name="installer_service_available">Aurora xidmətləri mövcuddur və quraşdırılmağa hazırdır.</string>
<string name="pref_ui_theme_black">Qara</string>
<string name="pref_ui_theme_system">Sistemi İzləyin</string>
<string name="pref_ui_no_for_you_desc">Əsas ekranda Sizə Özəl Səhifələri göstərin</string>
<string name="pref_ui_no_for_you">Sizin Üçün Səhifələr</string>
<string name="insecure_anonymous_apply">Dəyişiklikləri tətbiq etmək üçün yenidən daxil olduğunuza və tətbiqi yenidən başlatdığınıza əmin olun.</string>
@@ -81,8 +79,6 @@
<string name="toast_permission_granted">İcazə qəbul edildi</string>
<string name="device_miui_extra">İstəyə görə, Yerli quraşdırıcını seçə bilərsiniz, lakin sonra birləşmiş (ayrı) APK-ları quraşdıra bilməzsiniz, beləliklə seçim sizindir.</string>
<string name="device_miui_subtitle">Hesab qurucu MIUI Optimizasiyasına görə tətbiqləri quraşdıra bilmir.</string>
<string name="ui_accent_1">Mavi</string>
<string name="ui_accent_7">Boz</string>
<string name="onboarding_title_installer">Quraşdırıcı</string>
<string name="onboarding_title_permissions">İcazələr</string>
<string name="onboarding_permission_installer_desc">Aurora Store-dan tətbiqləri quraşdırmağa icazə ver</string>
@@ -191,12 +187,6 @@
<string name="pref_install_mode_summary">APK quraşdırma rejimini seçin</string>
<string name="pref_install_mode_title">Quraşdırma vasitəsi</string>
<string name="pref_network_title">Şəbəkə yaratma</string>
<string name="pref_ui_accent_title">Vurğu</string>
<string name="pref_ui_theme_dark">Qaranlıq</string>
<string name="pref_ui_theme_dark_x">Artırılmış qaranlıq</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_light">İşıqlı</string>
<string name="pref_ui_theme_title">Mövzu</string>
<string name="pref_ui_title">Fərdiləşdirmə</string>
<string name="pref_ui_layout">Tərtibat</string>
<string name="pref_ui_layout_tab">İlkin səhifəni seç</string>
@@ -249,17 +239,6 @@
<string name="app_updater_service_notif_title">Arxa planda tətbiq endirmə</string>
<string name="notification_channel_updater_service">Arxa planda tətbiq endirmə xidməti</string>
<string name="app_updater_service_notif_text">Arxa planda tətbiq endirilməsini aktivləşdirir</string>
<string name="ui_accent_2">Parlaq qırmızı</string>
<string name="ui_accent_3">Qırmızı</string>
<string name="ui_accent_4">Qızılı</string>
<string name="ui_accent_5">Yaşıl</string>
<string name="ui_accent_6">Bənövşəyi</string>
<string name="ui_accent_8">Çəhrayı</string>
<string name="ui_accent_9">Əhəng</string>
<string name="ui_accent_10">Narıncı</string>
<string name="ui_accent_11">ıq mavi</string>
<string name="ui_accent_12">Discord mavisi</string>
<string name="ui_accent_13">Tünd mavi</string>
<string name="about_bhim_summary">UPI vasitəsilə ianə edin</string>
<string name="about_bitcoin_btc_summary">Bitcoin (BTC) vasitəsilə ianə edin</string>
<string name="about_paypal_summary">PayPal vasitəsilə ianə edin</string>

View File

@@ -91,8 +91,6 @@
<string name="title_settings">Настройки</string>
<string name="title_updates">Актуализации</string>
<string name="title_language">Език</string>
<string name="ui_accent_1">Син</string>
<string name="ui_accent_7">Сив</string>
<string name="menu_disclaimer">Опровержение</string>
<string name="pref_ui_similar_apps">Подобни и свързани приложения</string>
<string name="title_installation">Инсталация</string>
@@ -113,12 +111,10 @@
<string name="toast_abandon_sessions">Старите инсталационни сесии са изоставени</string>
<string name="download_cancel_all">Отмени всички</string>
<string name="action_search">Търси</string>
<string name="pref_ui_theme_light">Светло</string>
<string name="details_beta_delay">Записването може да отнеме известно време, можете да проверите състоянието по-късно.</string>
<string name="details_dev_address">Адрес</string>
<string name="details_permission">разрешение</string>
<string name="installer_status_user_action">Изчаква се потвърждение от потребителя</string>
<string name="pref_ui_theme_system">Следвайте системата</string>
<string name="tab_editor_choice">Избор на редакторите</string>
<string name="exodus_substring">тракер(и), намерени в</string>
<string name="download_pause_all">Пауза на всички</string>
@@ -129,7 +125,6 @@
<string name="action_share">Сподели</string>
<string name="details_gsf_dependent">Изисква GSF</string>
<string name="download_completed">Изтеглянето завърши</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="download_speed_estimating">Оценяване</string>
<string name="download_queued">На опашка</string>
<string name="download_force_clear_all">Принудително изчистване на всички</string>
@@ -201,7 +196,6 @@
<string name="pref_dialog_to_apply_restart">Тази настройка ще се приложи, след като рестартирате приложението</string>
<string name="pref_install_mode_shizuku">Shizuku инсталатор</string>
<string name="pref_install_mode_title">Метод на инсталиране</string>
<string name="pref_ui_accent_title">Акцент</string>
<string name="purchase_no_file">Файловете не могат да бъдат получени</string>
<string name="session_good">Уау! Всичко е наред.</string>
<string name="session_verifying">Сесията се проверява</string>
@@ -254,13 +248,9 @@
<string name="pref_install_delete_summary">APK файловете ще бъдат изтрити по подразбиране</string>
<string name="pref_abandon_session">Принудително изчистване на инсталационните сесии</string>
<string name="pref_filter_fdroid_title">Филтриране на F-Droid приложения</string>
<string name="pref_ui_theme_black">черен</string>
<string name="pref_ui_theme_dark_x">Тъмен X</string>
<string name="pref_filter_google_summary">Премахва всички приложения на Google от резултатите от търсенето и категоризираните приложения</string>
<string name="pref_filter_google_title">Филтрирайте приложенията на Google</string>
<string name="pref_install_delete_title">Изтриване на APK след инсталиране</string>
<string name="pref_ui_theme_dark">Тъмно</string>
<string name="pref_ui_theme_title">Тема</string>
<string name="pref_ui_title">Персонализиране</string>
<string name="pref_ui_no_for_you">Страници за вас</string>
<string name="session_init">Подготвяме нещата…</string>
@@ -272,28 +262,16 @@
<string name="device_miui_extra">По желание можете да изберете Native installer, но тогава не можете да инсталирате пакетни (разделени) APK файлове, така че изборът е ваш.</string>
<string name="title_no_network">Няма мрежа</string>
<string name="title_purchase_history">История на покупките</string>
<string name="ui_accent_11">Светло синьо</string>
<string name="toast_apk_blacklisted">В черния списък</string>
<string name="toast_apk_whitelisted">В белия списък</string>
<string name="toast_clipboard_copied">Копирано в клипборда</string>
<string name="title_manual_download">Ръчно изтегляне</string>
<string name="ui_accent_10">Оранжев</string>
<string name="app_updater_service_notif_title">Изтегляне на фоново приложение</string>
<string name="toast_rated_success">Оценен</string>
<string name="ui_accent_2">Фуксия</string>
<string name="ui_accent_3">Червен</string>
<string name="ui_accent_4">Златен</string>
<string name="toast_rated_failed">Не може да се изпрати оценка</string>
<string name="toast_import_failed">Конфигурацията на устройството не можа да се импортира</string>
<string name="ui_accent_0">Система</string>
<string name="toast_aas_token_failed">Не можа да се генерира AAS Token</string>
<string name="toast_import_success">Конфигурацията на устройството е импортирана</string>
<string name="ui_accent_5">Зелено</string>
<string name="ui_accent_6">Лилаво</string>
<string name="ui_accent_8">Розово</string>
<string name="ui_accent_9">Лайм</string>
<string name="ui_accent_12">Disskord син</string>
<string name="ui_accent_13">Тъмносин</string>
<string name="notification_updates_available"><xliff:g id="apps_count">%1$d</xliff:g> налични актуализации</string>
<string name="notification_updates_available_1"><xliff:g id="apps_count">%1$d</xliff:g> налична актуализация</string>
<string name="notification_updates_available_desc_3"><xliff:g id="app_one_name">%1$s</xliff:g>, <xliff:g id="app_two_name">%2$s</xliff:g> и <xliff:g id="app_three_name">%3$s</xliff:g></string>

View File

@@ -81,12 +81,6 @@
<string name="filter_review_one">এক</string>
<string name="download_canceled">বাতিলকৃত</string>
<string name="menu_disclaimer">দ্রষ্টব্য</string>
<string name="pref_ui_accent_title">একসেন্ট</string>
<string name="pref_ui_theme_black">কালো</string>
<string name="pref_ui_theme_dark">অন্ধকার</string>
<string name="pref_ui_theme_title">রঙ</string>
<string name="pref_ui_theme_darkord">ডিসকোর্ড</string>
<string name="pref_ui_theme_light">আলো</string>
<string name="details_permission">অনুমতি</string>
<string name="details_privacy">গোপনীয়তা</string>
<string name="filter_review_positive">ধনাত্মক</string>

View File

@@ -163,8 +163,6 @@
<string name="pref_filter_google_summary">Elimina totes les aplicacions de Google dels resultats de cerca i de les categories d\'aplicacions</string>
<string name="pref_install_mode_root">Instal·lador root</string>
<string name="pref_network_title">Xarxes</string>
<string name="pref_ui_theme_dark_x">Fosc X</string>
<string name="pref_ui_accent_title">Color</string>
<string name="onboarding_permission_installer">Permís de l\'instal·lador</string>
<string name="onboarding_permission_installer_desc">Permet instal·lar aplicacions des d\'Aurora Store</string>
<string name="pref_abandon_session">Forçar la neteja de les sessions dinstal·lació</string>
@@ -183,11 +181,6 @@
<string name="pref_install_mode_session">Instal·lador de sessió</string>
<string name="pref_install_mode_summary">Seleccionar el mode d\'instal·lació de l\'APK</string>
<string name="pref_install_mode_title">Mètode d\'instal·lació</string>
<string name="pref_ui_theme_black">Negre</string>
<string name="pref_ui_theme_dark">Fosc</string>
<string name="pref_ui_theme_light">Clar</string>
<string name="pref_ui_theme_system">Seguir el sistema</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_title">Personalització</string>
<string name="pref_ui_layout">Disposició</string>
<string name="pref_ui_layout_tab">Seleccionar la pestanya per defecte</string>
@@ -249,21 +242,7 @@
<string name="toast_anonymous_restriction">No disponible en comptes anònims</string>
<string name="toast_developer_setting_failed">Activa la configuració de desenvolupador des de les del dispositiu per a obrir-la.</string>
<string name="notification_channel_updater_service">Servei de descàrregues d\'aplicacions en segon pla</string>
<string name="ui_accent_1">Blau</string>
<string name="ui_accent_3">Vermell</string>
<string name="ui_accent_5">Verd</string>
<string name="ui_accent_6">Porpra</string>
<string name="ui_accent_2">Fúcsia</string>
<string name="ui_accent_4">Daurat</string>
<string name="ui_accent_7">Gris</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_9">Llima</string>
<string name="ui_accent_10">Taronja</string>
<string name="ui_accent_11">Blau clar</string>
<string name="ui_accent_13">Blau intens</string>
<string name="ui_accent_12">Blau Disskord</string>
<string name="title_spoof_manager">Gestor de falsificacions</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="purchase_invalid">Aplicació no comprada</string>
<string name="title_about">Quant a</string>
<string name="download_paused">En pausa • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>

View File

@@ -10,7 +10,6 @@
<string name="toast_spoof_applied">Device spoof byl použit.</string>
<string name="toast_apk_whitelisted">Na whitelistu</string>
<string name="insecure_anonymous_apply">Chcete-li použít změny, nezapomeňte se znovu přihlásit a restartovat aplikaci.</string>
<string name="pref_ui_theme_light">Světlý</string>
<string name="toast_manual_available">Gratuluji, požadovaný kód verze je k dispozici, nyní stahuji.</string>
<string name="toast_purchase_blocked">Nákupy aplikací nejsou na anonymních účtech dostupné.</string>
<string name="toast_permission_granted">Oprávnění uděleno</string>
@@ -61,13 +60,6 @@
<string name="pref_ui_layout_tab">Vybrat výchozí kartu</string>
<string name="pref_ui_layout">Rozložení</string>
<string name="pref_ui_title">Přizpůsobení</string>
<string name="pref_ui_theme_title">Motiv</string>
<string name="pref_ui_theme_system">Podle systému</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Tmavý X</string>
<string name="pref_ui_theme_dark">Tmavý</string>
<string name="pref_ui_theme_black">Černý</string>
<string name="pref_ui_accent_title">Barva</string>
<string name="pref_network_title">Síť</string>
<string name="pref_install_mode_title">Způsob instalace</string>
<string name="pref_install_mode_summary">Vyberte režim instalace APK</string>
@@ -253,25 +245,11 @@
<string name="notification_channel_updater_service">Služba stahování aplikací na pozadí</string>
<string name="installer_am_unavailable">Nainstalujte si aplikaci App Manager nebo změnte instalátor.</string>
<string name="pref_install_mode_am">AM instalátor</string>
<string name="ui_accent_1">Modrá</string>
<string name="ui_accent_2">Fuchsie</string>
<string name="ui_accent_3">Červená</string>
<string name="ui_accent_4">Zlatá</string>
<string name="ui_accent_5">Zelená</string>
<string name="ui_accent_6">Fialová</string>
<string name="ui_accent_7">Šedá</string>
<string name="ui_accent_8">Růžová</string>
<string name="ui_accent_9">Limetka</string>
<string name="ui_accent_10">Oranžová</string>
<string name="ui_accent_11">Světle modrá</string>
<string name="ui_accent_12">Disskord modrá</string>
<string name="ui_accent_13">Tmavě modrá</string>
<string name="download_progress">Stahování • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="download_eta_hrs">Zbývá %1$dh %2$dm %3$ds</string>
<string name="search_hint">Hledat aplikace a hry</string>
<string name="download_eta_min">Zbývá %1$dm %2$ds</string>
<string name="download_eta_sec">Zbývá %1$ds</string>
<string name="ui_accent_0">Systémová</string>
<string name="update_available">dostupná aktualizace</string>
<string name="expand">Rozbalit</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>

View File

@@ -109,27 +109,11 @@
<string name="pref_filter_google_title">Filtrer Google apps</string>
<string name="pref_filter_google_summary">Fjerner alle Google apps fra søgeresultater og kategorier</string>
<string name="pref_install_mode_am">AM installatør.</string>
<string name="pref_ui_theme_dark">Mørk</string>
<string name="pref_ui_theme_system">Følg systemet</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_layout">Layout</string>
<string name="purchase_not_found">Appen kunne ikke findes</string>
<string name="pref_ui_similar_apps_desc">Vis lignende og relaterede klynger på appens detaljeside</string>
<string name="spoof_apply">Husk at logge ind igen for at anvende den nye forfalskning</string>
<string name="title_manual_download">Manuelt download</string>
<string name="ui_accent_1">Blå</string>
<string name="ui_accent_2">Fuchsia</string>
<string name="ui_accent_3">Rød</string>
<string name="ui_accent_4">Gylden</string>
<string name="ui_accent_5">Grøn</string>
<string name="ui_accent_6">Lilla</string>
<string name="ui_accent_7">Grå</string>
<string name="ui_accent_8">Pink</string>
<string name="ui_accent_9">Limegrøn</string>
<string name="ui_accent_10">Orange</string>
<string name="ui_accent_11">Lyseblå</string>
<string name="ui_accent_12">Diskkord blå</string>
<string name="ui_accent_13">Dyb blå</string>
<string name="toast_apk_whitelisted">Hvidlistet</string>
<string name="toast_developer_setting_failed">Aktiver udviklerindstillinger fra enhedens indstillinger for at åbne dem.</string>
<string name="toast_clipboard_copied">Kopieret til udklipsholderen</string>
@@ -192,11 +176,6 @@
<string name="pref_install_mode_summary">Vælg APK installationsmodus</string>
<string name="pref_install_mode_title">Installationsmetode</string>
<string name="pref_network_title">Netværk</string>
<string name="pref_ui_accent_title">Accent</string>
<string name="pref_ui_theme_black">Sort</string>
<string name="pref_ui_theme_dark_x">Mørk X</string>
<string name="pref_ui_theme_darkord">Disskord</string>
<string name="pref_ui_theme_light">Lys</string>
<string name="pref_ui_title">Tilpasning</string>
<string name="pref_ui_layout_tab">Vælg standardfanen</string>
<string name="pref_ui_no_for_you">\"Til dig\" sider</string>

View File

@@ -104,10 +104,6 @@
<string name="purchase_no_file">Keine Dateien erhalten</string>
<string name="purchase_failed">Download fehlgeschlagen</string>
<string name="pref_ui_title">Anpassung</string>
<string name="pref_ui_theme_light">Hell</string>
<string name="pref_ui_theme_dark_x">Dunkel X</string>
<string name="pref_ui_theme_dark">Dunkel</string>
<string name="pref_ui_theme_black">Schwarz</string>
<string name="pref_install_mode_title">Installationsmethode</string>
<string name="pref_install_mode_summary">Methode der APK-Installation wählen</string>
<string name="pref_install_mode_services">Mit Aurora Services (Veraltet)</string>
@@ -217,10 +213,6 @@
<string name="about_paypal_summary">Mit PayPal spenden</string>
<string name="tab_top_grossing">Erfolgreich</string>
<string name="tab_editor_choice">Auswahl der Redaktion</string>
<string name="pref_ui_theme_title">Darstellung</string>
<string name="pref_ui_theme_system">System</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_accent_title">Akzentfarbe</string>
<string name="pref_install_mode_session">Sitzungs-Installation</string>
<string name="pref_install_mode_root">Root-Installation</string>
<string name="pref_install_mode_native">Systemeigene Installation (Veraltet)</string>
@@ -253,19 +245,6 @@
<string name="app_updater_service_notif_text">Ermöglicht das Herunterladen von Apps im Hintergrund</string>
<string name="installer_am_unavailable">Diese Methode ist für Installationen nicht verfügbar. Den „App Manager“ installieren oder die Installationsmethode ändern.</string>
<string name="pref_install_mode_am">Mit App Manager</string>
<string name="ui_accent_1">Blau</string>
<string name="ui_accent_2">Magenta</string>
<string name="ui_accent_3">Rot</string>
<string name="ui_accent_4">Gold</string>
<string name="ui_accent_5">Grün</string>
<string name="ui_accent_6">Violett</string>
<string name="ui_accent_7">Grau</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_9">Lindgrün</string>
<string name="ui_accent_10">Orange</string>
<string name="ui_accent_11">Hellblau</string>
<string name="ui_accent_12">Discord-Blau</string>
<string name="ui_accent_13">Dunkelblau</string>
<string name="session_enjoy">Anmelden und genießen.</string>
<string name="session_good">Boah! Alles gut.</string>
<string name="session_init">Vorbereitung läuft</string>
@@ -282,7 +261,6 @@
<string name="onboarding_permission_notifications_desc">Benachrichtigungen zum Stand der Installationen senden</string>
<string name="session_verifying_google">Google-Sitzung wird überprüft</string>
<string name="title_advanced">Erweitert</string>
<string name="ui_accent_0">System</string>
<string name="updates_available">Updates verfügbar</string>
<string name="error">Es ist ein Fehler aufgetreten!</string>
<string name="update_available">Update verfügbar</string>

View File

@@ -171,10 +171,8 @@
<string name="onboarding_permission_installer_desc">Επιτρέψτε την εγκατάσταση εφαρμογών από το Aurora Store</string>
<string name="pref_filter_google_summary">Αγνοεί τις εφαρμογές Google από τις Ενημερώσεις και εγκατεστημένες εφαρμογές</string>
<string name="pref_install_mode_session">Εγκαταστάτης συνεδρίας</string>
<string name="pref_ui_accent_title">Προφορά</string>
<string name="pref_filter_fdroid_summary">Αγνοεί εφαρμογές F-Droid από Ενημερώσεις και Εγκατεστημένες εφαρμογές</string>
<string name="pref_dialog_to_apply_restart">Αυτή η ρύθμιση θα εφαρμοστεί μετά την επανεκκίνηση της εφαρμογής</string>
<string name="pref_ui_theme_system">Όπως το σύστημα</string>
<string name="pref_ui_layout_tab">Επιλέξτε προεπιλεγμένη καρτέλα</string>
<string name="pref_filter_google_title">Φιλτράρετε τις εφαρμογές Google</string>
<string name="pref_install_delete_summary">Τα κατεβασμένα APK θα διαγραφούν αμέσως μετά την εγκατάσταση</string>
@@ -207,16 +205,13 @@
<string name="pref_ui_layout">Διάταξη</string>
<string name="pref_install_mode_summary">Επιλέξτε τον τρόπο εγκατάστασης του APK</string>
<string name="pref_install_mode_title">Μέθοδος εγκατάστασης</string>
<string name="pref_ui_theme_light">Φωτεινό</string>
<string name="title_language">Γλώσσα</string>
<string name="pref_ui_theme_dark">Σκοτεινό</string>
<string name="title_apps">Εφαρμογές</string>
<string name="tab_top_free">Κορυφαίες δωρεάν</string>
<string name="onboarding_permission_installer">Δικαίωμα εγκατάστασης</string>
<string name="pref_install_mode_root">Εγκαταστάτης Root</string>
<string name="purchase_invalid">Η εφαρμογή δεν αγοράστηκε</string>
<string name="title_spoof_manager">Διαχείριση spoof</string>
<string name="pref_ui_theme_dark_x">Σκοτεινό Χ</string>
<string name="title_apps_games">Εφαρμογές &amp; παιχνίδια</string>
<string name="pref_install_delete_title">Διαγραφή APK μετά την εγκατάσταση</string>
<string name="pref_ui_similar_apps">Παρόμοιες και σχετικές εφαρμογές</string>
@@ -225,9 +220,7 @@
<string name="title_about">Σχετικά με</string>
<string name="pref_ui_no_for_you">Σελίδες για Εσάς</string>
<string name="title_installation">Εγκατάσταση</string>
<string name="pref_ui_theme_black">Μαύρο</string>
<string name="tab_top_charts">Κορυφαίες εφαρμογές</string>
<string name="pref_ui_theme_title">Θέμα</string>
<string name="tab_trending">Τάσεις</string>
<string name="title_apps_sale">αρμογές προς πώληση</string>
<string name="title_games">Παιχνίδια</string>
@@ -238,7 +231,6 @@
<string name="toast_apk_whitelisted">Στην άσπρη λίστα</string>
<string name="filter_review_two">Δύο</string>
<string name="filter_review_three">Τρεις</string>
<string name="pref_ui_theme_darkord">Discοrd</string>
<string name="filter_review_positive">Θετικός</string>
<string name="toast_apk_blacklisted">Μπήκε στη μαύρη λίστα</string>
<string name="tab_top_grossing">Κορυφαίες Πωλήσεις</string>
@@ -250,19 +242,6 @@
<string name="toast_rated_failed">Δεν ήταν δυνατή η υποβολή αξιολόγησης</string>
<string name="toast_aas_token_failed">Δεν ήταν δυνατή η δημιουργία AAS Token</string>
<string name="toast_purchase_blocked">Οι αγορές εφαρμογών δεν είναι διαθέσιμες σε ανώνυμους λογαριασμούς.</string>
<string name="ui_accent_1">Μπλε</string>
<string name="ui_accent_2">Φούξια</string>
<string name="ui_accent_3">Κόκκινο</string>
<string name="ui_accent_4">Χρυσό</string>
<string name="ui_accent_5">Πράσινο</string>
<string name="ui_accent_6">Μωβ</string>
<string name="ui_accent_7">Γκρι</string>
<string name="ui_accent_8">Ροζ</string>
<string name="ui_accent_9">Λεμονί</string>
<string name="ui_accent_10">Πορτοκαλί</string>
<string name="ui_accent_11">Ανοιχτό μπλε</string>
<string name="ui_accent_12">Disskord μπλε</string>
<string name="ui_accent_13">Βαθύ μπλε</string>
<string name="installer_am_unavailable">Εγκατάστησε το Διαχειριστή εφαρμογών ή άλλαξε το πρόγραμμα εγκατάστασης.</string>
<string name="pref_abandon_session">Εξαναγκασμός εκκαθάρισης συνεδριάσεων</string>
<string name="action_home_screen">Προσθήκη στην Αρχική οθόνη</string>
@@ -336,7 +315,6 @@
<string name="pref_updates_auto_off">Να μη γίνει αυτόματη ενημέρωση εφαρμογών</string>
<string name="pref_updates_auto_notify">Έλεγχος &amp; ειδοποίηση για διαθέσιμες ενημερώσεις</string>
<string name="pref_updates_auto_install">Έλεγχος &amp; εγκατάσταση διαθέσιμων ενημερώσεων αυτόματα</string>
<string name="ui_accent_0">Σύστημα</string>
<string name="error">Προέκυψε σφάλμα!</string>
<string name="expand">Επέκταση</string>
<string name="access_denied_using_vpn">Πρόσβαση απορρίφθη! Χρησιμοποιείς VPN ή Tor;</string>

View File

@@ -125,9 +125,6 @@
<string name="pref_install_mode_root">Ĉefuzanta instalilo</string>
<string name="pref_install_mode_summary">Elekti reĝimon de APK instalado</string>
<string name="pref_install_mode_title">Instalada maniero</string>
<string name="pref_ui_theme_dark_x">Malluma Ĵ</string>
<string name="pref_ui_theme_darkord">Diskokordo</string>
<string name="pref_ui_theme_system">Laŭ operaciumo</string>
<string name="pref_ui_layout">Aranĝo</string>
<string name="purchase_failed">Elŝuto malsukcesa</string>
<string name="purchase_unsupported">Apo ne subtenata</string>
@@ -153,13 +150,8 @@
<string name="installer_status_success">Sukcese instalita</string>
<string name="onboarding_title_installer">Instalilo</string>
<string name="onboarding_title_permissions">Permesoj</string>
<string name="pref_ui_theme_light">Luma</string>
<string name="pref_ui_theme_title">Etoso</string>
<string name="pref_ui_theme_black">Nigra</string>
<string name="purchase_invalid">Apo ne aĉetita</string>
<string name="pref_install_mode_session">Seanca instalilo</string>
<string name="pref_ui_accent_title">Emfazo</string>
<string name="pref_ui_theme_dark">Malluma</string>
<string name="title_account_manager">Kontoj</string>
<string name="title_installed">Instalitaj</string>
<string name="title_settings">Agordoj</string>
@@ -248,9 +240,7 @@
<string name="pref_downloader_wifi_title">Elŝuti nur per vifio</string>
<string name="action_logout_confirmation_title">Ĉu vi volas elsaluti?</string>
<string name="action_enabled">Ŝaltita</string>
<string name="ui_accent_3">Ruĝa</string>
<string name="title_download_playstore">Play Store</string>
<string name="ui_accent_13">Malhelblua</string>
<string name="spoof_apply">Bonvolu reensaluti por startigi la ŝajnigo</string>
<string name="title_spoof_manager">Ŝajnigilo</string>
<string name="title_search_suggestion">Serĉsugesto</string>
@@ -258,7 +248,6 @@
<string name="toast_purchase_blocked">Apojn aĉetoj maldisponebla per anonimaj kontoj.</string>
<string name="toast_import_success">Aparaton agordo importita</string>
<string name="app_updater_service_notif_text">Ebligi fone elŝutadon de apoj</string>
<string name="ui_accent_6">Viola</string>
<string name="bad_request">Interna miso! Bonvolu reprovi pli malfrue</string>
<string name="check_connectivity">Kontrolas interretan konekton</string>
<string name="action_get_local_apk">Apon kunligaĵon konservi</string>
@@ -282,20 +271,16 @@
<string name="title_purchase_history">Aĉethistorio</string>
<string name="tab_top_grossing">Sukcesaj</string>
<string name="toast_export_success">Aparaton agordo eksportita</string>
<string name="ui_accent_5">Verda</string>
<string name="notification_updates_available_desc_1">Nova versio de <xliff:g id="app_one_name">%1$s</xliff:g> estas disponebla</string>
<string name="login_rate_limited">Ups, via ofeco de petoj estas limigata</string>
<string name="purchase_session_expired">La seanca estas finita, reensalutu por eki novan seancon.</string>
<string name="ui_accent_10">Oranĝa</string>
<string name="notification_updates_available"><xliff:g id="apps_count">%1$d</xliff:g> ĝisdatigoj disponeblaj</string>
<string name="pref_updates_auto">Apojn aŭtomate ĝisdatigi</string>
<string name="toast_export_failed">Eksporto de la aparaton agordo fiaskis</string>
<string name="title_blacklist_manager">Nigran liston administri</string>
<string name="ui_accent_0">Sistema</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>
<string name="action_favourite">Marki kiel preferato</string>
<string name="toast_anonymous_restriction">Maldisponebla per anonimaj kontoj</string>
<string name="ui_accent_12">Disskordblua</string>
<string name="rate_limited">Ups, la ofteco de petoj de tiu konto estas limigata!</string>
<string name="update_available">ĝisdatigo disponebla</string>
<string name="error">Miso okasis!</string>
@@ -321,8 +306,6 @@
<string name="toast_import_failed">Importo de la aparaton agordo fiaskis</string>
<string name="notification_channel_updater_service">Fone-apon-elŝutilo</string>
<string name="app_updater_service_notif_title">Fone apon elŝutado</string>
<string name="ui_accent_9">Limekolora</string>
<string name="ui_accent_11">Helblua</string>
<string name="item_required">Necesa</string>
<string name="item_optional">Fakultativa</string>
<string name="notification_updates_available_desc_3"><xliff:g id="app_one_name">%1$s</xliff:g>, <xliff:g id="app_two_name">%2$s</xliff:g> kaj <xliff:g id="app_three_name">%3$s</xliff:g></string>
@@ -333,10 +316,6 @@
<string name="failed_to_fetch_report">Privatecraporton alportado fiaskis</string>
<string name="app_link_enabled">Apon ligilo ŝaltita!</string>
<string name="check_updates">Serĉas ĝidatigojn</string>
<string name="ui_accent_1">Blua</string>
<string name="ui_accent_4">Ora</string>
<string name="ui_accent_7">Griza</string>
<string name="ui_accent_8">Roza</string>
<string name="access_denied_using_vpn">Atingon rifuzita! Ĉu vi uzas VPN aŭ Tor?</string>
<string name="failed_to_generate_session">Seancon generado fiaskis</string>
<string name="pref_ui_layout_tab">Elekti defaŭltan paĝon</string>

View File

@@ -42,14 +42,6 @@
<string name="purchase_invalid">Aplicación no adquirida</string>
<string name="purchase_failed">La descarga falló</string>
<string name="pref_ui_title">Personalización</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_theme_system">Seguir al sistema</string>
<string name="pref_ui_theme_light">Claro</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Oscuro X</string>
<string name="pref_ui_theme_dark">Oscuro</string>
<string name="pref_ui_theme_black">Negro</string>
<string name="pref_ui_accent_title">Acento</string>
<string name="pref_install_mode_title">Método de instalación</string>
<string name="pref_install_mode_summary">Seleccione el modo de instalación del APK</string>
<string name="pref_install_mode_session">Instalador de sesión</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Servicio de descargas de aplicaciones en segundo plano</string>
<string name="installer_am_unavailable">Instalar Gestor de aplicaciones o cambiar el instalador.</string>
<string name="pref_install_mode_am">Instalador AM</string>
<string name="ui_accent_1">Azul</string>
<string name="ui_accent_3">Rojo</string>
<string name="ui_accent_5">Verde</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_11">Azul claro</string>
<string name="ui_accent_12">Azul Disskord</string>
<string name="ui_accent_7">Gris</string>
<string name="ui_accent_2">Fucsia</string>
<string name="ui_accent_4">Dorado</string>
<string name="ui_accent_6">Morado</string>
<string name="ui_accent_9">Lima</string>
<string name="ui_accent_10">Naranja</string>
<string name="ui_accent_13">Azul oscuro</string>
<string name="download_paused">En pausa • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
<string name="download_eta_hrs">Quedan %1$d horas, %2$d minutos, %3$d segundos</string>
<string name="download_eta_min">Quedan %1$d minutos %2$d segundos</string>
@@ -278,7 +257,6 @@
<string name="session_verifying">Verificando la sesión</string>
<string name="session_verifying_google">Verificando la sesión de Google</string>
<string name="title_advanced">Avanzado</string>
<string name="ui_accent_0">Sistema</string>
<string name="expand">Expandir</string>
<string name="permissions_denied">Se han denegado los permisos necesarios. Por favor, concédelos para continuar la acción</string>
<string name="search_hint">Buscar las aplicaciones y los juegos</string>

View File

@@ -49,14 +49,6 @@
<string name="purchase_invalid">Ez da aplikazioa erosi</string>
<string name="purchase_failed">Alferrikako deskarga</string>
<string name="pref_ui_title">Personalizazioa</string>
<string name="pref_ui_theme_title">Diseinua</string>
<string name="pref_ui_theme_system">Sistemaren berdina</string>
<string name="pref_ui_theme_light">Argitsua</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Ilun X</string>
<string name="pref_ui_theme_dark">Iluna</string>
<string name="pref_ui_theme_black">Beltza</string>
<string name="pref_ui_accent_title">Azentua</string>
<string name="pref_install_mode_title">Instalazio modua</string>
<string name="pref_install_mode_summary">Aukeratu APK-ak instalatzeko modua</string>
<string name="pref_install_mode_session">Saio instalatzailea</string>
@@ -248,19 +240,6 @@
<string name="dialog_desc_native_split">Aplikazio elkartuak (zatituak) ezin dira instalatzaile natiboaren bidez instalatu. Aldatu instalatzailea Session, Services edo Root-era.</string>
<string name="details_no_app_match">Ez da aurkitu bat datorren aplikaziorik</string>
<string name="action_check">Egiaztatu</string>
<string name="ui_accent_1">Urdina</string>
<string name="ui_accent_2">Fuksia</string>
<string name="ui_accent_3">Gorria</string>
<string name="ui_accent_4">Urre kolorea</string>
<string name="ui_accent_5">Berdea</string>
<string name="ui_accent_6">Morea</string>
<string name="ui_accent_7">Grisa</string>
<string name="ui_accent_8">Arrosa</string>
<string name="ui_accent_9">Lima</string>
<string name="ui_accent_10">Laranja</string>
<string name="ui_accent_11">Urdin argia</string>
<string name="ui_accent_12">Diskord urdina</string>
<string name="ui_accent_13">Urdin sakona</string>
<string name="installer_am_unavailable">Instalatu App Manager edo aldatu instalatzailea.</string>
<string name="app_updater_service_notif_text">Aplikazioak bigarren mailan deskargatzeko aukera ematen du</string>
<string name="pref_install_mode_am">AM instalatzailea</string>
@@ -277,7 +256,6 @@
<string name="title_advanced">Aurreratua</string>
<string name="toast_import_success">Gailuaren konfigurazioa inportatuta</string>
<string name="toast_import_failed">Ezin izan da gailuaren konfigurazioa inportatu</string>
<string name="ui_accent_0">Sistema</string>
<string name="rate_limited">Hara, kontu honek tasa mugatua du!</string>
<string name="error">Errore bat gertatu da!</string>
<string name="menu">Menua</string>

View File

@@ -8,9 +8,6 @@
<string name="title_account_manager">حساب ها</string>
<string name="title_about">درباره</string>
<string name="tab_for_you">برای شما</string>
<string name="pref_ui_theme_light">روشَن</string>
<string name="pref_ui_theme_dark">تیره</string>
<string name="pref_ui_theme_black">سیاه</string>
<string name="pref_filter_fdroid_summary">حذف برنامه های F-Droid از لیست برنامه‌ها</string>
<string name="onboarding_title_welcome">خوش‌آمَدید</string>
<string name="filter_review_five">پنج</string>
@@ -53,7 +50,6 @@
<string name="pref_ui_no_for_you">برگه‌های برای شما</string>
<string name="pref_ui_layout_tab">برگزیدن برگه پیش فرض</string>
<string name="pref_ui_title">سفارشی سازی</string>
<string name="pref_ui_theme_title">پوسته</string>
<string name="pref_ui_layout">چیدمان</string>
<string name="purchase_failed">بارگیری شکست خورد</string>
<string name="tab_trending">پرطرفدار</string>
@@ -154,7 +150,6 @@
<string name="details_more_about_app">بیشتر درباره ی برنامه</string>
<string name="details_privacy">حریم شخصی</string>
<string name="details_no_updates">هیچ آپدیتی وجود ندارد</string>
<string name="ui_accent_13">آبی پررنگ</string>
<string name="details_changelog_unavailable">تغییرات ارائه نشده است</string>
<string name="details_contains_ads">حاوی آگهی است</string>
<string name="details_no_app_match">برنامه ای پیدا نشد</string>
@@ -178,13 +173,11 @@
<string name="tab_categories">دسته بندی ها</string>
<string name="download_speed_estimating">برآورد</string>
<string name="installer_status_failure_session">جلسه ایجاد نشد</string>
<string name="pref_ui_accent_title">تم</string>
<string name="pref_abandon_session_desc">پاک کردن جلسات نصب رها شده یا در انتظار</string>
<string name="exodus_substring">ردیاب(های) موجود در</string>
<string name="filter_review_positive">مثبت</string>
<string name="installer_status_user_action">در انتظار تایید کاربر</string>
<string name="pref_install_delete_summary">فایل های APKs به طور پیش فرض حذف خواهند شد</string>
<string name="pref_ui_theme_system">پیروی از سیستم</string>
<string name="exodus_view_report">مشاهده گزارش</string>
<string name="dialog_title_self_update">بروزرسانی جدید در دسترس</string>
<string name="installer_status_failure_invalid">APK نامعتبر یا خراب است</string>
@@ -217,18 +210,6 @@
<string name="toast_developer_setting_failed">تنظیمات توسعه دهنده را از تنظیمات دستگاه روشن کنید تا آنها را باز کنید.</string>
<string name="toast_rated_failed">نمی تواند امتیاز را ارسال کند</string>
<string name="installer_status_failure">نصب کننده ناموفق بود</string>
<string name="ui_accent_1">آبی</string>
<string name="ui_accent_3">قرمز</string>
<string name="ui_accent_4">طلایی</string>
<string name="ui_accent_5">سبز</string>
<string name="ui_accent_2">ارغوانی</string>
<string name="ui_accent_6">بنفش</string>
<string name="ui_accent_7">خاکستری</string>
<string name="ui_accent_12">آبی تند</string>
<string name="ui_accent_8">صورتی</string>
<string name="ui_accent_9">لیمویی</string>
<string name="ui_accent_10">نارنجی</string>
<string name="ui_accent_11">آبی روشن</string>
<string name="purchase_invalid">برنامه خریداری نشده است</string>
<string name="purchase_unsupported">برنامه پشتیبانی نمی شود</string>
<string name="purchase_session_expired">جلسه منقضی شد، برای دریافت جلسه جدید دوباره وارد شوید.</string>
@@ -255,7 +236,6 @@
<string name="pref_filter_google_title">فیلتر کردن برنامه های گوگل</string>
<string name="pref_install_delete_title">حذف APK پس از نصب</string>
<string name="pref_install_mode_am">نصب کننده AM.</string>
<string name="pref_ui_theme_dark_x">دارک ایکس</string>
<string name="pref_ui_similar_apps_desc">نمایش خوشه های مشابه و مرتبط در صفحه جزئیات برنامه</string>
<string name="spoof_apply">اطمینان حاصل کنید که برای اعمال پارامتر جعلی دوباره وارد سیستم شوید</string>
<string name="tab_editor_choice">انتخاب سردبیران</string>
@@ -265,10 +245,8 @@
<string name="toast_export_success">پیکربندی دستگاه صادر شد</string>
<string name="notification_channel_updater_service">سرویس دانلود پس زمینه برنامه</string>
<string name="app_updater_service_notif_text">امکان دانلود برنامه پس زمینه را فراهم می کند</string>
<string name="pref_ui_theme_darkord">دیسکورد</string>
<string name="session_enjoy">وارد شوید و لذت ببرید.</string>
<string name="session_good">وای! همه چی خوبه.</string>
<string name="ui_accent_0">سیستم</string>
<string name="menu">منو</string>
<string name="update_available">به روز رسانی موجود است</string>
<string name="updates_available">به روز رسانی در دسترس است</string>

View File

@@ -64,8 +64,6 @@
<string name="pref_app_download">Lataukset</string>
<string name="pref_filter_fdroid_summary">Poistaa F-Droid-sovellukset sovellusluetteloista</string>
<string name="pref_filter_fdroid_title">Suodata F-Droidi-sovellukset</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_black">Musta</string>
<string name="pref_ui_no_for_you">Sinulle-sivut</string>
<string name="pref_ui_similar_apps">Samankaltaiset ja vastaavat sovellukset</string>
<string name="purchase_failed">Lataaminen epäonnistui</string>
@@ -203,12 +201,6 @@
<string name="pref_ui_layout_tab">Valitse oletusvälilehti</string>
<string name="pref_ui_layout">Ulkoasu</string>
<string name="pref_ui_title">Mukauttaminen</string>
<string name="pref_ui_theme_title">Teema</string>
<string name="pref_ui_theme_system">Järjestelmän mukainen</string>
<string name="pref_ui_theme_light">Vaalea</string>
<string name="pref_ui_theme_dark_x">Tumma X</string>
<string name="pref_ui_theme_dark">Tumma</string>
<string name="pref_ui_accent_title">Korostus</string>
<string name="pref_network_title">Verkkoyhteys</string>
<string name="pref_install_mode_title">Asennustapa</string>
<string name="pref_install_mode_summary">Valitse APK-asennustapa</string>
@@ -253,19 +245,6 @@
<string name="app_updater_service_notif_title">Taustalla sovelluksen lataaminen</string>
<string name="installer_am_unavailable">Asenna App Manager tai vaihda asennusohjelmaa.</string>
<string name="pref_install_mode_am">AM-asennusohjelma</string>
<string name="ui_accent_11">Vaaleansininen</string>
<string name="ui_accent_1">Sininen</string>
<string name="ui_accent_4">Kultainen</string>
<string name="ui_accent_10">Oranssi</string>
<string name="ui_accent_2">Fuksia</string>
<string name="ui_accent_3">Punainen</string>
<string name="ui_accent_5">Vihreä</string>
<string name="ui_accent_6">Violetti</string>
<string name="ui_accent_7">Harmaa</string>
<string name="ui_accent_8">Vaaleanpunainen</string>
<string name="ui_accent_9">Limetinvihreä</string>
<string name="ui_accent_12">Disskord-sininen</string>
<string name="ui_accent_13">Tummansininen</string>
<string name="download_progress">Lataus • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="onboarding_permission_notifications">Ilmoitukset</string>
<string name="session_enjoy">Kirjaudu sisään ja nauti.</string>
@@ -288,7 +267,6 @@
<string name="session_verifying">Vahvistetaan istuntoa</string>
<string name="session_verifying_google">Googlen istuntoa tarkistetaan</string>
<string name="title_advanced">Edistynyt</string>
<string name="ui_accent_0">Järjestelmä</string>
<string name="updates_available">päivityksiä saatavilla</string>
<string name="rate_limited">Upsi, tämä tili on rajoitettu!</string>
<string name="error">Tapahtui virhe!</string>

View File

@@ -29,8 +29,6 @@
<string name="pref_filter_fdroid_title">Filtrer les applications F-droid</string>
<string name="pref_filter_google_title">Filtrer les applications Google</string>
<string name="pref_install_mode_title">Méthode dinstallation</string>
<string name="pref_ui_theme_black">Noir</string>
<string name="pref_ui_theme_dark_x">Sombre X</string>
<string name="title_about">À propos</string>
<string name="tab_trending">Tendances</string>
<string name="title_apps_games">Mes applis et jeux</string>
@@ -143,14 +141,10 @@
<string name="action_back">Retour</string>
<string name="account_logout">Se déconnecter dAurora</string>
<string name="account_login_using">Se connecter via</string>
<string name="pref_ui_theme_dark">Sombre</string>
<string name="purchase_no_file">Impossible dobtenir les fichiers</string>
<string name="purchase_invalid">Application non achetée</string>
<string name="purchase_failed">Le téléchargement a échoué</string>
<string name="pref_ui_title">Personnalisation</string>
<string name="pref_ui_theme_title">Thème</string>
<string name="pref_ui_theme_system">Selon le système</string>
<string name="pref_ui_theme_light">Clair</string>
<string name="tab_categories">Catégories</string>
<string name="tab_for_you">Pour vous</string>
<string name="tab_editor_choice">Choix de léquipe</string>
@@ -187,8 +181,6 @@
<string name="device_miui_extra">Si vous voulez, vous pouvez choisir le programme dinstallation natif, mais dans ce cas, vous ne pourrez pas installer dAPK groupés (fractionnés); vous êtes libre de choisir.</string>
<string name="device_miui_description">Veuillez désactiver les optimisations MIUI pour autoriser les installations, sinon vous pouvez choisir le programme dinstallation racine ou services.</string>
<string name="device_miui_subtitle">Le programme dinstallation de session ne peut pas installer dapplications en raison des optimisations MIUI.</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_accent_title">Couleur</string>
<string name="pref_install_mode_summary">Sélectionnez le mode dinstallation de lAPK</string>
<string name="pref_install_mode_session">Installateur de session</string>
<string name="pref_install_mode_services">Aurora Services (Déprécié)</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Service de téléchargement en arrière-plan des applis</string>
<string name="pref_install_mode_am">Installateur AM</string>
<string name="installer_am_unavailable">Installez App Manager ou changez le programme dinstallation.</string>
<string name="ui_accent_5">Vert</string>
<string name="ui_accent_4">Doré</string>
<string name="ui_accent_2">Fuchsia</string>
<string name="ui_accent_1">Bleu</string>
<string name="ui_accent_7">Gris</string>
<string name="ui_accent_8">Rose</string>
<string name="ui_accent_3">Rouge</string>
<string name="ui_accent_6">Violet</string>
<string name="ui_accent_9">Vert citron</string>
<string name="ui_accent_10">Orange</string>
<string name="ui_accent_12">Bleu Disskord</string>
<string name="ui_accent_13">Bleu foncé</string>
<string name="ui_accent_11">Bleu clair</string>
<string name="download_paused">En pause • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
<string name="session_enjoy">Connectez-vous et profitez.</string>
<string name="session_verifying">Vérification de la session</string>
@@ -279,7 +258,6 @@
<string name="expand">Développer</string>
<string name="server_maintenance">Serveur indisponible pour maintenance</string>
<string name="title_advanced">Avancé</string>
<string name="ui_accent_0">Système</string>
<string name="menu">Menu</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>
<string name="requesting_new_session">Demande dune nouvelle session</string>

View File

@@ -24,14 +24,6 @@
<string name="pref_ui_layout_tab">Seleccione a lapela por defecto</string>
<string name="pref_ui_layout">Deseño</string>
<string name="pref_ui_title">Personalización</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_theme_system">Definido polo sistema</string>
<string name="pref_ui_theme_light">Claro</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Escuro X</string>
<string name="pref_ui_theme_dark">Escuro</string>
<string name="pref_ui_theme_black">Negro</string>
<string name="pref_ui_accent_title">Acento</string>
<string name="pref_network_title">Rede</string>
<string name="pref_install_mode_title">Método de instalación</string>
<string name="pref_install_mode_summary">Seleccione o modo de instalación do APK</string>
@@ -253,19 +245,6 @@
<string name="tab_top_charts">Top da clasificación</string>
<string name="pref_install_mode_am">Instalador XA.</string>
<string name="installer_am_unavailable">Instale o Xestor de Aplicacións ou mude o instalador.</string>
<string name="ui_accent_2">Fucsia</string>
<string name="ui_accent_4">Dourado</string>
<string name="ui_accent_5">Verde</string>
<string name="ui_accent_6">Violeta</string>
<string name="ui_accent_7">Gris</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_11">Azul claro</string>
<string name="ui_accent_12">Azul Disskord</string>
<string name="ui_accent_13">Azul oscuro</string>
<string name="ui_accent_1">Azul</string>
<string name="ui_accent_3">Vermello</string>
<string name="ui_accent_9">Verde Lima</string>
<string name="ui_accent_10">Laranxa</string>
<string name="action_import">Importar</string>
<string name="session_enjoy">Inicie sesión e desfrute.</string>
<string name="session_good">Guau! Todo ben.</string>
@@ -296,7 +275,6 @@
<string name="menu">Menú</string>
<string name="search_hint">Buscar aplicacións e xogos</string>
<string name="server_maintenance">O servidor non está dispoñíbel por mantemento</string>
<string name="ui_accent_0">Sistema</string>
<string name="notification_channel_updates">Notificacións das actualizacións</string>
<string name="title_search_suggestion">Suxestións de busca</string>
<string name="title_search_results">Resultados da busca</string>

View File

@@ -13,12 +13,6 @@
<string name="about_bitcoin_btc">ביטקוין</string>
<string name="title_games">משחקים</string>
<string name="title_apps_games">היישומים והמשחקים שלי</string>
<string name="pref_ui_theme_title">ערכת נושא</string>
<string name="pref_ui_theme_system">לפי המערכת</string>
<string name="pref_ui_theme_light">בהירה</string>
<string name="pref_ui_theme_dark_x">כהה X</string>
<string name="pref_ui_theme_dark">כהה</string>
<string name="pref_ui_theme_black">שחורה</string>
<string name="title_language">שפה</string>
<string name="title_account_manager">חשבונות</string>
<string name="account_logout">התנתקות מ־Aurora</string>
@@ -156,7 +150,6 @@
<string name="onboarding_title_installer">שיטת התקנה</string>
<string name="download_completed">הורדה הושלמה</string>
<string name="download_canceled">בוטל</string>
<string name="pref_ui_accent_title">צבע נושא</string>
<string name="download_none">אין הורדות</string>
<string name="tab_top_grossing">הגרועים ביותר</string>
<string name="onboarding_permission_esm">מנהל אחסון חיצוני</string>
@@ -168,18 +161,6 @@
<string name="pref_install_mode_services">שירותי Aurora (לא עדכני)</string>
<string name="pref_network_title">תעבורת רשת</string>
<string name="title_manual_download">הורדה ידנית</string>
<string name="ui_accent_1">כחול</string>
<string name="ui_accent_2">פוקסיה</string>
<string name="ui_accent_3">אדום</string>
<string name="ui_accent_4">זהב</string>
<string name="ui_accent_5">ירוק</string>
<string name="ui_accent_6">סגול</string>
<string name="ui_accent_7">אפור</string>
<string name="ui_accent_8">ורוד</string>
<string name="ui_accent_9">ירקרק</string>
<string name="ui_accent_10">כתום</string>
<string name="ui_accent_11">תכלת</string>
<string name="ui_accent_13">כחול כהה</string>
<string name="purchase_invalid">לא רכשת את היישום</string>
<string name="exodus_progress">מתבצעת בדיקת עוקבנים…</string>
<string name="onboarding_permission_esa">גישה לאחסון חיצוני</string>
@@ -222,7 +203,6 @@
<string name="insecure_anonymous_apply">וודא שאתה מתחבר מחדש ומפעיל מחדש את האפליקציה כדי להחיל א ת השינויים.</string>
<string name="toast_developer_setting_failed">הפעל את הגדרות מפתח דרך הגדרות המכשיר כדי לפתוח אותם.</string>
<string name="onboarding_permission_esa_desc">כדי לשמור קבצי הרחבת APK (OBBs) עבור אפליקציות ומשחקים גדולים.</string>
<string name="pref_ui_theme_darkord">דיסקורד</string>
<string name="onboarding_permission_installer">הרשאות מתקין</string>
<string name="details_no_app_match">לא נמצא יישום תואם</string>
<string name="title_no_network">אין רשת</string>
@@ -266,7 +246,6 @@
<string name="pref_network_proxy_url">URL פרוקסי</string>
<string name="pref_updates_check_frequency_desc">הגדר תכיפות עדכונים אוטומטיים ועדכון עצמי, כל שעה.</string>
<string name="pref_aurora_only">יישומי חנות Aurora בלבד</string>
<string name="ui_accent_0">מערכת</string>
<string name="pref_network_proxy_title">פרוקסי</string>
<string name="pref_install_mode_shizuku">מתקין Shizuku</string>
<string name="action_post">פרסום</string>
@@ -275,7 +254,6 @@
<string name="action_enable">אפשר</string>
<string name="toast_import_failed">לא הצליח לייבא תצורת מכשיר</string>
<string name="download_eta_sec">%1$dשנ נותרו</string>
<string name="ui_accent_12">כחול דיסקורד</string>
<string name="app_links_desc">אשר לחנות Aurora לפתוח קישורים נתמכים</string>
<string name="requesting_new_session">מבקש כניסה חדשה</string>
<string name="amazon_appstore_desc">Amazon Appstore זאת חנות היישומים לפלטפורמות תואמות אנדרואיד שמופעלת ע\"י אמזון.</string>

View File

@@ -85,7 +85,6 @@
<string name="details_think_this_app">आप इस ऐप के बारे में क्या सोचते हैं\?</string>
<string name="onboarding_welcome_select">क्या हालचाल है\?</string>
<string name="onboarding_permission_esm">बाहरी स्टोरेज मैनेजर</string>
<string name="pref_ui_theme_dark_x">गहरा X</string>
<string name="details_beta">बीटा प्रोग्राम</string>
<string name="action_uninstall">अनइंस्टॉल करें</string>
<string name="download_cancel_all">सभी रद्द करें</string>
@@ -97,12 +96,10 @@
<string name="exodus_substring">ज्ञात ट्रैकर्स पाए गए</string>
<string name="pref_ui_no_for_you">\'आपके लिए\' पृष्ठ</string>
<string name="pref_ui_similar_apps">समान और संबंधित ऐप्स</string>
<string name="ui_accent_9">नीबू हरा</string>
<string name="pref_filter_google_title">गूगल ऐप्स फिल्टर करें</string>
<string name="pref_install_mode_native">मूल इंस्टॉलर (अस्वीकृत)</string>
<string name="pref_ui_layout_tab">तयशुदा टैब चुनें</string>
<string name="dialog_title_self_update">नया अपडेट उपलब्ध है</string>
<string name="ui_accent_10">नारंगी</string>
<string name="pref_ui_no_for_you_desc">होम स्क्रीन पर \'आपके लिए\' पृष्ठ प्रदर्शित करें</string>
<string name="details_beta_delay">नामांकन में कुछ समय लग सकता है, आप स्थिति बाद में देख सकते हैं।</string>
<string name="toast_clipboard_copied">क्लिपबोर्ड पर कॉपी किया गया</string>
@@ -113,13 +110,10 @@
<string name="installer_service_unavailable">1.0.9 या ऊपर की ऑरोरा सेवाएं इंस्टॉल करें, या इंस्टॉलर बदलें।</string>
<string name="details_permission">अनुमति</string>
<string name="title_apps_games">मेरे ऐप्स और गेम्स</string>
<string name="ui_accent_8">गुलाबी</string>
<string name="title_library">लाईब्रेरी</string>
<string name="pref_ui_accent_title">रंग</string>
<string name="title_language">भाषा</string>
<string name="notification_channel_alert">त्वरित सूचना</string>
<string name="pref_ui_layout">अभिन्यास</string>
<string name="ui_accent_13">गहरा नीला</string>
<string name="action_update">अपडेट करें</string>
<string name="filter_review_one">एक</string>
<string name="pref_filter_fdroid_title">F-Droid एप्स को फिल्टर करें</string>
@@ -139,15 +133,12 @@
<string name="notification_channel_updater_service">ऐप पृष्ठभूमि में डाउनलोड सेवा</string>
<string name="tab_trending">रुझान में</string>
<string name="pref_filter_fdroid_summary">अपडेट और इंस्टॉल किए गए ऐप्स में से F-Droid ऐप्स को अनदेखा करें</string>
<string name="pref_ui_theme_title">थीम</string>
<string name="title_games">गेम्स</string>
<string name="title_settings">सेटिंग</string>
<string name="ui_accent_12">डिस्कॉर्ड नीला</string>
<string name="onboarding_title_installer">इंस्टॉलर</string>
<string name="onboarding_permission_installer">इंस्टॉलर अनुमति</string>
<string name="title_apps_library">लाइब्रेरी में ऐप्स</string>
<string name="device_miui_title">MIUI का पता चला!</string>
<string name="pref_ui_theme_black">काला</string>
<string name="tab_top_grossing">शीर्ष कमाई</string>
<string name="title_installation">इंस्टॉलेशन</string>
<string name="toast_purchase_blocked">बेनामी खातों पर ऐप खरीदारी उपलब्ध नहीं है।</string>
@@ -156,11 +147,9 @@
<string name="tab_categories">श्रेणियां</string>
<string name="title_spoof_manager">छलावरण प्रबंधक</string>
<string name="title_about">ऐप के बारे में</string>
<string name="ui_accent_1">नीला</string>
<string name="details_dev_details">विकासकर्ता संपर्क</string>
<string name="details_no_updates">कोई अपडेट मौजूद नहीं</string>
<string name="pref_common_extra">अतिरिक्त</string>
<string name="pref_ui_theme_dark">गहरा</string>
<string name="toast_page_unavailable">ब्राउज़ पृष्ठ अनुपलब्ध है</string>
<string name="pref_install_mode_session">सत्र इंस्टॉलर</string>
<string name="pref_ui_title">अनुकूलन</string>
@@ -187,13 +176,7 @@
<string name="toast_anonymous_restriction">अनाम खातों पर उपलब्ध नहीं है</string>
<string name="installer_status_failure_conflict">विरोधाभासी पैकेज मौजूद है</string>
<string name="onboarding_permission_installer_desc">ऑरोरा स्टोर से ऐप इंस्टॉल करने की अनुमति दें</string>
<string name="ui_accent_2">फ्यूशिया</string>
<string name="details_ratings">रेटिंग और समीक्षाएं</string>
<string name="ui_accent_3">लाल</string>
<string name="ui_accent_4">सुनहरा</string>
<string name="ui_accent_5">हरा</string>
<string name="ui_accent_6">बैंगनी</string>
<string name="ui_accent_7">स्लेटी</string>
<string name="download_none">कोई डाउनलोड नहीं</string>
<string name="download_queued">कतारबद्ध</string>
<string name="installer_service_available">ऑरोरा सेवाएं उपलब्ध हैं और इंस्टॉल करने के लिए तैयार हैं।</string>
@@ -201,7 +184,6 @@
<string name="onboarding_permission_select">ऑरोरा स्टोर को निम्नलिखित अनुमतियों की आवश्यकता है</string>
<string name="onboarding_title_permissions">अनुमतियां</string>
<string name="pref_network_title">नेटवर्क</string>
<string name="pref_ui_theme_light">हल्का</string>
<string name="purchase_failed">डाउनलोड असफल</string>
<string name="purchase_no_file">फाइलें नहीं मिल सकी</string>
<string name="insecure_anonymous_apply">सुनिश्चित करें कि आप परिवर्तनों को लागू करने के लिए पुनः लॉगिन करें और ऐप को पुनरारंभ करें।</string>
@@ -248,10 +230,8 @@
<string name="pref_dialog_to_apply_restart">यह सेटिंग आपके ऐप को पुनरारंभ करने के बाद लागू की जाएगी</string>
<string name="pref_install_delete_summary">डाउनलोड किए गए APK इंस्टालेशन के तुरंत बाद मिटा दिए जाएंगे</string>
<string name="pref_install_delete_title">इंस्टॉल के बाद APK मिटाएं</string>
<string name="pref_ui_theme_system">सिस्टम का अनुसरण करें</string>
<string name="pref_install_mode_root">रूट इंस्टॉलर</string>
<string name="pref_install_mode_services">ऑरोरा सेवाएं (अस्वीकृत)</string>
<string name="pref_ui_theme_darkord">डिस्कॉर्ड</string>
<string name="purchase_session_expired">सत्र समाप्त हो गया, नया सत्र प्राप्त करने के लिए पुनः लॉगिन करें।</string>
<string name="pref_ui_similar_apps_desc">ऐप विवरण पृष्ठ पर समान और संबंधित समूह प्रदर्शित करें</string>
<string name="spoof_apply">सुनिश्चित करें कि आप छलावरण लागू करने के लिए पुनः लॉगिन करें</string>
@@ -264,13 +244,11 @@
<string name="toast_developer_setting_failed">उन्हें खोलने के लिए डिवाइस सेटिंग्स से डेवलपर सेटिंग्स चालू करें।</string>
<string name="toast_manual_unavailable">आप जिस संस्करण कोड का अनुरोध कर रहे हैं वह उपलब्ध नहीं है।</string>
<string name="toast_rated_success">रेट किया गया, इसे प्रदर्शित होने में कुछ समय लग सकता है</string>
<string name="ui_accent_11">हलका नीला</string>
<string name="toast_aas_token_failed">AAS टोकन उत्पन्न नहीं किया जा सका</string>
<string name="app_updater_service_notif_text">पृष्ठभूमि में ऐप डाउनलोड सक्षम करता है</string>
<string name="download_progress">डाउनलोड हो रहे • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="installer_shizuku_unavailable">Shizuku ठीक से इंस्टॉल या सेटअप नहीं है।</string>
<string name="pref_install_mode_shizuku">Shizuku इंस्टॉलर</string>
<string name="ui_accent_0">सिस्टम</string>
<string name="rate_limited">उफ़, इस खाते की दर सीमित है!</string>
<string name="error">एक त्रुटि पाई गई!</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>

View File

@@ -134,14 +134,6 @@
<string name="purchase_invalid">Program nije kupljen</string>
<string name="purchase_failed">Preuzimanje neuspjelo</string>
<string name="pref_ui_title">Prilagođavanje</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_theme_system">Slijedi sustav</string>
<string name="pref_ui_theme_light">Svijetla</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Tamna X</string>
<string name="pref_ui_theme_dark">Tamna</string>
<string name="pref_ui_theme_black">Crna</string>
<string name="pref_ui_accent_title">Isticanje</string>
<string name="pref_network_title">Umrežavanje</string>
<string name="pref_install_mode_title">Način instaliranja</string>
<string name="pref_install_mode_summary">Odaberi način instaliranja APK datoteka</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Usluga za preuzimanje programa u pozadini</string>
<string name="pref_install_mode_am">AM instalater</string>
<string name="installer_am_unavailable">Instaliraj App Manager ili promijeni instalacijski program.</string>
<string name="ui_accent_1">Plava</string>
<string name="ui_accent_4">Zlatna</string>
<string name="ui_accent_5">Zelena</string>
<string name="ui_accent_8">Ružičasta</string>
<string name="ui_accent_9">Limunasta</string>
<string name="ui_accent_10">Narančasta</string>
<string name="ui_accent_12">Diskord plava</string>
<string name="ui_accent_13">Tamnoplava</string>
<string name="ui_accent_2">Ružičasta</string>
<string name="ui_accent_3">Crvena</string>
<string name="ui_accent_6">Ljubičasta</string>
<string name="ui_accent_7">Siva</string>
<string name="ui_accent_11">Svjetloplava</string>
<string name="download_eta_sec">Preostalo: %1$d s</string>
<string name="session_init">Pripremanje …</string>
<string name="session_scrapped">Zadnja izbrisana sesija</string>
@@ -286,7 +265,6 @@
<string name="session_enjoy">Prijavi se i uživaj.</string>
<string name="session_login_failed_google">Prijava putem Googlea nije moguća</string>
<string name="session_good">Super! Sve je u redu.</string>
<string name="ui_accent_0">Sustav</string>
<string name="update_available">dostupna je nova verzija</string>
<string name="updates_available">dostupne su nove verzije</string>
<string name="error">Dogodila se greška!</string>

View File

@@ -196,14 +196,6 @@
<string name="purchase_invalid">Az app nincs megvásárolva</string>
<string name="purchase_failed">Sikertelen letöltés</string>
<string name="pref_ui_title">Testreszabás</string>
<string name="pref_ui_theme_title">Téma</string>
<string name="pref_ui_theme_system">Eszközbeállítás</string>
<string name="pref_ui_theme_light">Világos</string>
<string name="pref_ui_theme_darkord">Viszály</string>
<string name="pref_ui_theme_dark_x">Sötét X</string>
<string name="pref_ui_theme_dark">Sötét</string>
<string name="pref_ui_theme_black">Fekete</string>
<string name="pref_ui_accent_title">Tónus</string>
<string name="pref_network_title">Hálózat</string>
<string name="pref_install_mode_title">Telepítési mód</string>
<string name="pref_install_mode_summary">APK fájlok telepítési módja</string>
@@ -251,21 +243,8 @@
<string name="app_updater_service_notif_text">Lehetővé teszi a háttérben történő alkalmazásletöltést</string>
<string name="app_updater_service_notif_title">Háttérbeli alkalmazásletöltés</string>
<string name="notification_channel_updater_service">Háttérbeli alkalmazásletöltési szolgáltatás</string>
<string name="ui_accent_1">Kék</string>
<string name="ui_accent_3">Piros</string>
<string name="ui_accent_4">Arany</string>
<string name="ui_accent_5">Zöld</string>
<string name="ui_accent_7">Szürke</string>
<string name="ui_accent_10">Narancs</string>
<string name="ui_accent_11">Világoskék</string>
<string name="ui_accent_12">Viszálykék</string>
<string name="ui_accent_2">Fukszia</string>
<string name="ui_accent_13">Mélykék</string>
<string name="installer_am_unavailable">Telepítse az App Manager-t vagy változtassa meg a telepítőt.</string>
<string name="pref_install_mode_am">AM telepítő</string>
<string name="ui_accent_6">Lila</string>
<string name="ui_accent_8">Rózsaszín</string>
<string name="ui_accent_9">Lime</string>
<string name="onboarding_permission_notifications">Értesítések</string>
<string name="session_enjoy">Jelentkezzen be és élvezze.</string>
<string name="toast_import_failed">Eszközkonfiguráció importálása sikeretelen</string>
@@ -282,7 +261,6 @@
<string name="title_search_results">Keresési eredmények</string>
<string name="title_advanced">Haladó</string>
<string name="toast_import_success">Eszközkonfiguráció importálva</string>
<string name="ui_accent_0">Rendszer</string>
<string name="updates_available">Frissítések elérhetők</string>
<string name="menu">Menü</string>
<string name="notification_updates_available"><xliff:g id="apps_count">%1$d</xliff:g> frissítések érhetők el</string>

View File

@@ -15,7 +15,6 @@
<string name="about_gitlab">GitLab</string>
<string name="title_updates">Actualisationes</string>
<string name="pref_vending_version_device">Predefinite (ab le configuration de apparato)</string>
<string name="pref_ui_theme_light">Clar</string>
<string name="pref_vending_version_title">Version pro Google Play</string>
<string name="action_resume">Resumer</string>
<string name="action_installations">Installationes</string>
@@ -23,10 +22,8 @@
<string name="onboarding_title_welcome">Benvenite</string>
<string name="title_download_playstore">Play Store</string>
<string name="action_share">Compartir</string>
<string name="pref_ui_theme_black">Nigre</string>
<string name="pref_install_mode_shizuku">Installator Shizuku</string>
<string name="menu_license">Licentia</string>
<string name="pref_ui_theme_system">Sequer le systema</string>
<string name="pref_install_mode_session">Installator de session</string>
<string name="title_download_manager">Discargamentos</string>
<string name="purchase_unsupported">Application non supportate</string>
@@ -38,7 +35,6 @@
<string name="title_advanced">Avantiate</string>
<string name="action_filter_all">Toto</string>
<string name="title_about">A proposito de</string>
<string name="pref_ui_theme_dark_x">Obscur X</string>
<string name="pref_app_download">Discargamentos</string>
<string name="onboarding_permission_installer">Permission del installator</string>
<string name="purchase_failed">Falleva le discargamento</string>
@@ -62,7 +58,6 @@
<string name="action_info">Information de application</string>
<string name="action_search">Cercar</string>
<string name="error">Occurreva un error!</string>
<string name="pref_ui_theme_title">Thema</string>
<string name="title_games">Jocos</string>
<string name="download_failed">Falleva le discarga</string>
<string name="action_next">Sequente</string>
@@ -77,7 +72,6 @@
<string name="onboarding_title_installer">Installator</string>
<string name="dialog_title_self_update">Nove actualisation disponibile</string>
<string name="details_dev_website">Sito web</string>
<string name="pref_ui_theme_dark">Obscur</string>
<string name="pref_downloader_wifi_title">Discargar solmente usante WiFi</string>
<string name="action_update">Actualisar</string>
<string name="action_disable">Disactivar</string>
@@ -128,7 +122,6 @@
<string name="check_connectivity">Verificar connexion a Internet</string>
<string name="pref_network_proxy_url">URL de proxy</string>
<string name="pref_aurora_only">Solmente applicationes de Aurora Store</string>
<string name="ui_accent_0">Systema</string>
<string name="pref_network_proxy_title">Proxy</string>
<string name="notification_updates_available_desc_1">Un nove version de <xliff:g id="app_one_name">%1$s</xliff:g> es disponibile</string>
<string name="action_enable">Activar</string>
@@ -169,7 +162,6 @@
<string name="download_progress">Discargante • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="installer_status_failure_incompatible">Application non compatibile</string>
<string name="download_metadata"></string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="installer_service_available">Le servicios de Aurora es disponibile e preste pro installar.</string>
<string name="title_installer">Installator de applicationes</string>
<string name="action_check">Verificar</string>
@@ -214,7 +206,6 @@
<string name="failed_apk_export">Falleva le exportation de APKs</string>
<string name="pref_updates_auto_notify">Verificar e notificar le actualisationes disponibile</string>
<string name="toast_apk_whitelisted">In le lista blanc</string>
<string name="pref_ui_accent_title">Accento</string>
<string name="exodus_view_report">Vider reporto</string>
<string name="action_home_screen">Adder al schermo de initio</string>
<string name="pref_updates_incompatible">Actualisationes incompatibile</string>

View File

@@ -219,14 +219,6 @@
<string name="pref_ui_layout_tab">Pilih tab bawaan</string>
<string name="pref_ui_layout">Tata letak</string>
<string name="pref_ui_title">Kostumisasi</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_theme_system">Mengikuti Sistem</string>
<string name="pref_ui_theme_light">Terang</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Gelap X</string>
<string name="pref_ui_theme_dark">Gelap</string>
<string name="pref_ui_theme_black">Hitam</string>
<string name="pref_ui_accent_title">Aksen</string>
<string name="pref_network_title">Jaringan</string>
<string name="pref_install_mode_summary">Pilih mode pemasangan APK</string>
<string name="pref_install_mode_session">Pemasang sesi</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Layanan unduhan aplikasi di latar belakang</string>
<string name="pref_install_mode_am">Pemasang AM</string>
<string name="installer_am_unavailable">Pasang App Manager atau ubah pemasang.</string>
<string name="ui_accent_1">Biru</string>
<string name="ui_accent_3">Merah</string>
<string name="ui_accent_4">Emas</string>
<string name="ui_accent_5">Hijau</string>
<string name="ui_accent_6">Ungu</string>
<string name="ui_accent_7">Abu-Abu</string>
<string name="ui_accent_8">Merah Muda</string>
<string name="ui_accent_10">Jingga</string>
<string name="ui_accent_11">Biru Muda</string>
<string name="ui_accent_12">Biru Disskord</string>
<string name="ui_accent_13">Biru Laut Tua</string>
<string name="ui_accent_2">Fuchsia</string>
<string name="ui_accent_9">Jeruk nipis</string>
<string name="download_paused">Jeda • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
<string name="download_eta_min">%1$dm %2$dd tersisa</string>
<string name="onboarding_permission_notifications">Notifikasi</string>
@@ -289,7 +268,6 @@
<string name="session_verifying_google">Memverifikasi sesi Google</string>
<string name="title_advanced">Lanjutan</string>
<string name="update_available">Pembaruan tersedia</string>
<string name="ui_accent_0">Sistem</string>
<string name="expand">Memperluas</string>
<string name="pref_install_mode_shizuku">Pemasang Shizuku</string>
<string name="notification_updates_available_1"><xliff:g id="apps_count">%1$d</xliff:g> pembaruan tersedia</string>

View File

@@ -168,14 +168,6 @@
<string name="spoof_apply">Assicurarsi di effettuare di nuovo laccesso per applicare la simulazione</string>
<string name="purchase_session_expired">Sessione scaduta, effettuare di nuovo laccesso per ottenere una nuova sessione.</string>
<string name="pref_ui_title">Personalizzazione</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_theme_system">Segui il sistema</string>
<string name="pref_ui_theme_light">Chiaro</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Scuro X</string>
<string name="pref_ui_theme_dark">Scuro</string>
<string name="pref_ui_theme_black">Nero</string>
<string name="pref_ui_accent_title">Colore</string>
<string name="pref_install_mode_title">Metodo di installazione</string>
<string name="pref_install_mode_summary">Seleziona la modalità di installazione degli APK</string>
<string name="pref_install_mode_session">Installatore di sessione</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Servizio di scaricamento delle app in background</string>
<string name="pref_install_mode_am">Installatore AM</string>
<string name="installer_am_unavailable">Installa App Manager o cambia l\'installatore.</string>
<string name="ui_accent_1">Blu</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_9">Verde limone</string>
<string name="ui_accent_10">Arancione</string>
<string name="ui_accent_11">Azzurro</string>
<string name="ui_accent_12">Blu Disskord</string>
<string name="ui_accent_13">Blu scuro</string>
<string name="ui_accent_3">Rosso</string>
<string name="ui_accent_6">Viola</string>
<string name="ui_accent_5">Verde</string>
<string name="ui_accent_7">Grigio</string>
<string name="ui_accent_2">Fucsia</string>
<string name="ui_accent_4">Dorato</string>
<string name="action_import">Importa</string>
<string name="download_progress">Scaricamento • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="onboarding_permission_notifications_desc">Invia notifiche sullo stato delle installazioni</string>
@@ -273,7 +252,6 @@
<string name="title_advanced">Avanzato</string>
<string name="toast_import_success">Configurazione del dispositivo importata</string>
<string name="toast_import_failed">Impossibile importare la configurazione del dispositivo</string>
<string name="ui_accent_0">Sistema</string>
<string name="updates_available">aggiornamenti disponibili</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>
<string name="downloading_dep">Scaricamento di file aggiuntivi per <xliff:g id="app">%1$s</xliff:g></string>

View File

@@ -200,14 +200,6 @@
<string name="purchase_invalid">アプリが購入されていません</string>
<string name="purchase_failed">ダウンロード失敗</string>
<string name="pref_ui_title">カスタマイズ</string>
<string name="pref_ui_theme_title">テーマ</string>
<string name="pref_ui_theme_system">システム設定に従う</string>
<string name="pref_ui_theme_light">ライト</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">ダーク X</string>
<string name="pref_ui_theme_black">ブラック</string>
<string name="pref_ui_theme_dark">ダーク</string>
<string name="pref_ui_accent_title">アクセント</string>
<string name="pref_install_mode_title">インストール方法</string>
<string name="pref_install_mode_summary">APK インストールモードを選択</string>
<string name="pref_install_mode_session">セッションインストーラー</string>
@@ -253,19 +245,6 @@
<string name="toast_export_success">デバイス設定をエクスポートしました</string>
<string name="installer_am_unavailable">App Manager をインストールするかインストーラーを変更してください。</string>
<string name="pref_install_mode_am">AM インストーラー:</string>
<string name="ui_accent_6"></string>
<string name="ui_accent_1">ブルー</string>
<string name="ui_accent_2">フクシャ</string>
<string name="ui_accent_3"></string>
<string name="ui_accent_4">ゴールド</string>
<string name="ui_accent_5"></string>
<string name="ui_accent_7">灰色</string>
<string name="ui_accent_8">ピンク</string>
<string name="ui_accent_9">ライム</string>
<string name="ui_accent_10">オレンジ</string>
<string name="ui_accent_12">Disskord ブルー</string>
<string name="ui_accent_13">ディープブルー</string>
<string name="ui_accent_11">ライトブルー</string>
<string name="download_progress">ダウンロード中 • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="download_paused">一時停止 • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
<string name="server_maintenance">サーバーがメンテナンスのため停止しています</string>
@@ -288,7 +267,6 @@
<string name="session_verifying">セッションを認証中</string>
<string name="title_advanced">高度な設定</string>
<string name="session_good">おお!すべて順調。</string>
<string name="ui_accent_0">システム</string>
<string name="error">エラーが発生しました!</string>
<string name="menu">メニュー</string>
<string name="expand">展開する</string>

View File

@@ -66,12 +66,6 @@
<string name="pref_common_extra">დამატებით</string>
<string name="pref_network_title">ქსელი</string>
<string name="pref_network_proxy_title">პროქსი</string>
<string name="pref_ui_accent_title">მახვილი</string>
<string name="pref_ui_theme_black">შავი</string>
<string name="pref_ui_theme_dark">მუქი</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_light">ღია</string>
<string name="pref_ui_theme_title">თემა</string>
<string name="pref_ui_title">მორგება</string>
<string name="tab_categories">კატეგორიები</string>
<string name="title_about">შესახებ</string>
@@ -84,11 +78,6 @@
<string name="title_advanced">დამატებით</string>
<string name="toast_apk_blacklisted">შავ სიაშია</string>
<string name="toast_apk_whitelisted">თეთრ სიაშია</string>
<string name="ui_accent_6">იასამნისფერი</string>
<string name="ui_accent_7">ნაცრისფერი</string>
<string name="ui_accent_8">ვარდისფერი</string>
<string name="ui_accent_9">ლაიმი</string>
<string name="ui_accent_10">ფორთოხლისფერი</string>
<string name="menu">მენიუ</string>
<string name="expand">გაშლა</string>
<string name="item_required">აუცილებელია</string>
@@ -111,23 +100,17 @@
<string name="action_next">შემდეგი</string>
<string name="action_share">გაზიარება</string>
<string name="title_updates">განახლებები</string>
<string name="ui_accent_2">ფუქსია</string>
<string name="ui_accent_3">წითელი</string>
<string name="ui_accent_5">მწვანე</string>
<string name="action_manage">მართვა</string>
<string name="remove">წაშლა</string>
<string name="details_dev_address">მისამართი</string>
<string name="onboarding_title_permissions">წვდომები</string>
<string name="title_installed">დაყენებულია</string>
<string name="title_settings">პარამეტრები</string>
<string name="ui_accent_0">სისტემა</string>
<string name="ui_accent_1">ლურჯი</string>
<string name="download_eta_calculating">გამოთვლა</string>
<string name="filter_review_critical">კრიტიკული</string>
<string name="filter_review_three">სამი</string>
<string name="onboarding_title_welcome">მოგესალმებით</string>
<string name="tab_trending">პოპულარულები</string>
<string name="ui_accent_4">ოქროსფერი</string>
<string name="onboarding_title_installer">დამყენებელი</string>
<string name="onboarding_permission_notifications">გაფრთხილებები</string>
<string name="title_account_manager">ანგარიშები</string>

View File

@@ -72,11 +72,6 @@
<string name="pref_app_download">Isidar</string>
<string name="action_ignore">Zgel-it</string>
<string name="action_join">Zeddi</string>
<string name="pref_ui_accent_title">Ini</string>
<string name="pref_ui_theme_black">Ubrik</string>
<string name="pref_ui_theme_dark">Ubrik</string>
<string name="pref_ui_theme_light">Aceɛlal</string>
<string name="pref_ui_theme_title">Asentel</string>
<string name="action_pending">Yettṛaǧu</string>
<string name="onboarding_title_permissions">Tisirag</string>
</resources>

View File

@@ -85,14 +85,6 @@
<string name="purchase_invalid">Sepan ne kirî</string>
<string name="purchase_failed">Barkirin hilneweşe</string>
<string name="pref_ui_title">Xwemalîkirin</string>
<string name="pref_ui_theme_title">Mijad</string>
<string name="pref_ui_theme_system">Pergalê bişopînin</string>
<string name="pref_ui_theme_light">Ronî</string>
<string name="pref_ui_theme_darkord">Bergirî</string>
<string name="pref_ui_theme_dark_x">Tarî X</string>
<string name="pref_ui_theme_dark">Tarî</string>
<string name="pref_ui_theme_black">Reş</string>
<string name="pref_ui_accent_title">Devok</string>
<string name="pref_install_mode_title">Rêbaza sazkirinê</string>
<string name="pref_install_mode_summary">Modeya sazkirinê ya APK hilbijêrin</string>
<string name="pref_install_mode_session">Sazkerê danişînê</string>

View File

@@ -193,25 +193,17 @@
<string name="pref_install_mode_services">오로라 서비스 (지원 중단)</string>
<string name="pref_install_mode_session">세션 설치기</string>
<string name="pref_install_mode_title">설치 방식</string>
<string name="pref_ui_theme_dark">다크</string>
<string name="pref_vending_version_title">Google Play 버전</string>
<string name="pref_network_proxy_enable">프록시 켜기</string>
<string name="pref_network_proxy_enable_desc">앱의 모든 트래픽이 프록시를 통과하도록 허용</string>
<string name="pref_network_proxy_url">프록시 URL</string>
<string name="pref_ui_accent_title">테마색</string>
<string name="pref_ui_theme_light">엷은 색</string>
<string name="pref_ui_theme_system">시스템 설정을 따름</string>
<string name="pref_ui_theme_title">테마</string>
<string name="pref_network_title">네트워킹</string>
<string name="pref_network_proxy_title">프록시</string>
<string name="pref_ui_theme_black">검정</string>
<string name="pref_ui_theme_dark_x">다크 X</string>
<string name="pref_ui_title">맞춤화</string>
<string name="pref_ui_no_for_you">For You 페이지</string>
<string name="pref_vending_version_device">기본값(장치 구성에서)</string>
<string name="pref_ui_similar_apps">유사한 및 관련 앱</string>
<string name="title_about">소개</string>
<string name="pref_ui_theme_darkord">디스코드</string>
<string name="pref_ui_no_for_you_desc">홈 화면에 페이지 표시</string>
<string name="pref_updates_incompatible">호환되지 않는 업데이트</string>
<string name="pref_aurora_only">Aurora Store 앱 전용</string>
@@ -242,13 +234,10 @@
<string name="purchase_invalid">구매하지 않은 앱</string>
<string name="title_apps_sale_provider">공급자 - bestappsales.com</string>
<string name="title_no_network">네트워크 없음</string>
<string name="ui_accent_0">시스템</string>
<string name="rate_limited">Oops, 이 계정은 제한됩니다!</string>
<string name="pref_updates_check_frequency">자동 업데이트 작동주기</string>
<string name="tab_top_free">인기 무료</string>
<string name="ui_accent_10">오렌지</string>
<string name="expand">확장됨</string>
<string name="ui_accent_6">퍼플</string>
<string name="tab_editor_choice">편집자선택</string>
<string name="tab_for_you">맞춤 추천</string>
<string name="title_download_playstore">플레이 스토어</string>
@@ -266,16 +255,9 @@
<string name="toast_proxy_success">프록시가 성공적으로 설정됨</string>
<string name="toast_proxy_failed">프록시 설정 실패</string>
<string name="app_updater_service_notif_text">활성화 백그라운드 앱 다운로드</string>
<string name="ui_accent_1">블루</string>
<string name="update_available">업데이트 사용 가능</string>
<string name="updates_available">업데이트 사용 가능</string>
<string name="error">오류가 발생했습니다!</string>
<string name="ui_accent_5">그린</string>
<string name="ui_accent_7">회색</string>
<string name="ui_accent_2">푸크시아</string>
<string name="ui_accent_3">레드</string>
<string name="ui_accent_4">골든</string>
<string name="ui_accent_13">딥 블루</string>
<string name="pref_updates_auto_off">앱을 자동-업데이트 안함</string>
<string name="pref_updates_check_frequency_desc">자동 및 직접 업데이트에 대한 확인 간격을 구성하며, 시간단위입니다.</string>
<string name="search_hint">&amp; 게임을 검색</string>
@@ -292,7 +274,6 @@
<string name="failed_to_fetch_report">개인 정보 보호 보고서를 가져오지 못함</string>
<string name="bad_request">내부 오류! 잠시 후 다시 시도하십시오</string>
<string name="tab_top_grossing">최고 매출</string>
<string name="ui_accent_11">밝은 파란색</string>
<string name="app_links_title">앱 링크</string>
<string name="session_scrapped">마지막 세션이 폐기됨</string>
<string name="session_verifying">세션 검증중</string>
@@ -327,8 +308,6 @@
<string name="title_spoof_manager">눈속임 관리자</string>
<string name="title_search_suggestion">검색 제안</string>
<string name="title_advanced">고급</string>
<string name="ui_accent_8">핑크</string>
<string name="ui_accent_9">라임</string>
<string name="pref_ui_layout">레이아웃</string>
<string name="pref_ui_layout_tab">기본 탭 선택</string>
<string name="action_enable">사용</string>
@@ -358,7 +337,6 @@
<string name="toast_rated_success">등급(표시하려면 시간이 걸릴 수 있음)</string>
<string name="toast_import_success">장치 구성 가져오기</string>
<string name="toast_proxy_invalid">프록시 URL이 잘못되었습니다. 형식을 확인하십시오!</string>
<string name="ui_accent_12">디스코드 블루</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>
<string name="downloading_dep">&lt;xliff:gid=\"app\"&gt;%1$s&lt;/xliff:g&gt;에 대한 추가 파일 다운로드 중</string>
<string name="faqs_subtitle">문제가 있습니까? 답을 찾으십시오</string>

View File

@@ -41,11 +41,6 @@
<string name="onboarding_title_welcome">Sveiki</string>
<string name="onboarding_permission_installer">Diegimo programos leidimas</string>
<string name="pref_dialog_to_apply_restart">Šis nustatymas įsigalios po to, kai paleisite programėlę iš naujo</string>
<string name="pref_ui_accent_title">Paryškinimas</string>
<string name="pref_ui_theme_dark">Tamsus</string>
<string name="pref_ui_theme_light">Šviesus</string>
<string name="pref_ui_theme_system">Pagal sistemą</string>
<string name="pref_ui_theme_title">Apipavidalinimas</string>
<string name="pref_ui_layout">Išdėstymas</string>
<string name="pref_ui_layout_tab">Pasirinkti numatytąją kortelę</string>
<string name="pref_ui_similar_apps">Panašios ir susijusios programėlės</string>
@@ -101,10 +96,8 @@
<string name="installer_status_failure_conflict">Yra konfliktuojantis paketas</string>
<string name="installer_status_failure_incompatible">Nesuderinama programėlė</string>
<string name="pref_app_download">Atsiuntimai</string>
<string name="pref_ui_theme_dark_x">Tamsus X</string>
<string name="onboarding_title_installer">Diegimo programa</string>
<string name="pref_network_title">Darbas tinkle</string>
<string name="pref_ui_theme_black">Juodas</string>
<string name="onboarding_title_permissions">Leidimai</string>
<string name="pref_install_mode_title">Įdiegimo būdas</string>
<string name="purchase_unsupported">Programėlė nepalaikoma</string>
@@ -172,15 +165,6 @@
<string name="tab_for_you">Jums</string>
<string name="title_apps_library">Programėlės bibliotekoje</string>
<string name="toast_abandon_sessions">Seni diegimo seansai nutraukti</string>
<string name="ui_accent_4">Auksinė</string>
<string name="ui_accent_6">Violetinė</string>
<string name="ui_accent_7">Pilka</string>
<string name="ui_accent_8">Rožinė</string>
<string name="ui_accent_9">Citrininė</string>
<string name="ui_accent_10">Oranžinė</string>
<string name="ui_accent_12">Blankiai mėlyna</string>
<string name="ui_accent_13">Tamsiai mėlyna</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="action_cancel">Atsisakyti</string>
<string name="action_filter_misc">Įvairūs</string>
<string name="action_grant">Suteikti</string>
@@ -243,11 +227,6 @@
<string name="toast_apk_blacklisted">Pridėta į juodąjį sąrašą</string>
<string name="toast_apk_whitelisted">Pridėta į baltąjį sąrašą</string>
<string name="toast_page_unavailable">Naršomas puslapis neprieinamas</string>
<string name="ui_accent_3">Raudona</string>
<string name="ui_accent_1">Mėlyna</string>
<string name="ui_accent_2">Purpurinė</string>
<string name="ui_accent_5">Žalia</string>
<string name="ui_accent_11">Šviesiai mėlyna</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>
<string name="server_unreachable">Serveris nepasiekiamas</string>
<string name="notification_updates_available_desc_4"><xliff:g id="app_one_name">%1$s</xliff:g>, <xliff:g id="app_two_name">%2$s</xliff:g>, <xliff:g id="app_three_name">%3$s</xliff:g> ir dar <xliff:g id="apps_count">%4$d</xliff:g></string>
@@ -257,7 +236,6 @@
<string name="failed_generating_session">Nepavyko sugeneruoti seanso, klaidos kodas: <xliff:g id="status_code">%1$d</xliff:g></string>
<string name="failed_to_generate_session">Nepavyko sugeneruoti seanso</string>
<string name="pref_network_proxy_url">Įgaliotojo serverio URL</string>
<string name="ui_accent_0">Sistema</string>
<string name="pref_network_proxy_title">Įgaliotasis serveris</string>
<string name="onboarding_permission_notifications">Pranešimai</string>
<string name="notification_updates_available_desc_1">Yra prieinama nauja <xliff:g id="app_one_name">%1$s</xliff:g> versija</string>

View File

@@ -113,9 +113,6 @@
<string name="onboarding_title_permissions">Atļaujas</string>
<string name="onboarding_title_welcome">Laipni lūgti</string>
<string name="pref_app_download">Lejupielādes</string>
<string name="pref_ui_theme_black">Melns</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_title">Motīvs</string>
<string name="pref_ui_layout_tab">Izvēlēties noklusējuma lapu</string>
<string name="pref_ui_no_for_you">For You lapa</string>
<string name="pref_ui_no_for_you_desc">Rādīt For You lapu sākuma ekrānā</string>
@@ -172,13 +169,9 @@
<string name="pref_common_extra">Papildus</string>
<string name="onboarding_permission_select">Aurora Store ir nepieciešamas šādas atļaujas</string>
<string name="pref_dialog_to_apply_restart">Šis iestatījums tiks piemērots pēc lietotnes restartēšanas</string>
<string name="pref_ui_theme_light">Gaišs</string>
<string name="pref_ui_layout">Izkārtojums</string>
<string name="pref_filter_google_summary">Neņemt vērā Google lietotnes no Atjauninājumi un uzstādītās lietotnes</string>
<string name="pref_filter_google_title">Filtrēt Google lietotnes</string>
<string name="pref_ui_theme_dark">Tumšs</string>
<string name="pref_ui_theme_dark_x">Tumšs X</string>
<string name="pref_ui_theme_system">Sekot sistēmai</string>
<string name="pref_ui_title">Pielāgošana</string>
<string name="purchase_no_file">Nevarēja iegūt failus</string>
<string name="purchase_session_expired">Sesija ir beigusies, izejiet no lietotnes, lai iegūtu jaunu sesiju.</string>
@@ -251,15 +244,12 @@
<string name="notification_updates_available">Pieejami <xliff:g id="apps_count">%1$d</xliff:g> atjauninājumi</string>
<string name="notification_updates_available_1">Pieejams <xliff:g id="apps_count">%1$d</xliff:g> atjauninājums</string>
<string name="device_miui_extra">Ir iespējams izvēlēties arī iebūvēto uzstādītāju, bet tad nevarēs uzstādīt apvienotos (sastāvošus no vairākām daļām) APK, tā ka izvēle ir paša ziņā.</string>
<string name="ui_accent_3">Sarkans</string>
<string name="ui_accent_4">Zelta</string>
<string name="download_progress">Lejupielādē • <xliff:g id="completed_downloads">%1$d</xliff:g>/<xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="pref_install_delete_summary">Lejupielādētie APK tiks izdzēsti uzreiz pēc uzstādīšanas</string>
<string name="pref_install_mode_services">Aurora pakalpojumi (novecojuši)</string>
<string name="details_dependencies">Atkarības</string>
<string name="details_beta_delay">Ievietošana sarakstā var aizņemt kādu laiku, vēlāk var pārbaudīt stāvokli.</string>
<string name="pref_filter_fdroid_summary">Neņemt vērā F-Droid lietotnes no Atjauninājumi un uzstādītās lietotnes</string>
<string name="ui_accent_12">Discord zils</string>
<string name="download_paused">Apturēta • <xliff:g id="completed_downloads">%1$d</xliff:g>/<xliff:g id="all_downloads">%2$d</xliff:g></string>
<string name="details_beta_description">Būs pieejamas jaunas iespējas un nepilnības pirms publicēšanas. Sniedzot atgriezenisko saiti izstrādātājiem tiks palīdzēts viņiem veikt uzlabojumus.</string>
<string name="details_gsf_dependent">Nepieciešams GSF</string>
@@ -268,14 +258,10 @@
<string name="download_eta_sec">Atlikušas %1$ds</string>
<string name="installer_service_misconfigured">Vispirms jāuzstāda Aurora pakalpojumi un jānodrošina visas atļaujas.</string>
<string name="toast_export_success">Ierīces uzstādījumi ir izgūti</string>
<string name="ui_accent_7">Pelēks</string>
<string name="details_no_dependencies">Nav atkarību</string>
<string name="details_no_app_match">Atbilstība lietotnei netika atrasta</string>
<string name="toast_export_failed">Nebija iespējams izgūt ierīces uzstādījumus</string>
<string name="ui_accent_5">Zaļš</string>
<string name="ui_accent_8">Rozā</string>
<string name="server_maintenance">Serveris nav pieejams uzturēšanas darbu dēļ</string>
<string name="ui_accent_6">Violets</string>
<string name="notification_channel_updates">Atjauninājumu paziņojumi</string>
<string name="requesting_new_session">Pieprasa jaunu sesiju</string>
<string name="downloading_dep">Lejupielādē <xliff:g id="app">%1$s</xliff:g> papildu datnes</string>
@@ -287,18 +273,10 @@
<string name="onboarding_permission_notifications">Paziņojumi</string>
<string name="pref_filter_fdroid_title">Atlasīt F-Droid lietotnes</string>
<string name="pref_network_title">Tīklošana</string>
<string name="pref_ui_accent_title">Uzsvara krāsa</string>
<string name="toast_page_unavailable">Pārlūkošanas lapa nav pieejama</string>
<string name="toast_aas_token_failed">Nebija iespējams izveidot AAS piekļuves pilnvaru</string>
<string name="toast_import_success">Ierīces uzstādījumi ir ievietoti</string>
<string name="toast_import_failed">Nebija iespējams ievietot ierīces uzstādījumus</string>
<string name="ui_accent_0">Sistēmas</string>
<string name="ui_accent_1">Zils</string>
<string name="ui_accent_2">Fuksija</string>
<string name="ui_accent_9">Gaiši zaļš</string>
<string name="ui_accent_10">Oranžs</string>
<string name="ui_accent_11">Gaiši zils</string>
<string name="ui_accent_13">Dziļi zils</string>
<string name="rate_limited">Ak vai, šis konts ir ierobežots!</string>
<string name="error">Gadījās kļūda.</string>
<string name="menu">Izvēlne</string>

View File

@@ -23,10 +23,6 @@
<string name="title_account_manager">Kontoer</string>
<string name="title_about">Om</string>
<string name="tab_categories">Kategorier</string>
<string name="pref_ui_theme_title">Drakt</string>
<string name="pref_ui_theme_system">Følg systemet</string>
<string name="pref_ui_theme_dark">Mørk</string>
<string name="pref_ui_theme_black">Svart</string>
<string name="pref_install_mode_services">Aurora-tjenester</string>
<string name="pref_app_download">Nedlastinger</string>
<string name="onboarding_title_welcome">Velkommen</string>
@@ -200,8 +196,6 @@
<string name="toast_spoof_applied">Enhetslureri i bruk.</string>
<string name="pref_ui_similar_apps_desc">Vis lignende og relaterte klynger på appdetaljsiden</string>
<string name="pref_ui_no_for_you_desc">Vis For You-sider på startskjermen</string>
<string name="pref_ui_theme_darkord">Uenighet</string>
<string name="pref_ui_accent_title">Aksent</string>
<string name="pref_abandon_session_desc">Fjern forlatte eller ventende installasjonsøkter</string>
<string name="pref_abandon_session">Tving frem klare installasjonsøkter</string>
<string name="installer_service_misconfigured">Sett opp Aurora-tjenester og innvilg alle tilganger først.</string>
@@ -221,8 +215,6 @@
<string name="title_installer">Program-installerer</string>
<string name="title_blacklist_manager">Svarteliste-håndterer</string>
<string name="purchase_no_file">Kunne ikke hente filer</string>
<string name="pref_ui_theme_dark_x">Mørk X</string>
<string name="pref_ui_theme_light">Lys</string>
<string name="pref_filter_fdroid_summary">Fjerner F-Droid-programmer fra programlistene</string>
<string name="pref_dialog_to_apply_restart">Denne innstillinger vil tre i kraft etter at du starter programmet igjen</string>
<string name="pref_common_extra">Ekstra</string>
@@ -254,35 +246,26 @@
<string name="pref_install_mode_am">AM installatør.</string>
<string name="installer_am_unavailable">Installer App Manager eller endre installasjonsprogrammet.</string>
<string name="installer_shizuku_unavailable">Shizuku er enten ikke installert eller satt opp på riktig vis.</string>
<string name="ui_accent_7">Grå</string>
<string name="ui_accent_1">Blå</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>
<string name="session_verifying">Bekrefter økt …</string>
<string name="ui_accent_0">System</string>
<string name="onboarding_permission_notifications">Merknader</string>
<string name="toast_import_failed">Kunne ikke importere enhetsoppsett</string>
<string name="ui_accent_5">Grønn</string>
<string name="download_eta_sec">%1$ds igjen</string>
<string name="app_links_desc">Tillat Aurora Store å åpne støttede lenker</string>
<string name="requesting_new_session">Forespør ny økt …</string>
<string name="action_import">Importer</string>
<string name="title_search_suggestion">Søkeforslag</string>
<string name="title_advanced">Avansert</string>
<string name="ui_accent_8">Rosa</string>
<string name="menu">Meny</string>
<string name="download_eta_min">%1$dm %2$ds igjen</string>
<string name="ui_accent_6">Lilla</string>
<string name="app_links_title">Programlenker</string>
<string name="ui_accent_11">Lyseblå</string>
<string name="verifying_new_session">Bekrefter ny økt …</string>
<string name="download_eta_hrs">%1$dt %2$dm %3$ds igjen</string>
<string name="session_init">Klargjør …</string>
<string name="session_verifying_google">Bekrefter Google-økt …</string>
<string name="expand">Utvid</string>
<string name="title_search_results">Søkeresultater</string>
<string name="ui_accent_3">Rød</string>
<string name="onboarding_permission_notifications_desc">Send merknader om installasjonsstatus.</string>
<string name="ui_accent_10">Oransje</string>
<string name="app_language">Programspråk</string>
<string name="action_uninstall_confirmation">Vil du avinstallere denne appen?</string>
<string name="download_paused">Pause • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="BaseTheme">
<item name="android:windowLightStatusBar">false</item>
</style>
</resources>

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="BaseTheme">
<item name="android:windowLightStatusBar">false</item>
<item name="android:statusBarColor">?android:colorBackground</item>
<item name="android:windowLightNavigationBar">false</item>
<item name="android:navigationBarColor">?android:colorBackground</item>
</style>
</resources>

View File

@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--Common Colors-->
<color name="colorAccent">@android:color/system_accent1_400</color>
</resources>

View File

@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="BaseTheme" />
<style name="AppTheme" parent="Theme.Material3.DynamicColors.Dark.NoActionBar">
<item name="chipStyle">@style/AppTheme.FilterChip</item>
<item name="preferenceTheme">@style/AppTheme.PreferenceThemeOverlay</item>
</style>
</resources>

View File

@@ -80,14 +80,6 @@
<string name="pref_ui_layout_tab">Selecteer standaard tabblad</string>
<string name="pref_ui_layout">Lay-out</string>
<string name="pref_ui_title">Aanpassing</string>
<string name="pref_ui_theme_title">Thema</string>
<string name="pref_ui_theme_system">Volg systeem</string>
<string name="pref_ui_theme_light">Licht</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Donker X</string>
<string name="pref_ui_theme_dark">Donker</string>
<string name="pref_ui_theme_black">Zwart</string>
<string name="pref_ui_accent_title">Accent</string>
<string name="pref_network_title">Netwerken</string>
<string name="pref_install_mode_title">Installatie methode</string>
<string name="pref_install_mode_summary">Selecteer modus van APK installatie</string>
@@ -253,19 +245,6 @@
<string name="title_updates">Updates</string>
<string name="installer_am_unavailable">Installeer App Manager of verander de installatiewijze.</string>
<string name="pref_install_mode_am">AM-installatieprogramma.</string>
<string name="ui_accent_1">Blauw</string>
<string name="ui_accent_2">Fuchsia</string>
<string name="ui_accent_3">Rood</string>
<string name="ui_accent_4">Goud</string>
<string name="ui_accent_5">Groen</string>
<string name="ui_accent_9">Limoen</string>
<string name="ui_accent_10">Oranje</string>
<string name="ui_accent_11">Lightblauw</string>
<string name="ui_accent_12">Disskord-blauw</string>
<string name="ui_accent_13">Diep blauw</string>
<string name="ui_accent_8">Roze</string>
<string name="ui_accent_6">Paars</string>
<string name="ui_accent_7">Grijs</string>
<string name="action_import">Importeren</string>
<string name="download_eta_min">nog %1$dm %2$ds</string>
<string name="download_eta_hrs">nog %1$dh %2$dm %3$ds</string>
@@ -274,7 +253,6 @@
<string name="session_scrapped">Laatste sessie afgebroken</string>
<string name="session_verifying">Sessie verifiëren</string>
<string name="session_verifying_google">Google-sessie verifiëren</string>
<string name="ui_accent_0">Systeem</string>
<string name="server_maintenance">Server buiten gebruik voor werkzaamheden</string>
<string name="download_progress">Aan het downloaden • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="installer_shizuku_unavailable">Shizuku is niet geïnstalleerd of niet goed ingesteld.</string>

View File

@@ -65,14 +65,6 @@
<string name="pref_ui_layout_tab">ਮੂਲ Tab ਚੁਣੋ</string>
<string name="pref_ui_layout">ਇੰਟਰਫੇਸ ਸਟਾਈਲ</string>
<string name="pref_ui_title">ਪਸੰਦੀਦਾ ਇੰਟਰਫੇਸ</string>
<string name="pref_ui_theme_title">ਥੀਮ</string>
<string name="pref_ui_theme_system">ਸਿਸਟਮ ਅਨੁਸਾਰ</string>
<string name="pref_ui_theme_light">ਸਫ਼ੈਦ</string>
<string name="pref_ui_theme_darkord">ਡਿਸਕੌਰਡ</string>
<string name="pref_ui_theme_dark_x">ਗੂੜ੍ਹਾ X</string>
<string name="pref_ui_theme_dark">ਗੂੜ੍ਹਾ</string>
<string name="pref_ui_theme_black">ਕਾਲ੍ਹਾ</string>
<string name="pref_ui_accent_title">ਰੰਗ</string>
<string name="pref_network_title">ਨੈਟਵਰਕਿੰਗ</string>
<string name="dialog_desc_native_split">ਤੁਸੀਂ ਨੇਟਿਵ ਇੰਸਟਾਲਰ ਰਾਹੀਂ Bundled/Split ਐਪਸ ਇੰਸਟਾਲ ਨਹੀਂ ਕਰ ਸਕਦੇ। ਕਿਰਪਾ ਕਰਕੇ ਇੰਸਟਾਲੇਸ਼ਨ ਲਈ ਸੈਸ਼ਨ, ਔਰੋਰਾ ਸਰਵੀਸਿਜ਼ ਜਾਂ ਰੂਟ ਵਿਚੋਂ ਕੋਈ ਇਕ ਚੁਣੋ।</string>
<string name="device_miui_description">ਸੈਸ਼ਨ ਐਪ ਇੰਸਟਾਲੇਸ਼ਨ ਵਿਧੀ ਵਰਤਣ ਲਈ ਕਿਰਪਾ ਕਰਕੇ MIUI optimizations ਨੂੰ ਬੰਦ ਕਰੋ, ਜਾਂ ਫਿਰ ਰੂਟ ਜਾਂ ਔਰੋਰਾ ਸਰਵੀਸਿਜ਼ ਵਿਚੋਂ ਕੋਈ ਇੱਕ ਤਰੀਕਾ ਵਰਤੋ।</string>
@@ -261,15 +253,8 @@
<string name="notification_updates_available_desc_4"><xliff:g id="app_one_name">%1$s</xliff:g>, <xliff:g id="app_two_name">%2$s</xliff:g>, <xliff:g id="app_three_name">%3$s</xliff:g> ਅਤੇ <xliff:g id="apps_count">%4$d</xliff:g> ਹੋਰ</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> • API <xliff:g id="api">%2$s</xliff:g></string>
<string name="download_progress">ਡਾਊਨਲੋਡ ਕਰ ਰਿਹਾ • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="ui_accent_13">ਗੂੜ੍ਹਾ ਨੀਲਾ</string>
<string name="pref_install_mode_am">AM ਇੰਸਟਾਲਰ</string>
<string name="ui_accent_3">ਲਾਲ</string>
<string name="ui_accent_1">ਨੀਲਾ</string>
<string name="ui_accent_5">ਹਰਾ</string>
<string name="ui_accent_6">ਬੈਂਗਣੀਂ</string>
<string name="ui_accent_4">ਸੁਨਿਹਰੀ</string>
<string name="installer_am_unavailable">ਐਪ ਮੈਨੇਜਰ ਨੂੰ ਇੰਸਟਾਲ ਕਰੋ ਜਾਂ ਇੰਸਟਾਲਰ ਬਦਲੋ।</string>
<string name="ui_accent_7">ਸਲੇਟੀ</string>
<string name="requesting_new_session">ਨਵੇਂ ਸੈਸ਼ਨ ਲਈ ਬੇਨਤੀ ਕੀਤੀ ਜਾ ਰਹੀ</string>
<string name="session_login_failed_google">ਗੂਗਲ ਰਾਹੀਂ ਲਾਗ-ਇਨ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ</string>
<string name="session_scrapped">ਪਿਛਲਾ ਸੈਸ਼ਨ ਰੱਦ</string>
@@ -289,18 +274,11 @@
<string name="session_init">ਤਿਆਰੀ ਹੋ ਰਹੀ…</string>
<string name="title_advanced">ਐਡਵਾਂਸਡ</string>
<string name="toast_import_success">ਡਿਵਾਈਸ ਸੰਰਚਨਾ ਇੰਮਪੋਰਟ ਹੋਈ</string>
<string name="ui_accent_0">ਸਿਸਟਮ</string>
<string name="rate_limited">ਓਹੋ, ਇਸ ਖਾਤੇ ਤੇ ਰੇਟ ਲਿਮਟ ਹੈ!</string>
<string name="update_available">ਅੱਪਡੇਟ ਉਪਲਬਧ ਹੈ</string>
<string name="updates_available">ਅੱਪਡੇਟਸ ਉਪਲਬਧ ਹਨ</string>
<string name="notification_channel_updates">ਅੱਪਡੇਟਸ ਦੀ ਸੂਚਨਾ</string>
<string name="notification_updates_available_1"><xliff:g id="apps_count">%1$d</xliff:g> ਅੱਪਡੇਟ ਉਪਲਬਧ</string>
<string name="ui_accent_2">ਚਮਕਦਾਰ ਜਾਮਣੀ</string>
<string name="ui_accent_8">ਗੁਲਾਬੀ</string>
<string name="ui_accent_9">ਨਿੰਬੂ ਰੰਗਾ</string>
<string name="ui_accent_10">ਸੰਤਰੀ</string>
<string name="ui_accent_11">ਹਲਕਾ ਨੀਲਾ</string>
<string name="ui_accent_12">ਵੈਂਗਣੀ ਨੀਲਾ</string>
<string name="notification_updates_available_desc_3"><xliff:g id="app_one_name">%1$s</xliff:g>, <xliff:g id="app_two_name">%2$s</xliff:g> ਅਤੇ <xliff:g id="app_three_name">%3$s</xliff:g></string>
<string name="download_eta_hrs">%1$dh %2$dm %3$ds ਬਾਕੀ</string>
<string name="download_eta_min">%1$dm %2$ds ਬਾਕੀ</string>

View File

@@ -137,14 +137,6 @@
<string name="purchase_unsupported">Aplikacja nie jest wspierana</string>
<string name="purchase_invalid">Aplikacja nie została zakupiona</string>
<string name="purchase_failed">Pobieranie nieudane</string>
<string name="pref_ui_theme_title">Motyw</string>
<string name="pref_ui_theme_system">Systemowy</string>
<string name="pref_ui_theme_light">Jasny</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_dark_x">Ciemny X</string>
<string name="pref_ui_theme_dark">Ciemny</string>
<string name="pref_ui_theme_black">Czarny</string>
<string name="pref_ui_accent_title">Akcent</string>
<string name="pref_install_mode_summary">Wybierz tryb instalacji plików APK</string>
<string name="pref_install_mode_session">Instalator sesji</string>
<string name="pref_install_mode_services">Usługi Aurora (przestarzały)</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Usługa pobierania aplikacji w tle</string>
<string name="pref_install_mode_am">Instalator menedżera aplikacji</string>
<string name="installer_am_unavailable">Zainstaluj Menedżera Aplikacji lub zmień instalator.</string>
<string name="ui_accent_1">Niebieski</string>
<string name="ui_accent_2">Fuksja</string>
<string name="ui_accent_4">Złoty</string>
<string name="ui_accent_5">Zielony</string>
<string name="ui_accent_11">Jasnoniebieski</string>
<string name="ui_accent_12">Disskord niebieski</string>
<string name="ui_accent_13">Ciemnoniebieski</string>
<string name="ui_accent_9">Limonkowy</string>
<string name="ui_accent_3">Czerwony</string>
<string name="ui_accent_7">Szary</string>
<string name="ui_accent_8">Różowy</string>
<string name="ui_accent_6">Fioletowy</string>
<string name="ui_accent_10">Pomarańczowy</string>
<string name="menu">Menu</string>
<string name="expand">Rozwiń</string>
<string name="download_paused">Wstrzymano • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
@@ -273,7 +252,6 @@
<string name="download_progress">Pobieranie • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="session_enjoy">Zaloguj się i korzystaj.</string>
<string name="title_advanced">Zaawansowane</string>
<string name="ui_accent_0">System</string>
<string name="update_available">dostępna aktualizacja</string>
<string name="updates_available">dostępne aktualizacje</string>
<string name="error">Wystąpił błąd!</string>

View File

@@ -9,13 +9,9 @@
<string name="title_spoof_manager">Gerenciar simulação</string>
<string name="action_whitelist">Lista branca</string>
<string name="title_blacklist_manager">Gerenciar lista negra</string>
<string name="pref_ui_theme_black">Preto</string>
<string name="pref_ui_accent_title">Cor de Destaque</string>
<string name="pref_ui_theme_dark_x">Escuro X</string>
<string name="title_download_playstore">Play Store</string>
<string name="title_download_manager">Downloads</string>
<string name="title_apps">Apps</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_install_mode_services">Serviços Aurora (Depreciado)</string>
<string name="pref_app_download">Downloads</string>
<string name="action_filter_downloads">Download</string>
@@ -212,10 +208,6 @@
<string name="purchase_invalid">App não foi comprado</string>
<string name="purchase_failed">Download Falhou</string>
<string name="pref_ui_title">Customização</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_theme_system">Seguir o Sistema</string>
<string name="pref_ui_theme_light">Claro</string>
<string name="pref_ui_theme_dark">Escuro</string>
<string name="pref_install_mode_title">Método de instalação</string>
<string name="pref_install_mode_summary">Selecione o modo de instalação para APKs</string>
<string name="pref_install_mode_session">Instalador de Sessão</string>
@@ -251,21 +243,8 @@
<string name="app_updater_service_notif_text">Ativa o download de apps em segundo plano</string>
<string name="app_updater_service_notif_title">Download de app em segundo plano</string>
<string name="notification_channel_updater_service">Serviço de download de apps em segundo plano</string>
<string name="ui_accent_1">Azul</string>
<string name="ui_accent_3">Vermelho</string>
<string name="ui_accent_4">Dourado</string>
<string name="ui_accent_5">Verde</string>
<string name="ui_accent_6">Roxo</string>
<string name="ui_accent_7">Cinza</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_9">Lima</string>
<string name="ui_accent_10">Laranja</string>
<string name="ui_accent_11">Azul claro</string>
<string name="ui_accent_13">Azul escuro</string>
<string name="pref_install_mode_am">Instalador AM</string>
<string name="installer_am_unavailable">Instale o App Manager ou mude de instalador.</string>
<string name="ui_accent_2">Fúcsia</string>
<string name="ui_accent_12">Azul disskord</string>
<string name="onboarding_permission_notifications">Notificações</string>
<string name="session_init">Deixando tudo certo…</string>
<string name="download_paused">Pausado • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
@@ -301,7 +280,6 @@
<string name="notification_channel_updates">Notificações de atualização</string>
<string name="notification_updates_available_1"><xliff:g id="apps_count">%1$d</xliff:g> atualização disponível</string>
<string name="notification_updates_available_desc_1">Uma nova versão de <xliff:g id="app_one_name">%1$s</xliff:g> está disponível</string>
<string name="ui_accent_0">Sistema</string>
<string name="rate_limited">Oops, esta conta foi limitada!</string>
<string name="downloading_dep">Baixando arquivos adicionais para <xliff:g id="app">%1$s</xliff:g></string>
<string name="menu">Menu</string>

View File

@@ -27,8 +27,6 @@
<string name="details_description">Descrição</string>
<string name="about_bhim">BHIM - UPI</string>
<string name="title_download_playstore">Play Store</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_accent_title">Cor de destaque</string>
<string name="title_apps_sale">Aplicações à venda</string>
<string name="title_apps_library">Aplicações na biblioteca</string>
<string name="onboarding_permission_installer_desc">Permitir instalação de aplicações a partir da Aurora Store</string>
@@ -92,14 +90,8 @@
<string name="pref_ui_no_for_you_desc">Mostrar sugestões no ecrã inicial</string>
<string name="pref_ui_no_for_you">Sugestões para si</string>
<string name="pref_ui_layout_tab">Selecione o separador padrão</string>
<string name="pref_ui_theme_system">Definido pelo sistema</string>
<string name="pref_ui_layout">Apresentação</string>
<string name="pref_ui_title">Personalização</string>
<string name="pref_ui_theme_title">Tema</string>
<string name="pref_ui_theme_light">Claro</string>
<string name="pref_ui_theme_dark_x">Escuro X</string>
<string name="pref_ui_theme_dark">Escuro</string>
<string name="pref_ui_theme_black">Preto</string>
<string name="pref_network_title">Rede</string>
<string name="pref_install_mode_title">Método de instalação</string>
<string name="pref_install_mode_summary">Selecione o modo de instalação de APK</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Serviço de descargas em segundo plano</string>
<string name="installer_am_unavailable">Instale App Manager ou mude o instalador.</string>
<string name="pref_install_mode_am">Instalador AM</string>
<string name="ui_accent_1">Azul</string>
<string name="ui_accent_3">Vermelho</string>
<string name="ui_accent_4">Dourado</string>
<string name="ui_accent_5">Verde</string>
<string name="ui_accent_6">Roxo</string>
<string name="ui_accent_7">Cinza</string>
<string name="ui_accent_8">Rosa</string>
<string name="ui_accent_9">Lima</string>
<string name="ui_accent_10">Laranja</string>
<string name="ui_accent_11">Azul claro</string>
<string name="ui_accent_12">Azul disskord</string>
<string name="ui_accent_13">Azul escuro</string>
<string name="ui_accent_2">Fúcsia</string>
<string name="action_import">Importar</string>
<string name="download_eta_hrs">Faltam %1$dh %2$dm %3$ds</string>
<string name="download_eta_sec">Faltam %1$ds</string>
@@ -296,7 +275,6 @@
<string name="session_verifying">A verificar sessão</string>
<string name="session_verifying_google">A verificar sessão Goggle</string>
<string name="toast_import_failed">Não foi possível importar a configuração do dispositivo</string>
<string name="ui_accent_0">Sistema</string>
<string name="update_available">atualização disponível</string>
<string name="updates_available">atualizações disponíveis</string>
<string name="permissions_denied">As permissões necessárias foram recusadas. Tem que as conceder para poder continuar.</string>

View File

@@ -221,21 +221,13 @@
<string name="toast_clipboard_copied">Copiat în clipboard</string>
<string name="pref_install_mode_session">Instalator sesiune</string>
<string name="pref_install_mode_title">Metoda de instalare</string>
<string name="pref_ui_theme_dark_x">Întunecată X</string>
<string name="pref_ui_similar_apps_desc">Afișare grupuri similare și asociate pe pagina de detalii a aplicației</string>
<string name="pref_network_title">Rețea</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_theme_system">Setat de sistem</string>
<string name="session_good">Vai! Toate bune.</string>
<string name="title_purchase_history">Istoricul achizițiilor</string>
<string name="pref_ui_accent_title">Accent</string>
<string name="pref_ui_theme_black">Negru</string>
<string name="pref_ui_theme_light">Luminoasă</string>
<string name="pref_ui_theme_title">Temă</string>
<string name="pref_ui_title">Personalizare</string>
<string name="purchase_no_file">Nu s-au putut obține fișiere</string>
<string name="session_enjoy">Autentifică-te și savurează.</string>
<string name="pref_ui_theme_dark">Întunecată</string>
<string name="pref_ui_layout">Aspect</string>
<string name="pref_ui_layout_tab">Selectează fila implicită</string>
<string name="pref_ui_no_for_you_desc">Afișare Recomandări pe ecranul de pornire</string>
@@ -267,28 +259,14 @@
<string name="toast_export_success">Configurația dispozitivului a fost exportată</string>
<string name="app_updater_service_notif_text">Activează descărcarea aplicațiilor în fundal</string>
<string name="toast_anonymous_restriction">Nu este disponibil pentru conturile anonime</string>
<string name="ui_accent_0">Sistem</string>
<string name="ui_accent_3">Roșu</string>
<string name="ui_accent_9">Lămâie verde</string>
<string name="toast_export_failed">Nu s-a putut exporta configurația dispozitivului</string>
<string name="ui_accent_2">Violet</string>
<string name="ui_accent_8">Roz</string>
<string name="ui_accent_11">Albastru deschis</string>
<string name="ui_accent_5">Verde</string>
<string name="ui_accent_10">Portocaliu</string>
<string name="ui_accent_1">Albastru</string>
<string name="updates_available">actualizări disponibile</string>
<string name="menu">Meniu</string>
<string name="spoof_property"><xliff:g id="manufacturer">%1$s</xliff:g> - API <xliff:g id="api">%2$s</xliff:g></string>
<string name="ui_accent_4">Auriu</string>
<string name="ui_accent_6">Violet</string>
<string name="ui_accent_7">Gri</string>
<string name="search_hint">Caută aplicații și jocuri</string>
<string name="ui_accent_12">Albastru intens</string>
<string name="rate_limited">Hopa, acest cont este limitat!</string>
<string name="error">A aparut o eroare!</string>
<string name="permissions_denied">Permisiunile necesare au fost refuzate. Acordă-le pentru a continua acțiunea</string>
<string name="ui_accent_13">Albastru închis</string>
<string name="update_available">actualizare disponibilă</string>
<string name="expand">Extinde</string>
<string name="requesting_new_session">Se solicită o nouă sesiune</string>

View File

@@ -172,14 +172,6 @@
<string name="purchase_invalid">Приложение не куплено</string>
<string name="purchase_failed">Ошибка загрузки</string>
<string name="pref_ui_title">Внешний вид</string>
<string name="pref_ui_theme_title">Тема</string>
<string name="pref_ui_theme_system">Определяется системой</string>
<string name="pref_ui_theme_dark_x">Темная X</string>
<string name="pref_ui_theme_dark">Темная</string>
<string name="pref_ui_theme_black">Черная</string>
<string name="pref_ui_theme_light">Светлая</string>
<string name="pref_ui_theme_darkord">Discord</string>
<string name="pref_ui_accent_title">Акцент</string>
<string name="pref_install_mode_title">Способ установки</string>
<string name="pref_install_mode_summary">Выберите режим установки APK</string>
<string name="pref_install_mode_services">Сервисы Aurora (Устарел)</string>
@@ -253,19 +245,6 @@
<string name="notification_channel_updater_service">Служба фоновой загрузки приложений</string>
<string name="installer_am_unavailable">Установите Менеджер Приложений или смените установщик.</string>
<string name="pref_install_mode_am">AppManager</string>
<string name="ui_accent_1">Синий</string>
<string name="ui_accent_2">Пурпурный</string>
<string name="ui_accent_3">Красный</string>
<string name="ui_accent_4">Золотой</string>
<string name="ui_accent_5">Зеленый</string>
<string name="ui_accent_6">Фиолетовый</string>
<string name="ui_accent_7">Серый</string>
<string name="ui_accent_8">Розовый</string>
<string name="ui_accent_9">Лайм</string>
<string name="ui_accent_10">Оранжевый</string>
<string name="ui_accent_11">Светло-синий</string>
<string name="ui_accent_13">Темно-синий</string>
<string name="ui_accent_12">Насыщенно-синий</string>
<string name="download_paused">Приостановлено • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g></string>
<string name="download_progress">Загрузка • <xliff:g id="completed_downloads">%1$d</xliff:g> / <xliff:g id="all_downloads">%2$d</xliff:g><xliff:g id="speed">%3$s</xliff:g></string>
<string name="session_scrapped">Последний сеанс отменен</string>
@@ -286,7 +265,6 @@
<string name="update_available">обновление</string>
<string name="updates_available">обновления(-ий)</string>
<string name="error">Произошла ошибка!</string>
<string name="ui_accent_0">Система</string>
<string name="rate_limited">Сожалеем, аккаунт имеет слишком много попыток входа!</string>
<string name="permissions_denied">Необходимые разрешения были отклонены. Пожалуйста, предоставьте их, чтобы продолжить действие</string>
<string name="search_hint">Поиск в Приложениях и Играх</string>

Some files were not shown because too many files have changed in this diff Show More