Rename deleted strings
This commit is contained in:
@@ -1516,11 +1516,11 @@
|
|||||||
},
|
},
|
||||||
"icu:retryDownload": {
|
"icu:retryDownload": {
|
||||||
"messageformat": "Retry download",
|
"messageformat": "Retry download",
|
||||||
"description": "Label for button shown on an existing download to restart a download that was partially completed"
|
"description": "(Deleted 2024/12/12) Label for button shown on an existing download to restart a download that was partially completed"
|
||||||
},
|
},
|
||||||
"icu:retryDownloadShort": {
|
"icu:retryDownloadShort": {
|
||||||
"messageformat": "Retry",
|
"messageformat": "Retry",
|
||||||
"description": "Describes a button shown on an existing download to restart a download that was partially completed"
|
"description": "(Deleted 2024/12/12) Describes a button shown on an existing download to restart a download that was partially completed"
|
||||||
},
|
},
|
||||||
"icu:downloadNItems": {
|
"icu:downloadNItems": {
|
||||||
"messageformat": "{count, plural, one {# item} other {# items}}",
|
"messageformat": "{count, plural, one {# item} other {# items}}",
|
||||||
@@ -6075,6 +6075,14 @@
|
|||||||
"messageformat": "Choose a color",
|
"messageformat": "Choose a color",
|
||||||
"description": "Label for when you need to choose your fighter, err color"
|
"description": "Label for when you need to choose your fighter, err color"
|
||||||
},
|
},
|
||||||
|
"icu:AttachmentDetailPill__retryDownload": {
|
||||||
|
"messageformat": "Retry download",
|
||||||
|
"description": "Label for button shown on an existing download to restart a download that was partially completed"
|
||||||
|
},
|
||||||
|
"icu:AttachmentDetailPill__retryDownloadShort": {
|
||||||
|
"messageformat": "Retry",
|
||||||
|
"description": "Describes a button shown on an existing download to restart a download that was partially completed"
|
||||||
|
},
|
||||||
"icu:LeftPaneSetGroupMetadataHelper__avatar-modal-title": {
|
"icu:LeftPaneSetGroupMetadataHelper__avatar-modal-title": {
|
||||||
"messageformat": "Group Avatar",
|
"messageformat": "Group Avatar",
|
||||||
"description": "Title for the avatar picker in the group creation flow"
|
"description": "Title for the avatar picker in the group creation flow"
|
||||||
|
@@ -102,7 +102,7 @@ export function AttachmentDetailPill({
|
|||||||
let text: JSX.Element;
|
let text: JSX.Element;
|
||||||
|
|
||||||
if (!areAnyPending && totalDownloadedSize > 0) {
|
if (!areAnyPending && totalDownloadedSize > 0) {
|
||||||
ariaLabel = i18n('icu:retryDownload');
|
ariaLabel = i18n('icu:AttachmentDetailPill__retryDownload');
|
||||||
onClick = startDownloadClick;
|
onClick = startDownloadClick;
|
||||||
onKeyDown = startDownloadKeyDown;
|
onKeyDown = startDownloadKeyDown;
|
||||||
control = (
|
control = (
|
||||||
@@ -112,7 +112,7 @@ export function AttachmentDetailPill({
|
|||||||
);
|
);
|
||||||
text = (
|
text = (
|
||||||
<div className="AttachmentDetailPill__text-wrapper">
|
<div className="AttachmentDetailPill__text-wrapper">
|
||||||
{i18n('icu:retryDownloadShort')}
|
{i18n('icu:AttachmentDetailPill__retryDownloadShort')}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else if (!areAnyPending) {
|
} else if (!areAnyPending) {
|
||||||
|
Reference in New Issue
Block a user