diff options
| author | INOUE Daisuke <inoue.daisuke@gmail.com> | 2025-04-02 01:49:11 +0900 | 
|---|---|---|
| committer | INOUE Daisuke <inoue.daisuke@gmail.com> | 2025-04-08 22:24:46 +0900 | 
| commit | 1fd6a7d2249fdf6ba5ca9ced6ea43348ebe0941d (patch) | |
| tree | ea1344af0d6259ce70c99f556f26a86d29d9440f /views/optionsform.handlebars | |
| parent | b56f838718386e611af71a74b479a331b832da79 (diff) | |
rename translation keys as filestructure
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>  | 
