▲ | _ZeD_ 2 hours ago | |
what do you propose to handle translation messages? how do you think they should map the compiler codes to human messages? | ||
▲ | colejohnson66 2 hours ago | parent | next [-] | |
.NET ResX localization generates a source file. So localized messages are just `Resources.TheKey` - a named property like anything else in the language. It also catches key renaming bugs because the code will fail to compile if you remove/rename a key without updating users. | ||
▲ | zahlman 22 minutes ago | parent | prev [-] | |
... Just about anything else? The baseline expectation in other data formats is that keys are case-sensitive. (Also, that there are keys, specifically designed for lookup of the needed data, rather than tag names.) |