I need to find a quick way to globalize all the strings of a web system. Is there a library/package or good practice for me to make this change?
Asked
Active
Viewed 33 times
0
-
Asking for libraries/packages is specifically off-topic on Stack Overflow, and asking for "good practices" for such a broad question is, well, too broad. I suggest doing some searching on the internet. "asp.net mvc localization" may be a helpful search term. – Heretic Monkey Apr 18 '19 at 16:30
-
2https://stackoverflow.com/questions/373388/best-way-to-implement-multi-language-globalization-in-large-net-project – Marcelo Vismari Apr 18 '19 at 16:37
-
[This one](https://github.com/turquoiseowl/i18n) works well. But a great deal depends on the type of text you're working with and where it's stored. Applications that weren't built with globalization in mind are harder to fix later because they may store strings at varying levels of abstraction (some are in code, some are in views, some come from a database) or they create strings using concatenation which creates problems in languages where phrases are ordered differently. – Scott Hannen Apr 18 '19 at 18:34