summaryrefslogtreecommitdiffstats
path: root/python/l10n/fluent_migrations/bug_1856014_protectionsPanel_fixButtonLabels.py
blob: d5541e91deed6bdab4717fc4c961eabd8a102aaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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 1856014 - Fix fluent schema for strings in protections panel, part {index}."""

    file = "browser/browser/protectionsPanel.ftl"
    ctx.add_transforms(
        file,
        file,
        transforms_from(
            """
protections-panel-not-blocking-why-etp-on-tooltip-label =
  .label = {COPY_PATTERN(from_path, "protections-panel-not-blocking-why-etp-on-tooltip")}
protections-panel-not-blocking-why-etp-off-tooltip-label =
  .label = {COPY_PATTERN(from_path, "protections-panel-not-blocking-why-etp-off-tooltip")}
""",
            from_path=file,
        ),
    )
    ctx.add_transforms(
        file,
        file,
        transforms_from(
            """
protections-panel-cookie-banner-view-turn-off-label =
  .label = {COPY_PATTERN(from_path, "protections-panel-cookie-banner-view-turn-off")}
protections-panel-cookie-banner-view-turn-on-label =
  .label = {COPY_PATTERN(from_path, "protections-panel-cookie-banner-view-turn-on")}
""",
            from_path=file,
        ),
    )