🌐 Language:
🇷🇺 Russian
|
✅ 🇺🇸 English (current)
Tip
Generate multilingual resource files for existing WinForms, WPF, and desktop applications without manually editing translations.
- Translate existing
.resxfiles into multiple languages - Supports folder-based batch translation
- Supports single file translation
- Works with self-hosted LibreTranslate servers
- Supports remote LibreTranslate endpoints
- JSON configuration based workflow
- Event-based logging
- Extensible translator architecture
- Suitable for CI/CD automation
- Localizing legacy WinForms applications
- Translating WPF resource files
- Creating multilingual desktop apps
- Migrating old single-language projects
- Internal company software localization
- Offline translation pipelines
dotnet add package LibreResxTranslateusing LibreResxTranslate.Components;
using LibreResxTranslate.Services.Settings;
using LibreResxTranslate.Services.Translater;
ISettingsService settings = new SettingsService();
settings.ActionLog += Console.WriteLine;
settings.LoadSettings();
if (!settings.IsValid)
{
Console.WriteLine("Invalid configuration.");
return;
}
var translator = new WinformsLocalizedTranslater(
TypeTranslateEnum.Libre,
settings);
translator.ActionLog += Console.WriteLine;
await translator.Translate();{
"IsURL": false,
"Url": "",
"IP": "127.0.0.1",
"PORT": "5000",
"Protocol": "http",
"Entries": [
{
"Flag": "Folder",
"Type": "WinFormsLocalized",
"In": "C:\\Project\\Resources",
"Out": "C:\\Project\\Output",
"CultureIn": "en",
"CultureOut": ["ru", "de", "fr"]
}
]
}Translate all .resx files from a directory.
Translate a specific .resx file.
- Local server
- Remote endpoint
- Self-hosted environments
- Private infrastructure ready
Important
Manual .resx localization is slow and repetitive.
This package automates the process while allowing you to keep translation infrastructure under your control.
Perfect for companies that need private or offline localization workflows.
- CLI tool
- GUI manager
MIT