typo fixed

This commit is contained in:
Mic 2026-04-17 02:01:00 +02:00
parent 1ac16ed4c2
commit 4704a884a1
4 changed files with 3 additions and 3 deletions

View file

@ -171,7 +171,7 @@ taTranslationStore.saveTranslation()
| `js/mzta-summarystore.js` | Summary-specific storage wrapper (`taSummaryStore` class) with caching, truncation, and processing-state tracking | | `js/mzta-summarystore.js` | Summary-specific storage wrapper (`taSummaryStore` class) with caching, truncation, and processing-state tracking |
| `js/mzta-translationstore.js` | Translation-specific storage wrapper (`taTranslationStore` class) with caching, truncation, and processing-state tracking | | `js/mzta-translationstore.js` | Translation-specific storage wrapper (`taTranslationStore` class) with caching, truncation, and processing-state tracking |
| `js/mzta-working-status.js` | Visual status indicator during AI processing | | `js/mzta-working-status.js` | Visual status indicator during AI processing |
| `js/mzta-addatags-exclusion-list.js` | Tag exclusion list management | | `js/mzta-addtags-exclusion-list.js` | Tag exclusion list management |
| `js/mzta-placeholders-autocomplete.js` | Autocomplete for placeholders in prompt editor | | `js/mzta-placeholders-autocomplete.js` | Autocomplete for placeholders in prompt editor |
## API Modules (`js/api/`) ## API Modules (`js/api/`)

View file

@ -580,7 +580,7 @@ switch (message.command) {
case "getTags": case "getTags":
// console.log(">>>>>>>>>>>>>> getTags: " + JSON.stringify(message.tags)); // console.log(">>>>>>>>>>>>>> getTags: " + JSON.stringify(message.tags));
// ===== These methods are also defined in the file /js/mzta-addatags-exclusion-list.js // ===== These methods are also defined in the file /js/mzta-addtags-exclusion-list.js
async function addTags_getExclusionList() { async function addTags_getExclusionList() {
let prefs_excluded_tags = await browser.storage.local.get({add_tags_exclusions: []}); let prefs_excluded_tags = await browser.storage.local.get({add_tags_exclusions: []});
// console.log(">>>>>>>>>>>>>>> addTags_getExclusionList prefs_excluded_tags: " + JSON.stringify(prefs_excluded_tags)); // console.log(">>>>>>>>>>>>>>> addTags_getExclusionList prefs_excluded_tags: " + JSON.stringify(prefs_excluded_tags));

View file

@ -30,7 +30,7 @@ import { textareaAutocomplete } from "../../js/mzta-placeholders-autocomplete.js
import { import {
addTags_getExclusionList, addTags_getExclusionList,
addTags_setExclusionList addTags_setExclusionList
} from "../../js/mzta-addatags-exclusion-list.js"; } from "../../js/mzta-addtags-exclusion-list.js";
import { import {
getAccountsList, getAccountsList,
normalizeStringList, normalizeStringList,