Return original default parts of speech to avoid confusion
This commit is contained in:
parent
6fed4dd4fb
commit
8f864fda67
|
@ -5,7 +5,7 @@ export const DEFAULT_DICTIONARY = {
|
||||||
name: 'New',
|
name: 'New',
|
||||||
specification: 'Dictionary',
|
specification: 'Dictionary',
|
||||||
description: 'A new dictionary.',
|
description: 'A new dictionary.',
|
||||||
partsOfSpeech: ['Noun', 'Adjective', 'Verb'],
|
partsOfSpeech: ['Noun', 'Adjective', 'Verb', 'Adverb', 'Preposition', 'Pronoun', 'Conjunction'],
|
||||||
alphabeticalOrder: [],
|
alphabeticalOrder: [],
|
||||||
details: {
|
details: {
|
||||||
phonology: {
|
phonology: {
|
||||||
|
|
|
@ -11,7 +11,7 @@ class Dictionary {
|
||||||
$this->token = new Token();
|
$this->token = new Token();
|
||||||
|
|
||||||
$this->defaults = array(
|
$this->defaults = array(
|
||||||
'partsOfSpeech' => 'Noun,Adjective,Verb',
|
'partsOfSpeech' => 'Noun,Adjective,Verb,Adverb,Preposition,Pronoun,Conjunction',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue