mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Spelling errors fixed and hyphenation used as minus sign fixed
This commit is contained in:
parent
651d5aaaf0
commit
225312802e
@ -3,7 +3,7 @@
|
|||||||
Profanity \- a simple console based XMPP chat client.
|
Profanity \- a simple console based XMPP chat client.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B profanity
|
.B profanity
|
||||||
[-vhd] [-l level]
|
[\-vhd] [\-l level]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
.B Profanity
|
.B Profanity
|
||||||
is a simple lightweight console based XMPP chat client. It's emphasis is
|
is a simple lightweight console based XMPP chat client. It's emphasis is
|
||||||
@ -23,7 +23,7 @@ Show help on command line arguments.
|
|||||||
.BI "\-a, \-\-account"
|
.BI "\-a, \-\-account"
|
||||||
Auto connect to an account on startup.
|
Auto connect to an account on startup.
|
||||||
.TP
|
.TP
|
||||||
.BI "\-d, \-\-disable-tls"
|
.BI "\-d, \-\-disable\-tls"
|
||||||
Disable TLS for servers that either don't support it, or claim to but do not
|
Disable TLS for servers that either don't support it, or claim to but do not
|
||||||
complete the handshake.
|
complete the handshake.
|
||||||
.TP
|
.TP
|
||||||
@ -62,7 +62,7 @@ or with a Github account by logging issues on the issue tracker at:
|
|||||||
.PP
|
.PP
|
||||||
<https://github.com/boothj5/profanity>
|
<https://github.com/boothj5/profanity>
|
||||||
.SH LICENSE
|
.SH LICENSE
|
||||||
Copyright (C) 2012 - 2014 James Booth <boothj5web@gmail.com>.
|
Copyright (C) 2012 \- 2014 James Booth <boothj5web@gmail.com>.
|
||||||
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
||||||
This is free software; you are free to change and redistribute it.
|
This is free software; you are free to change and redistribute it.
|
||||||
There is NO WARRANTY, to the extent permitted by law.
|
There is NO WARRANTY, to the extent permitted by law.
|
||||||
|
@ -513,7 +513,7 @@ static struct cmd_t command_defs[] =
|
|||||||
{ "/flash on|off", "Terminal flash on new messages.",
|
{ "/flash on|off", "Terminal flash on new messages.",
|
||||||
{ "/flash on|off",
|
{ "/flash on|off",
|
||||||
"-------------",
|
"-------------",
|
||||||
"Make the terminal flash when incoming messages are recieved.",
|
"Make the terminal flash when incoming messages are received.",
|
||||||
"The flash will only occur if you are not in the chat window associated with the user sending the message.",
|
"The flash will only occur if you are not in the chat window associated with the user sending the message.",
|
||||||
"If the terminal doesn't support flashing, it may attempt to beep.",
|
"If the terminal doesn't support flashing, it may attempt to beep.",
|
||||||
NULL } } },
|
NULL } } },
|
||||||
|
@ -72,7 +72,7 @@ cb_otr_error_message(void *opdata, ConnContext *context,
|
|||||||
switch(err_code)
|
switch(err_code)
|
||||||
{
|
{
|
||||||
case OTRL_ERRCODE_ENCRYPTION_ERROR:
|
case OTRL_ERRCODE_ENCRYPTION_ERROR:
|
||||||
return strdup("OTR Error: occured while encrypting a message");
|
return strdup("OTR Error: occurred while encrypting a message");
|
||||||
case OTRL_ERRCODE_MSG_NOT_IN_PRIVATE:
|
case OTRL_ERRCODE_MSG_NOT_IN_PRIVATE:
|
||||||
return strdup("OTR Error: Sent encrypted message to somebody who is not in a mutual OTR session");
|
return strdup("OTR Error: Sent encrypted message to somebody who is not in a mutual OTR session");
|
||||||
case OTRL_ERRCODE_MSG_UNREADABLE:
|
case OTRL_ERRCODE_MSG_UNREADABLE:
|
||||||
|
@ -179,7 +179,7 @@ prof_handle_activity(void)
|
|||||||
gboolean
|
gboolean
|
||||||
process_input(char *inp)
|
process_input(char *inp)
|
||||||
{
|
{
|
||||||
log_debug("Input recieved: %s", inp);
|
log_debug("Input received: %s", inp);
|
||||||
gboolean result = FALSE;
|
gboolean result = FALSE;
|
||||||
g_strstrip(inp);
|
g_strstrip(inp);
|
||||||
|
|
||||||
|
@ -155,7 +155,7 @@ _error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|||||||
if (id != NULL) {
|
if (id != NULL) {
|
||||||
log_error("IQ error received, id: %s.", id);
|
log_error("IQ error received, id: %s.", id);
|
||||||
} else {
|
} else {
|
||||||
log_error("IQ error recieved.");
|
log_error("IQ error received.");
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
@ -434,7 +434,7 @@ static int
|
|||||||
_disco_info_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
_disco_info_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
||||||
void * const userdata)
|
void * const userdata)
|
||||||
{
|
{
|
||||||
log_debug("Recieved diso#info response");
|
log_debug("Received diso#info response");
|
||||||
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
||||||
const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
||||||
|
|
||||||
@ -603,7 +603,7 @@ _disco_items_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stan
|
|||||||
void * const userdata)
|
void * const userdata)
|
||||||
{
|
{
|
||||||
|
|
||||||
log_debug("Recieved diso#items response");
|
log_debug("Received diso#items response");
|
||||||
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
||||||
const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
||||||
GSList *items = NULL;
|
GSList *items = NULL;
|
||||||
|
@ -381,7 +381,7 @@ _groupchat_handler(xmpp_conn_t * const conn,
|
|||||||
|
|
||||||
// room not active in profanity
|
// room not active in profanity
|
||||||
if (!muc_room_is_active(jid->barejid)) {
|
if (!muc_room_is_active(jid->barejid)) {
|
||||||
log_error("Message recieved for inactive chat room: %s", jid->str);
|
log_error("Message received for inactive chat room: %s", jid->str);
|
||||||
jid_destroy(jid);
|
jid_destroy(jid);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user