Add a Touchdown localization pipeline (#15054)

This commit introduces a localization pipeline that submits our
localizable content to Touchdown, the modern localization service we
should have been using the whole time.

The pipeline is scheduled to run after the end of the workday around 6-7
PM Pacific (depending on daylight saving time) if there have been any
code changes on main.

Some of our localizable files were out of spec, so I moved them into the
right places and the right format.
This commit is contained in:
Dustin L. Howett
2021-12-17 17:35:05 -06:00
committed by GitHub
parent f4b0e6372a
commit 239610f1cd
29 changed files with 97 additions and 33 deletions

View File

@@ -64,7 +64,7 @@ namespace Microsoft.PowerToys.PreviewHandler.Gcode
if (thumbnail == null)
{
_infoBarAdded = true;
AddTextBoxControl(Resource.GcodeWithoutEmbeddedThumbnails);
AddTextBoxControl(Properties.Resource.GcodeWithoutEmbeddedThumbnails);
}
else
{
@@ -212,7 +212,7 @@ namespace Microsoft.PowerToys.PreviewHandler.Gcode
PowerToysTelemetry.Log.WriteEvent(new GcodeFilePreviewError { Message = exception.Message });
Controls.Clear();
_infoBarAdded = true;
AddTextBoxControl(Resource.GcodeNotPreviewedError);
AddTextBoxControl(Properties.Resource.GcodeNotPreviewedError);
base.DoPreview(dataSource);
}
}