feat: remove strings no longer supported by the localization project

pull/3206/head
Ryan Miller 1 year ago
parent c8a19c1664
commit bbd3770937

@ -17,14 +17,7 @@ const CaptionEditorObject = (props: Props) => {
const isImageTypeSupported = GoogleChrome.isImageTypeSupported(contentType);
if (isImageTypeSupported) {
return (
<img
className="module-caption-editor__image"
alt={window.i18n('imageAttachmentAlt')}
src={url}
onClick={onClose}
/>
);
return <img className="module-caption-editor__image" src={url} onClick={onClose} />;
}
const isVideoTypeSupported = GoogleChrome.isVideoTypeSupported(contentType);

@ -145,7 +145,6 @@ export const Image = (props: Props) => {
<img
className="module-image__caption-icon"
src="images/caption-shadow.svg"
alt={window.i18n('imageCaptionIconAlt')}
onDragStart={disableDrag}
/>
) : null}

@ -85,7 +85,7 @@ export const StagedAttachmentList = (props: Props) => {
return (
<Image
key={imageKey}
alt={window.i18n('stagedImageAttachment', [attachment.fileName])}
alt={''}
attachment={attachment}
softCorners={true}
playIconOverlay={isVideoAttachment(attachment)}

@ -78,7 +78,7 @@ export const StagedLinkPreview = (props: Props) => {
{isLoaded && image && isContentTypeImage ? (
<StyledImage>
<Image
alt={window.i18n('stagedPreviewThumbnail', [domain || ''])}
alt={domain ?? ''}
attachment={image as any}
height={100}
width={100}

@ -74,7 +74,7 @@ const StyledSpacer = styled.div`
export const TypingAnimation = () => {
return (
<StyledTypingContainer title={window.i18n('typingAlt')} aria-label={window.i18n('typingAlt')}>
<StyledTypingContainer>
<StyledTypingDot index={0} />
<StyledSpacer />
<StyledTypingDot index={1} />

@ -15,7 +15,6 @@ type Props = {
const MediaGridItemContent = (props: Props) => {
const { mediaItem } = props;
const i18n = window.i18n;
const { attachment, contentType } = mediaItem;
const urlToDecrypt = mediaItem.thumbnailObjectUrl || '';
@ -50,7 +49,6 @@ const MediaGridItemContent = (props: Props) => {
return (
<img
alt={i18n('lightboxImageAlt')}
className="module-media-grid-item__image"
src={srcData}
onError={onImageError}
@ -73,7 +71,6 @@ const MediaGridItemContent = (props: Props) => {
return (
<div className="module-media-grid-item__image-container">
<img
alt={i18n('lightboxImageAlt')}
className="module-media-grid-item__image"
src={srcData}
onError={onImageError}

@ -74,7 +74,7 @@ export const MessageLinkPreview = (props: Props) => {
<div className="module-message__link-preview__image_container">
<Image
softCorners={true}
alt={window.i18n('previewThumbnail', [first.domain])}
alt={first.domain}
height={linkPreviewsImageSize}
width={linkPreviewsImageSize}
url={first.image.url}

@ -229,7 +229,6 @@ export const LightboxObject = ({
<img
style={styles.object as any}
onDragStart={disableDrag}
alt={window.i18n('lightboxImageAlt')}
src={urlToLoad}
ref={renderedRef}
/>

Loading…
Cancel
Save