1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-3556 Onboarding | Fix | Change the placeholder "Untitled" to the "Your Name"

This commit is contained in:
Evgenii Kozlov 2025-04-10 13:06:52 +02:00
parent 2b633cf69a
commit 4a3a4947c5
2 changed files with 3 additions and 2 deletions

View file

@ -94,7 +94,7 @@ private fun SetProfileNameScreen(
onBackClicked()
},
painter = painterResource(id = R.drawable.ic_back_onboarding_32),
contentDescription = "Back button"
contentDescription = stringResource(R.string.content_description_back_button_icon)
)
SetProfileNameNextButton(
modifier = Modifier
@ -148,7 +148,7 @@ fun SetProfileNameInput(
.focusRequester(focusRequester)
,
text = text,
placeholder = stringResource(id = R.string.untitled),
placeholder = stringResource(id = R.string.onboarding_your_name),
keyboardActions = KeyboardActions(
onDone = {
focus.clearFocus()

View file

@ -1138,6 +1138,7 @@
<string name="onboarding_login_or">OR</string>
<string name="onboarding_entering_void_title">Entering the Void</string>
<string name="onboarding_your_key_can_t_be_empty">Your Key can\'t be empty</string>
<string name="onboarding_your_name">Your name</string>
<string name="onboarding_mnemonic_read_more">Read more about Key</string>
<string name="onboarding_key_additional_info">You can find this key later in app settings</string>