From 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:47:29 +0200 Subject: Adding upstream version 115.8.0esr. Signed-off-by: Daniel Baumann --- python/l10n/fluent_migrations/bug_1831872_sync.py | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 python/l10n/fluent_migrations/bug_1831872_sync.py (limited to 'python/l10n/fluent_migrations/bug_1831872_sync.py') diff --git a/python/l10n/fluent_migrations/bug_1831872_sync.py b/python/l10n/fluent_migrations/bug_1831872_sync.py new file mode 100644 index 0000000000..f66c27bf5a --- /dev/null +++ b/python/l10n/fluent_migrations/bug_1831872_sync.py @@ -0,0 +1,31 @@ +# Any copyright is dedicated to the Public Domain. +# http://creativecommons.org/publicdomain/zero/1.0/ + +import fluent.syntax.ast as FTL +from fluent.migrate.helpers import TERM_REFERENCE, VARIABLE_REFERENCE +from fluent.migrate.transforms import REPLACE + + +def migrate(ctx): + """Bug 1831872 - Migrate sync.properties to Fluent, part {index}.""" + + source = "services/sync/sync.properties" + target = "toolkit/services/accounts.ftl" + ctx.add_transforms( + target, + target, + [ + FTL.Message( + id=FTL.Identifier("account-client-name"), + value=REPLACE( + source, + "client.name2", + { + "%1$S": VARIABLE_REFERENCE("user"), + "%2$S": TERM_REFERENCE("brand-short-name"), + "%3$S": VARIABLE_REFERENCE("system"), + }, + ), + ), + ], + ) -- cgit v1.2.3