From f1900f9f3674039c0e6e66ad586b14cb32f02593 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 3 Mar 2022 13:56:36 +1100 Subject: [PATCH 1/2] remove some unused strings and fix tos links #2176 --- _locales/en/messages.json | 2 +- js/views/debug_log_view.js | 3 +-- ts/components/icon/Icons.tsx | 2 +- ts/components/leftpane/ContactListItem.tsx | 2 +- ts/session/utils/Toast.tsx | 8 -------- ts/types/LocalizerKeys.ts | 3 +-- 6 files changed, 5 insertions(+), 15 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 70572d747..c5bcc8de5 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -347,7 +347,7 @@ "linkDevice": "Link Device", "restoreUsingRecoveryPhrase": "Restore your account", "or": "or", - "ByUsingThisService...": "By using this service, you agree to our Terms of Service and Privacy Policy", + "ByUsingThisService...": "By using this service, you agree to our Terms of Service and Privacy Policy", "beginYourSession": "Begin your Session.", "welcomeToYourSession": "Welcome to your Session", "newSession": "New Session", diff --git a/js/views/debug_log_view.js b/js/views/debug_log_view.js index aa53eac84..fdfa18e0b 100644 --- a/js/views/debug_log_view.js +++ b/js/views/debug_log_view.js @@ -42,10 +42,9 @@ 'click .close': 'close', }, render_attributes: { - title: i18n('submitDebugLog'), + title: i18n('debugLog'), cancel: i18n('cancel'), submit: i18n('saveLogToDesktop'), - close: i18n('gotIt'), debugLogExplanation: i18n('debugLogExplanation'), }, close() { diff --git a/ts/components/icon/Icons.tsx b/ts/components/icon/Icons.tsx index 80b063a74..65543ce49 100644 --- a/ts/components/icon/Icons.tsx +++ b/ts/components/icon/Icons.tsx @@ -45,8 +45,8 @@ export type SessionIconType = | 'plus' | 'plusThin' | 'reply' - | 'search' | 'send' + | 'search' | 'shield' | 'star' | 'stopwatch' diff --git a/ts/components/leftpane/ContactListItem.tsx b/ts/components/leftpane/ContactListItem.tsx index a294d0d96..18720ea6e 100644 --- a/ts/components/leftpane/ContactListItem.tsx +++ b/ts/components/leftpane/ContactListItem.tsx @@ -23,7 +23,7 @@ export const ContactListItem = (props: Props) => { const isGroup = !useIsPrivate(pubkey); const title = name ? name : pubkey; - const displayName = isMe ? window.i18n('me') : title; + const displayName = isMe ? window.i18n('you') : title; return (
Date: Thu, 3 Mar 2022 14:06:54 +1100 Subject: [PATCH 2/2] bump to 1.8.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3d0771006..9b896ddf1 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.8.1", + "version": "1.8.2", "license": "GPL-3.0", "author": { "name": "Oxen Labs",