naps2/NAPS2.Tools.Localization/Templates.cs
Ben Olden-Cooligan b62100fb07 Remove unused usings
No longer keeping System, System.Collections.Generic, System.Linq
2019-07-14 11:26:56 -04:00

15 lines
442 B
C#

using System.IO;
namespace NAPS2.Localization
{
public class Templates
{
public static void Update()
{
var ctx = new TemplatesContext();
ctx.Load(Path.Combine(Paths.Root, @"NAPS2.Core\Lang\Resources"), false);
ctx.Load(Path.Combine(Paths.Root, @"NAPS2.Core\WinForms"), true);
ctx.Save(Path.Combine(Paths.Root, @"NAPS2.Core\Lang\po\templates.pot"));
}
}
}