mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-04 23:25:41 +00:00
Fixing strings
This commit is contained in:
parent
32acd6e029
commit
28d59f9ec9
@ -21,7 +21,6 @@ fun OnboardingBackPressAlertDialog(
|
|||||||
quit: () -> Unit
|
quit: () -> Unit
|
||||||
) {
|
) {
|
||||||
val c = LocalContext.current
|
val c = LocalContext.current
|
||||||
val quitButtonText = c.getSubbedString(R.string.quit, APP_NAME_KEY to APP_NAME)
|
|
||||||
|
|
||||||
AlertDialog(
|
AlertDialog(
|
||||||
onDismissRequest = dismissDialog,
|
onDismissRequest = dismissDialog,
|
||||||
@ -31,7 +30,7 @@ fun OnboardingBackPressAlertDialog(
|
|||||||
},
|
},
|
||||||
buttons = listOf(
|
buttons = listOf(
|
||||||
DialogButtonModel(
|
DialogButtonModel(
|
||||||
text = GetString(quitButtonText),
|
text = GetString(stringResource(id = R.string.quitButton)),
|
||||||
color = LocalColors.current.danger,
|
color = LocalColors.current.danger,
|
||||||
onClick = quit
|
onClick = quit
|
||||||
),
|
),
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ripple
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:color="?android:colorControlHighlight">
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<color android:color="?colorPrimary" />
|
||||||
|
</item>
|
||||||
|
</ripple>
|
@ -124,7 +124,7 @@
|
|||||||
android:id="@+id/emptyStateMessageTextView"
|
android:id="@+id/emptyStateMessageTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/conversationsNone"
|
android:text="@string/contactNone"
|
||||||
android:textColor="?android:textColorPrimary"
|
android:textColor="?android:textColorPrimary"
|
||||||
android:textSize="@dimen/medium_font_size"
|
android:textSize="@dimen/medium_font_size"
|
||||||
app:layout_constraintBottom_toTopOf="@id/createNewPrivateChatButton"
|
app:layout_constraintBottom_toTopOf="@id/createNewPrivateChatButton"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user