summaryrefslogtreecommitdiffstats
path: root/python/l10n/fluent_migrations/bug_1862982_protectionsPanel_fixCancelButtonLabel.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/l10n/fluent_migrations/bug_1862982_protectionsPanel_fixCancelButtonLabel.py')
-rw-r--r--python/l10n/fluent_migrations/bug_1862982_protectionsPanel_fixCancelButtonLabel.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/python/l10n/fluent_migrations/bug_1862982_protectionsPanel_fixCancelButtonLabel.py b/python/l10n/fluent_migrations/bug_1862982_protectionsPanel_fixCancelButtonLabel.py
new file mode 100644
index 0000000000..cb5c87da42
--- /dev/null
+++ b/python/l10n/fluent_migrations/bug_1862982_protectionsPanel_fixCancelButtonLabel.py
@@ -0,0 +1,21 @@
+# 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 1862982 - Fix fluent schema for cookie banner cancel button, part {index}."""
+
+ file = "browser/browser/protectionsPanel.ftl"
+ ctx.add_transforms(
+ file,
+ file,
+ transforms_from(
+ """
+protections-panel-cookie-banner-view-cancel-label =
+ .label = {COPY_PATTERN(from_path, "protections-panel-cookie-banner-view-cancel")}
+""",
+ from_path=file,
+ ),
+ )