diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-07-15 22:39:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 22:39:33 -0400 |
commit | 41fc76d6fd6af9a880ac8b75e7b03afd1395780a (patch) | |
tree | 902d1d44e83123fdc2fc4eefda9923c9ac500aac /test/data/dictionaries | |
parent | 25d74140ce9843b4bcb86b1b2bbf644602cdb3d0 (diff) |
Devoice and nasal pronunciation info (#1832)
* Update schema to support information about nasal and devoiced mora
* Expose nasalPositions and devoicePositions in dictionary entry data
* Expose nasalPositions, devoicePositions in grouped pitch info
* Update display generator
* Update test dictionary data
* Update test data
Diffstat (limited to 'test/data/dictionaries')
-rw-r--r-- | test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json b/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json index 829f5eeb..faa1d216 100644 --- a/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json +++ b/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json @@ -41,5 +41,35 @@ {"position": 0, "tags": ["P2"]} ] } + ], + [ + "番号", + "pitch", + { + "reading": "ばんごう", + "pitches": [ + {"position": 3, "nasal": 3} + ] + } + ], + [ + "中腰", + "pitch", + { + "reading": "ちゅうごし", + "pitches": [ + {"position": 0, "nasal": 3} + ] + } + ], + [ + "土木工事", + "pitch", + { + "reading": "どぼくこうじ", + "pitches": [ + {"position": 4, "devoice": 3} + ] + } ] ]
\ No newline at end of file |