diff options
author | raul | 2014-06-30 16:49:23 +0200 |
---|---|---|
committer | raul | 2014-06-30 16:49:23 +0200 |
commit | cf7707220882655e454c3ab84b6111d05cc20fc4 (patch) | |
tree | d913a14421ffb869ab567bd9f684e293ce563096 /templates/sysconfig/cfg-start.html | |
parent | [i18n]creation of the lang folder (diff) | |
download | slx-admin-cf7707220882655e454c3ab84b6111d05cc20fc4.tar.gz slx-admin-cf7707220882655e454c3ab84b6111d05cc20fc4.tar.xz slx-admin-cf7707220882655e454c3ab84b6111d05cc20fc4.zip |
[i18n]added mustache tags to the templates
Diffstat (limited to 'templates/sysconfig/cfg-start.html')
-rw-r--r-- | templates/sysconfig/cfg-start.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/sysconfig/cfg-start.html b/templates/sysconfig/cfg-start.html index 7d092337..44119dd3 100644 --- a/templates/sysconfig/cfg-start.html +++ b/templates/sysconfig/cfg-start.html @@ -1,11 +1,11 @@ <form role="form" method="post" action="?do=SysConfig&action=addconfig&step={{step}}"> <input type="hidden" name="token" value="{{token}}"> <div class="input-group"> - <span class="input-group-addon">Name</span> - <input type="text" name="title" class="form-control" placeholder="Meine Konfiguration" autofocus="autofocus"> + <span class="input-group-addon">{{lang_name}}</span> + <input type="text" name="title" class="form-control" placeholder="{{lang_configuration}}" autofocus="autofocus"> </div> <hr> - <p>Bitte wählen Sie, welche Module für diese Konfiguration verwendet werden sollen.</p> + <p>{{lang_configurationChoose}}</p> {{#groups}} <div class="panel panel-default"> <div class="slx-litehead">{{group}}</div> @@ -27,12 +27,12 @@ </div> {{/modules}} {{^modules}} - <a class="btn btn-primary btn-xs" href="?do=SysConfig&action=addmodule&step={{startClass}}">Neu..</a> + <a class="btn btn-primary btn-xs" href="?do=SysConfig&action=addmodule&step={{startClass}}">{{lang_new}}..</a> {{/modules}} </div> </div> {{/groups}} <div class="pull-right"> - <button type="submit" class="btn btn-primary">Weiter »</button> + <button type="submit" class="btn btn-primary">{{lang_next}} »</button> </div> </form> |