mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
Followup of #17926. Basically, the aim is to concise modal texts to use 'Confirm' instead of long labels since they can tricky for translators and can also create bad strings having long words.
24 lines
1.1 KiB
Handlebars
24 lines
1.1 KiB
Handlebars
<div id="resend_invite_modal" class="modal modal-bg hide fade" tabindex="-1" role="dialog" aria-labelledby="resend_invite_modal_label" aria-hidden="true">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
|
|
<h3 id="resend_invite_modal_label">
|
|
{{#tr}}
|
|
Resend invitation to <z-email></z-email>
|
|
{{#*inline "z-email"}}<span class="email"></span>{{/inline}}
|
|
{{/tr}}
|
|
</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>
|
|
{{#tr}}
|
|
Are you sure you want to resend the invitation to <z-email></z-email>?
|
|
{{#*inline "z-email"}}<strong><span class="email"></span></strong>{{/inline}}
|
|
{{/tr}}
|
|
</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="button rounded" data-dismiss="modal">{{t "Cancel" }}</button>
|
|
<button class="button rounded btn-danger" id="do_resend_invite_button" data-invite-id="{{invite_id}}">{{t "Confirm" }}</button>
|
|
</div>
|
|
</div>
|