Changeset 1040:d857b582c2e9
- Timestamp:
- 04/12/10 14:10:03 (3 years ago)
- Author:
- tgambet
- Branch:
- default
- convert_revision:
- svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@1041
- Message:
-
Fixed: in specific cases small parts of translated strings keys were being cut
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r1020
|
r1040
|
|
| 1 | | // $Id: LanguageAction.java,v 1.25 2010-03-22 18:00:45 tgambet Exp $ |
| | 1 | // $Id: LanguageAction.java,v 1.26 2010-04-12 14:10:03 tgambet Exp $ |
| 2 | 2 | // Author: Thomas Gambet |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM and Keio, 2009. |
| … |
… |
|
| 192 | 192 | continue; |
| 193 | 193 | else |
| 194 | | key = paramKey.replace(languageParameter + "_", ""); |
| | 194 | key = paramKey.replaceFirst(languageParameter + "_", ""); |
| 195 | 195 | |
| 196 | 196 | if (!req.getParameter(paramKey).equals("") && !req.getParameter(paramKey).equals(langProps.getProperty(key))) { |