Clarify chat handling option

Clarify that the file transfer handling option refers to file
transfers bigger than the threshold
This commit is contained in:
mjentsch 2017-04-11 22:35:10 +02:00
parent 43ef291cb8
commit 98c655b49d

View file

@ -842,12 +842,12 @@ static void tgprpl_init (PurplePlugin *plugin) {
ADD_VALUE(choices, _("Auto load"), "autoload");
ADD_VALUE(choices, _("Ask"), "ask");
opt = purple_account_option_list_new (_("Handle file transfers"), TGP_KEY_FT_HANDLING, choices);
prpl_info.protocol_options = g_list_append (prpl_info.protocol_options, opt);
opt = purple_account_option_int_new (_("Auto load file transfers up to (kb)"), TGP_KEY_MEDIA_SIZE,
TGP_DEFAULT_MEDIA_SIZE);
prpl_info.protocol_options = g_list_append (prpl_info.protocol_options, opt);
opt = purple_account_option_list_new (_("Bigger file transfers"), TGP_KEY_FT_HANDLING, choices);
prpl_info.protocol_options = g_list_append (prpl_info.protocol_options, opt);
// Chats
opt = purple_account_option_bool_new (_("Add all group chats to buddy list"),