From 98c655b49d4c20495f2b0c5c094cc85a8804b360 Mon Sep 17 00:00:00 2001 From: mjentsch Date: Tue, 11 Apr 2017 22:35:10 +0200 Subject: [PATCH] Clarify chat handling option Clarify that the file transfer handling option refers to file transfers bigger than the threshold --- telegram-purple.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/telegram-purple.c b/telegram-purple.c index 4c84d06..b739d5d 100644 --- a/telegram-purple.c +++ b/telegram-purple.c @@ -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"),