mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 10:46:21 +00:00
Fix typos, correct grammar
This commit is contained in:
@@ -2325,12 +2325,12 @@ static const struct cmd_t command_defs[] = {
|
||||
CMD_DESC(
|
||||
"OMEMO commands to manage keys, and perform encryption during chat sessions.")
|
||||
CMD_ARGS(
|
||||
{ "gen", "Generate OMEMO crytographic materials for current account." },
|
||||
{ "gen", "Generate OMEMO cryptographic materials for current account." },
|
||||
{ "start [<contact>]", "Start an OMEMO session with contact, or current recipient if omitted." },
|
||||
{ "end", "End the current OMEMO session." },
|
||||
{ "log on|off", "Enable or disable plaintext logging of OMEMO encrypted messages." },
|
||||
{ "log redact", "Log OMEMO encrypted messages, but replace the contents with [redacted]." },
|
||||
{ "fingerprint [<contact>]", "Show contact fingerprints, or current recipient if omitted." },
|
||||
{ "fingerprint [<contact>]", "Show contact's fingerprints, or current recipient's if omitted." },
|
||||
{ "char <char>", "Set the character to be displayed next to OMEMO encrypted messages." },
|
||||
{ "trustmode manual", "Set the global OMEMO trust mode to manual, OMEMO keys has to be trusted manually." },
|
||||
{ "trustmode firstusage", "Set the global OMEMO trust mode to ToFu, first OMEMO keys trusted automatically." },
|
||||
|
||||
@@ -8645,15 +8645,15 @@ cmd_omemo_gen(ProfWin* window, const char* const command, gchar** args)
|
||||
}
|
||||
|
||||
if (omemo_loaded()) {
|
||||
cons_show("OMEMO crytographic materials have already been generated.");
|
||||
cons_show("OMEMO cryptographic materials have already been generated.");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
cons_show("Generating OMEMO crytographic materials, it may take a while…");
|
||||
cons_show("Generating OMEMO cryptographic materials, it may take a while…");
|
||||
ui_update();
|
||||
ProfAccount* account = accounts_get_account(session_get_account_name());
|
||||
omemo_generate_crypto_materials(account);
|
||||
cons_show("OMEMO crytographic materials generated. Your Device ID is %d.", omemo_device_id());
|
||||
cons_show("OMEMO cryptographic materials generated. Your Device ID is %d.", omemo_device_id());
|
||||
return TRUE;
|
||||
#else
|
||||
cons_show("This version of Profanity has not been built with OMEMO support enabled");
|
||||
|
||||
Reference in New Issue
Block a user