<?xml version="1.0" encoding="UTF-8" ?>
<html
- lang="#{localization.language}" xml:lang="#{localization.language}"
+ lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core">
- <f:view locale="#{localization.locale}" contentType="text/html">
+ <f:view locale="#{localizationController.locale}" contentType="text/html">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:form id="locale_selection">
- <h:selectOneMenu id="language_selection" value="#{localization.language}" onchange="submit()">
+ <h:selectOneMenu id="language_selection" value="#{localizationController.language}" onchange="submit()">
<f:selectItem itemLabel="#{msg.SELECT_LANGUAGE}" noSelectionOption="true" />
- <f:selectItems value="#{localization.selectableLocalizations}" var="l" itemValue="#{l}" itemLabel="#{msg[l.toString().toUpperCase()]}" />
+ <f:selectItems value="#{localizationController.selectableLocalizations}" var="l" itemValue="#{l}" itemLabel="#{msg[l.toString().toUpperCase()]}" />
</h:selectOneMenu>
</h:form>
</ui:composition>