Fully migrate to ICU
This commit is contained in:
parent
d4e7177ba6
commit
5e647c55d1
274 changed files with 7948 additions and 1944 deletions
|
@ -109,7 +109,7 @@ export const ConversationListItem: FunctionComponent<Props> = React.memo(
|
|||
<ContactName
|
||||
module={HEADER_CONTACT_NAME_CLASS_NAME}
|
||||
isMe={isMe}
|
||||
title={i18n('noteToSelf')}
|
||||
title={i18n('icu:noteToSelf')}
|
||||
/>
|
||||
) : (
|
||||
<ContactName
|
||||
|
@ -128,7 +128,7 @@ export const ConversationListItem: FunctionComponent<Props> = React.memo(
|
|||
if (!acceptedMessageRequest) {
|
||||
messageText = (
|
||||
<span className={`${MESSAGE_TEXT_CLASS_NAME}__message-request`}>
|
||||
{i18n('ConversationListItem--message-request')}
|
||||
{i18n('icu:ConversationListItem--message-request')}
|
||||
</span>
|
||||
);
|
||||
} else if (typingContactId) {
|
||||
|
@ -137,7 +137,7 @@ export const ConversationListItem: FunctionComponent<Props> = React.memo(
|
|||
messageText = (
|
||||
<>
|
||||
<span className={`${MESSAGE_TEXT_CLASS_NAME}__draft-prefix`}>
|
||||
{i18n('ConversationListItem--draft-prefix')}
|
||||
{i18n('icu:ConversationListItem--draft-prefix')}
|
||||
</span>
|
||||
<MessageBody
|
||||
text={truncateMessageText(draftPreview)}
|
||||
|
@ -150,7 +150,7 @@ export const ConversationListItem: FunctionComponent<Props> = React.memo(
|
|||
} else if (lastMessage?.deletedForEveryone) {
|
||||
messageText = (
|
||||
<span className={`${MESSAGE_TEXT_CLASS_NAME}__deleted-for-everyone`}>
|
||||
{i18n('message--deletedForEveryone')}
|
||||
{i18n('icu:message--deletedForEveryone')}
|
||||
</span>
|
||||
);
|
||||
} else if (lastMessage) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue