Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
666 views

How do I avoid repetition in Java ResourceBundle strings?

We had a lot of strings which contained the same sub-string, from sentences about checking the log or how to contact support, to branding-like strings containing the company or product name. The ...
9
votes
5answers
8k views

How do I specify values in a properties file so they can be retrieved using ResourceBundle#getStringArray?

I am trying to use ResourceBundle#getStringArray to retrieve a String[] from a properties file. The description of this method in the documentation reads: Gets a string array for the given key ...
7
votes
2answers
3k views

In Java, how to reload dynamically resources bundles in a web application?

We are using fmt:setBundle to load a resource bundle from a database (we extended the ResourceBundle class to do that). When we modify a value in database, we have to reload the web server to display ...
6
votes
5answers
892 views

Java: How to write “Arabic” in properties file?

I want to write "Arabic" in the message resource bundle (properties) file but when I try to save it I get this error: "Save couldn't be completed Some characters cannot be mapped using "ISO-85591-1" ...
5
votes
4answers
107 views

Bundling .js files vs CDN

In order to improve performance of our web pages, we are recommended to use CDNs to server .js files on our web pages. That makes sense. Also, we are recommended to bundle our .js files in order to ...
4
votes
1answer
380 views

Tool for checking Java resource bundles (i18n)

I'm searching for a tool, ant-task, IDE plugin, ... which helps with I18N of a Java application using the standard message-properties resource bundles. Both open source and commercial solutions are ...
4
votes
2answers
539 views

List all avilable ResourceBundle Files

i am using ResourceBundle and i want to give the user an option to select a language for the GUI. i want to get a list of all resource files that are under a specific package. i don't know what ...
4
votes
6answers
3k views

Do resource bundles in Java support runtime string substitution?

Can you do the following with a Java ResourceBundle? In the properties file... example.dynamicresource=You currently have {0} accounts. At runtime... int accountAcount = 3; ...
4
votes
3answers
499 views

Is there a tool for non-developers (translators!) to edit resource bundles?

What we do in our company to let our software be translated by external translators is ... well .. how to put it... cvs co someModule ant translation.export (behind this target there is a self-made ...
4
votes
2answers
969 views

How can I check if a resource bundle key does not exist using JSTL tags?

I have a resource file that will have some optional keys. If the optional resource key is not present, I set a default instead. It appears that there is no easy way to determine if a key exists in the ...
4
votes
4answers
2k views

Locales and ResourceBundles in a plugin-based program

We need to start adding internationalisation to our program. Thankfully not the whole thing yet, just a few bits, but I want the way we do it to scale up to potentially cover the whole program. The ...
3
votes
2answers
2k views

Getting localized message from resourceBundle via annotations in Spring Framework

Is it possible to do this ? Currently it is done like this : <bean id="resource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basenames"> ...
3
votes
2answers
273 views

resource bundle java

Is it possible to maintain the resource bundle in a folder structure something similar to the following; 1. us\en 2. ae\en 3. ae\ar The resource bundle file name will be the same but maintained ...
3
votes
2answers
445 views

typical java i18n process - sending resource files to Translation companies to be translated

There are loads of tutorials on using Java ResourceBundles to provide UI in multiple languages. However, there is a process question as regards typical interaction with translation companies that I ...
3
votes
4answers
3k views

How do I use ResourceBundle to avoid hardcoded config paths in Java apps?

I'd like to eliminate dependencies on hardcoded paths for configuration data in my Java apps, I understand that using ResourceBundle will help me use the classloader to find resources. Can someone ...
3
votes
2answers
4k views

ResourceBundle from Java/Struts and replace expressions

If I have a Resource bundle property file: A.properties: thekey={0} This is a test And then I have java code that loads the resource bundle: ResourceBundle labels = ...
2
votes
1answer
45 views

How do I read the bundle in context from within a JSP custom tag?

I have a JSP 2.0 file containing calls to a custom tag that needs to know what bundle is currently in use on the page, so it can look up some resources. The custom tag is written in Java. The bundle ...
2
votes
1answer
34 views

JSF ResourceBUndle change using image?

I've stumbled upon this tutorial and decided to try it out :-). In the tutorial, they use a List with a valuechangelistener to change the language when something else was chosen. I'm wondering how ...
2
votes
1answer
182 views

EL variable in JSF ResourceBundle

i read somewhere (don't find it anymore) that i can use EL Expresions in the resource bundle and then use it without changes in *.xhtml files. some.text=#{someBean.stepsLeft} more to switch the ...
2
votes
1answer
141 views

jsf how to remove the surrounding ??? if message not found in messagebundle

In JSF2.0, if a message is not found in the messagebundle, then by default, the key is surrounded with ???. This is a very usable hint during development. But in my particular case I really would like ...
2
votes
1answer
365 views

Private/scoped variable in JSF2/Facelets <ui:component>?

I might not be thinking correctly in terms of visual components in JSF, but I guess that's part of my question. My question is around the seeming lack of scope around variables declared within JSF ...
2
votes
2answers
72 views

How to group resources in a resource bundle?

What is the best approach for grouping resources in a resource bundle file? The one I see most common is to group resources by web page, an example would be: # -- company page ...
2
votes
5answers
371 views

Architecture setup for constantly changing text, property files? In a J2EE environment

In a J2EE environment, we are normally used to storing text in a property/resource file. And that property file is associated with some view HTML markup file. E.g. if your label 'First Name' changes ...
2
votes
1answer
1k views

Bean Validation's resourcebundle parameterization possibility in JSF 2?

Using the resourcebundle with BV in JSF 2 would look something like this : public class UserBean { @Size(min=13, message="{creditcard.length}") public String getCreditCard() { return ...
2
votes
1answer
157 views

Load a ResourceBundle over HTTP?

I have a requirement to load text labels from our CMS. The content is exposed in standard properties file format. The CMS operates as a sort of RESTful web service provider as opposed to pushing ...
2
votes
2answers
239 views

ResourceBundle - MissingResourceException - restarting the server solves the problem

A web application throws MissingResourceException when JSP access a property in the ResourceBundle. When the application starts, it is able to access the resource bundles and read the values from ...
2
votes
3answers
573 views

Variable lookup parameter for resourceBundle?

I'm currently using the resourceBundle variable to get text values in my JSF code e.g. like this: <h:outputText value="#{resourceBundle.welcomeMessage}" /> Is there any way, to put the ...
2
votes
3answers
633 views

JSF ResourceBundle key concatenation

i have a resource bundle with entries like these: entry1=value1 entry2=value2 entry3=value3 on my jsf page i am trying to use these keys dynamically, the id of the entry is coming from a managed ...
2
votes
2answers
378 views

How to escape curly braces in my properties file which is fetched using the ResourceBundle API

In properties file I am having a key=A: {{0}, {1}}, B: {{2}, {3}}. I am expecting a string "A: {0, 1}, B: {1, 2}". The numbers inside the curly braces are parsing. How can I include the character '{' ...
2
votes
3answers
468 views

Is it possible to include resource bundle files within a resource bundle

We are using java.util.ResourceBundle to load property information. Our property file has grown so huge and we are thinking of splitting the master property file into several sub modules. Is it ...
2
votes
1answer
100 views

Integer gets formatted with commas when it gets fetched from a ResourceBundle

year.of.birth={0} was born on {1} If I pass 2000 or 2008 to {1} the value gets parsed as 2,000 or 2,008. I don't want the commas as part of my translated string. How should I avoid this?
2
votes
2answers
1k views

JSF 1.2 Application.getMessageBundle() returns null

I'm using Spring 2.5 with JSF 1.2, on Tomcat 6.0.13. In one part of code, I'm trying to load ResourceBundle by using following approach: ...
2
votes
1answer
129 views

How is character star handled in a resource bundle

If we use "*" as part of the resource bundle, the character gets removed during the message formatting process (java.util.ResourceBundle). How are we supposed to escape this character?
2
votes
1answer
442 views

How to create a bundle

how do I create a bundle with resources like images and xibs to share it between apps? I saw that there's a way to do it when creating a new project, but there must be a way to do it based on a ...
2
votes
2answers
873 views

String Constants Vs Resource Bundle in an Java web Application

From past Year are so, we have developed an application, in which we have used the static String Constants to store the Constants. Like public static final String PAYMENT_CHEQUE = "cheque"; Where ...
2
votes
2answers
1k views

Test for null parameter in .properties file for MessageFormat

Is it possible, with resource bundles and MessageFormat to have the following result? when I call getBundle("message.07", "test") to get "Group test" when I call getBundle("message.07", null) to ...
2
votes
2answers
590 views

Java i18n: use one ResourceBundle accessor per package, or one for whole project?

I don't know anything about internationalization. I have a project with several packages. I am using Eclipse's built-in "Externalize Strings" wizard to extract String constants in my classes to a ...
2
votes
1answer
673 views

Java ResourceBundle Performance

I am using a ResourceBundle and Locale to lookup property values. Quite simply, the code looks like this: public static String getPropertyValue(Locale locale, String resourceName, String key) { ...
2
votes
1answer
3k views

JSF Validation not finding custom ResourceBundle class

I have a custom ResourceBundle class org.example.web.UILabels.java which works well in running code but the JSF editor in Eclipse is not finding it, I assume the editor/validator is only looking for ...
1
vote
1answer
26 views

Grails: Reading the Resource Bundle

I tried to get list of message/translations from resource bundle but it fails (throws exception). The app is running on Tomcat from IDEA: Locale locale = new Locale("en"); ResourceBundle bundle = ...
1
vote
0answers
22 views

Dynamically load files on classpath using ReloadableResourceBundleMessageSource

I'm new to Spring and am attempting to use it's ReloadableResourceBundleMessageSource class. I'm attempting to use it so that we no longer have to restart our web app for properties files ...
1
vote
1answer
34 views

Change the language of application using ResourceBundle

I'm building a internationalized application based of Java using Netbeans IDE, I´m trying to change the language of my frames using a combobox located in a singular frame, but I cant make the code for ...
1
vote
2answers
34 views

How can I determine all available ResourceBundles at runtime?

My Java app has been localised into several locales. For each locale there is a properties file with the translations. I load it as follows: ResourceBundle bundle = ...
1
vote
1answer
73 views

JSF with External Resource Bundle

I'm doing a JSF 2.0 application on Tomcat 6.x. I have a resource bundle in different languages, is it possible to externalize the properties files outside the webapp? For the moment I have this in my ...
1
vote
1answer
79 views

Group separator in jsf validation messages

I have the following validator for the year of birth: <f:validateLongRange minimum="1920" maximum="1992" /> The validation message is some kind of: "The year of birth must be between ...
1
vote
1answer
66 views

Abour ResourceBundle in AS3

I creadet a class that has more ResourceBundles in it. My app is multilanguage so I will need many ".properties" files. here is a sample code [ResourceBundle("LocalizedStrings_en_US")] ...
1
vote
2answers
66 views

How to overwrite a resource bundle property

Is it possible to overwrite a String property from a resource bundle that is located in a jar ? I've been given a bunch of jars to develop an multi language application but the jars only include a ...
1
vote
2answers
189 views

ResourceBundle Editors

I have decided to use ResourceBundles to provide translations for my php application. While the ResourceBundle (http://www.php.net/manual/en/class.resourcebundle.php) functionality is quite new, I ...
1
vote
1answer
65 views

Java: Subclassing ResourceBundle

Say I have some instance of ResourceBundle: ResourceBundle bundle = getBundle(); ... some more code that does stuff with bundle ... I want to know if bundle has a particular key. ...
1
vote
2answers
131 views

Java loading resources Class.class.getResource vs <classname>.class.getResource

What is the difference between the two ? It dosent make much sense. As I would think they are the same ( at-least the same hierarchy). my resource files are packaged in the top level with no ...

1 2 3 4