summaryrefslogtreecommitdiffstats
path: root/python/l10n/fluent_migrations/bug_1854425_default_agent.py
blob: 500eb1871bbc2f331a10b879186aaaa1ca198c48 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 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 TERM_REFERENCE
from fluent.migrate.transforms import REPLACE, COPY


def migrate(ctx):
    """Bug 1854425 - Migrate defaultagent_localized.ini to Fluent, part {index}."""

    source = "browser/defaultagent/defaultagent_localized.ini"
    target = "browser/browser/backgroundtasks/defaultagent.ftl"

    ctx.add_transforms(
        target,
        target,
        [
            FTL.Message(
                id=FTL.Identifier("default-browser-agent-task-description"),
                value=REPLACE(
                    source,
                    "DefaultBrowserAgentTaskDescription",
                    {
                        "%MOZ_APP_DISPLAYNAME%": TERM_REFERENCE("brand-short-name"),
                    },
                ),
            ),
            FTL.Message(
                id=FTL.Identifier("default-browser-notification-header-text"),
                value=REPLACE(
                    source,
                    "DefaultBrowserNotificationHeaderText",
                    {
                        "%MOZ_APP_DISPLAYNAME%": TERM_REFERENCE("brand-short-name"),
                    },
                ),
            ),
            FTL.Message(
                id=FTL.Identifier("default-browser-notification-body-text"),
                value=REPLACE(
                    source,
                    "DefaultBrowserNotificationBodyText",
                    {
                        "%MOZ_APP_DISPLAYNAME%": TERM_REFERENCE("brand-short-name"),
                    },
                ),
            ),
            FTL.Message(
                id=FTL.Identifier("default-browser-notification-yes-button-text"),
                value=COPY(source, "DefaultBrowserNotificationYesButtonText"),
            ),
            FTL.Message(
                id=FTL.Identifier("default-browser-notification-no-button-text"),
                value=COPY(source, "DefaultBrowserNotificationNoButtonText"),
            ),
        ],
    )