diff --git a/common/locales/en/groups.json b/common/locales/en/groups.json index 0c270ee83c..f4c2fb2005 100644 --- a/common/locales/en/groups.json +++ b/common/locales/en/groups.json @@ -147,7 +147,6 @@ "partyChatEmpty": "Your party chat is empty! Type a message in the box above to start chatting.", "guildChatEmpty": "This guild's chat is empty! Type a message in the box above to start chatting.", "possessiveParty": "<%= name %>'s Party", - "requestAcceptGuidelines1": "If you would like to post messages in the Tavern or any party or guild chat, please first read our", - "requestAcceptGuidelines2": "and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Communit Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." } diff --git a/website/views/options/social/chat-box.jade b/website/views/options/social/chat-box.jade index 03c16a2748..1bc2602b76 100644 --- a/website/views/options/social/chat-box.jade +++ b/website/views/options/social/chat-box.jade @@ -1,9 +1,5 @@ div.chat-form.guidelines-not-accepted(ng-if='!user.flags.communityGuidelinesAccepted') - p=env.t('requestAcceptGuidelines1') - |  - a(target='_blank', href='/static/community-guidelines')=env.t('communityGuidelines') - |  - =env.t('requestAcceptGuidelines2') + p!=env.t('requestAcceptGuidelines', {linkStart: '', linkEnd: ''}) .chat-controls div button.btn.btn-warning(ng-click='acceptCommunityGuidelines()')=env.t('iAcceptCommunityGuidelines')