What I have is properties file as below.
welcome.properties
admin = Admin
welcomeAdmin = Welcome Admin
editAdmin = Edit Admin
as I have repeated Admin word, I want to use something like below.
admin = Admin
welcomeAdmin = Welcome #{admin}
editAdmin = Edit #{admin}
so that if I change at one place i.e. at admin = Admin
, all places it will reflect.
Any idea/ suggestion how to get this done would be appreciated.