comments for advanced settings

This commit is contained in:
Nikos Kouremenos 2005-09-04 18:51:16 +00:00
parent 8377bdb54b
commit 9cf564ee18
1 changed files with 8 additions and 8 deletions

View File

@ -48,10 +48,10 @@ class Config:
'ignore_unknown_contacts': [ opt_bool, False ],
'showoffline': [ opt_bool, False ],
'autoaway': [ opt_bool, True ],
'autoawaytime': [ opt_int, 5, _('Time after which you are displayed as being away.') ],
'autoawaytime': [ opt_int, 5, _('Time in minutes, after which you are displayed as being away.') ],
'autoaway_message': [ opt_str, _('Away as a result of being idle') ],
'autoxa': [ opt_bool, True ],
'autoxatime': [ opt_int, 15 ],
'autoxatime': [ opt_int, 15 _('Time in minutes, after which you are displayed as being not available.') ],
'autoxa_message': [ opt_str, _('Not available as a result of being idle') ],
'ask_online_status': [ opt_bool, False ],
'ask_offline_status': [ opt_bool, False ],
@ -78,7 +78,7 @@ class Config:
'use_speller': [ opt_bool, False ],
'print_time': [ opt_str, 'always' ],
'useemoticons': [ opt_bool, True ],
'show_ascii_formatting_chars': [ opt_bool, False ],
'show_ascii_formatting_chars': [ opt_bool, False , _('If True, show *abc* as bold but with * * not removed')],
'sounds_on': [ opt_bool, True ],
# 'aplay', 'play', 'esdplay', 'artsplay' detected first time only
'soundplayer': [ opt_str, '' ],
@ -112,13 +112,13 @@ class Config:
'use_gpg_agent': [ opt_bool, False ],
'log_notif_in_user_file': [ opt_bool, True ],
'log_notif_in_sep_file': [ opt_bool, True ],
'change_roster_title': [ opt_bool, True ],
'restore_lines': [opt_int, 4],
'restore_timeout': [opt_int, 60],
'send_on_ctrl_enter': [opt_bool, False, _('Send message on Ctrl+Enter.')],
'change_roster_title': [ opt_bool, True, _('Add * and [n] in roster title?')],
'restore_lines': [opt_int, 4, _('How many lines to remember from previous conversation when a chat tab/window is reopened.')],
'restore_timeout': [opt_int, 60, _('How many minutes should last lines from previous conversation last.')],
'send_on_ctrl_enter': [opt_bool, False, _('Send message on Ctrl+Enter and with Enter make new line (Miribalis ICQ Client default behaviour).')],
'show_roster_on_startup': [opt_bool, True],
'key_up_lines': [opt_int, 25, _('How many lines to store for key up.')],
'version': [ opt_str, '0.9' ], # what version created the config
'version': [ opt_str, '0.9' ], # which version created the config
'always_compact_view': [opt_bool, False], # initial compact view state
'search_engine': [opt_str, 'http://www.google.com/search?&q=%s&sourceid=gajim'],
'dictionary_url': [opt_str, 'WIKTIONARY', _("Either custom url with %s in it where %s is the word/phrase or 'WIKTIONARY' which means use wiktionary.")],