Make default dictionary details blank
This commit is contained in:
parent
09df4e8047
commit
1a74058115
|
@ -8,23 +8,24 @@ const defaultDictionary = {
|
||||||
specification: 'Dictionary',
|
specification: 'Dictionary',
|
||||||
description: 'A new dictionary.',
|
description: 'A new dictionary.',
|
||||||
partsOfSpeech: ['Noun', 'Adjective', 'Verb'],
|
partsOfSpeech: ['Noun', 'Adjective', 'Verb'],
|
||||||
|
alphabeticalOrder: [],
|
||||||
details: {
|
details: {
|
||||||
phonology: {
|
phonology: {
|
||||||
consonants: ['b', 'p', 'ɱ', 'ʃ', 'ʁ'],
|
consonants: [],
|
||||||
vowels: ['a', 'o', 'e'],
|
vowels: [],
|
||||||
blends: ['ae', 'oe', 'ɱʃ', 'pʁ'],
|
blends: [],
|
||||||
phonotactics: {
|
phonotactics: {
|
||||||
onset: ['none'],
|
onset: [],
|
||||||
nucleus: ['vowels'],
|
nucleus: [],
|
||||||
coda: ['any'],
|
coda: [],
|
||||||
exceptions: `You can enter exceptions to your phonotactics here using [Markdown](MARKDOWN_LINK)!`,
|
exceptions: '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
orthography: {
|
orthography: {
|
||||||
notes: `You can enter notes on orthography here using [Markdown](MARKDOWN_LINK)!`
|
notes: '',
|
||||||
},
|
},
|
||||||
grammar: {
|
grammar: {
|
||||||
content: `You can enter grammar rules about your language here using [Markdown](MARKDOWN_LINK)!`,
|
content: '',
|
||||||
},
|
},
|
||||||
custom: [
|
custom: [
|
||||||
{
|
{
|
||||||
|
@ -33,7 +34,6 @@ const defaultDictionary = {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
alphabeticalOrder: ['b', 'p', 't', 'd', 'a', 'o', 'j', 'e'],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class DictionaryData {
|
class DictionaryData {
|
||||||
|
|
Loading…
Reference in New Issue