This content has been marked as final. 
    
Show                 5 replies
    
- 
        1. Re: internationialization and rich:calendarilya_shaikovsky May 26, 2008 10:20 AM (in response to ajanz)you should perform nothing except define the bundle and add proper properties. Calendar will automatically handle them. 
- 
        2. Re: internationialization and rich:calendarajanz May 26, 2008 10:39 AM (in response to ajanz)i defined RICH_CALENDAR_TODAY_LABEL=Heute todayLabel=Auch Heute 
 in my bundle. i verified that it is loaded by binding todayLabel to an outputLabel on the page.
 But i still got "today" on the calendar component.
 what could i have done wrong?
- 
        3. Re: internationialization and rich:calendarjanson12 May 27, 2008 3:30 AM (in response to ajanz)1.) create your bundles somewhere in your classpath like that: 
 (richfaces_de.properties)#### Calendar Labels #### 
 RICH_CALENDAR_APPLY_LABEL = Übernehmen
 RICH_CALENDAR_TODAY_LABEL = Heute
 RICH_CALENDAR_CLOSE_LABEL = Schliessen
 RICH_CALENDAR_OK_LABEL = OK
 RICH_CALENDAR_CLEAN_LABEL = Zurücksetzen
 RICH_CALENDAR_CANCEL_LABEL = Abbruch
 2.) define you bundle in faces-config as following:<application> <message-bundle> de.project.web.message.richfaces_en</message-bundle> <message-bundle> de.project.web.message.richfaces_de</message-bundle> </application> 
 The rest goes without additional efforts, just place your calendar on your jsp and the current language will be displayed if the respective property file is available.
- 
        4. Re: internationialization and rich:calendarajanz May 27, 2008 11:22 AM (in response to ajanz)ok thank you. now it works. 
 i used myfile_de.properties instead of richefaces_de.properties.
- 
        5. Re: internationialization and rich:calendarjanson12 May 28, 2008 3:34 AM (in response to ajanz)name shouldn't have any impact as long as you follow the "name_language.properties" pattern and declare it with "<message-bundle>" in your faces-config.xml. 
 
     
    