From 59203c63bb777a3bacec32fb8830fba33540e809 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 12 Jun 2024 07:35:29 +0200 Subject: Adding upstream version 127.0. Signed-off-by: Daniel Baumann --- .../bug_1892125_screenshots_migrations.py | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 python/l10n/fluent_migrations/bug_1892125_screenshots_migrations.py (limited to 'python/l10n') diff --git a/python/l10n/fluent_migrations/bug_1892125_screenshots_migrations.py b/python/l10n/fluent_migrations/bug_1892125_screenshots_migrations.py new file mode 100644 index 0000000000..d4379026dc --- /dev/null +++ b/python/l10n/fluent_migrations/bug_1892125_screenshots_migrations.py @@ -0,0 +1,28 @@ +# Any copyright is dedicated to the Public Domain. +# http://creativecommons.org/publicdomain/zero/1.0/ + +from fluent.migrate.helpers import transforms_from + + +def migrate(ctx): + """Bug 1892125 - Update copy and download strings, part {index}.""" + + source = "browser/browser/screenshots.ftl" + target = "browser/browser/screenshots.ftl" + + ctx.add_transforms( + target, + target, + transforms_from( + """ +screenshots-component-copy-button-2 = {COPY_PATTERN(from_path, "screenshots-component-copy-button-label")} + .title = {COPY_PATTERN(from_path, "screenshots-component-copy-button.title")} + .aria-label = {COPY_PATTERN(from_path, "screenshots-component-copy-button.aria-label")} + +screenshots-component-download-button-2 = {COPY_PATTERN(from_path, "screenshots-component-download-button-label")} + .title = {COPY_PATTERN(from_path, "screenshots-component-download-button.title")} + .aria-label = {COPY_PATTERN(from_path, "screenshots-component-download-button.aria-label")} +""", + from_path=source, + ), + ) -- cgit v1.2.3