Revision 47e011ac7549217b1a8923d082e5f3d39f81cb9c authored by Erik Nordin on 24 May 2024, 18:00:41 UTC, committed by Erik Nordin on 24 May 2024, 18:00:41 UTC

Moves the Fluent strings for Select Translations out of
locales preview and into the en-US locale to mark them
to be translated by localizers for release.

Differential Revision: https://phabricator.services.mozilla.com/D210533
1 parent a19ee95
Raw File
mach.cmd
@ECHO OFF
SET topsrcdir=%~dp0

WHERE /q py
IF %ERRORLEVEL% EQU 0 (
  py %topsrcdir%mach %*
) ELSE (
  python %topsrcdir%mach %*
)
back to top