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

DROID-2957 Membership | Any name localization fix (#1722)

This commit is contained in:
Konstantin Ivanov 2024-10-23 13:42:29 +02:00 committed by Evgenii Kozlov
parent 60d2549438
commit 459b3ceade
2 changed files with 3 additions and 3 deletions

View file

@ -103,7 +103,7 @@ fun AnyNameView(
color = colorResource(id = R.color.text_tertiary)
)
Text(
text = stringResource(id = R.string.payments_tier_details_name_domain),
text = stringResource(id = R.string.payments_tier_details_name_domain_not_translatable),
style = BodyRegular,
color = colorResource(id = R.color.text_tertiary)
)
@ -131,7 +131,7 @@ fun AnyNameView(
interactionSource = remember { MutableInteractionSource() }
)
Text(
text = stringResource(id = R.string.payments_tier_details_name_domain),
text = stringResource(id = R.string.payments_tier_details_name_domain_not_translatable),
style = BodyRegular,
color = colorResource(id = R.color.text_primary)
)