Description
When italian localized strings are used on alert or confirm pages, they should not contain the ' character, because localized strings are enclosed between ' and '. Putting another ' inside localized string causes a javascript error, and window is not displayed. In example, on SSO Detail Portlet, deleting a remote user becomes impossible, because the Confirm window does not appear. Two wrong localized strings have been found:
- j2-admin/WEB-INF/classes/org/apache/jetspeed/portlets/security/resources/SSODetailsResources_it.properties
key = confirmToDeleteRemote
value = Conferma l' eliminazione Remota
proposed: rimuovere utente remoto (to remove remote user)
j2-admin/WEB-INF/classes/org/apache/jetspeed/portlets/security/resources/SSOResources_it.properties
key = confirmtodeletesite
value = Conferma l' eliminazione del sito
proposed: Eliminare il sito (to remove site)
Two are the ways to resolve this bug:
1) instead of ' you can use ", but all javascript calls should be changed
2) change localized string, maybe using those we proposed