src.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. /* ====================================================================
  2. * The Tmax soft License, Version 1.1
  3. *
  4. * Copyright (c) 1997-2004 The Tmax software.
  5. * All rights reserved.
  6. * html code omitted for readability.
  7. /* ====================================================================
  8. /* locale.jsp */
  9. <%@ page contentType="text/html; charset=UTF-8" %>
  10. <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
  11. <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
  12. <%@ include file="../../upper.jsp"%>
  13. <f:loadBundle basename="jsf.locale.bundle.Resource" var="bundle"/>
  14. <f:view>
  15. <h:form id="memberForm">
  16. <h2><h:outputText value="#{bundle.title}" /></h2>
  17. <h:outputText value="#{bundle.keyword}" /><br><hr><br><br>
  18. <h:outputText value="#{bundle.message}" /><br><br>
  19. <h:commandButton id="English" action="changelocale" value="English" actionListener="#{changeLocale.chooseLocale}" />
  20. <h:commandButton id="France" action="changelocale" value="France" actionListener="#{changeLocale.chooseLocale}" />
  21. <h:commandButton id="Korea" action="changelocale" value="Korean" actionListener="#{changeLocale.chooseLocale}" />
  22. <h:commandButton id="Japan" action="changelocale" value="Japanese" actionListener="#{changeLocale.chooseLocale}" />
  23. <h:commandButton id="China" action="changelocale" value="China" actionListener="#{changeLocale.chooseLocale}" />
  24. <h:commandButton id="German" action="changelocale" value="German" actionListener="#{changeLocale.chooseLocale}" />
  25. </h:form>
  26. </f:view>
  27. <%@ include file="../../footer.html"%>