As a complement to the other answers that I supported, I would like to add that string resources are for human readable text, not constants that will be used programmatically. They are great for error messages, button shortcuts, etc.
Very often, instead of the final string, we save the format string so that variables can be replaced at the last moment. The best part about this method is that, unlike concatenation, it does not interrupt when a language has different requirements for word order.
Steven Sudit Jul 15 '09 at 21:05 2009-07-15 21:05
source share