Rename deleted strings

This commit is contained in:
Fedor Indutny 2025-01-15 13:04:44 -08:00 committed by GitHub
parent 115d40921e
commit f90f70c48c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 4 deletions

View file

@ -1516,11 +1516,11 @@
},
"icu:retryDownload": {
"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": {
"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": {
"messageformat": "{count, plural, one {# item} other {# items}}",
@ -6075,6 +6075,14 @@
"messageformat": "Choose a 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": {
"messageformat": "Group Avatar",
"description": "Title for the avatar picker in the group creation flow"

View file

@ -102,7 +102,7 @@ export function AttachmentDetailPill({
let text: JSX.Element;
if (!areAnyPending && totalDownloadedSize > 0) {
ariaLabel = i18n('icu:retryDownload');
ariaLabel = i18n('icu:AttachmentDetailPill__retryDownload');
onClick = startDownloadClick;
onKeyDown = startDownloadKeyDown;
control = (
@ -112,7 +112,7 @@ export function AttachmentDetailPill({
);
text = (
<div className="AttachmentDetailPill__text-wrapper">
{i18n('icu:retryDownloadShort')}
{i18n('icu:AttachmentDetailPill__retryDownloadShort')}
</div>
);
} else if (!areAnyPending) {