Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 497 Bytes

xliff.md

File metadata and controls

23 lines (17 loc) · 497 Bytes

XLIFF Support

If you are working with some translating agencies, then you know their things are all in XLIFF.

Fortunately DbLocalizationProvider supports this format as well for both export and import.

All you need to do is install the package.

dotnet add package LocalizationProvider.Xliff

And add this to configuration setup code:

services
    .AddDbLocalizationProviderAdminUI(ctx =>
    {
        ...
    })
    .AddCsvSupport()
    .AddXliffSupport();