diff options
| author | INOUE Daisuke <inoue.daisuke@gmail.com> | 2025-04-08 22:14:04 +0900 | 
|---|---|---|
| committer | INOUE Daisuke <inoue.daisuke@gmail.com> | 2025-04-08 22:14:04 +0900 | 
| commit | 23e49c6e6e63a518e704f82879a5fdcf268c51d8 (patch) | |
| tree | 630ab081700b9b3d0bde5901cf75d843cd965d7c /views/optionsform.handlebars | |
| parent | da15a6ec744281c6ae2b970c72d45b93f8a75109 (diff) | |
1st stage, only language switch.
Thank you, MomentQYC ( https://github.com/MomentQYC ).
Your first attemt encourage me.
Diffstat (limited to 'views/optionsform.handlebars')
| -rwxr-xr-x | views/optionsform.handlebars | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/views/optionsform.handlebars b/views/optionsform.handlebars index 85ebd9f..06dbe95 100755 --- a/views/optionsform.handlebars +++ b/views/optionsform.handlebars @@ -1,46 +1,46 @@  <div class="form-group row"> -  <div class="col-sm-2">Options</div> +  <div class="col-sm-2">{{t "options.title" }}</div>    <div class="col-sm-10">      <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"> -        Users can mark themselves as attending this event +        {{t "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"> -        Display the list of attendees +        {{t "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"> -        Users can post comments on this event +        {{t "interaction" }}        </label>      </div>    </div>  </div>  <div class="form-group row"> -  <div class="col-sm-2">Options</div> +  <div class="col-sm-2">{{t "options.title" }}</div>    <div class="col-sm-10">      <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"> -        Users can mark themselves as attending this event +        {{t "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"> -        Display the list of attendees +        {{t "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"> -        Users can post comments on this event +        {{t "interaction" }}        </label>      </div>    </div>  | 
