1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

Use getText for modal strings

This commit is contained in:
Tessa Walsh 2022-12-22 13:00:42 -05:00
parent 3981b23e0a
commit d649a0d1f4
2 changed files with 14 additions and 25 deletions

File diff suppressed because one or more lines are too long

View File

@ -3,10 +3,10 @@
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Terms of Use</h5>
<h5 class="modal-title">{{ $root._('Terms of Use') }}</h5>
</div>
<div class="modal-body">
<p>Terms of use go here.</p>
<p>{{ $root._('Terms of Use Body Text') }}</p>
</div>
<div class="modal-footer">
<button
@ -14,7 +14,7 @@
class="btn btn-primary"
@click="closePopup"
@keyup.enter="closePopup"
>Agree</button>
>{{ $root._('Agree and Proceed') }}</button>
</div>
</div>
</div>