updated the strange wording (#6378)
Some checks are pending
Android CI / Run tests and generate APK (push) Waiting to run

This commit is contained in:
Shravya K Suresh 2025-07-16 19:41:21 +05:30 committed by GitHub
parent e5dbcfc2a1
commit 88565b70c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 55 additions and 29 deletions

View file

@ -114,13 +114,13 @@ class MoreBottomSheetFragment : BottomSheetDialogFragment() {
val level = store.getString("userAchievementsLevel", "0")
if (level == "0"){
binding?.moreProfile?.text = getString(
R.string.profileLevel,
R.string.profile_withoutLevel,
getUserName(),
getString(R.string.see_your_achievements) // Second argument
)
} else {
binding?.moreProfile?.text = getString(
R.string.profileLevel,
R.string.profile_withLevel,
getUserName(),
level
)