From 4a6ed12992be8114fdcd51936d7569413d99c7b4 Mon Sep 17 00:00:00 2001 From: Vincent Date: Tue, 28 Jan 2020 09:39:58 +1100 Subject: [PATCH] Solidification of minor changes w appview injections --- _locales/en/messages.json | 3 +++ ts/components/session/LeftPaneChannelSection.tsx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 27603037f..c94edff84 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -2660,6 +2660,9 @@ "channels": { "message": "Channels" }, + "groups": { + "message": "Groups" + }, "addChannel": { "message": "Join Open Group" }, diff --git a/ts/components/session/LeftPaneChannelSection.tsx b/ts/components/session/LeftPaneChannelSection.tsx index c9e2a1802..8dcd820c5 100644 --- a/ts/components/session/LeftPaneChannelSection.tsx +++ b/ts/components/session/LeftPaneChannelSection.tsx @@ -165,7 +165,7 @@ export class LeftPaneChannelSection extends React.Component { } public renderHeader(): JSX.Element { - const labels = [window.i18n('channels')]; + const labels = [window.i18n('groups')]; return LeftPane.RENDER_HEADER(labels, null); }