mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-05-03 08:43:19 +02:00
51 lines
No EOL
1 KiB
JavaScript
51 lines
No EOL
1 KiB
JavaScript
export const DEFAULT_DICTIONARY = {
|
|
name: 'New',
|
|
specification: 'Dictionary',
|
|
description: 'A new dictionary.',
|
|
partsOfSpeech: ['Noun', 'Adjective', 'Verb'],
|
|
alphabeticalOrder: [],
|
|
details: {
|
|
phonology: {
|
|
consonants: [],
|
|
vowels: [],
|
|
blends: [],
|
|
phonotactics: {
|
|
onset: [],
|
|
nucleus: [],
|
|
coda: [],
|
|
exceptions: '',
|
|
},
|
|
},
|
|
orthography: {
|
|
notes: '',
|
|
},
|
|
grammar: {
|
|
notes: '',
|
|
},
|
|
// custom: [
|
|
// // {
|
|
// // name: 'Example Tab',
|
|
// // content: `This is an _example_ tab to show how **tabs** work with [Markdown](${ MARKDOWN_LINK })!`,
|
|
// // }
|
|
// ],
|
|
},
|
|
words: [
|
|
/* {
|
|
name: '',
|
|
pronunciation: '',
|
|
partOfSpeech: '',
|
|
simpleDefinition: '',
|
|
longDefinition: '',
|
|
wordId: 0
|
|
}, */
|
|
],
|
|
settings: {
|
|
allowDuplicates: false,
|
|
caseSensitive: false,
|
|
sortByDefinition: false,
|
|
isComplete: false,
|
|
isPublic: false,
|
|
},
|
|
lastUpdated: null,
|
|
createdOn: 0,
|
|
}; |