-
-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathabout-dialog.html
More file actions
42 lines (41 loc) · 2.32 KB
/
Copy pathabout-dialog.html
File metadata and controls
42 lines (41 loc) · 2.32 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<div class="about-dialog modal">
<div class="modal-header">
<h1 class="dialog-title">{{Strings.ABOUT}}</h1>
</div>
<div class="modal-body no-padding">
<img class="about-icon" src="{{ABOUT_ICON}}">
<div class="about-text">
<h2>{{APP_NAME_ABOUT_BOX}}</h2>
<div class="about-info">
<p class="dialog-message">{{Strings.ABOUT_TEXT_LINE1}} <span id="about-build-number">{{BUILD_INFO}}</span>
{{#PRO_BUILD_COMMIT}}
<br><span class="dialog-message">{{Strings.ABOUT_TEXT_PRO_BUILD}}{{PRO_BUILD_COMMIT}}</span>
{{/PRO_BUILD_COMMIT}}
{{#BUILD_TIMESTAMP}}
<br><span class="dialog-message">{{Strings.ABOUT_TEXT_BUILD_TIMESTAMP}}{{BUILD_TIMESTAMP}}</span>
{{/BUILD_TIMESTAMP}}
</p>
<p class="dialog-message">{{{Strings.ABOUT_RELEASE_CREDITS}}}
<a href="https://github.com/abose" target="_blank" rel="noopener" >Arun Bose</a>,
<a href="https://github.com/charlypa" target="_blank" rel="noopener" >Charly P Abraham</a>,
<a href="https://github.com/devvaannsh" target="_blank" rel="noopener" >Devansh Agarwal</a>,
<a href="https://github.com/AnsuKoshy" target="_blank" rel="noopener" >Ansu Ann Koshy</a>,
<a href="https://github.com/Electrofist" target="_blank" rel="noopener" >Krrish Parmar</a>
</p>
<p class="dialog-message"><!-- $NON-NLS$ -->Copyright 2021 - present <a href="https://core.ai">Core.ai</a> and its licensors. All rights reserved.</p>
<p class="dialog-message">{{{Strings.ABOUT_TEXT_LINE3}}}</p>
<p class="dialog-message">{{{Strings.ABOUT_TEXT_MDN_DOCS}}}</p>
<p class="dialog-message">{{{Strings.ABOUT_TEXT_LINE4}}}</p>
<p class="dialog-message">
{{Strings.ABOUT_TEXT_LINE5}}
<span class="spinner inline"></span>
</p>
<div class="about-contributors">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button class="dialog-button btn primary" data-button-id="ok">{{Strings.CLOSE}}</button>
</div>
</div>