summaryrefslogtreecommitdiffstats
path: root/python/l10n/fluent_migrations/bug_1867346_new_device_migration_string_replacement.py
blob: a926bff41a6e04d68814fa111e498af7fafaf74c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 1867346 - Replace a string for device migration ASRouter messages, part {index}."""

    source = "browser/browser/newtab/asrouter.ftl"
    target = source

    ctx.add_transforms(
        target,
        target,
        transforms_from(
            """
device-migration-fxa-spotlight-getting-new-device-header-2 = {COPY_PATTERN(from_path, "fxa-sync-cfr-header")}
""",
            from_path=source,
        ),
    )