Revert "Minor grammar fixes"

This reverts commit 2fdf8c64bf.

The problem introduced by the commit is that the Editor pane would
incorrectly label book elements with the plural form of a word.  For
example "Books 4", "Sections 2", "Chapters 1", or "Scenes 3".  Hence
the need to undo the commit.

Closes issue #383.
This commit is contained in:
Curtis Gedak 2018-09-20 14:33:43 -06:00
parent 5f8168fb37
commit 21423734e9

View file

@ -200,29 +200,29 @@ class welcome(QWidget, Ui_welcome):
return [
(self.tr("Empty fiction"), [], "Fiction"),
(self.tr("Novel"), [
(20, self.tr("Chapters")),
(5, self.tr("Scenes")),
(20, self.tr("Chapter")),
(5, self.tr("Scene")),
(500, None) # A line with None is word count
], "Fiction"),
(self.tr("Novella"), [
(10, self.tr("Chapters")),
(5, self.tr("Scenes")),
(10, self.tr("Chapter")),
(5, self.tr("Scene")),
(500, None)
], "Fiction"),
(self.tr("Short Story"), [
(10, self.tr("Scenes")),
(10, self.tr("Scene")),
(1000, None)
], "Fiction"),
(self.tr("Trilogy"), [
(3, self.tr("Books")),
(3, self.tr("Sections")),
(10, self.tr("Chapters")),
(5, self.tr("Scenes")),
(3, self.tr("Book")),
(3, self.tr("Section")),
(10, self.tr("Chapter")),
(5, self.tr("Scene")),
(500, None)
], "Fiction"),
(self.tr("Empty non-fiction"), [], "Non-fiction"),
(self.tr("Research paper"), [
(3, self.tr("Sections")),
(3, self.tr("Section")),
(1000, None)
], "Non-fiction")
]