summaryrefslogtreecommitdiffstats
path: root/comm/python/l10n/tb_fluent_migrations/completed/bug_1805746_calendar_view.py
blob: eec0fbe44e82c7b6c822c271b951d51929d0873d (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
# coding=utf8

# Any copyright is dedicated to the Public Domain.
# http://creativecommons.org/publicdomain/zero/1.0/

from fluent.migrate.helpers import transforms_from
from fluent.migrate import COPY


def migrate(ctx):
    """Bug 1805746 - Update Calendar View selection part {index}."""

    ctx.add_transforms(
        "calendar/calendar/calendar-widgets.ftl",
        "calendar/calendar/calendar-widgets.ftl",
        transforms_from(
            """
calendar-view-toggle-day = { COPY(from_path, "calendar.day.button.label") }
    .title = { COPY(from_path, "calendar.day.button.tooltip") }
calendar-view-toggle-week = { COPY(from_path, "calendar.week.button.label") }
    .title = { COPY(from_path, "calendar.week.button.tooltip") }
calendar-view-toggle-multiweek = { COPY(from_path, "calendar.multiweek.button.label") }
    .title = { COPY(from_path, "calendar.multiweek.button.tooltip") }
calendar-view-toggle-month = { COPY(from_path, "calendar.month.button.label") }
    .title = { COPY(from_path, "calendar.month.button.tooltip") }
""",
            from_path="calendar/chrome/calendar/calendar.dtd",
        ),
    )