Increase closed group size to 100

This commit is contained in:
Audric Ackermann 2021-01-21 15:24:56 +11:00
parent 38300881bd
commit 3afd23c379
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4
12 changed files with 12 additions and 12 deletions

View File

@ -1457,6 +1457,6 @@
"message": "Bitte wählen Sie mindestens zwei Gruppenmitglieder aus."
},
"closedGroupMaxSize": {
"message": "Eine geschlossene Gruppe kann maximal zwanzig Mitglieder haben."
"message": "Eine geschlossene Gruppe kann maximal einhundert Mitglieder haben."
}
}

View File

@ -2203,7 +2203,7 @@
"androidKey": "activity_create_closed_group_not_enough_group_members_error"
},
"closedGroupMaxSize": {
"message": "A closed group cannot have more than 20 members",
"message": "A closed group cannot have more than 100 members",
"androidKey": "activity_create_closed_group_too_many_group_members_error"
},
"noBlockedContacts": {

View File

@ -1403,6 +1403,6 @@
"message": "Por favor, elige al menos 2 miembros del grupo"
},
"closedGroupMaxSize": {
"message": "Un grupo cerrado no puede tener más de 20 miembros"
"message": "Un grupo cerrado no puede tener más de 100 miembros"
}
}

View File

@ -1403,7 +1403,7 @@
"message": "Veuillez sélectionner au moins 2 membres"
},
"closedGroupMaxSize": {
"message": "Un groupe privé ne peut pas avoir plus de 20 membres"
"message": "Un groupe privé ne peut pas avoir plus de 100 membres"
},
"contextMenuNoSuggestions": {
"message": "Pas de suggestions",

View File

@ -1397,7 +1397,7 @@
"message": "Pilih setidaknya 2 anggota grup"
},
"closedGroupMaxSize": {
"message": "Grup tertutup maksimal berisi 20 anggota"
"message": "Grup tertutup maksimal berisi 100 anggota"
},
"noBlockedContacts": {
"message": "Tidak ada kontak yang diblokir"

View File

@ -1403,6 +1403,6 @@
"message": "Scegli almeno 2 membri del gruppo"
},
"closedGroupMaxSize": {
"message": "Un gruppo chiuso non può avere più di 20 membri"
"message": "Un gruppo chiuso non può avere più di 100 membri"
}
}

View File

@ -1403,7 +1403,7 @@
"message": "グループメンバーを少なくとも 2 人選択してください"
},
"closedGroupMaxSize": {
"message": "閉じたグループは 20 人を超えるメンバーを抱えることはできません"
"message": "閉じたグループは 100 人を超えるメンバーを抱えることはできません"
},
"noBlockedContacts": {
"message": "ブロックしている連絡先はありません"

View File

@ -1400,7 +1400,7 @@
"message": "Wprowadź krótszą nazwę grupy"
},
"closedGroupMaxSize": {
"message": "Grupa zamknięta nie może mieć więcej niż 20 członków"
"message": "Grupa zamknięta nie może mieć więcej niż 100 członków"
},
"noBlockedContacts": {
"message": "Brak zablokowanych kontaktów"

View File

@ -1403,6 +1403,6 @@
"message": "Escolha pelo menos 2 membros do grupo"
},
"closedGroupMaxSize": {
"message": "Um grupo fechado não pode ter mais de 20 membros"
"message": "Um grupo fechado não pode ter mais de 100 membros"
}
}

View File

@ -1403,7 +1403,7 @@
"message": "Пожалуйста, выберите как минимум 1 участников группы"
},
"closedGroupMaxSize": {
"message": "В закрытой группе не может быть больше 20 участников"
"message": "В закрытой группе не может быть больше 100 участников"
},
"contextMenuNoSuggestions": {
"message": "No Suggestions",

View File

@ -1361,6 +1361,6 @@
"message": "Vui lòng chọn ít nhất 2 thành viên trong nhóm"
},
"closedGroupMaxSize": {
"message": "Một nhóm kín không thể có nhiều hơn 20 thành viên"
"message": "Một nhóm kín không thể có nhiều hơn 100 thành viên"
}
}

View File

@ -85,7 +85,7 @@ window.CONSTANTS = new (function() {
this.DEFAULT_PUBLIC_CHAT_URL = appConfig.get('defaultPublicChatServer');
this.MAX_LINKED_DEVICES = 1;
this.MAX_CONNECTION_DURATION = 5000;
this.CLOSED_GROUP_SIZE_LIMIT = 20;
this.CLOSED_GROUP_SIZE_LIMIT = 100;
// Number of seconds to turn on notifications after reconnect/start of app
this.NOTIFICATION_ENABLE_TIMEOUT_SECONDS = 10;
this.SESSION_ID_LENGTH = 66;