From 1a740581150d7f67666356b8fcfbae6c838329a3 Mon Sep 17 00:00:00 2001 From: Robbie Antenesse Date: Sun, 20 Aug 2017 23:42:44 -0600 Subject: [PATCH] Make default dictionary details blank --- src/managers/DictionaryData.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/managers/DictionaryData.js b/src/managers/DictionaryData.js index 35e2544..3ee4924 100644 --- a/src/managers/DictionaryData.js +++ b/src/managers/DictionaryData.js @@ -8,23 +8,24 @@ const defaultDictionary = { specification: 'Dictionary', description: 'A new dictionary.', partsOfSpeech: ['Noun', 'Adjective', 'Verb'], + alphabeticalOrder: [], details: { phonology: { - consonants: ['b', 'p', 'ɱ', 'ʃ', 'ʁ'], - vowels: ['a', 'o', 'e'], - blends: ['ae', 'oe', 'ɱʃ', 'pʁ'], + consonants: [], + vowels: [], + blends: [], phonotactics: { - onset: ['none'], - nucleus: ['vowels'], - coda: ['any'], - exceptions: `You can enter exceptions to your phonotactics here using [Markdown](MARKDOWN_LINK)!`, + onset: [], + nucleus: [], + coda: [], + exceptions: '', }, }, orthography: { - notes: `You can enter notes on orthography here using [Markdown](MARKDOWN_LINK)!` + notes: '', }, grammar: { - content: `You can enter grammar rules about your language here using [Markdown](MARKDOWN_LINK)!`, + content: '', }, custom: [ { @@ -33,7 +34,6 @@ const defaultDictionary = { } ], }, - alphabeticalOrder: ['b', 'p', 't', 'd', 'a', 'o', 'j', 'e'], }; class DictionaryData {