]> jfr.im git - irc/irssi/irssi.git/commitdiff
Merge pull request #67 from ailin-nemui/spelling
authorailin-nemui <redacted>
Sat, 19 Feb 2022 09:58:05 +0000 (10:58 +0100)
committerAilin Nemui <redacted>
Sun, 29 May 2022 17:11:46 +0000 (19:11 +0200)
spelling fixes

(cherry picked from commit 7ec61c4ec0be3fbbdca30c2587c8464e093d7b9a)

src/otr/otr-formats.c

index d4d273d1c8d7f637e5fb16f94994a72d8d92e2e0..af4d8aad4063ff31e72eb0f9d557d9e893c51491 100644 (file)
@@ -23,6 +23,7 @@
 #include <irssi/src/otr/otr-formats.h>
 
 FORMAT_REC fe_otr_formats[] = {
+       /* clang-format off */
        { MODULE_NAME, "Core", 0 },
 
        /* Status bar format. */
@@ -73,7 +74,7 @@ FORMAT_REC fe_otr_formats[] = {
        { "otr_keys_unavailable", "{error No OTR keys available}", 0},
 
        { "otr_msg_encryption_ended", "{hilight $0} has closed the connection to you", 1, { 0 }},
-       { "otr_msg_encryption_error", "{error An error occured when encrypting your message}", 0},
+       { "otr_msg_encryption_error", "{error An error occurred when encrypting your message}", 0},
        { "otr_msg_encryption_required", "Encryptioned is required", 0},
        { "otr_msg_error", "Error in private conversation: {error $0}", 1, { 0 }},
        { "otr_msg_general_error", "General Error: {error $0}", 1, { 0 }},
@@ -101,8 +102,9 @@ FORMAT_REC fe_otr_formats[] = {
        { "otr_smp_failure", "Authentication with {hilight $0} failed", 1, { 0 }},
        { "otr_smp_in_progress", "{hilight $0} replied to your auth request", 1, { 0 }},
        { "otr_smp_secret_question", "{hilight $0} wants to authenticate. Use /otr auth <secret> to complete", 1, { 0 }},
-       { "otr_smp_success", "Authentication with {hilight $0} succesful", 1, { 0 }},
+       { "otr_smp_success", "Authentication with {hilight $0} successful", 1, { 0 }},
 
        /* Last element. */
        { NULL, NULL, 0 }
+       /* clang-format on */
 };