From 41fc76d6fd6af9a880ac8b75e7b03afd1395780a Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Thu, 15 Jul 2021 22:39:33 -0400 Subject: 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 --- .../valid-dictionary1/term_meta_bank_1.json | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'test/data/dictionaries/valid-dictionary1') 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 -- cgit v1.2.3