{
onError={onError}
/>
{
{
onError={onError}
/>
{
onError={onError}
/>
{
withContentAbove={withContentAbove}
withContentBelow={withContentBelow}
bottomOverlay={!collapseMetadata}
- i18n={window.i18n}
onError={this.handleImageErrorBound}
onClickAttachment={(attachment: AttachmentType) => {
if (multiSelectMode) {
@@ -358,7 +357,6 @@ class MessageInner extends React.PureComponent {
withContentAbove={withContentAbove}
withContentBelow={true}
onError={this.handleImageErrorBound}
- i18n={window.i18n}
/>
) : null}
{
url={first.image.url}
attachment={first.image}
onError={this.handleImageErrorBound}
- i18n={window.i18n}
/>
) : null}
@@ -423,7 +420,6 @@ class MessageInner extends React.PureComponent {
return (
{
e.preventDefault();
e.stopPropagation();
@@ -519,7 +515,6 @@ class MessageInner extends React.PureComponent {
>
{
name={authorName}
profileName={authorProfileName}
module="module-message__author"
- i18n={window.i18n}
boldProfileName={true}
shouldShowPubkey={Boolean(isPublic)}
/>
diff --git a/ts/components/conversation/MessageBody.tsx b/ts/components/conversation/MessageBody.tsx
index a8347c9ab..a68e2622d 100644
--- a/ts/components/conversation/MessageBody.tsx
+++ b/ts/components/conversation/MessageBody.tsx
@@ -6,7 +6,7 @@ import { AddNewLines } from './AddNewLines';
import { AddMentions } from './AddMentions';
import { Linkify } from './Linkify';
-import { LocalizerType, RenderTextCallbackType } from '../../types/Util';
+import { RenderTextCallbackType } from '../../types/Util';
interface Props {
text: string;
@@ -15,7 +15,6 @@ interface Props {
/** If set, links will be left alone instead of turned into clickable `` tags. */
disableLinks?: boolean;
isGroup?: boolean;
- i18n: LocalizerType;
convoId: string;
}
@@ -44,7 +43,6 @@ const renderNewLines: RenderTextCallbackType = ({
};
const renderEmoji = ({
- i18n,
text,
key,
sizeClass,
@@ -52,7 +50,6 @@ const renderEmoji = ({
isGroup,
convoId,
}: {
- i18n: LocalizerType;
text: string;
key: number;
sizeClass?: SizeClassType;
@@ -61,7 +58,6 @@ const renderEmoji = ({
convoId?: string;
}) => (
{
}
public render() {
- const { text, disableJumbomoji, disableLinks, i18n, isGroup, convoId } = this.props;
+ const { text, disableJumbomoji, disableLinks, isGroup, convoId } = this.props;
const sizeClass = disableJumbomoji ? undefined : getSizeClass(text);
if (disableLinks) {
return this.renderJsxSelectable(
renderEmoji({
- i18n,
text,
sizeClass,
key: 0,
@@ -109,7 +104,6 @@ export class MessageBody extends React.Component {
text={text}
renderNonLink={({ key, text: nonLinkText }) => {
return renderEmoji({
- i18n,
text: nonLinkText,
sizeClass,
key,
diff --git a/ts/components/conversation/MessageDetail.tsx b/ts/components/conversation/MessageDetail.tsx
index 7349179ab..3654e717c 100644
--- a/ts/components/conversation/MessageDetail.tsx
+++ b/ts/components/conversation/MessageDetail.tsx
@@ -60,7 +60,6 @@ export class MessageDetail extends React.Component {
}
public renderContact(contact: Contact) {
- const { i18n } = window;
const errors = contact.errors || [];
const statusComponent = !contact.isOutgoingKeyError ? (
@@ -81,7 +80,6 @@ export class MessageDetail extends React.Component {
phoneNumber={contact.phoneNumber}
name={contact.name}
profileName={contact.profileName}
- i18n={i18n}
shouldShowPubkey={true}
/>
diff --git a/ts/components/conversation/Quote.tsx b/ts/components/conversation/Quote.tsx
index d5b4ce05e..539c63f53 100644
--- a/ts/components/conversation/Quote.tsx
+++ b/ts/components/conversation/Quote.tsx
@@ -7,7 +7,6 @@ import * as MIME from '../../../ts/types/MIME';
import * as GoogleChrome from '../../../ts/util/GoogleChrome';
import { MessageBody } from './MessageBody';
-import { ColorType, LocalizerType } from '../../types/Util';
import { ContactName } from './ContactName';
import { PubKey } from '../../session/types';
import { ConversationTypeEnum } from '../../models/conversation';
@@ -19,7 +18,6 @@ interface QuoteProps {
authorPhoneNumber: string;
authorProfileName?: string;
authorName?: string;
- i18n: LocalizerType;
isFromMe: boolean;
isIncoming: boolean;
conversationType: ConversationTypeEnum;
@@ -66,25 +64,23 @@ function getObjectUrl(thumbnail: Attachment | undefined): string | undefined {
}
function getTypeLabel({
- i18n,
contentType,
isVoiceMessage,
}: {
- i18n: LocalizerType;
contentType: MIME.MIMEType;
isVoiceMessage: boolean;
}): string | undefined {
if (GoogleChrome.isVideoTypeSupported(contentType)) {
- return i18n('video');
+ return window.i18n('video');
}
if (GoogleChrome.isImageTypeSupported(contentType)) {
- return i18n('photo');
+ return window.i18n('photo');
}
if (MIME.isAudio(contentType) && isVoiceMessage) {
- return i18n('voiceMessage');
+ return window.i18n('voiceMessage');
}
if (MIME.isAudio(contentType)) {
- return i18n('audio');
+ return window.i18n('audio');
}
return;
@@ -109,7 +105,7 @@ export const QuoteIcon = (props: any) => {
};
export const QuoteImage = (props: any) => {
- const { url, i18n, icon, contentType, handleImageErrorBound } = props;
+ const { url, icon, contentType, handleImageErrorBound } = props;
const { loading, urlToLoad } = useEncryptedFileFetch(url, contentType);
const srcData = !loading ? urlToLoad : '';
@@ -129,7 +125,7 @@ export const QuoteImage = (props: any) => {
return (
-

+

{iconElement}
);
@@ -168,7 +164,7 @@ export const QuoteGenericFile = (props: any) => {
};
export const QuoteIconContainer = (props: any) => {
- const { attachment, i18n, imageBroken, handleImageErrorBound } = props;
+ const { attachment, imageBroken, handleImageErrorBound } = props;
if (!attachment) {
return null;
@@ -179,7 +175,7 @@ export const QuoteIconContainer = (props: any) => {
if (GoogleChrome.isVideoTypeSupported(contentType)) {
return objectUrl && !imageBroken ? (
-
+
) : (
);
@@ -188,7 +184,6 @@ export const QuoteIconContainer = (props: any) => {
return objectUrl && !imageBroken ? (
@@ -203,7 +198,7 @@ export const QuoteIconContainer = (props: any) => {
};
export const QuoteText = (props: any) => {
- const { i18n, text, attachment, isIncoming, conversationType, convoId } = props;
+ const { text, attachment, isIncoming, conversationType, convoId } = props;
const isGroup = conversationType === ConversationTypeEnum.GROUP;
if (text) {
@@ -215,13 +210,7 @@ export const QuoteText = (props: any) => {
isIncoming ? 'module-quote__primary__text--incoming' : null
)}
>
-
+
);
}
@@ -232,7 +221,7 @@ export const QuoteText = (props: any) => {
const { contentType, isVoiceMessage } = attachment;
- const typeLabel = getTypeLabel({ i18n, contentType, isVoiceMessage });
+ const typeLabel = getTypeLabel({ contentType, isVoiceMessage });
if (typeLabel) {
return (
{
authorProfileName,
authorPhoneNumber,
authorName,
- i18n,
isFromMe,
isIncoming,
isPublic,
@@ -268,13 +256,12 @@ export const QuoteAuthor = (props: any) => {
)}
>
{isFromMe ? (
- i18n('you')
+ window.i18n('you')
) : (
@@ -284,7 +271,7 @@ export const QuoteAuthor = (props: any) => {
};
export const QuoteReferenceWarning = (props: any) => {
- const { i18n, isIncoming, referencedMessageNotFound } = props;
+ const { isIncoming, referencedMessageNotFound } = props;
if (!referencedMessageNotFound) {
return null;
@@ -309,7 +296,7 @@ export const QuoteReferenceWarning = (props: any) => {
isIncoming ? 'module-quote__reference-warning__text--incoming' : null
)}
>
- {i18n('originalMessageNotFound')}
+ {window.i18n('originalMessageNotFound')}