diff options
Diffstat (limited to 'views')
-rwxr-xr-x | views/newevent.handlebars | 6 | ||||
-rwxr-xr-x | views/partials/eventForm.handlebars | 2 | ||||
-rw-r--r-- | views/partials/eventGroupForm.handlebars | 2 | ||||
-rw-r--r-- | views/partials/importeventform.handlebars | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/views/newevent.handlebars b/views/newevent.handlebars index 1862ebe..62756ca 100755 --- a/views/newevent.handlebars +++ b/views/newevent.handlebars @@ -6,10 +6,10 @@ <button type="button" id="showNewEventFormButton" class="button w-100" x-bind:class="currentTab === 'event' ? 'button--primary' : 'button--secondary'" x-on:click="currentTab = 'event'"><i class="fas fa-calendar-day"></i> {{t "newevent.neweventbutton" }}</button> </div> <div class="col-lg-4 p-2"> - <button type="button" id="showImportEventFormButton" class="button w-100" x-bind:class="currentTab === 'importEvent' ? 'button--primary' : 'button--secondary'" x-on:click="currentTab = 'importEvent'"><i class="fas fa-file-import"></i> {{t newevent.importevent }}</button> + <button type="button" id="showImportEventFormButton" class="button w-100" x-bind:class="currentTab === 'importEvent' ? 'button--primary' : 'button--secondary'" x-on:click="currentTab = 'importEvent'"><i class="fas fa-file-import"></i> {{t "newevent.importevent" }}</button> </div> <div class="col-lg-4 p-2"> - <button type="button" id="showNewEventGroupFormButton" class="button w-100" x-bind:class="currentTab === 'group' ? 'button--primary' : 'button--secondary'" x-on:click="currentTab = 'group'"><i class="fas fa-calendar-alt"></i> {{t newevent.neweventgroup }} </button> + <button type="button" id="showNewEventGroupFormButton" class="button w-100" x-bind:class="currentTab === 'group' ? 'button--primary' : 'button--secondary'" x-on:click="currentTab = 'group'"><i class="fas fa-calendar-alt"></i> {{t "newevent.neweventgroup" }} </button> </div> </div> </div> @@ -19,7 +19,7 @@ </div> <div id="newEventFormContainer" x-show="currentTab === 'event'" style="display: none"> - <h4 class="mb-2">{{t "newevent" }}</h4> + <h4 class="mb-2">{{t "newevent.createnew" }}</h4> <form id="newEventForm" enctype="multipart/form-data" diff --git a/views/partials/eventForm.handlebars b/views/partials/eventForm.handlebars index 91e5a7c..e40ffa8 100755 --- a/views/partials/eventForm.handlebars +++ b/views/partials/eventForm.handlebars @@ -30,7 +30,7 @@ </div> </div> <div class="form-group"> - <label for="eventDescription" >{{t "event.p.description" }}</label> + <label for="eventDescription" >{{t "event.p.eventdescription" }}</label> <div class="form-group "> <textarea class="form-control expand" id="eventDescription" name="eventDescription" placeholder="{{t "event.editlater" }}" x-model="data.eventDescription" ></textarea> <small class="form-text">{{{t "mdsupport" }}}</small> diff --git a/views/partials/eventGroupForm.handlebars b/views/partials/eventGroupForm.handlebars index d5d7baa..3d13d69 100644 --- a/views/partials/eventGroupForm.handlebars +++ b/views/partials/eventGroupForm.handlebars @@ -14,7 +14,7 @@ <small class="form-text">{{t "group.p.eventgroupurldesc" }}</small> </div> <div class="form-group"> - <label for="hostName">{{t"group.p.hostname" }}</label> + <label for="hostName">{{t "group.p.hostname" }}</label> <input type="text" class="form-control" id="eventGroupHostName" name="hostName" placeholder="{{t "group.p.isshowgroup" }}" x-model="data.hostName"> </div> <div class="form-group"> diff --git a/views/partials/importeventform.handlebars b/views/partials/importeventform.handlebars index e45f16f..f08e820 100644 --- a/views/partials/importeventform.handlebars +++ b/views/partials/importeventform.handlebars @@ -1,4 +1,4 @@ -<h4 class="mb-2">{{t newevent.importevent }}</h4> +<h4 class="mb-2">{{t "newevent.importevent" }}</h4> <p> {{t "newevent.p.importdesc" }} </p> |