mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-13 15:38:59 +00:00
This commit is contained in:
parent
c941511d11
commit
48b520509c
2 changed files with 4 additions and 3 deletions
|
|
@ -121,5 +121,6 @@
|
||||||
"sendGiftSubscription": "<%= months %> Month(s): $<%= price %>",
|
"sendGiftSubscription": "<%= months %> Month(s): $<%= price %>",
|
||||||
"battleWithFriends": "Battle Monsters With Friends",
|
"battleWithFriends": "Battle Monsters With Friends",
|
||||||
"startAParty": "Start a Party",
|
"startAParty": "Start a Party",
|
||||||
"addToParty": "Add someone to your party"
|
"addToParty": "Add someone to your party",
|
||||||
|
"likePost": "Click if you like this post!"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@ mixin chatMessages(inbox)
|
||||||
span.muted.time(from-now='::message.timestamp' tooltip="{{::message.timestamp | date:user.preferences.dateFormat.concat(' HH:mm:ss')}}")
|
span.muted.time(from-now='::message.timestamp' tooltip="{{::message.timestamp | date:user.preferences.dateFormat.concat(' HH:mm:ss')}}")
|
||||||
unless inbox
|
unless inbox
|
||||||
span
|
span
|
||||||
a.label.label-default(ng-show='countExists(message.likes)', ng-class='{"label-success":message.likes[user._id]}', ng-click='likeChatMessage(group,message)') +{{countExists(message.likes)}}
|
a.label.label-default(ng-show='countExists(message.likes)', ng-class='{"label-success":message.likes[user._id]}', ng-click='likeChatMessage(group,message)', tooltip=env.t('likePost')) +{{countExists(message.likes)}}
|
||||||
a.chat-plus-one.muted(ng-show='!countExists(message.likes)', ng-click='likeChatMessage(group, message)') +1
|
a.chat-plus-one.muted(ng-show='!countExists(message.likes)', ng-click='likeChatMessage(group, message)', tooltip=env.t('likePost')) +1
|
||||||
span(ng-if=":: message.uuid != 'system'")
|
span(ng-if=":: message.uuid != 'system'")
|
||||||
a(ng-click="quickReply(message.uuid)")
|
a(ng-click="quickReply(message.uuid)")
|
||||||
span.glyphicon.glyphicon-envelope(tooltip=env.t('sendPM'))
|
span.glyphicon.glyphicon-envelope(tooltip=env.t('sendPM'))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue