diff options
Diffstat (limited to 'views/optionsform.handlebars')
-rwxr-xr-x | views/optionsform.handlebars | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/views/optionsform.handlebars b/views/optionsform.handlebars index 06dbe95..78e184b 100755 --- a/views/optionsform.handlebars +++ b/views/optionsform.handlebars @@ -4,19 +4,19 @@ <div class="form-check"> <input class="form-check-input" type="checkbox" id="joinCheckbox" name="joinCheckbox" {{#if data.joinCheckbox}}checked{{/if}}> <label class="form-check-label" for="joinCheckbox"> - {{t "join" }} + {{t "views.join" }} </label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="guestlistCheckbox" name="guestlistCheckbox" {{#if data.guestlistCheckbox}}checked{{/if}}> <label class="form-check-label" for="guestlistCheckbox"> - {{t "options.showlistattendees" }} + {{t "views.options.showlistattendees" }} </label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="interactionCheckbox" name="interactionCheckbox" {{#if data.interactionCheckbox}}checked{{/if}}> <label class="form-check-label" for="interactionCheckbox"> - {{t "interaction" }} + {{t "views.interaction" }} </label> </div> </div> @@ -28,19 +28,19 @@ <div class="form-check"> <input class="form-check-input" type="checkbox" id="joinCheckbox" name="joinCheckbox" {{#if eventData.usersCanAttend}}checked{{/if}}> <label class="form-check-label" for="joinCheckbox"> - {{t "join" }} + {{t "views.join" }} </label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="guestlistCheckbox" name="guestlistCheckbox" {{#if eventData.showUsersList}}checked{{/if}}> <label class="form-check-label" for="guestlistCheckbox"> - {{t "options.showlistattendees" }} + {{t "views.options.showlistattendees" }} </label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="interactionCheckbox" name="interactionCheckbox" {{#if eventData.usersCanComment}}checked{{/if}}> <label class="form-check-label" for="interactionCheckbox"> - {{t "interaction" }} + {{t "views.interaction" }} </label> </div> </div> |