From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../bug_1863022_protectionsPanel_infomessage.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py (limited to 'python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py') diff --git a/python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py b/python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py new file mode 100644 index 0000000000..b09d362475 --- /dev/null +++ b/python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py @@ -0,0 +1,24 @@ +# Any copyright is dedicated to the Public Domain. +# http://creativecommons.org/publicdomain/zero/1.0/ + +from fluent.migrate.helpers import transforms_from + + +def migrate(ctx): + """Bug 1863022 - Move Protection Panel Message to calling code, part {index}""" + + source = "browser/browser/newtab/asrouter.ftl" + target = "browser/browser/protectionsPanel.ftl" + + ctx.add_transforms( + target, + target, + transforms_from( + """ +cfr-protections-panel-header = {COPY_PATTERN(from_path, "cfr-protections-panel-header")} +cfr-protections-panel-body = {COPY_PATTERN(from_path, "cfr-protections-panel-body")} +cfr-protections-panel-link-text = {COPY_PATTERN(from_path, "cfr-protections-panel-link-text")} +""", + from_path=source, + ), + ) -- cgit v1.2.3