-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
224 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
/** | ||
* ISO language code (ISO 639-1 where possible, ISO 639-3 otherwise). | ||
*/ | ||
export type IsoLanguageCode = | ||
| 'aa' | ||
| 'ab' | ||
| 'ae' | ||
| 'af' | ||
| 'ak' | ||
| 'am' | ||
| 'an' | ||
| 'ar' | ||
| 'as' | ||
| 'av' | ||
| 'ay' | ||
| 'az' | ||
| 'az' | ||
| 'ba' | ||
| 'be' | ||
| 'bg' | ||
| 'bh' | ||
| 'bi' | ||
| 'bm' | ||
| 'bn' | ||
| 'bo' | ||
| 'br' | ||
| 'bs' | ||
| 'ca' | ||
| 'ce' | ||
| 'ch' | ||
| 'co' | ||
| 'cr' | ||
| 'cs' | ||
| 'cu' | ||
| 'cv' | ||
| 'cy' | ||
| 'da' | ||
| 'de' | ||
| 'dv' | ||
| 'dz' | ||
| 'ee' | ||
| 'el' | ||
| 'en' | ||
| 'eo' | ||
| 'es' | ||
| 'et' | ||
| 'eu' | ||
| 'fa' | ||
| 'ff' | ||
| 'fi' | ||
| 'fj' | ||
| 'fo' | ||
| 'fr' | ||
| 'fy' | ||
| 'ga' | ||
| 'gd' | ||
| 'gl' | ||
| 'gn' | ||
| 'grc' | ||
| 'gu' | ||
| 'gv' | ||
| 'ha' | ||
| 'he' | ||
| 'hi' | ||
| 'ho' | ||
| 'hr' | ||
| 'ht' | ||
| 'hu' | ||
| 'hy' | ||
| 'hz' | ||
| 'ia' | ||
| 'id' | ||
| 'ie' | ||
| 'ig' | ||
| 'ii' | ||
| 'ik' | ||
| 'io' | ||
| 'is' | ||
| 'it' | ||
| 'iu' | ||
| 'ja' | ||
| 'jv' | ||
| 'ka' | ||
| 'kg' | ||
| 'ki' | ||
| 'kj' | ||
| 'kk' | ||
| 'kl' | ||
| 'km' | ||
| 'kn' | ||
| 'ko' | ||
| 'kr' | ||
| 'ks' | ||
| 'ku' | ||
| 'kv' | ||
| 'kw' | ||
| 'ky' | ||
| 'la' | ||
| 'lb' | ||
| 'lg' | ||
| 'li' | ||
| 'ln' | ||
| 'lo' | ||
| 'lt' | ||
| 'lu' | ||
| 'lv' | ||
| 'mg' | ||
| 'mh' | ||
| 'mi' | ||
| 'mk' | ||
| 'ml' | ||
| 'mn' | ||
| 'mr' | ||
| 'ms' | ||
| 'mt' | ||
| 'my' | ||
| 'na' | ||
| 'nb' | ||
| 'nd' | ||
| 'ne' | ||
| 'ng' | ||
| 'nl' | ||
| 'nn' | ||
| 'no' | ||
| 'nr' | ||
| 'nv' | ||
| 'ny' | ||
| 'oc' | ||
| 'oj' | ||
| 'om' | ||
| 'or' | ||
| 'os' | ||
| 'pa' | ||
| 'pi' | ||
| 'pl' | ||
| 'ps' | ||
| 'pt' | ||
| 'qu' | ||
| 'rm' | ||
| 'rn' | ||
| 'ro' | ||
| 'ru' | ||
| 'rw' | ||
| 'sa' | ||
| 'sc' | ||
| 'sd' | ||
| 'se' | ||
| 'sg' | ||
| 'sh' | ||
| 'si' | ||
| 'sk' | ||
| 'sl' | ||
| 'sm' | ||
| 'sn' | ||
| 'so' | ||
| 'sq' | ||
| 'sr' | ||
| 'ss' | ||
| 'st' | ||
| 'su' | ||
| 'sv' | ||
| 'sw' | ||
| 'ta' | ||
| 'te' | ||
| 'tg' | ||
| 'th' | ||
| 'ti' | ||
| 'tk' | ||
| 'tl' | ||
| 'tn' | ||
| 'to' | ||
| 'tr' | ||
| 'ts' | ||
| 'tt' | ||
| 'tw' | ||
| 'ty' | ||
| 'ug' | ||
| 'uk' | ||
| 'ur' | ||
| 'uz' | ||
| 've' | ||
| 'vi' | ||
| 'vo' | ||
| 'wa' | ||
| 'wo' | ||
| 'xh' | ||
| 'yi' | ||
| 'yo' | ||
| 'za' | ||
| 'zh' | ||
| 'zu'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,41 @@ | ||
import { IsoLanguageCode } from '../IsoLanguageCode'; | ||
|
||
/** | ||
* Information about a single tag. | ||
*/ | ||
type TagInfo = { | ||
category?: string; | ||
order?: number; | ||
notes?: string; | ||
score?: number; | ||
}; | ||
|
||
/** | ||
* Represents the structure of a dictionary index file. | ||
*/ | ||
type DictionaryIndexType = { | ||
/** Title of the dictionary. */ | ||
title: string; | ||
/** Revision of the dictionary. This value is only used for displaying information. */ | ||
revision: string; | ||
/** Whether or not this dictionary contains sequencing information for related terms. */ | ||
sequenced?: boolean; | ||
/** Format of data found in the JSON data files. */ | ||
format?: 1 | 2 | 3; | ||
author: string; | ||
/** Creator of the dictionary. */ | ||
author?: string; | ||
/** URL for the source of the dictionary. */ | ||
url?: string; | ||
description: string; | ||
attribution: string; | ||
/** Description of the dictionary data. */ | ||
description?: string; | ||
/** Attribution information for the dictionary data. */ | ||
attribution?: string; | ||
/** Language of the terms in the dictionary. */ | ||
sourceLanguage?: IsoLanguageCode; | ||
/** Main language of the definitions in the dictionary. */ | ||
targetLanguage?: IsoLanguageCode; | ||
/** Frequency mode of the dictionary. */ | ||
frequencyMode?: 'occurrence-based' | 'rank-based'; | ||
}; | ||
|
||
export type { DictionaryIndexType }; | ||
export type { DictionaryIndexType, IsoLanguageCode, TagInfo }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters