-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathoptions.html
128 lines (112 loc) · 4.81 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>{{extName}}</title>
<link rel="stylesheet" type="text/css" href="css/options.css">
<link rel="stylesheet" type="text/css" href="lib/jsTabs/tabs.css">
</head>
<body>
<div id=message_place>
<span id="error">{{o_error}}</span>
<span id="success">{{o_saved}}</span>
</div>
<div id="page">
<header>
<img src="img/ext_icons/48.png" title="{{extDescr}}" width="48" height="48">
<strong>{{extName}}</strong>
</header>
<section id="main_tabs" class="tabs">
<ul class="tabs_nav">
<li><a href="#main">{{o_tabs_main}}</a></li>
<li><a href="#backup">{{o_tabs_backup}}</a></li>
<li><a href="#help">{{o_tabs_help}}</a></li>
<li><a href="#about">{{o_tabs_about}}</a></li>
</ul>
<div class="tabs_content">
<div id="main">
<fieldset>
<legend>{{ o_common_legend }}</legend>
<p>
{{ o_dateFormat_text }}
<select data-storage="date_format">
<option value="eu">{{ o_dateFormat_eu }}</option>
<option value="us">{{ o_dateFormat_us }}</option>
</select>
</p>
<p><label><input id="session_watcher" type="checkbox" data-storage="session_watcher"/>{{ o_sessionWatcher_toggle }}</label></p>
</fieldset>
<fieldset>
<legend>{{ o_savedTabs_legend }}</legend>
<p><label><input type="checkbox" data-storage="pinned"/>{{ o_savedTabs_pinned }}</label></p>
<p><label><input type="checkbox" data-storage="cur_win"/>{{ o_savedTabs_cur_win }}</label></p>
</fieldset>
</div>
<div id="backup">
<fieldset>
<legend>{{ o_backup_restoreLegend }}</legend>
<p>{{ o_backup_restoreInstruction }}</p>
<p><strong>{{ o_backup_restoreInstructionMore }}</strong></p>
<textarea id="restore_text" cols="60" rows="10"></textarea>
<button id="restore_btn">{{ o_backup_restoreButton }}</button>
</fieldset>
<fieldset>
<legend>{{ o_backup_backupLegend }}</legend>
<p> {{ o_backup_backupInstruction }}</p>
<p> {{ o_backup_backupInstructionMore }}</p>
<textarea id="backup_text" cols="60" rows="10"></textarea>
</fieldset>
</div>
<div id="help">
<p>{{ o_help_syncStorage }}</p>
<p>{{ o_help_syncStorage_0 }}</p>
<p>{{ o_help_syncStorage_1 }}</p>
<p>{{ o_help_syncStorage_2 }}</p>
<div class="help_screenshot"><img src="img/help_screen.png"/></div>
<fieldset>
<legend>{{ o_help_tipsLegend }}</legend>
<ul>
<li>{{ o_help_quickAdd }}</li>
<li>{{ o_help_showLinks }}</li>
<li>{{ o_help_inNewWindow }}</li>
<li>{{ o_help_editGroup }}</li>
<li>{{ o_help_overFavicon }}</li>
<li>{{ o_help_settings }}</li>
</ul>
</fieldset>
</div>
<div id="about">
<dl>
<dt>Source Code:</dt>
<dd><a href="https://github.com/onikienko/TabHamster">GitHub</a></dd>
</dl>
<hr>
Spanish translation by <a href="https://github.com/martinib77">Martin Irigaray</a>
<br>
Hungarian translation by <a href="https://github.com/Med1on">Zoltan Mihics</a>
<br>
French translation by <a href="https://github.com/Dexyne">Aurélien Léger</a>
<br>
Serbian translation by <strong>Sijera</strong>
<hr/>
Thanks to: <a href="https://github.com/richarson">Ricardo J. Barberis</a>
<hr/>
<p>'Pin' icon by <a href="https://icons8.com/">icon8.com</a></p>
</div>
</div>
</section>
<footer>
<p class="copyright">
<span id="ua_flag"> </span>
</p>
</footer>
</div>
<script src="js/helpers/localizer.js"></script>
<script src="lib/jsTabs/tabs.js"></script>
<script src="js/storage.js"></script>
<script src="js/helpers/quick_options.js"></script>
<!--<script src="lib/jquery.min.js"></script>-->
<script src="js/backup.js"></script>
<script src="js/options.js"></script>
</body>
</html>