Internationalization « Internationalization « Java Swing Q&A





1. How to implement multilanguage in Java/Swing applications?    stackoverflow.com

What are the different ways of implementing multilingual support in Swing applications? Are you using ResourceBundle with property file and implementing it in every frame? Does it work good for you? What ...

2. Internationalize Swing Applet Menu Items in English and Chinese - Examples?    stackoverflow.com

A Java Swing applet needs to display its MenuItems in Chinese or English, depending on how a user has set their system preferences. Has anybody seen compilable examples showing how to do ...

3. Swing I18N: When to load properties?    stackoverflow.com

I'm refactoring an existing Java desktop application to load internationalized UI text labels from a .properties file. When in the application lifecycle is the appropriate time to load the properties file ...

4. Java - How to allow internationalization to my Java swing application?    stackoverflow.com

I want to allow internationalization to my Java swing application. I use a bundle file to keep all labels inside it. As a test i tried to set a Swedish title to ...

5. I want to change the language of a SWT Application at Runtime. How to do that?    stackoverflow.com

I'm developing an application to my software engineering class and one of the requisites is that it has 2 or more languages in the interface. I already implemented that. On the ...

6. English characters don't show up when entering text with Indic input method in Swing    stackoverflow.com

I'm working on an application that accepts text in English and performs transliteration with a custom 3rd party API into an Indic language (one of several that are supported). The application ...

7. English characters don't show up when entering text with Urdu fonts in Swing    stackoverflow.com

This is similar to my own previous question, but that solution didn't work here. As mentioned in the previous question, I'm working on a cross platform(Windows/Ubuntu) application that has to transliterate ...

8. Loading custom fonts at runtime for use with JTextPane    stackoverflow.com

Thanks for your time. My question is regarding the display of different fonts within the one JTextPane. My client wishes to view a word in two different languages within the one ...

9. GUI Builder - automatic internationalization    forums.netbeans.org

Hello, On the options panel for the GUI builder there are two settings: - Automatic Internationlization - Set Component Names For each of these settings there are three values: Default, On, ...





10. i18n with netbeans gui builder - best practice    forums.netbeans.org

hi, when i use netbeans to implement i18n in a gui, is there any way to change the current language so that everything gets repainted with the new locale? and if not, whats the best practice to do so when the application gets started again that it will use the other language? eg. user changed in the config dialog of the ...

11. Swing Application JSR296:Internationalization    forums.netbeans.org

I have created a Swing Application JSR296 project (Basic) called DskApp. Netbeans creates the DskApp.java DskAppView.java and the relevant resources package dskapp.resources containing the corresponding .properties file used by the application to assign the label of each component of the form in the DskAppView.java. I need to internationalize the form of DskAppView.java and any other form class added to the application. ...

12. JOption and I18N    coderanch.com

14. i18n in Swing app    coderanch.com

Hi. I have developed a swing application, and this application supports i18n. my app is connected to MySQL4.0.4 , (to a database represents books information). I have used i18n because I want to try languages other than english to learn i18n. but the problem is when searching for a specific book and display its info, the JLabel displays ??? ?? instead ...

15. JFileChooser and i18n    coderanch.com





17. Java i18n questions?    coderanch.com

18. Swing and I18N question    coderanch.com

I'm adding I18N feature to my app. I'd like my app to be able to update the language in the GUI dynamically when user chooses a particular language. Suppose the initial language (whe the app starts)is US_EN. Now I have a language panel (from my apps options menu) that consists of several languags in the form or radio button. User chooses ...

19. Internationalization problemmm    coderanch.com

20. Internationalization: Select language from combo box    coderanch.com

Hi, I'm trying to make the user select the language of a very simple menu. I post here the 2 classes: Menus and Selector. In the Menus class, there are 2 items: File and Help When you click on File then you select Configuration, and it shows the Selector class which is only a ComboBox, where you select the Language. The ...

21. GUI internationalization on the fly ?    coderanch.com

Hi all, I was evaluating the internationalization features in NB. It works a bit like resource files that are linked fix into the jar file. For this approach is there are way to change language during runtime ? or better.. is there a small framework to read the text (labels,..) from an outside source (DB,XML file,.) ? That also makes easier ...

22. I18N DIALOG PRINT    coderanch.com

23. Dynamic Internationalization (I18N) - Creating a Multilingual Application    coderanch.com

There is nothing wrong with that tutorial. However, that tutorial demonstrates static internationalization. If you want the application to run on a different locale you would need to restart the application, or change the settings on your OS. I wanted to create a tutorial that went over dynamic internationalization, being able to change the locale "on-the-fly" while the program is running. ...

24. Swing internationalization NetBeans    coderanch.com

I've done some improvement, need to: Locale.setDefault(new Locale("en","US")) and to load the resource bundle in the code again (with appropriate path), and to set the text on all elements on GUI; Now, this work in NetBeans developer mode, but when i export Clean & Build the project to get .jar file, paths to Bundles are not recognized? Strange that default language ...

25. File chooser internationalization problem    java-forums.org

Locale hay = new Locale("hy", "HY"); Locale.setDefault(hay); UIManager.put("FileChooser.openDialogTitleText", ""); UIManager.put("FileChooser.saveDialogTitleText", ""); UIManager.put("FileChooser.lookInLabelText", ""); UIManager.put("FileChooser.saveInLabelText", ""); UIManager.put("FileChooser.upFolderToolTipText", " "); UIManager.put("FileChooser.homeFolderToolTipText", ""); UIManager.put("FileChooser.newFolderToolTipText", " "); UIManager.put("FileChooser.listViewButtonToolTipText", ""); UIManager.put("FileChooser.detailsViewButtonToolTipText", ""); UIManager.put("FileChooser.fileNameHeaderText", ""); UIManager.put("FileChooser.fileSizeHeaderText", ""); UIManager.put("FileChooser.fileTypeHeaderText", ""); UIManager.put("FileChooser.fileDateHeaderText", " "); UIManager.put("FileChooser.fileAttrHeaderText", ""); UIManager.put("FileChooser.fileNameLabelText", " "); UIManager.put("FileChooser.filesOfTypeLabelText", " "); UIManager.put("FileChooser.openButtonText", ""); UIManager.put("FileChooser.openButtonToolTipText", " "); UIManager.put("FileChooser.saveButtonText", ""); UIManager.put("FileChooser.saveButtonToolTipText", " "); UIManager.put("FileChooser.directoryOpenButtonText", ""); UIManager.put("FileChooser.directoryOpenButtonToolTipText", ...

26. Internationalization: Select language from combo box    java-forums.org

Hi, I'm trying to make the user select the language of a very simple menu. I post here the 2 classes: Menus and Selector. In the Menus class, there are 2 items: File and Help When you click on File then you select Configuration, and it shows the Selector class which is only a ComboBox, where you select the Language. The ...

27. i18n and Swing components    forums.oracle.com

/** * This method asks a question, similar to the other ask method but takes a string of array containing 2 values. * @param parent Parent window * @param title Title of the message * @param question The question that is needed to be asked * @param yesNo An array containing "Yes" for index 0 and "No" for index 1. * ...