mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-03 20:49:41 +00:00
* 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:
parent
1ebda8281b
commit
8935885637
2 changed files with 2 additions and 1 deletions
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue