Skip to content

Commit a671363

Browse files
feldr10s
authored andcommitted
update 'takes longer' fallback wording again
1 parent 4168985 commit a671363

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

deltachat-ffi/deltachat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7595,7 +7595,7 @@ void dc_event_unref(dc_event_t* event);
75957595
/// @deprecated 2025-03
75967596
#define DC_STR_SECUREJOIN_WAIT_TIMEOUT 191
75977597

7598-
/// "That seems to take longer, maybe the contact or you are offline. However, the process continues in background, you can do something else…"
7598+
/// "The contact must be online to proceed. This process will continue automatically in background."
75997599
///
76007600
/// Used as info message.
76017601
#define DC_STR_SECUREJOIN_TAKES_LONGER 192

src/stock_str.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ pub enum StockMessage {
430430
SecurejoinWait = 190,
431431

432432
#[strum(props(
433-
fallback = "That seems to take longer, maybe the contact or you are offline.\n\nHowever, the process continues in background, you can do something else…"
433+
fallback = "The contact must be online to proceed.\n\nThis process will continue automatically in background."
434434
))]
435435
SecurejoinTakesLonger = 192,
436436
}
@@ -824,7 +824,7 @@ pub(crate) async fn securejoin_wait(context: &Context) -> String {
824824
translated(context, StockMessage::SecurejoinWait).await
825825
}
826826

827-
/// Stock string: `That seems to take longer, maybe the contact or you are offline. However, the process continues in background, you can do something else…`.
827+
/// Stock string: `The contact must be online to proceed. This process will continue automatically in background.`.
828828
pub(crate) async fn securejoin_takes_longer(context: &Context) -> String {
829829
translated(context, StockMessage::SecurejoinTakesLonger).await
830830
}

0 commit comments

Comments
 (0)