From 81390468b95e786e2aabb41ddcbdd91ab9b345c3 Mon Sep 17 00:00:00 2001 From: Kuuuube <61125188+Kuuuube@users.noreply.github.com> Date: Sun, 12 May 2024 22:16:02 -0400 Subject: Add glossary-first handlebars (#921) * Add glossary-first handlebars * Add docs * Fix missing /if * Write handlebars test data --- docs/anki-integration.md | 3 + .../anki-field-templates-upgrade-v35.handlebars | 33 +++ .../default-anki-field-templates.handlebars | 24 ++ ext/js/data/anki-template-util.js | 3 + ext/js/data/options-util.js | 11 +- ext/settings.html | 12 + test/data/anki-note-builder-test-results.json | 297 +++++++++++++++++++++ test/options-util.test.js | 2 +- 8 files changed, 383 insertions(+), 2 deletions(-) create mode 100644 ext/data/templates/anki-field-templates-upgrade-v35.handlebars diff --git a/docs/anki-integration.md b/docs/anki-integration.md index 35ef6330..f12c1268 100644 --- a/docs/anki-integration.md +++ b/docs/anki-integration.md @@ -47,6 +47,9 @@ Flashcard fields can be configured with the following steps: | `{glossary}` | List of definitions for the term (output format depends on whether running in _grouped_ mode). | | `{glossary-brief}` | List of definitions for the term in a more compact format. | | `{glossary-no-dictionary}` | List of definitions for the term, except the dictionary tag is omitted. | + | `{glossary-first}` | First definition for the term (output format depends on whether running in _grouped_ mode). | + | `{glossary-first-brief}` | First definition for the term in a more compact format. | + | `{glossary-first-no-dictionary}` | First definition for the term, except the dictionary tag is omitted. | | `{part-of-speech}` | Part of speech information for the term. | | `{phonetic-transcriptions}` | List of phonetic transcriptions for the term. | | `{pitch-accents}` | List of pitch accent downstep notations for the term. | diff --git a/ext/data/templates/anki-field-templates-upgrade-v35.handlebars b/ext/data/templates/anki-field-templates-upgrade-v35.handlebars new file mode 100644 index 00000000..e71efcf8 --- /dev/null +++ b/ext/data/templates/anki-field-templates-upgrade-v35.handlebars @@ -0,0 +1,33 @@ +{{<<<<<<<}} +{{#*inline "glossary-brief"}} + {{~> glossary brief=true ~}} +{{/inline}} +{{=======}} +{{#*inline "glossary-brief"}} + {{~> glossary brief=true ~}} +{{/inline}} + +{{~#*inline "glossary-first"~}} +
+ {{~#scope~}} + {{~#if (op "===" definition.type "term")~}} + {{~> glossary-single definition brief=brief noDictionaryTag=noDictionaryTag ~}} + {{~else if (op "||" (op "===" definition.type "termGrouped") (op "===" definition.type "termMerged"))~}} + {{~#if (op ">" definition.definitions.length 1)~}} + {{~#with definition.definitions.[0]~}}{{~> glossary-single . brief=../brief noDictionaryTag=../noDictionaryTag ~}}{{~/with~}} + {{~else~}} + {{~#with definition.definitions.[0]~}}{{~> glossary-single . brief=../brief noDictionaryTag=../noDictionaryTag ~}}{{~/with~}} + {{~/if~}} + {{~/if~}} + {{~/scope~}} +
+{{~/inline~}} + +{{#*inline "glossary-first-no-dictionary"}} + {{~> glossary-first noDictionaryTag=true ~}} +{{/inline}} + +{{#*inline "glossary-first-brief"}} + {{~> glossary-first brief=true ~}} +{{/inline}} +{{>>>>>>>}} \ No newline at end of file diff --git a/ext/data/templates/default-anki-field-templates.handlebars b/ext/data/templates/default-anki-field-templates.handlebars index 3f20f8ee..53dab1c1 100644 --- a/ext/data/templates/default-anki-field-templates.handlebars +++ b/ext/data/templates/default-anki-field-templates.handlebars @@ -141,6 +141,30 @@ {{~> glossary brief=true ~}} {{/inline}} +{{~#*inline "glossary-first"~}} +
+ {{~#scope~}} + {{~#if (op "===" definition.type "term")~}} + {{~> glossary-single definition brief=brief noDictionaryTag=noDictionaryTag ~}} + {{~else if (op "||" (op "===" definition.type "termGrouped") (op "===" definition.type "termMerged"))~}} + {{~#if (op ">" definition.definitions.length 1)~}} + {{~#with definition.definitions.[0]~}}{{~> glossary-single . brief=../brief noDictionaryTag=../noDictionaryTag ~}}{{~/with~}} + {{~else~}} + {{~#with definition.definitions.[0]~}}{{~> glossary-single . brief=../brief noDictionaryTag=../noDictionaryTag ~}}{{~/with~}} + {{~/if~}} + {{~/if~}} + {{~/scope~}} +
+{{~/inline~}} + +{{#*inline "glossary-first-no-dictionary"}} + {{~> glossary-first noDictionaryTag=true ~}} +{{/inline}} + +{{#*inline "glossary-first-brief"}} + {{~> glossary-first brief=true ~}} +{{/inline}} + {{#*inline "kunyomi"}} {{~#each definition.kunyomi}}{{.}}{{#unless @last}}, {{/unless}}{{/each~}} {{/inline}} diff --git a/ext/js/data/anki-template-util.js b/ext/js/data/anki-template-util.js index b9c5ba84..20170dae 100644 --- a/ext/js/data/anki-template-util.js +++ b/ext/js/data/anki-template-util.js @@ -46,6 +46,9 @@ export function getStandardFieldMarkers(type) { 'glossary', 'glossary-brief', 'glossary-no-dictionary', + 'glossary-first', + 'glossary-first-brief', + 'glossary-first-no-dictionary', 'part-of-speech', 'pitch-accents', 'pitch-accent-graphs', diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index ba404bc2..521b4c9b 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -541,7 +541,8 @@ export class OptionsUtil { this._updateVersion31, this._updateVersion32, this._updateVersion33, - this._updateVersion34 + this._updateVersion34, + this._updateVersion35 ]; /* eslint-enable @typescript-eslint/unbound-method */ if (typeof targetVersion === 'number' && targetVersion < result.length) { @@ -1277,6 +1278,14 @@ export class OptionsUtil { await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v34.handlebars'); } + /** + * - Added dynamic handlebars for first dictionary entry only. + * @type {import('options-util').UpdateFunction} + */ + async _updateVersion35(options) { + await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v35.handlebars'); + } + /** * @param {string} url diff --git a/ext/settings.html b/ext/settings.html index 252de038..8dfd6f51 100644 --- a/ext/settings.html +++ b/ext/settings.html @@ -2983,6 +2983,18 @@ {glossary-no-dictionary} List of definitions for the term, except the dictionary tag is omitted. + + {glossary} + First definition for the term. + + + {glossary-brief} + First definition for the term in a more compact format. + + + {glossary-no-dictionary} + First definition for the term, except the dictionary tag is omitted. + {part-of-speech} Part of speech information for the term. diff --git a/test/data/anki-note-builder-test-results.json b/test/data/anki-note-builder-test-results.json index 162be7fe..1d597b32 100644 --- a/test/data/anki-note-builder-test-results.json +++ b/test/data/anki-note-builder-test-results.json @@ -90,6 +90,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -128,6 +131,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -171,6 +177,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -209,6 +218,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -247,6 +259,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -285,6 +300,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -323,6 +341,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -361,6 +382,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -404,6 +428,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -442,6 +469,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -480,6 +510,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -518,6 +551,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -556,6 +592,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -594,6 +633,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -632,6 +674,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -670,6 +715,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -708,6 +756,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -746,6 +797,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -789,6 +843,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -832,6 +889,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -875,6 +935,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -913,6 +976,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -956,6 +1022,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -994,6 +1063,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1037,6 +1109,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1075,6 +1150,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1118,6 +1196,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1156,6 +1237,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1194,6 +1278,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1232,6 +1319,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1275,6 +1365,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1313,6 +1406,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1351,6 +1447,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1389,6 +1488,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1432,6 +1534,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1487,6 +1592,9 @@ "glossary": "
  1. (vt, Test Dictionary 2)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, Test Dictionary 2)
    • uchikomu definition 3
    • uchikomu definition 4
", "glossary-brief": "
    • uchikomu definition 1
    • uchikomu definition 2
    • uchikomu definition 3
    • uchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt)
    • uchikomu definition 3
    • uchikomu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1525,6 +1633,9 @@ "glossary": "
  1. (vt, Test Dictionary 2)
    • buchikomu definition 1
    • buchikomu definition 2
  2. (vt, Test Dictionary 2)
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-brief": "
    • buchikomu definition 1
    • buchikomu definition 2
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • buchikomu definition 1
    • buchikomu definition 2
  2. (vt)
    • buchikomu definition 3
    • buchikomu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1563,6 +1674,9 @@ "glossary": "
  1. (vt, Test Dictionary 2)
    • utsu definition 1
    • utsu definition 2
  2. (vt, Test Dictionary 2)
    • utsu definition 3
    • utsu definition 4
", "glossary-brief": "
    • utsu definition 1
    • utsu definition 2
    • utsu definition 3
    • utsu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • utsu definition 1
    • utsu definition 2
  2. (vt)
    • utsu definition 3
    • utsu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1601,6 +1715,9 @@ "glossary": "
  1. (vt, Test Dictionary 2)
    • butsu definition 1
    • butsu definition 2
  2. (vt, Test Dictionary 2)
    • butsu definition 3
    • butsu definition 4
", "glossary-brief": "
    • butsu definition 1
    • butsu definition 2
    • butsu definition 3
    • butsu definition 4
", "glossary-no-dictionary": "
  1. (vt)
    • butsu definition 1
    • butsu definition 2
  2. (vt)
    • butsu definition 3
    • butsu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1639,6 +1756,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1677,6 +1797,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1720,6 +1843,9 @@ "glossary": "
  1. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-brief": "
    • uchikomu definition 1
    • uchikomu definition 2
    • buchikomu definition 1
    • buchikomu definition 2
    • uchikomu definition 3
    • uchikomu definition 4
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2) (うちこむ only)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt) (うちこむ only)
", "part-of-speech": "Godan verb", "pitch-accents": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", "pitch-accent-graphs": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", @@ -1758,6 +1884,9 @@ "glossary": "
  1. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", "glossary-brief": "
    • utsu definition 1
    • utsu definition 2
    • butsu definition 1
    • butsu definition 2
    • utsu definition 3
    • utsu definition 4
    • butsu definition 3
    • butsu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2) (うつ only)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt) (うつ only)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1796,6 +1925,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1834,6 +1966,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -1877,6 +2012,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1915,6 +2053,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1953,6 +2094,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -1991,6 +2135,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2029,6 +2176,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2067,6 +2217,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2105,6 +2258,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2143,6 +2299,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2181,6 +2340,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2219,6 +2381,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2262,6 +2427,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2300,6 +2468,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2338,6 +2509,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2376,6 +2550,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2414,6 +2591,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2452,6 +2632,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2490,6 +2673,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2528,6 +2714,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2566,6 +2755,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2604,6 +2796,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2647,6 +2842,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2685,6 +2883,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2723,6 +2924,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2761,6 +2965,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -2799,6 +3006,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2837,6 +3047,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2875,6 +3088,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2913,6 +3129,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2951,6 +3170,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -2989,6 +3211,9 @@ "glossary": "
(abbr, n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(abbr, n)
", + "glossary-first": "
(abbr, n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(abbr, n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3032,6 +3257,9 @@ "glossary": "
(vt, Test Dictionary 2) to read
", "glossary-brief": "
to read
", "glossary-no-dictionary": "
(vt) to read
", + "glossary-first": "
(vt, Test Dictionary 2) to read
", + "glossary-first-brief": "
to read
", + "glossary-first-no-dictionary": "
(vt) to read
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3075,6 +3303,9 @@ "glossary": "
(n, Test Dictionary 2) strong point
", "glossary-brief": "
strong point
", "glossary-no-dictionary": "
(n) strong point
", + "glossary-first": "
(n, Test Dictionary 2) strong point
", + "glossary-first-brief": "
strong point
", + "glossary-first-no-dictionary": "
(n) strong point
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3118,6 +3349,9 @@ "glossary": "
(vt, Test Dictionary 2) to read
", "glossary-brief": "
to read
", "glossary-no-dictionary": "
(vt) to read
", + "glossary-first": "
(vt, Test Dictionary 2) to read
", + "glossary-first-brief": "
to read
", + "glossary-first-no-dictionary": "
(vt) to read
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3161,6 +3395,9 @@ "glossary": "
  1. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt, Test Dictionary 2) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt, Test Dictionary 2) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-brief": "
    • uchikomu definition 1
    • uchikomu definition 2
    • buchikomu definition 1
    • buchikomu definition 2
    • uchikomu definition 3
    • uchikomu definition 4
    • buchikomu definition 3
    • buchikomu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うちこむ only)
    • uchikomu definition 1
    • uchikomu definition 2
  2. (vt) (ぶちこむ only)
    • buchikomu definition 1
    • buchikomu definition 2
  3. (vt) (うちこむ only)
    • uchikomu definition 3
    • uchikomu definition 4
  4. (vt) (ぶちこむ only)
    • buchikomu definition 3
    • buchikomu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2) (うちこむ only)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt) (うちこむ only)
", "part-of-speech": "Godan verb", "pitch-accents": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", "pitch-accent-graphs": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", @@ -3199,6 +3436,9 @@ "glossary": "
  1. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt, Test Dictionary 2) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt, Test Dictionary 2) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", "glossary-brief": "
    • utsu definition 1
    • utsu definition 2
    • butsu definition 1
    • butsu definition 2
    • utsu definition 3
    • utsu definition 4
    • butsu definition 3
    • butsu definition 4
", "glossary-no-dictionary": "
  1. (vt) (うつ only)
    • utsu definition 1
    • utsu definition 2
  2. (vt) (ぶつ only)
    • butsu definition 1
    • butsu definition 2
  3. (vt) (うつ only)
    • utsu definition 3
    • utsu definition 4
  4. (vt) (ぶつ only)
    • butsu definition 3
    • butsu definition 4
", + "glossary-first": "
(vt, Test Dictionary 2) (うつ only)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt) (うつ only)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3242,6 +3482,9 @@ "glossary": "
(n, Test Dictionary 2) otemae definition
", "glossary-brief": "
otemae definition
", "glossary-no-dictionary": "
(n) otemae definition
", + "glossary-first": "
(n, Test Dictionary 2) otemae definition
", + "glossary-first-brief": "
otemae definition
", + "glossary-first-no-dictionary": "
(n) otemae definition
", "part-of-speech": "Noun", "pitch-accents": "
", "pitch-accent-graphs": "
", @@ -3285,6 +3528,9 @@ "glossary": "
(n, Test Dictionary 2) bangou definition
", "glossary-brief": "
bangou definition
", "glossary-no-dictionary": "
(n) bangou definition
", + "glossary-first": "
(n, Test Dictionary 2) bangou definition
", + "glossary-first-brief": "
bangou definition
", + "glossary-first-no-dictionary": "
(n) bangou definition
", "part-of-speech": "Noun", "pitch-accents": "", "pitch-accent-graphs": "", @@ -3328,6 +3574,9 @@ "glossary": "
(n, Test Dictionary 2) chuugoshi definition
", "glossary-brief": "
chuugoshi definition
", "glossary-no-dictionary": "
(n) chuugoshi definition
", + "glossary-first": "
(n, Test Dictionary 2) chuugoshi definition
", + "glossary-first-brief": "
chuugoshi definition
", + "glossary-first-no-dictionary": "
(n) chuugoshi definition
", "part-of-speech": "Noun", "pitch-accents": "", "pitch-accent-graphs": "", @@ -3371,6 +3620,9 @@ "glossary": "
(n, Test Dictionary 2) shogyouu definition
", "glossary-brief": "
shogyouu definition
", "glossary-no-dictionary": "
(n) shogyouu definition
", + "glossary-first": "
(n, Test Dictionary 2) shogyouu definition
", + "glossary-first-brief": "
shogyouu definition
", + "glossary-first-no-dictionary": "
(n) shogyouu definition
", "part-of-speech": "Noun", "pitch-accents": "", "pitch-accent-graphs": "", @@ -3414,6 +3666,9 @@ "glossary": "
(n, Test Dictionary 2) dobokukouji definition
", "glossary-brief": "
dobokukouji definition
", "glossary-no-dictionary": "
(n) dobokukouji definition
", + "glossary-first": "
(n, Test Dictionary 2) dobokukouji definition
", + "glossary-first-brief": "
dobokukouji definition
", + "glossary-first-no-dictionary": "
(n) dobokukouji definition
", "part-of-speech": "Noun", "pitch-accents": "", "pitch-accent-graphs": "", @@ -3457,6 +3712,9 @@ "glossary": "
(adj-na, n, Test Dictionary 2) suki definition
", "glossary-brief": "
suki definition
", "glossary-no-dictionary": "
(adj-na, n) suki definition
", + "glossary-first": "
(adj-na, n, Test Dictionary 2) suki definition
", + "glossary-first-brief": "
suki definition
", + "glossary-first-no-dictionary": "
(adj-na, n) suki definition
", "part-of-speech": "Unknown", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3500,6 +3758,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3543,6 +3804,9 @@ "glossary": "
(v5, Test Dictionary 2) notamau definition
", "glossary-brief": "
notamau definition
", "glossary-no-dictionary": "
(v5) notamau definition
", + "glossary-first": "
(v5, Test Dictionary 2) notamau definition
", + "glossary-first-brief": "
notamau definition
", + "glossary-first-no-dictionary": "
(v5) notamau definition
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3586,6 +3850,9 @@ "glossary": "
(Test Dictionary 2) sankyuu definition
", "glossary-brief": "
sankyuu definition
", "glossary-no-dictionary": "
sankyuu definition
", + "glossary-first": "
(Test Dictionary 2) sankyuu definition
", + "glossary-first-brief": "
sankyuu definition
", + "glossary-first-no-dictionary": "
sankyuu definition
", "part-of-speech": "Unknown", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3629,6 +3896,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3667,6 +3937,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3710,6 +3983,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3748,6 +4024,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3791,6 +4070,9 @@ "glossary": "
(n, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(n)
", + "glossary-first": "
(n, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(n)
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3834,6 +4116,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3872,6 +4157,9 @@ "glossary": "
(vt, Test Dictionary 2)
", "glossary-brief": "
", "glossary-no-dictionary": "
(vt)
", + "glossary-first": "
(vt, Test Dictionary 2)
", + "glossary-first-brief": "
", + "glossary-first-no-dictionary": "
(vt)
", "part-of-speech": "Godan verb", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3915,6 +4203,9 @@ "glossary": "
(adj-i, Test Dictionary 2) sugoi definition
", "glossary-brief": "
sugoi definition
", "glossary-no-dictionary": "
(adj-i) sugoi definition
", + "glossary-first": "
(adj-i, Test Dictionary 2) sugoi definition
", + "glossary-first-brief": "
sugoi definition
", + "glossary-first-no-dictionary": "
(adj-i) sugoi definition
", "part-of-speech": "I-adjective", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -3958,6 +4249,9 @@ "glossary": "
(n, Test Dictionary 2) English definition
", "glossary-brief": "
English definition
", "glossary-no-dictionary": "
(n) English definition
", + "glossary-first": "
(n, Test Dictionary 2) English definition
", + "glossary-first-brief": "
English definition
", + "glossary-first-no-dictionary": "
(n) English definition
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", @@ -4001,6 +4295,9 @@ "glossary": "
(n, Test Dictionary 2) language definition
", "glossary-brief": "
language definition
", "glossary-no-dictionary": "
(n) language definition
", + "glossary-first": "
(n, Test Dictionary 2) language definition
", + "glossary-first-brief": "
language definition
", + "glossary-first-no-dictionary": "
(n) language definition
", "part-of-speech": "Noun", "pitch-accents": "No pitch accent data", "pitch-accent-graphs": "No pitch accent data", diff --git a/test/options-util.test.js b/test/options-util.test.js index 8f4dc80e..8fb07263 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -605,7 +605,7 @@ function createOptionsUpdatedTestData1() { } ], profileCurrent: 0, - version: 34, + version: 35, global: { database: { prefixWildcardsSupported: false -- cgit v1.2.3