gitextract_28vbkjls/ ├── .gitattributes ├── .gitignore ├── COPYING ├── COPYING.LESSER ├── LECommonLibrary/ │ ├── AssociationReader.cs │ ├── GlobalHelper.cs │ ├── LECommonLibrary.csproj │ ├── LEConfig.cs │ ├── LEProfile.cs │ ├── PEFileReader.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── SystemHelper.cs │ └── key.snk ├── LEContextMenuHandler/ │ ├── FileContextMenuExt.cs │ ├── I18n.cs │ ├── LEContextMenuHandler.csproj │ ├── LEMenuItem.cs │ ├── Lang/ │ │ ├── DefaultLanguage.xml │ │ ├── ca.xml │ │ ├── cs.xml │ │ ├── de.xml │ │ ├── es.xml │ │ ├── fr.xml │ │ ├── ind.xml │ │ ├── it.xml │ │ ├── ja.xml │ │ ├── ka.xml │ │ ├── ko.xml │ │ ├── lt.xml │ │ ├── nb.xml │ │ ├── nl.xml │ │ ├── pl.xml │ │ ├── pt-BR.xml │ │ ├── ru.xml │ │ ├── th.xml │ │ ├── tr-TR.xml │ │ ├── zh-CN.xml │ │ ├── zh-HK.xml │ │ └── zh-TW.xml │ ├── NativeMethods.cs │ ├── ProjectInstaller.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Resource.Designer.cs │ ├── Resource.resx │ ├── ShellExtLib.cs │ ├── WinError.cs │ └── key.snk ├── LEGUI/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppConfig.xaml │ ├── AppConfig.xaml.cs │ ├── GlobalConfig.xaml │ ├── GlobalConfig.xaml.cs │ ├── I18n.cs │ ├── InputBox.xaml │ ├── InputBox.xaml.cs │ ├── LEGUI.csproj │ ├── Lang/ │ │ ├── DefaultLanguage.xaml │ │ ├── ca.xaml │ │ ├── cs.xaml │ │ ├── de.xaml │ │ ├── es.xaml │ │ ├── fr.xaml │ │ ├── ind.xaml │ │ ├── it.xaml │ │ ├── ja.xaml │ │ ├── ka.xaml │ │ ├── ko.xaml │ │ ├── lt.xaml │ │ ├── nb.xaml │ │ ├── nl.xaml │ │ ├── pl.xaml │ │ ├── pt-BR.xaml │ │ ├── ru.xaml │ │ ├── th.xaml │ │ ├── tr-TR.xaml │ │ ├── zh-CN.xaml │ │ ├── zh-HK.xaml │ │ └── zh-TW.xaml │ ├── MaskedTextBox.xaml │ ├── MaskedTextBox.xaml.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ShellLink.cs │ └── key.snk ├── LEInstaller/ │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── LEInstaller.csproj │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources/ │ │ └── .gitignore │ ├── ShellExtensionManager.cs │ ├── app.manifest │ └── key.snk ├── LEProc/ │ ├── Amemiya.Extensions.ArrayExtensions.cs │ ├── LEProc.csproj │ ├── LERegistryRedirector.cs │ ├── LEVersion.xml │ ├── LoaderWrapper.cs │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RegistryEntriesLoader.cs │ ├── RegistryEntry.cs │ ├── app.manifest │ └── key.snk ├── LEUpdater/ │ ├── Amemiya.Net.WebClientEx.cs │ ├── ApplicationUpdater.cs │ ├── LEUpdater.csproj │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ └── key.snk ├── LocaleEmulator.sln ├── README.md └── Scripts/ └── sign-package.ps1