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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
274 changed files with 7948 additions and 1944 deletions

View file

@ -162,13 +162,13 @@ export class LeftPaneSearchHelper extends LeftPaneHelper<LeftPaneSearchPropsType
noResults = (
<>
<div>
{i18n('noSearchResults', {
{i18n('icu:noSearchResults', {
searchTerm,
})}
</div>
{primarySendsSms && (
<div className="module-left-pane__no-search-results__sms-only">
{i18n('noSearchResults--sms-only')}
{i18n('icu:noSearchResults--sms-only')}
</div>
)}
</>
@ -229,7 +229,7 @@ export class LeftPaneSearchHelper extends LeftPaneHelper<LeftPaneSearchPropsType
if (rowIndex === 0) {
return {
type: RowType.Header,
getHeaderText: i18n => i18n('conversationsHeader'),
getHeaderText: i18n => i18n('icu:conversationsHeader'),
};
}
assertDev(
@ -250,7 +250,7 @@ export class LeftPaneSearchHelper extends LeftPaneHelper<LeftPaneSearchPropsType
if (localIndex === 0) {
return {
type: RowType.Header,
getHeaderText: i18n => i18n('contactsHeader'),
getHeaderText: i18n => i18n('icu:contactsHeader'),
};
}
assertDev(
@ -274,7 +274,7 @@ export class LeftPaneSearchHelper extends LeftPaneHelper<LeftPaneSearchPropsType
if (localIndex === 0) {
return {
type: RowType.Header,
getHeaderText: i18n => i18n('messagesHeader'),
getHeaderText: i18n => i18n('icu:messagesHeader'),
};
}
assertDev(