diff options
-rwxr-xr-x | poezio/theming.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/poezio/theming.py b/poezio/theming.py index bbf2fb64..fc34ae39 100755 --- a/poezio/theming.py +++ b/poezio/theming.py @@ -178,12 +178,13 @@ class Theme: CHAR_CHATSTATE_COMPOSING = 'X' CHAR_CHATSTATE_PAUSED = 'p' - # These characters are used for the affiliation in the user list - # in a MUC + # These characters are used for the affiliation wherever needed, e.g., in + # the user list in a MUC, or when displaying affiliation lists. CHAR_AFFILIATION_OWNER = '~' CHAR_AFFILIATION_ADMIN = '&' CHAR_AFFILIATION_MEMBER = '+' CHAR_AFFILIATION_NONE = '-' + CHAR_AFFILIATION_OUTCAST = '!' # XML Tab CHAR_XML_IN = 'IN ' |