update english translations

pull/2119/head
Audric Ackermann 3 years ago
parent 7b45635296
commit 6e102644c3
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -373,7 +373,6 @@
"openGroupURL": "Open Group URL",
"enterAnOpenGroupURL": "Enter an open group URL",
"next": "Next",
"description": "1 minute",
"invalidGroupNameTooShort": "Please enter a group name",
"invalidGroupNameTooLong": "Please enter a shorter group name",
"pickClosedGroupMember": "Please pick at least 1 group member",

@ -1069,7 +1069,10 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
return;
}
if (this.isPrivate() && read.length && options.sendReadReceipts) {
window?.log?.info(`Sending ${read.length} read receipts`);
window?.log?.info(
`Sending ${read.length} read receipts?`,
window.storage.get(SettingsKey.settingsReadReceipt) || false
);
if (window.storage.get(SettingsKey.settingsReadReceipt)) {
await Promise.all(
_.map(_.groupBy(read, 'sender'), async (receipts, sender) => {

@ -359,16 +359,15 @@ export async function isMessageDuplicate({
sourceDevice,
timestamp,
message,
serverId,
serverTimestamp,
}: MessageId) {
const { Errors } = window.Signal.Types;
// serverId is only used for opengroupv2
try {
let result;
if (serverId || serverTimestamp) {
if (serverTimestamp) {
// first try to find a duplicate with the same serverTimestamp from this sender
if (!result && serverTimestamp) {
if (serverTimestamp) {
result = await getMessageBySenderAndServerTimestamp({
source,
serverTimestamp,

@ -102,7 +102,6 @@ export type LocalizerKeys =
| 'autoUpdateNewVersionInstructions'
| 'appMenuUnhide'
| 'timerOption_30_minutes_abbreviated'
| 'description'
| 'voiceMessage'
| 'changePasswordTitle'
| 'copyMessage'

Loading…
Cancel
Save