Renaming a party shows you the placeholder text for renaming a guild #12273 (#12278)

* NewPartyPlaceholder "Enter your party's name"

* Added new placeholder and if statement to display either "party's name" or "guild's name" (issue 12273)
This commit is contained in:
PitiTheGrey 2020-06-07 12:59:12 +02:00 committed by GitHub
parent 1ebda8281b
commit 8935885637
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -13,7 +13,7 @@
<b-form-input
v-model="workingGroup.name"
type="text"
:placeholder="$t('newGuildPlaceholder')"
:placeholder="isParty ? $t('newPartyPlaceholder') : $t('newGuildPlaceholder')"
/>
</div>
<div class="form-group">

View file

@ -371,6 +371,7 @@
"groupPolicyCannotGetGems": "The policy of one group you're part of prevents its members from obtaining gems.",
"viewParty": "View Party",
"newGuildPlaceholder": "Enter your guild's name.",
"newPartyPlaceholder": "Enter your party's name.",
"guildMembers": "Guild Members",
"guildBank": "Guild Bank",
"chatPlaceholder": "Type your message to Guild members here",