diff --git a/src/constants.js b/src/constants.js index 516e246..84d6cf8 100644 --- a/src/constants.js +++ b/src/constants.js @@ -5,7 +5,7 @@ export const DEFAULT_DICTIONARY = { name: 'New', specification: 'Dictionary', description: 'A new dictionary.', - partsOfSpeech: ['Noun', 'Adjective', 'Verb'], + partsOfSpeech: ['Noun', 'Adjective', 'Verb', 'Adverb', 'Preposition', 'Pronoun', 'Conjunction'], alphabeticalOrder: [], details: { phonology: { diff --git a/src/php/api/Dictionary.php b/src/php/api/Dictionary.php index 18b7ecc..3375158 100644 --- a/src/php/api/Dictionary.php +++ b/src/php/api/Dictionary.php @@ -11,7 +11,7 @@ class Dictionary { $this->token = new Token(); $this->defaults = array( - 'partsOfSpeech' => 'Noun,Adjective,Verb', + 'partsOfSpeech' => 'Noun,Adjective,Verb,Adverb,Preposition,Pronoun,Conjunction', ); }