added a page to be worked on to manage the tag info. see #183
This commit is contained in:
parent
640fa4b4c0
commit
f4a7c97098
4 changed files with 44 additions and 0 deletions
|
|
@ -786,5 +786,13 @@
|
||||||
"prefs_OptionText_add_tags_hide_exclusions_Info": {
|
"prefs_OptionText_add_tags_hide_exclusions_Info": {
|
||||||
"message": "If checked, the tags that are present in the exclusion list will be hidden in the dialog.",
|
"message": "If checked, the tags that are present in the exclusion list will be hidden in the dialog.",
|
||||||
"description": ""
|
"description": ""
|
||||||
|
},
|
||||||
|
"prefs_OptionText_btnManageTagsInfo": {
|
||||||
|
"message": "Manage tags info",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"AddTags_PageTitle": {
|
||||||
|
"message": "Manage Tags Info",
|
||||||
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
0
addtags/mzta-add-tags.css
Normal file
0
addtags/mzta-add-tags.css
Normal file
14
addtags/mzta-add-tags.html
Normal file
14
addtags/mzta-add-tags.html
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>ThunderAI - __MSG_AddTags_PageTitle__</title>
|
||||||
|
<link rel="stylesheet" href="mzta-add-tags.css">
|
||||||
|
<link rel="icon" href="../images/icon-16px.png">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
TEST
|
||||||
|
<script src="mzta-add-tags.js" type="module"></script>
|
||||||
|
<script src="../js/mzta-i18n.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
22
addtags/mzta-add-tags.js
Normal file
22
addtags/mzta-add-tags.js
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
/*
|
||||||
|
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
|
||||||
|
* Copyright (C) 2024 Mic (m@micz.it)
|
||||||
|
|
||||||
|
* This program 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.
|
||||||
|
|
||||||
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', async () => {
|
||||||
|
i18n.updateDocument();
|
||||||
|
});
|
||||||
Loading…
Reference in a new issue