aboutsummaryrefslogtreecommitdiff
path: root/ext/js/data
diff options
context:
space:
mode:
authorstarxeras <starxeras@gmail.com>2023-11-10 19:48:27 -0600
committerstarxeras <starxeras@gmail.com>2023-11-10 19:48:27 -0600
commitc4134168be8bf8df4e7ba4860e3d99b3c2256734 (patch)
treed397833c6d7aca11b9fa452d80f0c61089f59b64 /ext/js/data
parentdae82459073c18c903c0bb54c578476ed83dbfd8 (diff)
`yomichan` -> `yomitan`
Diffstat (limited to 'ext/js/data')
-rw-r--r--ext/js/data/anki-note-builder.js6
-rw-r--r--ext/js/data/options-util.js2
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/js/data/anki-note-builder.js b/ext/js/data/anki-note-builder.js
index 7fbbf03c..398036c0 100644
--- a/ext/js/data/anki-note-builder.js
+++ b/ext/js/data/anki-note-builder.js
@@ -18,7 +18,7 @@
import {deferPromise, deserializeError} from '../core.js';
import {TemplateRendererProxy} from '../templates/template-renderer-proxy.js';
-import {yomichan} from '../yomichan.js';
+import {yomitan} from '../yomitan.js';
import {AnkiUtil} from './anki-util.js';
export class AnkiNoteBuilder {
@@ -345,7 +345,7 @@ export class AnkiNoteBuilder {
// Inject media
const selectionText = injectSelectionText ? this._getSelectionText() : null;
- const injectedMedia = await yomichan.api.injectAnkiNoteMedia(
+ const injectedMedia = await yomitan.api.injectAnkiNoteMedia(
timestamp,
dictionaryEntryDetails,
audioDetails,
@@ -386,7 +386,7 @@ export class AnkiNoteBuilder {
async _getTextFurigana(entries, optionsContext, scanLength) {
const results = [];
for (const {text, readingMode} of entries) {
- const parseResults = await yomichan.api.parseText(text, optionsContext, scanLength, true, false);
+ const parseResults = await yomitan.api.parseText(text, optionsContext, scanLength, true, false);
let data = null;
for (const {source, content} of parseResults) {
if (source !== 'scanning-parser') { continue; }
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js
index 42e31b5f..3858cb55 100644
--- a/ext/js/data/options-util.js
+++ b/ext/js/data/options-util.js
@@ -330,7 +330,7 @@ export class OptionsUtil {
anki: {
enable: false,
server: 'http://127.0.0.1:8765',
- tags: ['yomichan'],
+ tags: ['yomitan'],
sentenceExt: 200,
screenshot: {format: 'png', quality: 92},
terms: {deck: '', model: '', fields: {}},