summaryrefslogtreecommitdiffstats
path: root/python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py')
-rw-r--r--python/l10n/fluent_migrations/bug_1863022_protectionsPanel_infomessage.py24
1 files changed, 24 insertions, 0 deletions
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,
+ ),
+ )