From 70da5940a765cb200a88c62e156893efb3742b8b Mon Sep 17 00:00:00 2001 From: Alys Date: Tue, 30 Jan 2018 06:52:28 +1000 Subject: [PATCH] clarify that "Leave" refers to guild/party; fix pluralisation in keep/remove challenge tasks (#9706) * change "Keep/Remove It" to "Keep/Remove Them" when asking about all challenge tasks while leaving a challenge * change "Leave" button on groups to "Leave Guild" or "Leave Party" This is because the button is underneath the challenges so this clarifies that it is referring to the group, not a challenge. * change "Keep/Remove Them" to "Keep/Remove Tasks" --- .../client/components/challenges/leaveChallengeModal.vue | 4 ++-- website/client/components/groups/group.vue | 2 +- website/common/locales/en/challenge.json | 4 ++-- website/common/locales/en/groups.json | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/website/client/components/challenges/leaveChallengeModal.vue b/website/client/components/challenges/leaveChallengeModal.vue index 0f889cf6d0..0925a4e1d0 100644 --- a/website/client/components/challenges/leaveChallengeModal.vue +++ b/website/client/components/challenges/leaveChallengeModal.vue @@ -3,8 +3,8 @@ .modal-body h2 {{ $t('confirmKeepChallengeTasks') }} div - button.btn.btn-primary(@click='leaveChallenge("keep")') {{ $t('keepIt') }} - button.btn.btn-danger(@click='leaveChallenge("remove-all")') {{ $t('removeIt') }} + button.btn.btn-primary(@click='leaveChallenge("keep")') {{ $t('keepThem') }} + button.btn.btn-danger(@click='leaveChallenge("remove-all")') {{ $t('removeThem') }}