From 4c265cc9d68098247f7746605d3885cbe6b76f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bellegarde?= Date: Mon, 9 Oct 2023 16:01:47 +0200 Subject: [PATCH] client: components: Add a warning about enabling remote images Fix #1550 --- src/client/components/components-preferences-window.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/components/components-preferences-window.vala b/src/client/components/components-preferences-window.vala index 528f36ba..78eec8c1 100644 --- a/src/client/components/components-preferences-window.vala +++ b/src/client/components/components-preferences-window.vala @@ -170,6 +170,7 @@ public class Components.PreferencesWindow : Hdy.PreferencesWindow { var trust_images_row = new Hdy.ActionRow(); /// Translators: Preferences label trust_images_row.title = _("_Always load images"); + trust_images_row.subtitle = _("Showing remote images allows the sender to track you"); trust_images_row.use_underline = true; trust_images_row.activatable_widget = trust_images; trust_images_row.add(trust_images);