From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../fluent_migrations/bug_1818322_mozTabList.py | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 python/l10n/fluent_migrations/bug_1818322_mozTabList.py (limited to 'python/l10n/fluent_migrations/bug_1818322_mozTabList.py') diff --git a/python/l10n/fluent_migrations/bug_1818322_mozTabList.py b/python/l10n/fluent_migrations/bug_1818322_mozTabList.py new file mode 100644 index 0000000000..9be3037550 --- /dev/null +++ b/python/l10n/fluent_migrations/bug_1818322_mozTabList.py @@ -0,0 +1,26 @@ +# 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 1818322 - Create MozTabList and MozTabRow reusable components, part {index}.""" + ctx.add_transforms( + "toolkit/toolkit/global/mozTabList.ftl", + "toolkit/toolkit/global/mozTabList.ftl", + transforms_from( + """ +mztabrow-tabs-list-tab = + .title = {COPY_PATTERN(from_path, "firefoxview-tabs-list-tab-button.title")} +mztabrow-dismiss-tab-button = + .title = {COPY_PATTERN(from_path, "firefoxview-closed-tabs-dismiss-tab.title")} +mztabrow-just-now-timestamp = {COPY_PATTERN(from_path, "firefoxview-just-now-timestamp")} + """, + from_path="browser/browser/firefoxView.ftl", + ), + ) -- cgit v1.2.3