You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@continuum.apache.org by "zhoushuqun (JIRA)" <ji...@codehaus.org> on 2008/12/24 19:02:19 UTC

[jira] Created: (CONTINUUM-2027) The i18n patch for zh_CN

The i18n patch for zh_CN
------------------------

                 Key: CONTINUUM-2027
                 URL: http://jira.codehaus.org/browse/CONTINUUM-2027
             Project: Continuum
          Issue Type: Improvement
          Components: Web interface
            Reporter: zhoushuqun
         Attachments: i18n-zh_CN.patch

I translated the resource file to Simplified Chinese, and add a filter to set the response encoding as UTF-8 for the multi-bytes support.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (CONTINUUM-2027) The i18n patch for zh_CN

Posted by "Olivier Lamy (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-2027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Lamy reassigned CONTINUUM-2027:
---------------------------------------

    Assignee: Olivier Lamy

> The i18n patch for zh_CN
> ------------------------
>
>                 Key: CONTINUUM-2027
>                 URL: http://jira.codehaus.org/browse/CONTINUUM-2027
>             Project: Continuum
>          Issue Type: Improvement
>          Components: Web interface
>            Reporter: zhoushuqun
>            Assignee: Olivier Lamy
>             Fix For: 1.3.2
>
>         Attachments: i18n-zh_CN.patch
>
>
> I translated the resource file to Simplified Chinese, and add a filter to set the response encoding as UTF-8 for the multi-bytes support.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (CONTINUUM-2027) The i18n patch for zh_CN

Posted by "Maria Odea Ching (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-2027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Maria Odea Ching updated CONTINUUM-2027:
----------------------------------------

    Fix Version/s:     (was: 1.3.1)
                   1.3.2

> The i18n patch for zh_CN
> ------------------------
>
>                 Key: CONTINUUM-2027
>                 URL: http://jira.codehaus.org/browse/CONTINUUM-2027
>             Project: Continuum
>          Issue Type: Improvement
>          Components: Web interface
>            Reporter: zhoushuqun
>             Fix For: 1.3.2
>
>         Attachments: i18n-zh_CN.patch
>
>
> I translated the resource file to Simplified Chinese, and add a filter to set the response encoding as UTF-8 for the multi-bytes support.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (CONTINUUM-2027) The i18n patch for zh_CN

Posted by "Olivier Lamy (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-2027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Lamy closed CONTINUUM-2027.
-----------------------------------

    Resolution: Fixed

fix in [rev 739716|http://svn.apache.org/viewvc?view=rev&revision=739716]
Thanks !

> The i18n patch for zh_CN
> ------------------------
>
>                 Key: CONTINUUM-2027
>                 URL: http://jira.codehaus.org/browse/CONTINUUM-2027
>             Project: Continuum
>          Issue Type: Improvement
>          Components: Web interface
>            Reporter: zhoushuqun
>            Assignee: Olivier Lamy
>             Fix For: 1.3.2
>
>         Attachments: i18n-zh_CN.patch
>
>
> I translated the resource file to Simplified Chinese, and add a filter to set the response encoding as UTF-8 for the multi-bytes support.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (CONTINUUM-2027) The i18n patch for zh_CN

Posted by "José Morales Martínez (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/CONTINUUM-2027?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=161788#action_161788 ] 

José Morales Martínez commented on CONTINUUM-2027:
--------------------------------------------------

I think you can use Spring CharacterEncodingFilter in web.xml. It's clearer.

I'm translating continuum to spanish and I need a UTF-8 filter for menu strings too.

<filter>
    <filter-name>encodingFilter</filter-name>
    <filter-class> org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
        <param-name>forceEncoding</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>

<filter-mapping>
    <filter-name>encodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

> The i18n patch for zh_CN
> ------------------------
>
>                 Key: CONTINUUM-2027
>                 URL: http://jira.codehaus.org/browse/CONTINUUM-2027
>             Project: Continuum
>          Issue Type: Improvement
>          Components: Web interface
>            Reporter: zhoushuqun
>             Fix For: 1.3.2
>
>         Attachments: i18n-zh_CN.patch
>
>
> I translated the resource file to Simplified Chinese, and add a filter to set the response encoding as UTF-8 for the multi-bytes support.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] Updated: (CONTINUUM-2027) The i18n patch for zh_CN

Posted by "Olivier Lamy (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/CONTINUUM-2027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Lamy updated CONTINUUM-2027:
------------------------------------

    Fix Version/s: 1.3.1

> The i18n patch for zh_CN
> ------------------------
>
>                 Key: CONTINUUM-2027
>                 URL: http://jira.codehaus.org/browse/CONTINUUM-2027
>             Project: Continuum
>          Issue Type: Improvement
>          Components: Web interface
>            Reporter: zhoushuqun
>             Fix For: 1.3.1
>
>         Attachments: i18n-zh_CN.patch
>
>
> I translated the resource file to Simplified Chinese, and add a filter to set the response encoding as UTF-8 for the multi-bytes support.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (CONTINUUM-2027) The i18n patch for zh_CN

Posted by "zhoushuqun (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/CONTINUUM-2027?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=161813#action_161813 ] 

zhoushuqun commented on CONTINUUM-2027:
---------------------------------------

I agree with you.

> The i18n patch for zh_CN
> ------------------------
>
>                 Key: CONTINUUM-2027
>                 URL: http://jira.codehaus.org/browse/CONTINUUM-2027
>             Project: Continuum
>          Issue Type: Improvement
>          Components: Web interface
>            Reporter: zhoushuqun
>             Fix For: 1.3.2
>
>         Attachments: i18n-zh_CN.patch
>
>
> I translated the resource file to Simplified Chinese, and add a filter to set the response encoding as UTF-8 for the multi-bytes support.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira