You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

This document relates to Grouper 1.6 and internationalization.  Note,

Note, my environment is windows, mysql, tomcat.

Code changes

In 1.6.3, I made these changes.  Note, these are committed to the 1.6 branch (post 1.6.3), and are in 2.0.0+ as well.

edu.internet2.middleware.grouper.ui.util.HttpContentType.java

FROM:

  TEXT_XML("text/xml"),
 
  /** text html content type */
  TEXT_HTML("text/html"),
 
  /** application json content type */
  APPLICATION_JSON("application/json"),

TO:

  TEXT_XML("text/xml;charset=utf-8"),
 
  /** text html content type */
  TEXT_HTML("text/html"),
 
  /** application json content type */
  APPLICATION_JSON("application/json;charset=utf-8"),

Text on admin UI

custom/nav.properties

groups.action.show-summary=Group summáry

Looks like this on Group screen:



Text on Lite UI

Set this on custom/media.properties

ui-lite.link-from-admin-ui = true

login.ui-lite.show-link = true

custom/nav.properties

simpleMembershipUpdate.updateTitle=Group mêmbership update lite


sdf

  • No labels