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
59
60
61
62
63
64
65
|
# coding=utf8
# 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 transforms_from
from fluent.migrate.transforms import COPY
def migrate(ctx):
"""Bug 1786186 - Migrate mobile about:config to Fluent, part {index}"""
target = "mobile/android/mobile/android/aboutConfig.ftl"
ctx.add_transforms(
target,
target,
transforms_from(
"""
config-toolbar-search =
.placeholder = { COPY(path1, "toolbar.searchPlaceholder") }
config-new-pref-name =
.placeholder = { COPY(path1, "newPref.namePlaceholder") }
config-new-pref-value-boolean = { COPY(path1, "newPref.valueBoolean") }
config-new-pref-value-string = { COPY(path1, "newPref.valueString") }
config-new-pref-value-integer = { COPY(path1, "newPref.valueInteger") }
config-new-pref-string =
.placeholder = { COPY(path1, "newPref.stringPlaceholder") }
config-new-pref-number =
.placeholder = { COPY(path1, "newPref.numberPlaceholder") }
config-new-pref-cancel-button = { COPY(path1, "newPref.cancelButton") }
config-context-menu-copy-pref-name =
.label = { COPY(path1, "contextMenu.copyPrefName") }
config-context-menu-copy-pref-value =
.label = { COPY(path1, "contextMenu.copyPrefValue") }
""",
path1="mobile/android/chrome/config.dtd",
),
)
source = "mobile/android/chrome/config.properties"
ctx.add_transforms(
target,
target,
[
FTL.Message(
id=FTL.Identifier("config-new-pref-create-button"),
value=COPY(source, "newPref.createButton"),
),
FTL.Message(
id=FTL.Identifier("config-new-pref-change-button"),
value=COPY(source, "newPref.changeButton"),
),
FTL.Message(
id=FTL.Identifier("config-pref-toggle-button"),
value=COPY(source, "pref.toggleButton"),
),
FTL.Message(
id=FTL.Identifier("config-pref-reset-button"),
value=COPY(source, "pref.resetButton"),
),
],
)
|