From 75aabd983da29023b8423bd44d565202aad6b664 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Thu, 14 Oct 2021 21:26:53 -0400 Subject: String frequency support (#1989) * Restore support for string frequency values * Add support for {value, displayValue} frequencies * Update test data * Improve number parsing of string frequencies * Improve reading detection * Expose a displayValue property for frequency information * Update docs * Expose displayValue to Anki note data * Fix translator * Update display generation * Update test data * Update counts --- docs/interfaces/dictionary-entry.ts | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'docs/interfaces') diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index 253912d0..2609a42a 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -181,7 +181,15 @@ namespace Translation { /** * The frequency for the character, as a number of occurrences or an overall rank. */ - frequency: number | string; + frequency: number; + /** + * A display value to show to the user. + */ + displayValue: string | null; + /** + * Whether or not the displayValue string was parsed to determine the frequency value. + */ + displayValueParsed: boolean; } // Terms @@ -400,7 +408,15 @@ namespace Translation { /** * The frequency for the term, as a number of occurrences or an overall rank. */ - frequency: number | string; + frequency: number; + /** + * A display value to show to the user. + */ + displayValue: string | null; + /** + * Whether or not the displayValue string was parsed to determine the frequency value. + */ + displayValueParsed: boolean; } /** -- cgit v1.2.3