mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Fix typos
This commit is contained in:
parent
a086cfbc78
commit
6b597f6608
@ -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." },
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user