summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-02-18 21:55:43 +0100
committerJoffrey Bion <joffrey.bion@gmail.com>2021-02-18 21:55:43 +0100
commit0beddd31859fb14c2e3dce13a58baa128375eadd (patch)
treee6385b8fba970e73d442034042b75f1e92bb9e7d
parentRemove unnecessary Heroku file (diff)
downloadseven-wonders-0beddd31859fb14c2e3dce13a58baa128375eadd.tar.gz
seven-wonders-0beddd31859fb14c2e3dce13a58baa128375eadd.tar.bz2
seven-wonders-0beddd31859fb14c2e3dce13a58baa128375eadd.zip
Improve wording to avoid pronoun
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt
index 3da63a38..9a9dc90f 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt
@@ -46,7 +46,7 @@ private class PlayerPreparedCard(props: PlayerPreparedCardProps) : RComponent<Pl
title = if (cardBack == null) {
"${props.playerDisplayName} is still thinking…"
} else {
- "${props.playerDisplayName} has prepared his move"
+ "${props.playerDisplayName} is ready to play this turn"
}
}
if (cardBack != null) {
bgstack15