Changeset 9970 for trunk/src/common/config.py
- Timestamp:
- 07/20/08 17:06:21 (4 months ago)
- Files:
-
- 1 modified
-
trunk/src/common/config.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common/config.py
r9964 r9970 192 192 'tabs_close_button': [opt_bool, True, _('Show close button in tab?')], 193 193 'log_encrypted_sessions': [opt_bool, True, _('When negotiating an encrypted session, should Gajim assume you want your messages to be logged?')], 194 'autonegotiate_esessions': [opt_bool, True, _('Should Gajim automatically start an encrypted session when possible?')],195 194 'esession_modp': [opt_str, '5,14', _('A list of modp groups to use in a Diffie-Hellman, highest preference first, separated by commas. Valid groups are 1, 2, 5, 14, 15, 16, 17 and 18. Higher numbers are more secure, but take longer to calculate when you start a session.')], 196 195 'chat_avatar_width': [opt_int, 52], … … 278 277 'gpg_sign_presence': [ opt_bool, True, _('If disabled, don\'t sign presences with GPG key, even if GPG is configured.') ], 279 278 'keyname': [ opt_str, '', '', True ], 279 'autonegotiate_esessions': [opt_bool, True, _('Should Gajim automatically start an encrypted session when possible?')], 280 280 'connection_types': [ opt_str, 'tls ssl plain', _('Ordered list (space separated) of connection type to try. Can contain tls, ssl or plain')], 281 281 'warn_when_plaintext_connection': [ opt_bool, True, _('Show a warning dialog before sending password on an plaintext connection.') ], … … 300 300 'dont_ack_subscription': [opt_bool, False, _('Jabberd2 workaround')], 301 301 # proxy65 for FT 302 'file_transfer_proxies': [opt_str, 302 'file_transfer_proxies': [opt_str, 303 303 'proxy.jabber.org, proxy.netlab.cz, transfer.jabber.freenet.de, proxy.jabber.cd.chalmers.se'], 304 304 'use_ft_proxies': [opt_bool, True, _('If checked, Gajim will use your IP and proxies defined in file_transfer_proxies option for file transfer.'), True], … … 362 362 'bannerfont': [ opt_str, '', '', True ], 363 363 'bannerfontattrs': [ opt_str, 'B', '', True ], 364 364 365 365 # http://www.pitt.edu/~nisg/cis/web/cgi/rgb.html 366 366 'state_inactive_color': [ opt_color, 'grey62' ], … … 375 375 'contacts': ({ 376 376 'gpg_enabled': [ opt_bool, False, _('Is OpenPGP enabled for this contact?')], 377 'autonegotiate_esessions': [opt_bool, True, _('Should Gajim automatically start an encrypted session with this contact when possible?')], 377 378 'speller_language': [ opt_str, '', _('Language for which we want to check misspelled words')], 378 379 }, {}),
