History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: APF-923
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Matt Raible
Reporter: Fabio Canepa
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
AppFuse

Italian Localization errors

Created: 01/Oct/07 04:18 AM   Updated: 09/Oct/07 12:14 AM
Component/s: None
Affects Version/s: 2.0 Final
Fix Version/s: 2.0.1

File Attachments: 1. Text File patch.diff (4 kb)



 Description  « Hide
If you deploy appfuse with italian locale some messeges are not displayed correctly. For example if you add a new user the success message is "Dati dellutente {0} aggiunti con successo" with the place-holder {0} not substituded and with a missing single quote between the second "l" e the fist "u" letter.
This occours because the single quote inside string of the ApplicationResources_it.properties are not inserterted as double quote "''". (see http://java.sun.com/j2se/1.4.2/docs/api/java/text/MessageFormat.html)

The property to be modified are:
user.added=Dati dell'utente {0} aggiunti con successo.
user.deleted=Cancellazione del profilo dell'utente {0} effettuata con successo.
user.updated.byAdmin=Dati dell'utente {0} aggiornati con successo.

The correct messages are:
user.added=Dati dell''utente {0} aggiunti con successo.
user.deleted=Cancellazione del profilo dell''utente {0} effettuata con successo.
user.updated.byAdmin=Dati dell''utente {0} aggiornati con successo.

(Sorry I cannot produce an svn patch file right now...)

--
Fabio

 All   Comments   Change History   FishEye      Sort Order:
Fabio Canepa - 02/Oct/07 06:41 PM
I hope to have produce the patch file correctly... (I don't have much experiece with svn...)

Matt Raible - 09/Oct/07 12:14 AM
Thanks for the patch - fixed in SVN!