I would suggest following approach
- Create different properties files for different language
- Store the various messages against the keys for alert types
- Use
java.util.Properties instance to load all of these different files and store all of them in a map with the language as a key (This is all at start up).
- At the time of sending message, I assume that you already have a user's language preference (received say while user registration ).
Now retrieve the java.util.Properties object from the map using the language key and the from that retrieve the message from the message key.
I am aware of the standard resource bundle type approaches for full fledged web application. Since a SMS driven application will not have access to the the locale of the user, I could think of this approach.
Please share any other specially standard approach if any.
EDIT : Seems I miss-read the question. What Gaurav want is to use language translation on the fly.
But what I think is the banking system which being dealt with should not send messages in plain English but some type of status codes which can later be used to send messages in appropriate languages.