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 --- docs/interfaces/dictionary-entry.ts | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'docs/interfaces') diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index d170f6df..253912d0 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -354,6 +354,14 @@ namespace Translation { * Position of the downstep, as a number of mora. */ position: number; + /** + * Positions of moras that have a . + */ + nasalPositions: number[]; + /** + * Position of the downstep, as a number of mora. + */ + devoicePositions: []; /** * Tags for the pitch accent. */ -- cgit v1.2.3