One answerer suggested XML, but that would be very heavyweight for shipping to to the client.
Consider doing something similar to the mini-fication process of javascript. Take your strings that you are using on the server/C# side and process your javascript files using something like perl/python/ruby, replacing the ids of the strings with the strings themselves.
So, if your javascript says:
alert($MY_TEXT$)
it gets changed to
alert("The string associated with $MY_TEXT$")
The perl/python/ruby process takes place in your "build" of the javascript files, before deployment to your production servers.