about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-03-15 20:04:53 +0000
committerJames Booth <boothj5@gmail.com>2015-03-15 20:04:53 +0000
commitfae2717f27f4a45f03a50f2ccbf894e45af1cdce (patch)
tree7aed287eb552495fc1e5a0aed759682adca0bf22 /src/ui
parent2762f18a3e4c4a73965d39cb2d2dbcdc81129b0c (diff)
downloadprofani-tty-fae2717f27f4a45f03a50f2ccbf894e45af1cdce.tar.gz
Tidied help
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 1c608dd9..cd74f455 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -1142,27 +1142,27 @@ void
 cons_states_setting(void)
 {
     if (prefs_get_boolean(PREF_STATES))
-        cons_show("Send chat states (/states) : ON");
+        cons_show("Send chat states (/states)    : ON");
     else
-        cons_show("Send chat states (/states) : OFF");
+        cons_show("Send chat states (/states)    : OFF");
 }
 
 void
 cons_outtype_setting(void)
 {
     if (prefs_get_boolean(PREF_OUTTYPE))
-        cons_show("Send composing (/outtype)  : ON");
+        cons_show("Send composing (/outtype)     : ON");
     else
-        cons_show("Send composing (/outtype)  : OFF");
+        cons_show("Send composing (/outtype)     : OFF");
 }
 
 void
 cons_intype_setting(void)
 {
     if (prefs_get_boolean(PREF_INTYPE))
-        cons_show("Show typing (/intype)      : ON");
+        cons_show("Show typing (/intype)         : ON");
     else
-        cons_show("Show typing (/intype)      : OFF");
+        cons_show("Show typing (/intype)         : OFF");
 }
 
 void
@@ -1170,11 +1170,11 @@ cons_gone_setting(void)
 {
     gint gone_time = prefs_get_gone();
     if (gone_time == 0) {
-        cons_show("Leave conversation (/gone) : OFF");
+        cons_show("Leave conversation (/gone)    : OFF");
     } else if (gone_time == 1) {
-        cons_show("Leave conversation (/gone) : 1 minute");
+        cons_show("Leave conversation (/gone)    : 1 minute");
     } else {
-        cons_show("Leave conversation (/gone) : %d minutes", gone_time);
+        cons_show("Leave conversation (/gone)    : %d minutes", gone_time);
     }
 }
 
@@ -1182,9 +1182,9 @@ void
 cons_history_setting(void)
 {
     if (prefs_get_boolean(PREF_HISTORY))
-        cons_show("Chat history (/history)    : ON");
+        cons_show("Chat history (/history)       : ON");
     else
-        cons_show("Chat history (/history)    : OFF");
+        cons_show("Chat history (/history)       : OFF");
 }
 
 void
@@ -1200,7 +1200,7 @@ void
 cons_receipts_setting(void)
 {
     if (prefs_get_boolean(PREF_RECEIPTS))
-        cons_show("Message receipts (/reciepts)  : ON");
+        cons_show("Message receipts (/receipts)  : ON");
     else
         cons_show("Message receipts (/receipts)  : OFF");
 }
@@ -1215,6 +1215,8 @@ cons_show_chat_prefs(void)
     cons_intype_setting();
     cons_gone_setting();
     cons_history_setting();
+    cons_carbons_setting();
+    cons_receipts_setting();
 
     cons_alert();
 }