File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/components/MessageItem Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,6 @@ export default {
1414 mark : 'Mark as Unread' ,
1515 unmark : 'Mark as Read' ,
1616 delete : 'Delete' ,
17+ groupConversation : 'Group Conversation' ,
18+ conversation : 'Text Message'
1719} ;
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ function ConversationIcon({
3434 break ;
3535 default :
3636 title = group ?
37- i18n . getString ( messageTypes . groupConversation , currentLocale ) :
38- i18n . getString ( messageTypes . conversation , currentLocale ) ;
37+ i18n . getString ( ' groupConversation' , currentLocale ) :
38+ i18n . getString ( ' conversation' , currentLocale ) ;
3939 icon = group ?
4040 < GroupConversationIcon width = { 19 } className = { styles . icon } /> :
4141 < ComposeTextIcon width = { 18 } className = { styles . icon } /> ;
You can’t perform that action at this time.
0 commit comments