summaryrefslogtreecommitdiffstats
path: root/python/l10n/fluent_migrations/bug_1862982_protectionsPanel_fixCancelButtonLabel.py
blob: cb5c87da42dd1fffb34b4132018322d18fd05e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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,
        ),
    )