add back typing indicator and read receipt setting under privacy

pull/744/head
Audric Ackermann 5 years ago
parent bed1d5ac9d
commit 191c3b1f54
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1412,10 +1412,18 @@
"message": "Enable the sending and receiving of read receipts",
"description": "Description of the read receipts setting"
},
"readReceiptSettingTitle": {
"message": "Read Receipts",
"description": "Title of the read receipts setting"
},
"typingIndicatorsSettingDescription": {
"message": "Enable the sending and receiving of typing indicators",
"description": "Description of the typing indicators setting"
},
"typingIndicatorsSettingTitle": {
"message": "Typing Indicators",
"description": "Title of the typing indicators setting"
},
"messageTTL": {
"message": "Message TTL",
"description": "Title of the Message TTL setting"

@ -406,6 +406,30 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
defaultValue: 24,
},
},
{
id: 'read-receipt-setting',
title: window.i18n('readReceiptSettingTitle'),
description: window.i18n('readReceiptSettingDescription'),
hidden: false,
type: SessionSettingType.Toggle,
category: SessionSettingCategory.Privacy,
setFn: undefined,
comparisonValue: undefined,
onClick: undefined,
content: {},
},
{
id: 'typing-indicators-setting',
title: window.i18n('typingIndicatorsSettingTitle'),
description: window.i18n('typingIndicatorsSettingDescription'),
hidden: false,
type: SessionSettingType.Toggle,
category: SessionSettingCategory.Privacy,
setFn: undefined,
comparisonValue: undefined,
onClick: undefined,
content: {},
},
{
id: 'set-password',
title: window.i18n('setAccountPasswordTitle'),

Loading…
Cancel
Save