Source code
Revision control
Copy as Markdown
Other Tools
# Any copyright is dedicated to the Public Domain.
from fluent.migrate.helpers import transforms_from
def migrate(ctx):
source = "browser/browser/aboutPolicies.ftl"
target = source
ctx.add_transforms(
target,
source,
transforms_from(
"""
active-policies-tab-title =
.title = { COPY_PATTERN(from_path, "active-policies-tab") }
errors-tab-title =
.title = { COPY_PATTERN(from_path, "errors-tab") }
documentation-tab-title =
.title = { COPY_PATTERN(from_path, "documentation-tab") }
""",
from_path=source,
),
)