File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 363
363
"recoveryPhraseEmpty" : " Enter your recovery phrase" ,
364
364
"displayNameEmpty" : " Please enter a display name" ,
365
365
"members" : " $count$ members" ,
366
+ "activeMembers" : " $count$ active members" ,
366
367
"join" : " Join" ,
367
368
"joinOpenGroup" : " Join Community" ,
368
369
"createGroup" : " Create Group" ,
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ const ConversationHeaderTitle = () => {
305
305
let memberCountText = '' ;
306
306
if ( isGroup && memberCount > 0 && ! isKickedFromGroup ) {
307
307
const count = String ( memberCount ) ;
308
- memberCountText = i18n ( 'members' , [ count ] ) ;
308
+ memberCountText = isPublic ? i18n ( 'activeMembers' , [ count ] ) : i18n ( 'members' , [ count ] ) ;
309
309
}
310
310
311
311
const notificationSubtitle = notificationSetting
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export type LocalizerKeys =
16
16
| 'closedGroupInviteFailMessage'
17
17
| 'noContactsForGroup'
18
18
| 'faq'
19
+ | 'timerOption_2_weeks_abbreviated'
19
20
| 'linkVisitWarningMessage'
20
21
| 'messageRequestAcceptedOurs'
21
22
| 'anonymous'
@@ -255,6 +256,7 @@ export type LocalizerKeys =
255
256
| 'audioPermissionNeeded'
256
257
| 'createGroup'
257
258
| 'add'
259
+ | 'timerOption_2_weeks'
258
260
| 'messageRequests'
259
261
| 'show'
260
262
| 'cannotMixImageAndNonImageAttachments'
@@ -276,6 +278,7 @@ export type LocalizerKeys =
276
278
| 'joinACommunity'
277
279
| 'multipleJoinedTheGroup'
278
280
| 'messageRequestAcceptedOursNoName'
281
+ | 'activeMembers'
279
282
| 'databaseError'
280
283
| 'resend'
281
284
| 'copiedToClipboard'
You can’t perform that action at this time.
0 commit comments