dotnet / ResXResourceManager

Manage localization of all ResX-Based resources in one central place.
MIT License
1.29k stars 211 forks source link

Option to ignore missing translation warning for the neutral language #641

Open seppo498573908457 opened 2 months ago

seppo498573908457 commented 2 months ago

I use a pattern where the key of the neutral language is the actual output for the default language. When used with ResourceManager, I can return the key as-is for the neutral language and for a fallback for missing translations. This means that most of the translations are not present in the neutral language files. That produces unnecessary warnings from this tool.

Describe the solution you'd like Option to ignore missing translation warning for the neutral language.

Describe alternatives you've considered I could disable all warnings, but that works against the purpose of this tool.