summaryrefslogtreecommitdiffstats
path: root/comm/python/l10n/tb_fluent_migrations/completed/bug_1817915_get_new_messages.py
diff options
context:
space:
mode:
Diffstat (limited to 'comm/python/l10n/tb_fluent_migrations/completed/bug_1817915_get_new_messages.py')
-rw-r--r--comm/python/l10n/tb_fluent_migrations/completed/bug_1817915_get_new_messages.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/comm/python/l10n/tb_fluent_migrations/completed/bug_1817915_get_new_messages.py b/comm/python/l10n/tb_fluent_migrations/completed/bug_1817915_get_new_messages.py
new file mode 100644
index 0000000000..2e2c1ac497
--- /dev/null
+++ b/comm/python/l10n/tb_fluent_migrations/completed/bug_1817915_get_new_messages.py
@@ -0,0 +1,22 @@
+# Any copyright is dedicated to the Public Domain.
+# http://creativecommons.org/publicdomain/zero/1.0/
+
+from fluent.migratetb.helpers import transforms_from
+from fluent.migratetb import COPY
+
+
+def migrate(ctx):
+ """Bug 1817915 - Add context menu to Get Messages folder pane button to fetch all messages or per account, part {index}."""
+
+ ctx.add_transforms(
+ "mail/messenger/about3Pane.ftl",
+ "mail/messenger/about3Pane.ftl",
+ transforms_from(
+ """
+folder-pane-get-all-messages-menuitem =
+ .label = { COPY(from_path, "getAllNewMsgCmd.label") }
+ .accesskey = { COPY(from_path, "getAllNewMsgCmd.accesskey") }
+ """,
+ from_path="mail/chrome/messenger/messenger.dtd",
+ ),
+ )