Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
161 views

Check ASPX files to make sure that Resource Key referenced exsists in RESX

I have a rather large website that had its strings externalized. I wanted to know if there was a way to check to make sure that a resource object in the ASPX exists in the resource file that is being ...
2
votes
3answers
112 views

Website localization for multibyte languages

I have started to code a multi-language feature for a medium-sized website with a lot of hardcoded text. As the website is supposed to be translated into Japanese and Korean (multibyte character set) ...
1
vote
1answer
283 views

Best Way to externalize system properties on a multi-envioronment application

We are working with a Spirng 3 application that runs on several environments (test, UAT and Production) these environments are managed by a third party company so we have almost no access to the ...
0
votes
1answer
688 views

Configuring string externalization in Eclipse to use ${key} as field name

Suppose I have a simple code like this: public class ExternalizeStringDemo { public static void main(String[] args) { System.out.println("Hello world"); } } Now, I want to ...