-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
37 lines (34 loc) · 1.32 KB
/
options.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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="utils/options.css"/>
<meta name="viewport" content="width=device-width">
</head>
<body>
<form>
<h1 data-i18n-id="updatechannel_headline">Update Channel</h1>
<div class="radio">
<input type="radio" name="updatechannel_options" id="updatechannel_release"/>
<label for="updatechannel_release" data-i18n-id="release_channel_label">Release</label>
</div>
<div class="radio">
<input type="radio" name="updatechannel_options" id="updatechannel_esr"/>
<label for="updatechannel_esr" data-i18n-id="esr_channel_label">ESR (Extended Support Release)</label>
</div>
<!--
<div class="radio">
<input type="radio" name="updatechannel_options" id="updatechannel_developer"/>
<label for="updatechannel_developer" data-i18n-id="developer_channel_label">Developer Edition</label>
</div>
<div class="radio">
<input type="radio" name="updatechannel_options" id="updatechannel_beta"/>
<label for="updatechannel_beta" data-i18n-id="beta_channel_label">Beta</label>
</div>
-->
</form>
<script src="utils/html-i18n.js"></script>
<script src="utils/storage.js"></script>
<script src="options.js"></script>
</body>
</html>