-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.html
28 lines (28 loc) · 1.32 KB
/
build.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- Push notifications component -->
<div class="popup-screen" data-push-notification-id="{{id}}">
<div class="popup-wrapper">
<div class="popup-content">
<p class="popup-title">
{{#if popupMessage}}
{{popupTitle}}
{{else}}
<span data-translate="widgets.pushNotifications.prompt.title">App updates and notifications</span>
{{/if}}
</p>
<div class="popup-body">
{{#if popupMessage}}
{{ nl2br popupMessage }}
{{else}}
<span data-translate="widgets.pushNotifications.prompt.message.line1">You will receive notifications when app updates are available.</span><br>
<span data-translate="widgets.pushNotifications.prompt.message.line2">Please tap on Allow Notifications below to receive notifications on the updates.</span>
{{/if}}
</div>
</div>
<div class="popup-bottom">
<button type="button" data-allow data-translate="widgets.pushNotifications.prompt.button.allow">Allow Notifications</button>
<button type="button" data-dont-allow data-translate="widgets.pushNotifications.prompt.button.disallow">Don't Allow</button>
<button type="button" data-remind data-translate="widgets.pushNotifications.prompt.button.later">Remind me later</button>
</div>
</div>
</div>
<!-- End of Push notifications -->