diff options
author | equinox <equinox@diac24.net> | 2011-09-27 10:22:11 +0200 |
---|---|---|
committer | equinox <equinox@diac24.net> | 2011-09-27 10:22:11 +0200 |
commit | 9b85f11e1d9f181679c2cf9ce86d008d6e875888 (patch) | |
tree | f83db671a30e663510634c77540a483cbf298705 /templates | |
parent | ff31e814bdc78d57e18a66020508d7e703acf8f5 (diff) |
more i18n
Diffstat (limited to 'templates')
-rw-r--r-- | templates/create.html | 2 | ||||
-rw-r--r-- | templates/login.html | 2 | ||||
-rw-r--r-- | templates/pwchange.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/create.html b/templates/create.html index 4cb8e54..71e64b3 100644 --- a/templates/create.html +++ b/templates/create.html @@ -16,7 +16,7 @@ <b class="error" py:if="'password' in errors">${errors.password}</b> <div>repeat: <input type='password' name='password2' size="10" value=""/></div> <b class="error" py:if="'password2' in errors">${errors.password2}</b> - <input type='submit' value='create'/> + <input type='submit' value='${_("create")}'/> <p>The account creation process takes around 20 to 30 seconds. Please do not spam the button.</p> </form> </sub:bodyform> diff --git a/templates/login.html b/templates/login.html index 754fa2f..8112f0e 100644 --- a/templates/login.html +++ b/templates/login.html @@ -15,7 +15,7 @@ <b class="error" py:if="'username' in errors">${errors.username}</b> <div>password: <input type='password' name='password' size="10"/></div> <b class="error" py:if="'password' in errors">${errors.password}</b> - <input type='submit' value='login'/> + <input type='submit' value='${_("login")}'/> </form> <a href="login?lang=de" class="lang"><img src="${url('static/lang_de.png')}" alt="Deutsch" width="16" height="11"/></a> <a href="login?lang=en" class="lang"><img src="${url('static/lang_en.png')}" alt="English" width="16" height="11"/></a> diff --git a/templates/pwchange.html b/templates/pwchange.html index ec6ea34..9120644 100644 --- a/templates/pwchange.html +++ b/templates/pwchange.html @@ -17,7 +17,7 @@ <b class="error" py:if="'password' in errors">${errors.password}</b> <div>repeat: <input type='password' name='password2' size="10" value=""/></div> <b class="error" py:if="'password2' in errors">${errors.password2}</b> - <input type='submit' value='change password'/> + <input type='submit' value='${_("change password")}'/> <p>The password change process takes around 20 to 30 seconds. Please do not spam the button.</p> </form> </sub:bodyform> |