fix(app): two letters locale

This commit is contained in:
rhunk
2024-01-04 15:56:27 +01:00
parent 49bc15cf1b
commit d1c4b4febe
4 changed files with 25 additions and 10 deletions

View File

@@ -211,7 +211,7 @@ class HomeSection : Section() {
)
Text(
text = arrayOf("\u0020", "\u0065", "\u0063", "\u006e", "\u0061", "\u0068", "\u006e", "\u0045", "\u0070", "\u0061", "\u006e", "\u0053").reversed().joinToString(""),
text = remember { intArrayOf(101,99,110,97,104,110,69,112,97,110,83).map { it.toChar() }.joinToString("").reversed() },
fontSize = 30.sp,
fontFamily = avenirNextFontFamily,
modifier = Modifier.align(Alignment.CenterHorizontally),
@@ -225,7 +225,7 @@ class HomeSection : Section() {
)
Text(
text = "An Xposed module made to enhance your Snapchat experience",
text = "An xposed module made to enhance your Snapchat experience",
modifier = Modifier
.padding(16.dp)
.fillMaxWidth(),
@@ -245,7 +245,9 @@ class HomeSection : Section() {
modifier = Modifier.size(32.dp).clickable {
context.activity?.startActivity(
Intent(Intent.ACTION_VIEW).apply {
data = Uri.parse("https://github.com/rhunk/SnapEnhance")
data = Uri.parse(
intArrayOf(101,99,110,97,104,110,69,112,97,110,83,47,107,110,117,104,114,47,109,111,99,46,98,117,104,116,105,103,47,47,58,115,112,116,116,104).map { it.toChar() }.joinToString("").reversed()
)
flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
)
@@ -258,7 +260,9 @@ class HomeSection : Section() {
modifier = Modifier.size(32.dp).clickable {
context.activity?.startActivity(
Intent(Intent.ACTION_VIEW).apply {
data = Uri.parse("https://t.me/snapenhance")
data = Uri.parse(
intArrayOf(101,99,110,97,104,110,101,112,97,110,115,47,101,109,46,116,47,47,58,115,112,116,116,104).map { it.toChar() }.joinToString("").reversed()
)
flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
)

View File

@@ -40,6 +40,7 @@ class PickLanguageScreen : SetupScreen(){
private fun getLocaleDisplayName(locale: String): String {
locale.split("_").let {
if (it.size != 2) return Locale(locale).getDisplayName(Locale.getDefault())
return Locale(it[0], it[1]).getDisplayName(Locale.getDefault())
}
}
@@ -105,7 +106,7 @@ class PickLanguageScreen : SetupScreen(){
contentAlignment = Alignment.Center
) {
Text(
text = getLocaleDisplayName(locale),
text = remember(locale) { getLocaleDisplayName(locale) },
fontSize = 16.sp,
fontWeight = FontWeight.Light,
)
@@ -125,7 +126,7 @@ class PickLanguageScreen : SetupScreen(){
Button(onClick = {
isDialog = true
}) {
Text(text = getLocaleDisplayName(selectedLocale.value), fontSize = 16.sp,
Text(text = remember(selectedLocale.value) { getLocaleDisplayName(selectedLocale.value) }, fontSize = 16.sp,
fontWeight = FontWeight.Normal)
}
}