The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
42 views

WPF Localisation - using resx

I have a small WPF application which I'm not exactly localizing, but not hard-coding resources either. I know WPF doesn't use .resx files for that purpose, but I exposed the resource strings as public ...
1
vote
0answers
228 views

Mingw, wcout and locales

I've recently had to print some national symbols in windows console using Mingw and found, that I got nothing in the output, if I use wide strings. So, I studied the problem and found out that it is ...
1
vote
0answers
2k views

Localizing templates using require.js, backbone and underscore

This question is about templating and localizing, using require.js and underscore templates through backbone.js. The application will need to be localised on the fly. Before embarking down a path ...
3
votes
2answers
711 views

Java: Best way to work with Locales in Swing (with change at Runntime)?

(Already posted here: http://stackoverflow.com/q/11298080/1469540) I thought about the best way to implement localisation with runtime in Swing. Currently I solve the problem like that: JMenu ...
5
votes
2answers
303 views

Extension methods for translation engine

Our application uses some singletons for localized strings. These calls used to be long and dirty. Therefore some co-worker created extensions for the int and string type to ease the usage of ...