Make default dictionary details blank

This commit is contained in:
Robbie Antenesse 2017-08-20 23:42:44 -06:00
parent 09df4e8047
commit 1a74058115
1 changed files with 10 additions and 10 deletions

View File

@ -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 {