Resource bundles contain locale-specific objects. When your program needs a locale-specific resource, a String for example, your program can load it from the resource bundle that is appropriate for the current user's locale. In this way, you can write program code that is largely independent of the ...

learn more… | top users | synonyms

0
votes
1answer
23 views

Configuring Eclipse for ResourceBundle

I have a java program which uses ResourceBundle that runs fine when I run it from the command line. My properties files are all in a dedicated directory and this directory is in my PC's classpath. ...
0
votes
2answers
41 views

Java resource bundle formatting with out commas

I have a webservice implementation which validates the request and writes an error message in the response. The response is not in the desired format. The error message template is in a resource ...
2
votes
1answer
28 views

Script to modify files inside WAR

I need to update the resource files inside a WAR for different environments (eg Database info) So i need to write a script which will update these files inside the WAR. Please let me know if the ...
0
votes
1answer
41 views

Why do the files in the Copy Bundle Resources appear in red?

The files in the Copy Bundle Resources appear as instead of Sometimes, I hence have the error : -[NSWindowController loadWindow]: failed to load window nib file 'Document' but I managed ...
0
votes
0answers
17 views

JSF composite component Resource bundle

Is there a way to incorporate locale specific keys into a composite component(CC)? For ex, in my resources/util dir, I have my CC ic.xhtml, ic.properties, ic_de.properties In ic.properties, I have, ...
0
votes
3answers
53 views

ScriptBundle(“~/Scripts/vendor”)

I wrote a new app, which will use an existing theme, which is going to be changed by designer. So I decided, instead of putting scripts in Scripts and everything else in Content (Css, images), to ...
0
votes
1answer
53 views

What is a good way of introducing Resource bundle (to support different languages) on an existing system?

We have a legacy application system which has been built 15 years ago and we still use it. Our system only supports English. However, right now we are working on a new project which should use some ...
0
votes
2answers
79 views

Access Resource Bundle from properties file in JSF osgi bundle webapp

I am getting an HTTP 500 error from server when i try to read the properties file in a JSF page. Reading Bundle from class file is working though. Below is the structure of my Sample webapp which is ...
0
votes
0answers
24 views

How to serialize the Resource Bundle

My application was never designed to support Session Replication. Now with user requirements I am implementing Session replication in my Application. I made all my VO and session objects to ...
0
votes
1answer
38 views

Is there a way to inject an EJB into a custom Resource Bundle

I'm trying to build a resource bundle that get its messages from a database, rather than a properties file. I did some tests extending ResourceBundle, ResourceBundle.Control and ListResourceBundle, ...
2
votes
1answer
113 views

Xcode Copy Bundle Resources can't find files

Xcode can't find my Storyboards and my Info.plist in my Copy Bundle Resources, So my App doesn't run. I tried to add the Existing files again but they always appear red highlighted. I'm pretty sure it ...
0
votes
2answers
57 views

Delete file from bundle after install

I realize that you can't delete an item from the iOS bundle since it's signed, but is there a way to include a file and have it not be part of the "signed" bundle, but still present on install? Use ...
0
votes
1answer
86 views

How to get ResourceBundle files out of classpath?

I am using a ResourceBundle for different languages (en, de, fr, ...) and the Keys are listed in a .properties file. It works great, but only using the classpath in the function getBundle(). Now, if ...
0
votes
0answers
73 views

Fetch value by name from propertiesfile within javascript funcion

I have a properties file named Bundle.properties from there I want to fetch a value using corresponding name from JavaScript function.I don't know how it can be done. If anyone know please let me ...
0
votes
1answer
122 views

javax.el.PropertyNotWritableException: /index.xhtml @29,118 value=“”: Illegal Syntax for Set Operation

I want to create a login screen with localization option to translate the name and when i change from the default English to Arabic it crash here is the faces.config.xml <?xml version="1.0" ...
0
votes
1answer
65 views

There is a way to reload a specific ResourceBundle? [closed]

I have a custom database-backed ResourceBundle that needs to be reloaded sometimes. I do not want to use ResourceBundle.clearCache() because it reloads all the bundles. It is possible to reload just ...
1
vote
1answer
183 views

NSInternalInconsistencyException - Could not load NIB in bundle:

I am trying to bundle all my .xib resources into a "ViewController.bundle" to ship along with "MyLibrary.framework". If I just place all the .xib files in the framework project, everything is working ...
0
votes
1answer
78 views

ResourceBundle can't be found in jar

I have a problem when I export my project to a jar. The ResourceBundles work fine when I run the project in Eclipse, but not from the jar. I exported it as Export -> jar file. I start the jar in ...
0
votes
0answers
10 views

How Can i use # and ' in a Resources Bundle in java?

Hi I am trying to print "The file\'s Length in Seconds and total # of files" in a jsp page. The string is written in a resource bundle , I am getting javax.faces.el.ReferenceSyntaxException: ...
0
votes
0answers
25 views

calling a properties using resource Bundle

I have a properties file located at /WorkEnvironment/AppHome/App1/reports/resources/resourceBundle/test.properties and my source file is at ...
0
votes
1answer
171 views

Custom ResourceBundle in ADF with only one class

Due to my project's requirements, I have implemented a custom java ResouceBundle class to take resource data from a directory configured in web.xml. My intention is to have only one ResourceBundle ...
0
votes
2answers
183 views

How to get resource bundle value based on values received from managed bean?

I am looking for the possibility if I can get resourcbundle values based on values received from managed bean. It may be useful in datatable, datagrid, and also with other components where values are ...
0
votes
0answers
71 views

Retrieve ResourceBundle Java .properties from source code

I would like to write a script to list Java properties files that are meant to be translated (i.e. Used by ResourceBundle) by scanning the source code. Just wondering whether it can be done by regex ...
3
votes
1answer
70 views

Implementing user defined Native locale in Java

As a part of localization I am now trying to implement locale strings for Native languages(India). While searching I found an solution on Stack overflow that we can create user defined locales. How ...
1
vote
0answers
77 views

Load the resource bundle on start of application in boot strap in grails

I created a new package under src/java in a Grails application for a specific resource bundle which I want to use like src/java/resourcebundle/abc.properties. This is working fine when I use it from ...
0
votes
0answers
38 views

use RsourceBundle to load properties files from different classpath

I'm trying to use Java resourceBundle to load my propeties files. The problem is - some of my properties files are in different classpath. I want the resourceBundle to first look-up for the ...
0
votes
1answer
316 views

JSF Resourece Bundle Can't find bundle for base name com.arc.ifuss.util.messages.properties

I'm trying to add resource bundle in my JSF project. I want to use messages from a resource bundle file in my JSF page. I have done these steps: Create a text file with name messages.properties in ...
0
votes
1answer
41 views

error adding files to project

Something weird happened and interested in insights. I created 5 new custom button images in Photoshop and saved them as .png files. Opened my project, navigated to a "buttons" group in the side-bar, ...
1
vote
1answer
96 views

WindowBuilder: change language at runtime

So I have this Java project (JDesktopPane with JInternalFrames) with WindowBuilder and now I am to translate the whole program. Every time a JInternalFrame is opened from the JDesktopPane Menu, a new ...
0
votes
0answers
58 views

iOS Static Resources: Reference from project vs. Resource Bundle

In a WWDC 2012 video entitled, Working With Schemes and Projects in Xcode, the presenter gives a demo at the end on how to use static libraries and reference static resources like nibs, and other ...
1
vote
1answer
50 views

GWT - Consolidate error messages to use them across server and client

I am working on a GWT project. I provide error messages at two places right now - Hibernate Validator annotations and in setter validations. These messages are identical. Also, they are likely to be ...
0
votes
0answers
42 views

Bug in string resource editor in MS Visual Studio 2008 C++ project [closed]

I'm not sure how to call this, other than a "school book bug" that seems to be still present in the Microsoft Visual Studio 2008 resource editor (for C++ projects). Let me explain. Say, I'm adding a ...
0
votes
0answers
106 views

How to get a ResourceBundle in grails?

I put some properties files (resources.propperties for instance) that I put in the src/main/resources/com/ebiznext/agregation/service/payment/sips directory and I tried to retrieve them in my code ...
0
votes
1answer
214 views

Resource Bundle in JSTL shows question marks?

In my login.jsp i have the following: <%@page contentType="text/html" pageEncoding="UTF-8"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@taglib prefix="fmt" ...
1
vote
1answer
129 views

Passing localized javascript messages from ressource bundles using JSF

I have built an application with JSF and all messages issued by the server are localized with ressource bundles. My question is : how to get messages issued in the client browser with javascipt ...
0
votes
2answers
98 views

How to switch from ResourceBundle to Properties (class)?

How to switch from ResourceBundle to Properties (class)? I have an app split into 2 Java projects (core & web). A Java service in the core module have to read values from a .properties file ...
0
votes
2answers
177 views

How to use ResourceBundle

I'm trying to grasp internalization of java applications as shown here. I can't though. I have created a class that extends ListResourceBundle like stated and tried to retrieve the keys. I keep ...
-1
votes
2answers
39 views

ResorceBundle from Map in Java [closed]

I am trying to do my own implementation of ResourceBundle. I want to load texts from database. I am stuck with something. How do I create a ResourceBundle programatically from a Map object ? The map ...
0
votes
0answers
70 views

Primefaces resources

I have defined class SpringResourceBundle to read resources from different files defined in Can it be possible with Sprint Tool SUite to have code completion when I type #resources['some_resource']}
1
vote
2answers
431 views

Bundle script file not being rendered.

Script file name: jquery.transit.min.js The file is in the Scripts folder, bundles.Add(new ScriptBundle("~/bundles/jquery") .Include("~/Scripts/jquery-{version}.js")); bundles.Add(new ...
2
votes
3answers
573 views

JSF Internationalization f:loadbundle or through faces-config: Performance point

There are two ways to load the properties file into JSF 2.0. Global Resource Bundle To load the properties file globally, so that all the jsf pages can access the messages. You can create a ...
0
votes
1answer
141 views

Translate the Properties File from one language to another using ResourceBundle

I have message.properties file. by default it will load as English when I use Locale and Resource Bundle in Java file. Now, I need to specify the Country Code or Type in Locale, Then the ...
0
votes
1answer
88 views

How can i store streaming video in resource folder in iOS?

If i go to the point then my problem is, i want to make a web view where it will load a video and when stream starts then i want to download/store that video data in the resource folder of the ...
4
votes
5answers
2k views

Android supporting all tablets - categorize drawables and layouts

I have seen many thread discussing this problem in stackoverflow (like this, this and this), and I have read the documentation about supporting multiple screens, and designs. But I am still not clear ...
0
votes
2answers
128 views

Add all files in Document on iphone into copy bundle resource at the runtime

I would like to add all JPEG files in Document on iphone into copy bundle resource at the runtime. Is it possible? How? My plist is FrameMarkers-Info.plist. Where can I put your code. When I add it, ...
0
votes
0answers
85 views

ReloadableResourceBundleMessageSource incompatible with DelegatingMessageSource

I am configuring spring message resource following this question, I have two applications. This technique works on one of those application and but getting following exception in second one. ...
2
votes
2answers
486 views

Programmatically refresh the spring mvc resource bundle

ResourceBundleMessageSource messages are configured in Spring's configuration file as <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource" ...
1
vote
3answers
462 views

ResourceBundle - Cannot work out how a properties file is read when it does not exist in the filesystem

I have an EJB 2.1 application that refers to a properties file to read a value from. The filename of the properties file is defined as private static final String CONFIG_DIRECTORY = "config."; ...
0
votes
1answer
187 views

Using Resourcebundle Properties in Javascript

I work on a Java EE web application that uses a combination of Dojo and plain javascript for the front-end. We've discovered that when ResourceBundle properties are used in javascript, in some cases ...
3
votes
1answer
192 views

Similar to Eclipse Resource bundle editor in IntelliJ IDEA

I just begin use IDEA and I can't belive that in IDEA doesn't have smth similar. I want to add property in Resource Bundle editor for all files difference just locale suffix and that words after ...

1 2 3 4 5 7