// Translators: Do NOT translate the content between '{' and '}', this is a
// variable name.
.set_markup(&gettext_f("{user} asked to be verified. Verifying a user increases the security of the conversation.",&[("user",&format!("<b>{}</b>",name))]));
.set_markup(&gettext_f("{user} asked to be verified. Verifying a user increases the security of the conversation.",&[("user",&format!("<b>{name}</b>"))]));
// Translators: Do NOT translate the content between '{' and '}', this is a
// variable name.
"Scan the QR code shown on the device of {user}.",
&[("user",&format!("<b>{}</b>",name))],
&[("user",&format!("<b>{name}</b>"))],
));
// Translators: Do NOT translate the content between '{' and '}', this is a
// variable name.
imp.qrcode_scanned_message.set_markup(&gettext_f("You scanned the QR code successfully. {user} may need to confirm the verification.",&[("user",&format!("<b>{}</b>",name))]));
imp.qrcode_scanned_message.set_markup(&gettext_f("You scanned the QR code successfully. {user} may need to confirm the verification.",&[("user",&format!("<b>{name}</b>"))]));
imp.qrcode_title
.set_markup(&gettext("Verification Request"));
imp.qrcode_instructions.set_markup(&gettext_f(
// Translators: Do NOT translate the content between '{' and '}', this is a
// variable name.
"Ask {user} to scan this QR code from their session.",
// Translators: Do NOT translate the content between '{' and '}', this is a
// variable name.
"Ask {user} if they see the following emoji appear in the same order on their screen.",
&[("user",&format!("<b>{}</b>",name))]
&[("user",&format!("<b>{name}</b>"))]
));
imp.completed_title
.set_markup(&gettext("Verification Complete"));
// Translators: Do NOT translate the content between '{' and '}', this is a
// variable name.
imp.completed_message.set_markup(&gettext_f("{user} is verified and you can now be sure that your communication will be private.",&[("user",&format!("<b>{}</b>",name))]));
imp.completed_message.set_markup(&gettext_f("{user} is verified and you can now be sure that your communication will be private.",&[("user",&format!("<b>{name}</b>"))]));