💡 Rename discipline buttons from "Activate/Pause" to "Start Practicing/Stop Practicing" #121
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Request
The discipline activation buttons currently show "Activate" / "Pause". These should be renamed to "Start Practicing" / "Stop Practicing" to better match the game's theme.
Files to Change
src/components/game/tabs/DisciplinesTab.tsx— In theDisciplineCardcomponent, change:{isPaused ? 'Activate' : 'Pause'}→{isPaused ? 'Start Practicing' : 'Stop Practicing'}Context
This is a simple text change in the button rendering logic within the
DisciplineCardcomponent. The button is rendered at the bottom of each discipline card.Starting work on renaming discipline buttons from "Activate/Pause" to "Start Practicing/Stop Practicing"
✅ Fixed. Renamed discipline button labels in
src/components/game/tabs/DisciplinesTab.tsx:"Activate"→"Start Practicing""Pause"→"Stop Practicing"Commit
f22ebf1pushed to master.