1.1 --- a/java/nekurak.net-web/web/WEB-INF/casti/pridatPodnik.jsp Thu Feb 25 09:10:01 2010 +0100
1.2 +++ b/java/nekurak.net-web/web/WEB-INF/casti/pridatPodnik.jsp Thu Feb 25 16:00:42 2010 +0100
1.3 @@ -8,26 +8,28 @@
1.4 <jsp:useBean id="podnik" class="cz.frantovo.nekurak.dto.Podnik" scope="request"/>
1.5 <jsp:useBean id="pridatPodnik" class="cz.frantovo.nekurak.web.PridatPodnik" scope="request"/>
1.6
1.7 - <h1>Přidání nového podniku</h1>
1.8 + <h1><fmt:message key="pridatPodnik.nadpis"/></h1>
1.9
1.10 <c:choose>
1.11 <c:when test="${param.akcePridat == 'pridej'}">
1.12 <jsp:setProperty name="podnik" property="*"/>
1.13 <jsp:setProperty name="pridatPodnik" property="podnik" value="${podnik}"/>
1.14 <c:if test="${pridatPodnik.pridano}">
1.15 - <p>Podnik byl přidán.</p>
1.16 + <p><fmt:message key="pridatPodnik.bylPridan"/></p>
1.17 </c:if>
1.18 </c:when>
1.19 <c:otherwise>
1.20 <form method="post" action="?akce=pridatPodnik&amp;akcePridat=pridej">
1.21 <fieldset>
1.22 - <label>Název: <input type="text" name="nazev" maxlength="255"/></label><br/>
1.23 - <label>Popis: <input type="text" name="popis" maxlength="255"/></label><br/>
1.24 - <label title="www stránka">URL: <input type="text" name="url" maxlength="255"/></label><br/>
1.25 - <label>Ulice: <input type="text" name="ulice" maxlength="64"/></label><br/>
1.26 - <label title="číslo popisné">č.p.: <input type="text" name="cisloPopisne" maxlength="5"/></label><br/>
1.27 - <label>Město: <input type="text" name="mesto" maxlength="64"/></label><br/>
1.28 - <button value="submit">Přidat podnik</button>
1.29 + <label><fmt:message key="dto.podnik.nazev"/>: <input type="text" name="nazev" maxlength="255"/></label><br/>
1.30 + <label><fmt:message key="dto.podnik.popis"/>: <input type="text" name="popis" maxlength="255"/></label><br/>
1.31 + <fmt:message key="dto.podnik.url.tip" var="urlTip"/>
1.32 + <label title="${urlTip}"><fmt:message key="dto.podnik.url"/>: <input type="text" name="url" maxlength="255"/></label><br/>
1.33 + <label><fmt:message key="dto.podnik.ulice"/>: <input type="text" name="ulice" maxlength="64"/></label><br/>
1.34 + <fmt:message key="dto.podnik.cisloPopisne.tip" var="cisloPopisneTip"/>
1.35 + <label title="${cisloPopisneTip}"><fmt:message key="dto.podnik.cisloPopisne"/>: <input type="text" name="cisloPopisne" maxlength="5"/></label><br/>
1.36 + <label><fmt:message key="dto.podnik.mesto"/>: <input type="text" name="mesto" maxlength="64"/></label><br/>
1.37 + <button value="submit"><fmt:message key="pridatPodnik.tlacitko"/></button>
1.38 </fieldset>
1.39 </form>
1.40 </c:otherwise>