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/appmenu.ftl"
target = source
ctx.add_transforms(
target,
target,
transforms_from(
"""
appmenu-profiles-2 =
.label = {COPY_PATTERN(from_path, "appmenu-profiles")}
""",
from_path=source,
),
)