diff options
Diffstat (limited to 'views')
-rwxr-xr-x | views/event.handlebars | 6 | ||||
-rwxr-xr-x | views/eventgroup.handlebars | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/views/event.handlebars b/views/event.handlebars index 5d97aff..703c1d4 100755 --- a/views/event.handlebars +++ b/views/event.handlebars @@ -1,7 +1,7 @@ <main class="event{{#if editingEnabled}} event--editing{{/if}}"> {{#if editingEnabled}} <div class="event__editing-banner"> - You are currently editing this event. Do not share this link! + {{t "views.event.currentlyediting" }} </div> {{/if}} {{#if eventHasCoverImage}} @@ -77,7 +77,7 @@ <span class="fa-li"> <i class="fas fa-fw fa-users"></i> </span> - <span class="text-muted">Public link:</span> + <span class="text-muted">{{ t "views.event.publiclink" }}:</span> <a class="u-url" href="https://{{domain}}/{{eventData.id}}">https://{{domain}}/{{eventData.id}}</a> <button type="button" id="copyEventLink" class="eventInformationAction button button--outline-secondary button--sm" data-clipboard-text="https://{{domain}}/{{eventData.id}}"> <i class="fas fa-copy"></i> {{t "common.copy" }} @@ -86,7 +86,7 @@ {{#if isFederated}} <li> <span class="fa-li fa-fw fediverse-icon"><img src="/images/fediverse-icon.svg" alt="Fediverse Icon" /></span> - <span class="text-muted">Fediverse link:</span> + <span class="text-muted">{{ t "views.event.fediverselink" }}:</span> @{{eventData.id}}@{{domain}} <button type="button" id="copyAPLink" class="eventInformationAction button button--outline-secondary button--sm" data-clipboard-text="@{{eventData.id}}@{{domain}}"> <i class="fas fa-copy"></i> {{t "common.copy" }} diff --git a/views/eventgroup.handlebars b/views/eventgroup.handlebars index 2cdad39..5fcc6c2 100755 --- a/views/eventgroup.handlebars +++ b/views/eventgroup.handlebars @@ -1,7 +1,7 @@ <main class="event"> {{#if editingEnabled}} <div class="event__editing-banner"> - You are currently editing this event. Do not share this link! + {{ t "views.event.currentlyediting" }} </div> {{/if}} {{#if eventGroupHasCoverImage}} @@ -54,7 +54,7 @@ <span class="fa-li"> <i class="fas fa-users"></i> </span> - <span class="text-muted">Public link:</span> + <span class="text-muted">{{t "views.event.publiclink" }}:</span> <a href="https://{{domain}}/group/{{eventGroupData.id}}">https://{{domain}}/group/{{eventGroupData.id}}</a> <button type="button" id="copyEventLink" class="eventInformationAction button button--outline-secondary button--sm" data-clipboard-text="https://{{domain}}/group/{{eventGroupData.id}}"> <i class="fas fa-copy"></i> {{t "common.copy" }} |