diff --git a/python/l10n/fluent_migrations/bug_1552333_aboutCertError.py b/python/l10n/fluent_migrations/bug_1552333_aboutCertError.py deleted file mode 100644 index 5c8300e01fe9..000000000000 --- a/python/l10n/fluent_migrations/bug_1552333_aboutCertError.py +++ /dev/null @@ -1,40 +0,0 @@ -# coding=utf8 - -# 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 transforms_from -from fluent.migrate.helpers import VARIABLE_REFERENCE -from fluent.migrate import COPY, REPLACE - - -def migrate(ctx): - """Bug 1552333 - Migrate strings from pipnss.properties to aboutCertError.ftl""" - ctx.add_transforms( - "browser/browser/aboutCertError.ftl", - "browser/browser/aboutCertError.ftl", - transforms_from( - """ -cert-error-symantec-distrust-admin = { COPY(from_path, "certErrorSymantecDistrustAdministrator") } -""", - from_path="security/manager/chrome/pipnss/pipnss.properties", - ), - ) - ctx.add_transforms( - "browser/browser/aboutCertError.ftl", - "browser/browser/aboutCertError.ftl", - [ - FTL.Message( - id=FTL.Identifier("cert-error-symantec-distrust-description"), - value=REPLACE( - "security/manager/chrome/pipnss/pipnss.properties", - "certErrorSymantecDistrustDescription1", - { - "%1$S": VARIABLE_REFERENCE("hostname"), - }, - normalize_printf=True, - ), - ), - ], - ) diff --git a/python/l10n/fluent_migrations/bug_1635548_browser_context.py b/python/l10n/fluent_migrations/bug_1635548_browser_context.py deleted file mode 100644 index 33bd0efc9555..000000000000 --- a/python/l10n/fluent_migrations/bug_1635548_browser_context.py +++ /dev/null @@ -1,82 +0,0 @@ -# coding=utf8 - -# 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 transforms_from, VARIABLE_REFERENCE -from fluent.migrate import REPLACE, COPY - - -def migrate(ctx): - """Bug 1635548 - Migrate browser-context.inc to Fluent, part {index}""" - target = "toolkit/toolkit/global/textActions.ftl" - reference = "toolkit/toolkit/global/textActions.ftl" - ctx.add_transforms( - target, - reference, - transforms_from( - """ -text-action-spell-add-to-dictionary = - .label = { COPY(from_path, "spellAddToDictionary.label") } - .accesskey = { COPY(from_path, "spellAddToDictionary.accesskey") } - -text-action-spell-undo-add-to-dictionary = - .label = { COPY(from_path, "spellUndoAddToDictionary.label") } - .accesskey = { COPY(from_path, "spellUndoAddToDictionary.accesskey") } - -text-action-spell-check-toggle = - .label = { COPY(from_path, "spellCheckToggle.label") } - .accesskey = { COPY(from_path, "spellCheckToggle.accesskey") } - -text-action-spell-dictionaries = - .label = { COPY(from_path, "spellDictionaries.label") } - .accesskey = { COPY(from_path, "spellDictionaries.accesskey") } -""", - from_path="toolkit/chrome/global/textcontext.dtd", - ), - ) - - target = "toolkit/toolkit/global/textActions.ftl" - reference = "toolkit/toolkit/global/textActions.ftl" - ctx.add_transforms( - target, - reference, - transforms_from( - """ -text-action-spell-add-dictionaries = - .label = { COPY(from_path, "spellAddDictionaries.label") } - .accesskey = { COPY(from_path, "spellAddDictionaries.accesskey") } -""", - from_path="browser/chrome/browser/browser.dtd", - ), - ) - - target = "browser/browser/browserContext.ftl" - reference = "browser/browser/browserContext.ftl" - ctx.add_transforms( - target, - reference, - [ - FTL.Message( - id=FTL.Identifier("main-context-menu-open-link-in-container-tab"), - attributes=[ - FTL.Attribute( - FTL.Identifier("label"), - REPLACE( - "browser/chrome/browser/browser.properties", - "userContextOpenLink.label", - {"%1$S": VARIABLE_REFERENCE("containerName")}, - ), - ), - FTL.Attribute( - FTL.Identifier("accesskey"), - COPY( - "browser/chrome/browser/browser.dtd", - "openLinkCmdInTab.accesskey", - ), - ), - ], - ) - ], - ) diff --git a/python/l10n/fluent_migrations/bug_1786186_mobile_aboutConfig.py b/python/l10n/fluent_migrations/bug_1786186_mobile_aboutConfig.py deleted file mode 100644 index 99c6673f9207..000000000000 --- a/python/l10n/fluent_migrations/bug_1786186_mobile_aboutConfig.py +++ /dev/null @@ -1,65 +0,0 @@ -# coding=utf8 - -# 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 transforms_from -from fluent.migrate.transforms import COPY - - -def migrate(ctx): - """Bug 1786186 - Migrate mobile about:config to Fluent, part {index}""" - - target = "mobile/android/mobile/android/aboutConfig.ftl" - - ctx.add_transforms( - target, - target, - transforms_from( - """ - -config-toolbar-search = - .placeholder = { COPY(path1, "toolbar.searchPlaceholder") } -config-new-pref-name = - .placeholder = { COPY(path1, "newPref.namePlaceholder") } -config-new-pref-value-boolean = { COPY(path1, "newPref.valueBoolean") } -config-new-pref-value-string = { COPY(path1, "newPref.valueString") } -config-new-pref-value-integer = { COPY(path1, "newPref.valueInteger") } -config-new-pref-string = - .placeholder = { COPY(path1, "newPref.stringPlaceholder") } -config-new-pref-number = - .placeholder = { COPY(path1, "newPref.numberPlaceholder") } -config-new-pref-cancel-button = { COPY(path1, "newPref.cancelButton") } -config-context-menu-copy-pref-name = - .label = { COPY(path1, "contextMenu.copyPrefName") } -config-context-menu-copy-pref-value = - .label = { COPY(path1, "contextMenu.copyPrefValue") } -""", - path1="mobile/android/chrome/config.dtd", - ), - ) - - source = "mobile/android/chrome/config.properties" - ctx.add_transforms( - target, - target, - [ - FTL.Message( - id=FTL.Identifier("config-new-pref-create-button"), - value=COPY(source, "newPref.createButton"), - ), - FTL.Message( - id=FTL.Identifier("config-new-pref-change-button"), - value=COPY(source, "newPref.changeButton"), - ), - FTL.Message( - id=FTL.Identifier("config-pref-toggle-button"), - value=COPY(source, "pref.toggleButton"), - ), - FTL.Message( - id=FTL.Identifier("config-pref-reset-button"), - value=COPY(source, "pref.resetButton"), - ), - ], - ) diff --git a/python/l10n/fluent_migrations/bug_1793572_webrtc.py b/python/l10n/fluent_migrations/bug_1793572_webrtc.py deleted file mode 100644 index eb07f939a840..000000000000 --- a/python/l10n/fluent_migrations/bug_1793572_webrtc.py +++ /dev/null @@ -1,771 +0,0 @@ -# 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 ( - COPY, - COPY_PATTERN, - PLURALS, - REPLACE, - REPLACE_IN_TEXT, -) - - -def migrate(ctx): - """Bug 1793572 - Convert WebRTC strings to Fluent, part {index}.""" - - source = "browser/chrome/browser/webrtcIndicator.properties" - browser = "browser/chrome/browser/browser.properties" - browser_ftl = "browser/browser/browser.ftl" - target = "browser/browser/webrtcIndicator.ftl" - - ctx.add_transforms( - target, - target, - [ - FTL.Message( - id=FTL.Identifier("webrtc-indicator-window"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("title"), - value=COPY_PATTERN(target, "webrtc-indicator-title"), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-sharing-camera-and-microphone"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("tooltiptext"), - value=COPY( - source, "webrtcIndicator.sharingCameraAndMicrophone.tooltip" - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-sharing-camera"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("tooltiptext"), - value=COPY(source, "webrtcIndicator.sharingCamera.tooltip"), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-sharing-microphone"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("tooltiptext"), - value=COPY(source, "webrtcIndicator.sharingMicrophone.tooltip"), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-sharing-application"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("tooltiptext"), - value=COPY( - source, "webrtcIndicator.sharingApplication.tooltip" - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-sharing-screen"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("tooltiptext"), - value=COPY(source, "webrtcIndicator.sharingScreen.tooltip"), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-sharing-window"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("tooltiptext"), - value=COPY(source, "webrtcIndicator.sharingWindow.tooltip"), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-sharing-browser"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("tooltiptext"), - value=COPY(source, "webrtcIndicator.sharingBrowser.tooltip"), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-control-sharing"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(source, "webrtcIndicator.controlSharing.menuitem"), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-control-sharing-on"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=REPLACE( - source, - "webrtcIndicator.controlSharingOn.menuitem", - {"%1$S": VARIABLE_REFERENCE("streamTitle")}, - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-sharing-camera-with"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=REPLACE( - source, - "webrtcIndicator.sharingCameraWith.menuitem", - {"%1$S": VARIABLE_REFERENCE("streamTitle")}, - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-sharing-microphone-with"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=REPLACE( - source, - "webrtcIndicator.sharingMicrophoneWith.menuitem", - {"%1$S": VARIABLE_REFERENCE("streamTitle")}, - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-sharing-application-with"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=REPLACE( - source, - "webrtcIndicator.sharingApplicationWith.menuitem", - {"%1$S": VARIABLE_REFERENCE("streamTitle")}, - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-sharing-screen-with"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=REPLACE( - source, - "webrtcIndicator.sharingScreenWith.menuitem", - {"%1$S": VARIABLE_REFERENCE("streamTitle")}, - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-sharing-window-with"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=REPLACE( - source, - "webrtcIndicator.sharingWindowWith.menuitem", - {"%1$S": VARIABLE_REFERENCE("streamTitle")}, - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-indicator-menuitem-sharing-browser-with"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=REPLACE( - source, - "webrtcIndicator.sharingBrowserWith.menuitem", - {"%1$S": VARIABLE_REFERENCE("streamTitle")}, - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-indicator-menuitem-sharing-camera-with-n-tabs" - ), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=PLURALS( - source, - "webrtcIndicator.sharingCameraWithNTabs.menuitem", - VARIABLE_REFERENCE("tabCount"), - foreach=lambda n: REPLACE_IN_TEXT( - n, - {"#1": VARIABLE_REFERENCE("tabCount")}, - ), - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-indicator-menuitem-sharing-microphone-with-n-tabs" - ), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=PLURALS( - source, - "webrtcIndicator.sharingMicrophoneWithNTabs.menuitem", - VARIABLE_REFERENCE("tabCount"), - foreach=lambda n: REPLACE_IN_TEXT( - n, - {"#1": VARIABLE_REFERENCE("tabCount")}, - ), - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-indicator-menuitem-sharing-application-with-n-tabs" - ), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=PLURALS( - source, - "webrtcIndicator.sharingApplicationWithNTabs.menuitem", - VARIABLE_REFERENCE("tabCount"), - foreach=lambda n: REPLACE_IN_TEXT( - n, - {"#1": VARIABLE_REFERENCE("tabCount")}, - ), - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-indicator-menuitem-sharing-screen-with-n-tabs" - ), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=PLURALS( - source, - "webrtcIndicator.sharingScreenWithNTabs.menuitem", - VARIABLE_REFERENCE("tabCount"), - foreach=lambda n: REPLACE_IN_TEXT( - n, - {"#1": VARIABLE_REFERENCE("tabCount")}, - ), - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-indicator-menuitem-sharing-window-with-n-tabs" - ), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=PLURALS( - source, - "webrtcIndicator.sharingWindowWithNTabs.menuitem", - VARIABLE_REFERENCE("tabCount"), - foreach=lambda n: REPLACE_IN_TEXT( - n, - {"#1": VARIABLE_REFERENCE("tabCount")}, - ), - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-indicator-menuitem-sharing-browser-with-n-tabs" - ), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=PLURALS( - source, - "webrtcIndicator.sharingBrowserWithNTabs.menuitem", - VARIABLE_REFERENCE("tabCount"), - foreach=lambda n: REPLACE_IN_TEXT( - n, - {"#1": VARIABLE_REFERENCE("tabCount")}, - ), - ), - ) - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-item-camera"), - value=REPLACE( - browser, - "getUserMedia.sharingMenuCamera", - { - "%1$S (": FTL.TextElement(""), - "%1$S(": FTL.TextElement(""), - ")": FTL.TextElement(""), - ")": FTL.TextElement(""), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-item-microphone"), - value=REPLACE( - browser, - "getUserMedia.sharingMenuMicrophone", - { - "%1$S (": FTL.TextElement(""), - "%1$S(": FTL.TextElement(""), - ")": FTL.TextElement(""), - ")": FTL.TextElement(""), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-item-audio-capture"), - value=REPLACE( - browser, - "getUserMedia.sharingMenuAudioCapture", - { - "%1$S (": FTL.TextElement(""), - "%1$S(": FTL.TextElement(""), - ")": FTL.TextElement(""), - ")": FTL.TextElement(""), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-item-application"), - value=REPLACE( - browser, - "getUserMedia.sharingMenuApplication", - { - "%1$S (": FTL.TextElement(""), - "%1$S(": FTL.TextElement(""), - ")": FTL.TextElement(""), - ")": FTL.TextElement(""), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-item-screen"), - value=REPLACE( - browser, - "getUserMedia.sharingMenuScreen", - { - "%1$S (": FTL.TextElement(""), - "%1$S(": FTL.TextElement(""), - ")": FTL.TextElement(""), - ")": FTL.TextElement(""), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-item-window"), - value=REPLACE( - browser, - "getUserMedia.sharingMenuWindow", - { - "%1$S (": FTL.TextElement(""), - "%1$S(": FTL.TextElement(""), - ")": FTL.TextElement(""), - ")": FTL.TextElement(""), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-item-browser"), - value=REPLACE( - browser, - "getUserMedia.sharingMenuBrowser", - { - "%1$S (": FTL.TextElement(""), - "%1$S(": FTL.TextElement(""), - ")": FTL.TextElement(""), - ")": FTL.TextElement(""), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-sharing-menuitem-unknown-host"), - value=COPY(browser, "getUserMedia.sharingMenuUnknownHost"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-sharing-menuitem"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=FTL.Pattern( - [FTL.TextElement("{ $origin } ({ $itemList })")] - ), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-sharing-menu"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(browser, "getUserMedia.sharingMenu.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(browser, "getUserMedia.sharingMenu.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-camera"), - value=REPLACE( - browser, - "getUserMedia.shareCamera3.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-microphone"), - value=REPLACE( - browser, - "getUserMedia.shareMicrophone3.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-screen"), - value=REPLACE( - browser, - "getUserMedia.shareScreen4.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-camera-and-microphone"), - value=REPLACE( - browser, - "getUserMedia.shareCameraAndMicrophone3.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-camera-and-audio-capture"), - value=REPLACE( - browser, - "getUserMedia.shareCameraAndAudioCapture3.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-screen-and-microphone"), - value=REPLACE( - browser, - "getUserMedia.shareScreenAndMicrophone4.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-screen-and-audio-capture"), - value=REPLACE( - browser, - "getUserMedia.shareScreenAndAudioCapture4.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-audio-capture"), - value=REPLACE( - browser, - "getUserMedia.shareAudioCapture3.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-speaker"), - value=REPLACE( - browser, - "selectAudioOutput.shareSpeaker.message", - {"%1$S": VARIABLE_REFERENCE("origin")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-camera-unsafe-delegation"), - value=REPLACE( - browser, - "getUserMedia.shareCameraUnsafeDelegation2.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-microphone-unsafe-delegations"), - value=REPLACE( - browser, - "getUserMedia.shareMicrophoneUnsafeDelegations2.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-screen-unsafe-delegation"), - value=REPLACE( - browser, - "getUserMedia.shareScreenUnsafeDelegation2.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-allow-share-camera-and-microphone-unsafe-delegation" - ), - value=REPLACE( - browser, - "getUserMedia.shareCameraAndMicrophoneUnsafeDelegation2.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-allow-share-camera-and-audio-capture-unsafe-delegation" - ), - value=REPLACE( - browser, - "getUserMedia.shareCameraAndAudioCaptureUnsafeDelegation2.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-allow-share-screen-and-microphone-unsafe-delegation" - ), - value=REPLACE( - browser, - "getUserMedia.shareScreenAndMicrophoneUnsafeDelegation2.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier( - "webrtc-allow-share-screen-and-audio-capture-unsafe-delegation" - ), - value=REPLACE( - browser, - "getUserMedia.shareScreenAndAudioCaptureUnsafeDelegation2.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-allow-share-speaker-unsafe-delegation"), - value=REPLACE( - browser, - "selectAudioOutput.shareSpeakerUnsafeDelegation.message", - { - "%1$S": VARIABLE_REFERENCE("origin"), - "%2$S": VARIABLE_REFERENCE("thirdParty"), - }, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-share-screen-warning"), - value=COPY(browser, "getUserMedia.shareScreenWarning2.message"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-share-browser-warning"), - value=REPLACE( - browser, - "getUserMedia.shareFirefoxWarning2.message", - {"%1$S": TERM_REFERENCE("brand-short-name")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-share-screen-learn-more"), - value=COPY(browser, "getUserMedia.shareScreen.learnMoreLabel"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-pick-window-or-screen"), - value=COPY(browser, "getUserMedia.pickWindowOrScreen.label"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-share-entire-screen"), - value=COPY(browser, "getUserMedia.shareEntireScreen.label"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-share-pipe-wire-portal"), - value=COPY(browser, "getUserMedia.sharePipeWirePortal.label"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-share-monitor"), - value=REPLACE( - browser, - "getUserMedia.shareMonitor.label", - {"%1$S": VARIABLE_REFERENCE("monitorIndex")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-share-application"), - value=PLURALS( - browser, - "getUserMedia.shareApplicationWindowCount.label", - VARIABLE_REFERENCE("windowCount"), - foreach=lambda n: REPLACE_IN_TEXT( - n, - { - "#1": VARIABLE_REFERENCE("appName"), - "#2": VARIABLE_REFERENCE("windowCount"), - }, - ), - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-action-allow"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(browser, "getUserMedia.allow.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(browser, "getUserMedia.allow.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-action-block"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY_PATTERN( - browser_ftl, "popup-screen-sharing-block.label" - ), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY_PATTERN( - browser_ftl, "popup-screen-sharing-block.accesskey" - ), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-action-always-block"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY_PATTERN( - browser_ftl, "popup-screen-sharing-always-block.label" - ), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY_PATTERN( - browser_ftl, - "popup-screen-sharing-always-block.accesskey", - ), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-action-not-now"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(browser, "getUserMedia.notNow.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(browser, "getUserMedia.notNow.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("webrtc-remember-allow-checkbox"), - value=COPY(browser, "getUserMedia.remember"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-mute-notifications-checkbox"), - value=COPY_PATTERN(browser_ftl, "popup-mute-notifications-checkbox"), - ), - FTL.Message( - id=FTL.Identifier("webrtc-reason-for-no-permanent-allow-screen"), - value=REPLACE( - browser, - "getUserMedia.reasonForNoPermanentAllow.screen3", - {"%1$S": TERM_REFERENCE("brand-short-name")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-reason-for-no-permanent-allow-audio"), - value=REPLACE( - browser, - "getUserMedia.reasonForNoPermanentAllow.audio", - {"%1$S": TERM_REFERENCE("brand-short-name")}, - ), - ), - FTL.Message( - id=FTL.Identifier("webrtc-reason-for-no-permanent-allow-insecure"), - value=REPLACE( - browser, - "getUserMedia.reasonForNoPermanentAllow.insecure", - {"%1$S": TERM_REFERENCE("brand-short-name")}, - ), - ), - ], - ) - - ctx.add_transforms( - browser_ftl, - browser_ftl, - [ - FTL.Message( - id=FTL.Identifier("popup-select-window-or-screen"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(browser, "getUserMedia.selectWindowOrScreen2.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY( - browser, "getUserMedia.selectWindowOrScreen2.accesskey" - ), - ), - ], - ), - ], - ) diff --git a/python/l10n/fluent_migrations/bug_1812135_newtab_moz_toggle_labels.py b/python/l10n/fluent_migrations/bug_1812135_newtab_moz_toggle_labels.py deleted file mode 100644 index 27db47b0b5d4..000000000000 --- a/python/l10n/fluent_migrations/bug_1812135_newtab_moz_toggle_labels.py +++ /dev/null @@ -1,30 +0,0 @@ -# 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 transforms_from - - -def migrate(ctx): - """Bug 1812135 - Convert some newtab customiation panel strings to use a label, part {index}""" - - translations_ftl = "browser/browser/newtab/newtab.ftl" - - ctx.add_transforms( - translations_ftl, - translations_ftl, - transforms_from( - """ -newtab-custom-shortcuts-toggle = - .label = {COPY_PATTERN(from_path, "newtab-custom-shortcuts-title")} - .description = {COPY_PATTERN(from_path, "newtab-custom-shortcuts-subtitle")} -newtab-custom-pocket-toggle = - .label = {COPY_PATTERN(from_path, "newtab-custom-pocket-title")} - .description = {COPY_PATTERN(from_path, "newtab-custom-pocket-subtitle")} -newtab-custom-recent-toggle = - .label = {COPY_PATTERN(from_path, "newtab-custom-recent-title")} - .description = {COPY_PATTERN(from_path, "newtab-custom-recent-subtitle")} -""", - from_path=translations_ftl, - ), - ) diff --git a/python/l10n/fluent_migrations/bug_1814969_contextualIdentity.py b/python/l10n/fluent_migrations/bug_1814969_contextualIdentity.py deleted file mode 100644 index 10a6bd5690fa..000000000000 --- a/python/l10n/fluent_migrations/bug_1814969_contextualIdentity.py +++ /dev/null @@ -1,101 +0,0 @@ -# Any copyright is dedicated to the Public Domain. -# http://creativecommons.org/publicdomain/zero/1.0/ - -import fluent.syntax.ast as FTL -from fluent.migrate.transforms import COPY, COPY_PATTERN - - -def migrate(ctx): - """Bug 1814969 - Convert contextual identity service strings to Fluent, part {index}.""" - - source = "browser/chrome/browser/browser.properties" - alltabs = "browser/browser/allTabsMenu.ftl" - target = "toolkit/toolkit/global/contextual-identity.ftl" - ctx.add_transforms( - target, - target, - [ - FTL.Message( - id=FTL.Identifier("user-context-personal"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(source, "userContextPersonal.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(source, "userContextPersonal.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("user-context-work"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(source, "userContextWork.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(source, "userContextWork.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("user-context-banking"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(source, "userContextBanking.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(source, "userContextBanking.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("user-context-shopping"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(source, "userContextShopping.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(source, "userContextShopping.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("user-context-none"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY(source, "userContextNone.label"), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY(source, "userContextNone.accesskey"), - ), - ], - ), - FTL.Message( - id=FTL.Identifier("user-context-manage-containers"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("label"), - value=COPY_PATTERN( - alltabs, "all-tabs-menu-manage-user-context.label" - ), - ), - FTL.Attribute( - id=FTL.Identifier("accesskey"), - value=COPY_PATTERN( - alltabs, "all-tabs-menu-manage-user-context.accesskey" - ), - ), - ], - ), - ], - ) diff --git a/python/l10n/fluent_migrations/bug_1844783_mozMessageBarShopping.py b/python/l10n/fluent_migrations/bug_1844783_mozMessageBarShopping.py deleted file mode 100644 index 468839693c39..000000000000 --- a/python/l10n/fluent_migrations/bug_1844783_mozMessageBarShopping.py +++ /dev/null @@ -1,45 +0,0 @@ -# Any copyright is dedicated to the Public Domain. -# http://creativecommons.org/publicdomain/zero/1.0/ - -from fluent.migrate import COPY_PATTERN -from fluent.migrate.helpers import transforms_from - - -def migrate(ctx): - """Bug 1844783 - Use new moz-message-bar in shopping components, part {index}.""" - shopping_ftl = "browser/browser/shopping.ftl" - ctx.add_transforms( - shopping_ftl, - shopping_ftl, - transforms_from( - """ -shopping-message-bar-generic-error = - .heading = {COPY_PATTERN(from_path, "shopping-message-bar-generic-error-title2")} - .message = {COPY_PATTERN(from_path, "shopping-message-bar-generic-error-message")} - -shopping-message-bar-warning-not-enough-reviews = - .heading = {COPY_PATTERN(from_path, "shopping-message-bar-warning-not-enough-reviews-title")} - .message = {COPY_PATTERN(from_path, "shopping-message-bar-warning-not-enough-reviews-message2")} - -shopping-message-bar-warning-product-not-available = - .heading = {COPY_PATTERN(from_path, "shopping-message-bar-warning-product-not-available-title")} - .message = {COPY_PATTERN(from_path, "shopping-message-bar-warning-product-not-available-message2")} - -shopping-message-bar-thanks-for-reporting = - .heading = {COPY_PATTERN(from_path, "shopping-message-bar-thanks-for-reporting-title")} - .message = {COPY_PATTERN(from_path, "shopping-message-bar-thanks-for-reporting-message2")} - -shopping-message-bar-warning-product-not-available-reported = - .heading = {COPY_PATTERN(from_path, "shopping-message-bar-warning-product-not-available-reported-title2")} - .message = {COPY_PATTERN(from_path, "shopping-message-bar-warning-product-not-available-reported-message2")} - -shopping-message-bar-page-not-supported = - .heading = {COPY_PATTERN(from_path, "shopping-message-bar-page-not-supported-title")} - .message = {COPY_PATTERN(from_path, "shopping-message-bar-page-not-supported-message")} - -shopping-survey-thanks = - .heading = {COPY_PATTERN(from_path, "shopping-survey-thanks-message")} -""", - from_path=shopping_ftl, - ), - ) diff --git a/python/l10n/fluent_migrations/bug_1844850_mozMessageBar_unifiedExtensionsPanel.py b/python/l10n/fluent_migrations/bug_1844850_mozMessageBar_unifiedExtensionsPanel.py deleted file mode 100644 index b7a4c919eb77..000000000000 --- a/python/l10n/fluent_migrations/bug_1844850_mozMessageBar_unifiedExtensionsPanel.py +++ /dev/null @@ -1,36 +0,0 @@ -# Any copyright is dedicated to the Public Domain. -# http://creativecommons.org/publicdomain/zero/1.0/ - -import fluent.syntax.ast as FTL - -from fluent.migrate import COPY_PATTERN - - -def migrate(ctx): - """Bug 1844850 - Use moz-message-bar in the unified extensions panel, part {index}.""" - unifiedExtensions_ftl = "browser/browser/unifiedExtensions.ftl" - ctx.add_transforms( - unifiedExtensions_ftl, - unifiedExtensions_ftl, - [ - FTL.Message( - id=FTL.Identifier("unified-extensions-mb-quarantined-domain-message-3"), - attributes=[ - FTL.Attribute( - id=FTL.Identifier("heading"), - value=COPY_PATTERN( - unifiedExtensions_ftl, - "unified-extensions-mb-quarantined-domain-title", - ), - ), - FTL.Attribute( - id=FTL.Identifier("message"), - value=COPY_PATTERN( - unifiedExtensions_ftl, - "unified-extensions-mb-quarantined-domain-message-2", - ), - ), - ], - ), - ], - ) diff --git a/python/l10n/fluent_migrations/bug_1845150_search_engine_notification.py b/python/l10n/fluent_migrations/bug_1845150_search_engine_notification.py deleted file mode 100644 index a519833d9c0c..000000000000 --- a/python/l10n/fluent_migrations/bug_1845150_search_engine_notification.py +++ /dev/null @@ -1,32 +0,0 @@ -# Any copyright is dedicated to the Public Domain. -# http://creativecommons.org/publicdomain/zero/1.0/ - -import re -import fluent.syntax.ast as FTL -from fluent.migrate.transforms import TransformPattern - - -class STRIP_LABEL(TransformPattern): - # Used to remove `