mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
chore: Add missing label to locale file (#1513)
This commit is contained in:
@@ -47,8 +47,13 @@
|
|||||||
:is-a-tweet="isATweet"
|
:is-a-tweet="isATweet"
|
||||||
/>
|
/>
|
||||||
<li v-show="getUnreadCount != 0" class="unread--toast">
|
<li v-show="getUnreadCount != 0" class="unread--toast">
|
||||||
<span>
|
<span class="text-uppercase">
|
||||||
{{ getUnreadCount }} UNREAD MESSAGE{{ getUnreadCount > 1 ? 'S' : '' }}
|
{{ getUnreadCount }}
|
||||||
|
{{
|
||||||
|
getUnreadCount > 1
|
||||||
|
? $t('CONVERSATION.UNREAD_MESSAGES')
|
||||||
|
: $t('CONVERSATION.UNREAD_MESSAGE')
|
||||||
|
}}
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<message
|
<message
|
||||||
|
|||||||
@@ -13,6 +13,8 @@
|
|||||||
"PLACEHOLDER": "Type any text to search messages",
|
"PLACEHOLDER": "Type any text to search messages",
|
||||||
"NO_MATCHING_RESULTS": "There are no messages matching the search parameters."
|
"NO_MATCHING_RESULTS": "There are no messages matching the search parameters."
|
||||||
},
|
},
|
||||||
|
"UNREAD_MESSAGES": "Unread Messages",
|
||||||
|
"UNREAD_MESSAGE": "Unread Message",
|
||||||
"CLICK_HERE": "Click here",
|
"CLICK_HERE": "Click here",
|
||||||
"LOADING_INBOXES": "Loading inboxes",
|
"LOADING_INBOXES": "Loading inboxes",
|
||||||
"LOADING_CONVERSATIONS": "Loading Conversations",
|
"LOADING_CONVERSATIONS": "Loading Conversations",
|
||||||
|
|||||||
Reference in New Issue
Block a user