mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
change button text for syncing party
This commit is contained in:
@@ -45,6 +45,7 @@
|
|||||||
"chat": "Chat",
|
"chat": "Chat",
|
||||||
"sendChat": "Send Chat",
|
"sendChat": "Send Chat",
|
||||||
"toolTipMsg": "Fetch Recent Messages",
|
"toolTipMsg": "Fetch Recent Messages",
|
||||||
|
"syncPartyAndChat": "Sync Party and Chat",
|
||||||
"guildBankPop1": "Guild Bank",
|
"guildBankPop1": "Guild Bank",
|
||||||
"guildBankPop2": "Gems which your guild leader can use for challenge prizes.",
|
"guildBankPop2": "Gems which your guild leader can use for challenge prizes.",
|
||||||
"guildGems": "Guild Gems",
|
"guildGems": "Guild Gems",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ div.chat-form.guidelines-not-accepted(ng-if='!user.flags.communityGuidelinesAcce
|
|||||||
div
|
div
|
||||||
button.btn.btn-warning(ng-click='acceptCommunityGuidelines()')=env.t('iAcceptCommunityGuidelines')
|
button.btn.btn-warning(ng-click='acceptCommunityGuidelines()')=env.t('iAcceptCommunityGuidelines')
|
||||||
.chat-buttons
|
.chat-buttons
|
||||||
button(type="button", ng-click='sync(group)')=env.t('toolTipMsg')
|
button(type="button", ng-click='sync(group)') {{group.type === 'party' ? env.t('syncPartyAndChat') : env.t('toolTipMsg')}}
|
||||||
|
|
||||||
form.chat-form(ng-if='user.flags.communityGuidelinesAccepted' ng-submit='postChat(group,message.content)')
|
form.chat-form(ng-if='user.flags.communityGuidelinesAccepted' ng-submit='postChat(group,message.content)')
|
||||||
div(ng-controller='AutocompleteCtrl')
|
div(ng-controller='AutocompleteCtrl')
|
||||||
@@ -16,7 +16,7 @@ form.chat-form(ng-if='user.flags.communityGuidelinesAccepted' ng-submit='postCha
|
|||||||
.chat-controls.clearfix
|
.chat-controls.clearfix
|
||||||
.chat-buttons
|
.chat-buttons
|
||||||
input.btn(type='submit', value=env.t('sendChat'), ng-disabled='_sending')
|
input.btn(type='submit', value=env.t('sendChat'), ng-disabled='_sending')
|
||||||
button.btn(type="button", ng-click='sync(group)', ng-disabled='_sending')=env.t('toolTipMsg')
|
button.btn(type="button", ng-click='sync(group)', ng-disabled='_sending') {{group.type === 'party' ? env.t('syncPartyAndChat') : env.t('toolTipMsg')}}
|
||||||
include ../../shared/formatting-help
|
include ../../shared/formatting-help
|
||||||
.chat-controls.clearfix
|
.chat-controls.clearfix
|
||||||
.chat-buttons
|
.chat-buttons
|
||||||
|
|||||||
Reference in New Issue
Block a user