mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-19 20:29:02 +00:00
Fix rage strike npc names. Fixes #945
This commit is contained in:
parent
d12f1d3762
commit
6c80b19ec2
2 changed files with 4 additions and 2 deletions
|
|
@ -774,4 +774,6 @@
|
|||
<string name="world_boss_description_4">Check the Tavern to see Boss progress and Rage attacks</string>
|
||||
<string name="world_boss_action_prompt" formatted="false">Defeat the Boss to earn special rewards and save Habitica from %s’s Terror!</string>
|
||||
<string name="world_boss_description_subtitle">%s attacks!</string>
|
||||
<string name="questShop_owner_long">Ian the Quest Guide</string>
|
||||
<string name="seasonalShop_owner_long">Seasonal Sorceress</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -288,8 +288,8 @@ class QuestProgressView : LinearLayout {
|
|||
return when (key) {
|
||||
"market" -> context.getString(R.string.market_owner_long)
|
||||
"tavern" -> context.getString(R.string.tavern_owner_long)
|
||||
"questShop" -> context.getString(R.string.questShop_owner)
|
||||
"seasonalShop" -> context.getString(R.string.seasonalShop_owner)
|
||||
"questShop" -> context.getString(R.string.questShop_owner_long)
|
||||
"seasonalShop" -> context.getString(R.string.seasonalShop_owner_long)
|
||||
"stable" -> context.getString(R.string.stable_owner_long)
|
||||
else -> ""
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue