forked from Woundorf/foxreplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolbarbutton.html
56 lines (48 loc) · 2.03 KB
/
toolbarbutton.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
<!-- ***** BEGIN LICENSE BLOCK *****
-
- Copyright (C) 2019 Marc Ruiz Altisent. All rights reserved.
-
- This file is part of FoxReplace.
-
- FoxReplace is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software
- Foundation, either version 3 of the License, or (at your option) any later version.
-
- FoxReplace is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along with FoxReplace. If not, see <http://www.gnu.org/licenses/>.
-
- ***** END LICENSE BLOCK ***** -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../lib/fontawesome-free-5.9.0-web/css/all.css">
<link rel="stylesheet" href="toolbarbutton.css">
<script src="../scripts/storage.js"></script>
<script src="toolbarbutton.js"></script>
</head>
<body>
<div class="panel">
<div class="panel-section panel-section-list">
<div id="replace" class="panel-list-item">
<div class="text i18n">menu.replace</div>
<div id="replaceShortcut" class="text-shortcut"></div>
</div>
<div id="replaceWithList" class="panel-list-item">
<div class="text i18n">menu.replaceWithList</div>
<div id="replaceWithListShortcut" class="text-shortcut"></div>
</div>
<div id="autoReplaceOnLoad" class="panel-list-item">
<div class="icon">
<i id="autoReplaceOnLoadCheck" class="fas"></i>
</div>
<div class="text i18n">menu.autoReplaceOnLoad</div>
</div>
<div id="options" class="panel-list-item i18n">menu.options</div>
<div id="help" class="panel-list-item i18n">menu.help</div>
</div>
</div>
<script src="../scripts/i18n.js"></script>
</body>
</html>