Fix typos, correct grammar

This commit is contained in:
John Hernandez
2023-10-14 18:07:52 +02:00
parent 634cb586d9
commit 3c8b4acac4
4 changed files with 8 additions and 8 deletions

View File

@@ -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");