-
-
Notifications
You must be signed in to change notification settings - Fork 114
Open
Labels
Description
Description
Solution 1:
- Load the translation system first, even before the logger launches. Don't know if it is technically possible or not
Solution 2:
- Introduce resx and
Resource.Embedderto translated these PreStartup string literals (less than 10 strings perhaps) in a similar way as in Introduce translation support and add Chinese (Simplified) translation xna-cncnet-client-launcher#25 - Provide a different
HandleExceptionmethod to use resx string, and optionally invoke one of the two methods depending on whether the translation is loaded - Delay the
CultureInfo.CurrentUICulture = new CultureInfo(ProgramConstants.HARDCODED_LOCALE_CODE);as a fallback when the translation failed to load
DeathFishAtEase