about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2023-04-03 17:27:37 +0200
committerMichael Vetter <jubalh@iodoru.org>2023-04-03 17:27:37 +0200
commit6b597f6608c454e48000847bb3c0b5c2fdc4f292 (patch)
tree0904600bd7e12f0be1c52d6643b363adfe915bed /src
parenta086cfbc7899d5f3b0072ba5b0c24e91347a6746 (diff)
downloadprofani-tty-6b597f6608c454e48000847bb3c0b5c2fdc4f292.tar.gz
Fix typos
Diffstat (limited to 'src')
-rw-r--r--src/command/cmd_defs.c2
-rw-r--r--src/ui/console.c2
-rw-r--r--src/ui/mucwin.c2
-rw-r--r--src/ui/notifier.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/command/cmd_defs.c b/src/command/cmd_defs.c
index c4d2df4a..d204db3b 100644
--- a/src/command/cmd_defs.c
+++ b/src/command/cmd_defs.c
@@ -1126,7 +1126,7 @@ static const struct cmd_t command_defs[] = {
               { "chat none", "Do not show any new chat messages in the console window." },
               { "muc all", "Indicate all new chat room messages in the console." },
               { "muc first", "Indicate only the first new message in each room in the console." },
-              { "muc mention", "Indicate only messages in which you have beeen mentioned in the console." },
+              { "muc mention", "Indicate only messages in which you have been mentioned in the console." },
               { "muc none", "Do not show any new chat room messages in the console window." },
               { "private all", "Indicate all new private room messages in the console." },
               { "private first", "Indicate only the first private room message in the console." },
diff --git a/src/ui/console.c b/src/ui/console.c
index 270c5943..f34f6f03 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -810,7 +810,7 @@ cons_show_disco_info(const char* jid, GSList* identities, GSList* features)
             cons_show("  Identities");
         }
         while (identities) {
-            DiscoIdentity* identity = identities->data; // anme trpe, cat
+            DiscoIdentity* identity = identities->data; // name type, category
             GString* identity_str = g_string_new("    ");
             if (identity->name) {
                 identity_str = g_string_append(identity_str, identity->name);
diff --git a/src/ui/mucwin.c b/src/ui/mucwin.c
index a4bcc191..550b05e2 100644
--- a/src/ui/mucwin.c
+++ b/src/ui/mucwin.c
@@ -196,7 +196,7 @@ mucwin_room_disco_info(ProfMucWin* mucwin, GSList* identities, GSList* features)
             win_println(window, THEME_DEFAULT, "!", "Identities:");
         }
         while (identities) {
-            DiscoIdentity* identity = identities->data; // anme trpe, cat
+            DiscoIdentity* identity = identities->data; // name, type, category
             GString* identity_str = g_string_new("  ");
             if (identity->name) {
                 identity_str = g_string_append(identity_str, identity->name);
diff --git a/src/ui/notifier.c b/src/ui/notifier.c
index 92ebf835..07a542af 100644
--- a/src/ui/notifier.c
+++ b/src/ui/notifier.c
@@ -291,7 +291,7 @@ notify(const char* const message, int timeout, const char* const category)
 
     int res = system(notify_command->str);
     if (res == -1) {
-        log_error("Could not send desktop notificaion.");
+        log_error("Could not send desktop notification.");
     }
 
     g_string_free(notify_command, TRUE);
c5ab50deaec93f5520f3d587fba57040c2c88'>^
3bb1f124 ^
ea99012d ^


81190251 ^
ea99012d ^
ea99012d ^
















ea99012d ^

ea99012d ^



3bb1f124 ^
ea99012d ^


81190251 ^
ea99012d ^
ea99012d ^











a952776b ^
ea99012d ^
a952776b ^
ea99012d ^











85cc5ab5 ^


85cc5ab5 ^



81190251 ^
85cc5ab5 ^
85cc5ab5 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107