commit 75990d76098432c1d6a0e6fe3768f5273b1f7519
parent 5ce047a13852c5f7ab01e93d6e3e8541ea3fef27
Author: Paul <paul@claws-mail.org>
Date: Sun, 30 Mar 2025 12:07:51 +0100
remove the unnecessary and potentially confusing word 'string'
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/plugins/rssyl/rssyl_feed_props.c b/src/plugins/rssyl/rssyl_feed_props.c
@@ -509,7 +509,7 @@ void rssyl_gtk_prop(RFolderItem *ritem)
gtk_widget_set_tooltip_text(feedprop->use_default_user_agent,
_("Disable this to use a User-Agent specific to this feed"));
gtk_widget_set_tooltip_text(feedprop->specific_user_agent,
- _("Specific User-Agent to use for this feed. If empty, the User-Agent string set in '/Configuration/Preferences/Plugins/RSSyl' will be used"));
+ _("Specific User-Agent to use for this feed. If empty, the User-Agent set in '/Configuration/Preferences/Plugins/RSSyl' will be used"));
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(hbox), feedprop->specific_user_agent, FALSE, FALSE, 0);
gtk_widget_set_sensitive(feedprop->specific_user_agent,
diff --git a/src/plugins/rssyl/rssyl_prefs.c b/src/plugins/rssyl/rssyl_prefs.c
@@ -242,7 +242,7 @@ static void create_rssyl_prefs_page(PrefsPage *page,
gtk_entry_set_text(GTK_ENTRY(custom_user_agent), rssyl_prefs.custom_user_agent);
gtk_box_pack_start(GTK_BOX(user_agent_hbox), custom_user_agent, TRUE, TRUE, 0);
gtk_widget_set_tooltip_text(custom_user_agent,
- _("Custom User-Agent to use for feed retrieval. If empty, the default User-Agent string will be used"));
+ _("Custom User-Agent to use for feed retrieval. If empty, the default User-Agent will be used"));
g_signal_connect(G_OBJECT(use_custom_user_agent), "toggled",
G_CALLBACK(rssyl_use_custom_user_agent_toggled_cb), custom_user_agent);