mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Fully migrate to ICU
This commit is contained in:
@@ -85,10 +85,10 @@ export function MyStoryButton({
|
||||
</div>
|
||||
<div className="StoryListItem__info">
|
||||
<div className="StoryListItem__info--title">
|
||||
{i18n('Stories__mine')}
|
||||
{i18n('icu:Stories__mine')}
|
||||
</div>
|
||||
<div className="StoryListItem__info--timestamp">
|
||||
{i18n('Stories__add')}
|
||||
{i18n('icu:Stories__add')}
|
||||
</div>
|
||||
</div>
|
||||
</StoriesAddStoryButton>
|
||||
@@ -153,21 +153,21 @@ export function MyStoryButton({
|
||||
>
|
||||
<div className="StoryListItem__info">
|
||||
<div className="StoryListItem__info--title StoryListItem__chevron">
|
||||
{i18n('MyStories__list_item')}
|
||||
{i18n('icu:MyStories__list_item')}
|
||||
</div>
|
||||
{reducedSendStatus === ResolvedSendStatus.Sending && (
|
||||
<span className="StoryListItem__info--sending">
|
||||
{i18n('Stories__list--sending')}
|
||||
{i18n('icu:Stories__list--sending')}
|
||||
</span>
|
||||
)}
|
||||
{reducedSendStatus === ResolvedSendStatus.Failed && (
|
||||
<span className="StoryListItem__info--send_failed">
|
||||
{i18n('Stories__list--send_failed')}
|
||||
{i18n('icu:Stories__list--send_failed')}
|
||||
</span>
|
||||
)}
|
||||
{reducedSendStatus === ResolvedSendStatus.PartiallySent && (
|
||||
<span className="StoryListItem__info--send_failed">
|
||||
{i18n('Stories__list--partially-sent')}
|
||||
{i18n('icu:Stories__list--partially-sent')}
|
||||
</span>
|
||||
)}
|
||||
{reducedSendStatus === ResolvedSendStatus.Sent && (
|
||||
@@ -180,7 +180,7 @@ export function MyStoryButton({
|
||||
)}
|
||||
</div>
|
||||
<div
|
||||
aria-label={i18n('StoryListItem__label')}
|
||||
aria-label={i18n('icu:StoryListItem__label')}
|
||||
className={classNames('StoryListItem__previews', {
|
||||
'StoryListItem__previews--multiple': hasMultiple,
|
||||
})}
|
||||
@@ -188,7 +188,7 @@ export function MyStoryButton({
|
||||
{hasMultiple && <div className="StoryListItem__previews--more" />}
|
||||
<StoryImage
|
||||
attachment={newestStory.attachment}
|
||||
firstName={i18n('you')}
|
||||
firstName={i18n('icu:you')}
|
||||
i18n={i18n}
|
||||
isMe
|
||||
isThumbnail
|
||||
|
||||
Reference in New Issue
Block a user