File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7419,7 +7419,7 @@ void dc_event_unref(dc_event_t* event);
7419
7419
/// Used in status messages.
7420
7420
#define DC_STR_REMOVE_MEMBER_BY_OTHER 131
7421
7421
7422
- /// "You left the group ."
7422
+ /// "You left."
7423
7423
///
7424
7424
/// Used in status messages.
7425
7425
#define DC_STR_GROUP_LEFT_BY_YOU 132
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ async fn test_member_add_remove() -> Result<()> {
373
373
// Alice leaves the chat.
374
374
remove_contact_from_chat ( & alice, alice_chat_id, ContactId :: SELF ) . await ?;
375
375
let sent = alice. pop_sent_msg ( ) . await ;
376
- assert_eq ! ( sent. load_from_db( ) . await . get_text( ) , "You left the group ." ) ;
376
+ assert_eq ! ( sent. load_from_db( ) . await . get_text( ) , "You left." ) ;
377
377
378
378
Ok ( ( ) )
379
379
}
Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ pub enum StockMessage {
285
285
#[ strum( props( fallback = "Member %1$s removed by %2$s." ) ) ]
286
286
MsgDelMemberBy = 131 ,
287
287
288
- #[ strum( props( fallback = "You left the group ." ) ) ]
288
+ #[ strum( props( fallback = "You left." ) ) ]
289
289
MsgYouLeftGroup = 132 ,
290
290
291
291
#[ strum( props( fallback = "Group left by %1$s." ) ) ]
@@ -685,7 +685,7 @@ pub(crate) async fn msg_group_left_remote(context: &Context) -> String {
685
685
translated ( context, StockMessage :: MsgILeftGroup ) . await
686
686
}
687
687
688
- /// Stock string: `You left the group .` or `Group left by %1$s.`.
688
+ /// Stock string: `You left.` or `Group left by %1$s.`.
689
689
pub ( crate ) async fn msg_group_left_local ( context : & Context , by_contact : ContactId ) -> String {
690
690
if by_contact == ContactId :: SELF {
691
691
translated ( context, StockMessage :: MsgYouLeftGroup ) . await
Original file line number Diff line number Diff line change 1
1
Group#Chat#10: Group chat [3 member(s)]
2
2
--------------------------------------------------------------------------------
3
3
Msg#10🔒: (Contact#Contact#10): Hi! I created a group. [FRESH]
4
- Msg#11🔒: Me (Contact#Contact#Self): You left the group . [INFO] √
4
+ Msg#11🔒: Me (Contact#Contact#Self): You left. [INFO] √
5
5
Msg#12🔒: (Contact#Contact#10): Member charlie@example.net added by alice@example.org. [FRESH][INFO]
6
6
Msg#13🔒: (Contact#Contact#10): What a silence! [FRESH]
7
7
--------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments