Fully migrate to ICU

This commit is contained in:
Jamie Kyle
2023-03-29 17:03:25 -07:00
committed by GitHub
parent d4e7177ba6
commit 5e647c55d1
274 changed files with 7948 additions and 1944 deletions

View File

@@ -44,7 +44,7 @@ function UnsupportedMessageContents({ canProcessNow, contact, i18n }: Props) {
if (canProcessNow) {
return (
<Intl
id="Message--unsupported-message-ask-to-resend"
id="icu:Message--unsupported-message-ask-to-resend"
components={{ contact: contactName }}
i18n={i18n}
/>
@@ -52,7 +52,7 @@ function UnsupportedMessageContents({ canProcessNow, contact, i18n }: Props) {
}
return (
<Intl
id="Message--from-me-unsupported-message"
id="icu:Message--from-me-unsupported-message"
components={{ contact: contactName }}
i18n={i18n}
/>
@@ -61,7 +61,7 @@ function UnsupportedMessageContents({ canProcessNow, contact, i18n }: Props) {
if (canProcessNow) {
return (
<Intl
id="Message--from-me-unsupported-message-ask-to-resend"
id="icu:Message--from-me-unsupported-message-ask-to-resend"
components={{ contact: contactName }}
i18n={i18n}
/>
@@ -69,7 +69,7 @@ function UnsupportedMessageContents({ canProcessNow, contact, i18n }: Props) {
}
return (
<Intl
id="Message--from-me-unsupported-message"
id="icu:Message--from-me-unsupported-message"
components={{ contact: contactName }}
i18n={i18n}
/>
@@ -101,7 +101,7 @@ export function UnsupportedMessage({
size={ButtonSize.Small}
variant={ButtonVariant.SystemMessage}
>
{i18n('Message--update-signal')}
{i18n('icu:Message--update-signal')}
</Button>
</div>
)