gitextract_1rgzmmn8/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Localizer/ │ ├── Attributes/ │ │ ├── ModTranslationOwnerFieldAttribute.cs │ │ ├── ModTranslationPropAttribute.cs │ │ └── OperationTimingAttribute.cs │ ├── Configuration.cs │ ├── DataModel/ │ │ ├── Default/ │ │ │ ├── AttributeFile.cs │ │ │ ├── BaseEntry.cs │ │ │ ├── BasicBuffFile.cs │ │ │ ├── BasicItemFile.cs │ │ │ ├── BasicNPCFile.cs │ │ │ ├── BasicPrefixFile.cs │ │ │ ├── BasicProjectileFile.cs │ │ │ ├── CustomModTranslationFile.cs │ │ │ ├── ExportConfig.cs │ │ │ ├── File.cs │ │ │ ├── GitHubUpdateInfo.cs │ │ │ ├── LdstrFile.cs │ │ │ ├── LoadedModWrapper.cs │ │ │ ├── ModWrapper.cs │ │ │ ├── Package.cs │ │ │ ├── PackageGroup.cs │ │ │ └── PackageGroupState.cs │ │ ├── IEntry.cs │ │ ├── IExportConfig.cs │ │ ├── IFile.cs │ │ ├── IMod.cs │ │ ├── IPackage.cs │ │ ├── IPackageGroup.cs │ │ └── IUpdateInfo.cs │ ├── Disposable.cs │ ├── Enums/ │ │ ├── AutoImportType.cs │ │ ├── LogLevel.cs │ │ ├── OperationTiming.cs │ │ └── PackageType.cs │ ├── Helpers/ │ │ ├── Extensions.cs │ │ ├── Reflection.cs │ │ ├── UI.cs │ │ └── Utils.cs │ ├── Hooks.cs │ ├── Lang/ │ │ └── Lang.cs │ ├── Localizer.cs │ ├── Localizer.csproj │ ├── Localizer.csproj.DotSettings │ ├── LocalizerKernel.cs │ ├── LocalizerPlugin.cs │ ├── ModBrowser/ │ │ └── Patches.cs │ ├── Modules/ │ │ ├── DefaultNetworkModule.cs │ │ └── DefaultPackageModule.cs │ ├── Network/ │ │ ├── DownloadManager.cs │ │ ├── GitHubModUpdate.cs │ │ ├── IDownloadManagerService.cs │ │ ├── IPackageBrowserService.cs │ │ ├── IUpdateService.cs │ │ └── PackageBrowser.cs │ ├── Package/ │ │ ├── Export/ │ │ │ ├── BasicFileExport.cs │ │ │ ├── CustomModTranslationFileExport.cs │ │ │ ├── IFileExportService.cs │ │ │ ├── IPackageExportService.cs │ │ │ ├── LdstrFileExport.cs │ │ │ └── PackageExport.cs │ │ ├── IPackageManageService.cs │ │ ├── Import/ │ │ │ ├── AutoImportService.cs │ │ │ ├── BasicImporter.cs │ │ │ ├── CecilLdstrImporter.cs │ │ │ ├── CustomModTranslationImporter.cs │ │ │ ├── FileImporter.cs │ │ │ ├── HarmonyLdstrImporter.cs │ │ │ ├── IPackageImportService.cs │ │ │ ├── LdstrImporterBase.cs │ │ │ ├── MonoModLdstrImporter.cs │ │ │ ├── PackageImportService.cs │ │ │ └── RefreshLanguageService.cs │ │ ├── Load/ │ │ │ ├── IFileLoadService.cs │ │ │ ├── IPackageLoadService.cs │ │ │ ├── JsonFileLoad.cs │ │ │ ├── PackedPackageLoad.cs │ │ │ └── SourcePackageLoad.cs │ │ ├── Pack/ │ │ │ ├── IPackagePackService.cs │ │ │ └── ZipPackagePackService.cs │ │ ├── PackageManageService.cs │ │ ├── Save/ │ │ │ ├── IFileSaveService.cs │ │ │ ├── IPackageSaveService.cs │ │ │ ├── JsonFileSaveService.cs │ │ │ └── PackageSaveService.cs │ │ └── Update/ │ │ ├── BasicFileUpdater.cs │ │ ├── CustomModTranslationUpdater.cs │ │ ├── FileUpdater.cs │ │ ├── IPackageUpdateService.cs │ │ ├── IUpdateLogger.cs │ │ ├── LdstrFileUpdater.cs │ │ ├── PackageUpdateService.cs │ │ └── PlainUpdateLogger.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── UIs/ │ │ ├── Components/ │ │ │ ├── BasicListBox.cs │ │ │ ├── BasicWindow.cs │ │ │ ├── LabelListBoxItem.cs │ │ │ └── TitleBar.cs │ │ ├── MainWindow.cs │ │ ├── Stylesheet.cs │ │ ├── UIDesktop.cs │ │ ├── UIHost.cs │ │ ├── UIModsPatch.cs │ │ ├── UIRenderer.cs │ │ └── Views/ │ │ ├── ManagerView.cs │ │ ├── ReloadPluginView.cs │ │ └── TestView.cs │ ├── build.txt │ └── description.txt ├── Localizer.sln ├── Localizer.sln.DotSettings ├── LocalizerTest/ │ ├── DataModel/ │ │ └── GitHubUpdateInfoTest.cs │ ├── Helper/ │ │ ├── ExtensionsTest.cs │ │ └── UtilsTest.cs │ ├── LocalizerTest.cs │ ├── LocalizerTest.csproj │ ├── Network/ │ │ └── GitHubModUpdateService.cs │ ├── Ninject.cs │ ├── NonTest/ │ │ └── UpdateLogger.cs │ └── Package/ │ ├── Import/ │ │ ├── BasicFileImportTest.cs │ │ ├── CustomModTranslationFileImportTest.cs │ │ └── LdstrFileImportBaseTest.cs │ └── Update/ │ ├── BasicFileUpdateTest.cs │ ├── CustomModTranslationFileUpdateTest.cs │ └── LdstrFileUpdateTest.cs ├── ModPatch/ │ ├── ModPatch.csproj │ └── Program.cs └── README.md