summaryrefslogtreecommitdiffstats
path: root/python/l10n/fluent_migrations/bug_1832179_sendTabToDevice.py
blob: 526b8a90e048888e26c56d061c5d1269483d2644 (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
37
# Any copyright is dedicated to the Public Domain.
# http://creativecommons.org/publicdomain/zero/1.0/

import fluent.syntax.ast as FTL
from fluent.migrate.helpers import VARIABLE_REFERENCE
from fluent.migrate.transforms import PLURALS, REPLACE_IN_TEXT


def migrate(ctx):
    """Bug 1832179 - Convert sendTabsToDevice.label string to Fluent, part {index}."""

    browser = "browser/chrome/browser/browser.properties"
    target = "browser/browser/sync.ftl"

    ctx.add_transforms(
        target,
        target,
        [
            FTL.Message(
                id=FTL.Identifier("fxa-menu-send-tab-to-device"),
                attributes=[
                    FTL.Attribute(
                        id=FTL.Identifier("label"),
                        value=PLURALS(
                            browser,
                            "sendTabsToDevice.label",
                            VARIABLE_REFERENCE("tabCount"),
                            foreach=lambda n: REPLACE_IN_TEXT(
                                n,
                                {"#1": VARIABLE_REFERENCE("tabCount")},
                            ),
                        ),
                    )
                ],
            ),
        ],
    )