|
|
|
Hi,
I have found the solution, it is because your appserver (and older version of tomcat) do not pick up the webwork.tld file from the lib directory the use the one in the jar. (I believe this is incorrect). As we use a custom TextTag for internationalisation this is not picked up and the standard one is used. This is why certain text is not internationised. If you remove the meta-inf\taglib.tld from the webwork-xxxx.jar and redeploy it should solve the problem. (The jsps need to be recompiled using the new taglib). I believe this as an App Server bug. Thanks, Here is the workaround Owen mentioned, in a bit more detail, assuming we're in the JIRA Standalone root:
[ ~]$ cd atlassian-jira/WEB-INF/lib/ I have fixed this in webwork HEAD - waiting on 1.4.1 to be released:
http://jira.opensymphony.com/secure/ViewIssue.jspa?key=WW-460 I'll create a separate issue to track the folding back of our text tag. I have the same problem with Enterprise Edition, Version: 2.6.1-#65 and now with Enterprise Edition, Version: 3.2.2-#90.
We run Jira on Websphere 5 (windows) with Oracle 8i. I tried this solution or the one described here : http://jira.atlassian.com/browse/JRA-3463 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
You are now logged out. Any automatic login has also been stopped.
Didnt mean to logout? {0}Log in again.{1}
or
You are now logged out. Any automatic login has also been stopped.
Didn't mean to logout? {0}Log in again.{1}
There was a problem with single quotes in the text that caused the values to be replaced incorrectly.
If you change
logout.desc.line2 = Didn't mean to logout? {0}Log in again.{1}
in JiraWebActionSupport.properties
to
logout.desc.line2 = Did not mean to logout? {0}Log in again.{1}
It should solve the problem, but this is just a work around.