Use "heading" consistently on the UI
This commit is contained in:
@@ -1011,10 +1011,10 @@ class _StatsWidget(QWidget):
|
||||
|
||||
self.leftForm = QFormLayout()
|
||||
self.leftForm.addRow(self.tr("Words"), self.maxTotalWords)
|
||||
self.leftForm.addRow(self.tr("Header Words"), self.maxHeaderWords)
|
||||
self.leftForm.addRow(self.tr("Heading Words"), self.maxHeaderWords)
|
||||
self.leftForm.addRow(self.tr("Body Text Words"), self.maxTextWords)
|
||||
self.leftForm.addRow("", QLabel(self))
|
||||
self.leftForm.addRow(self.tr("Headers"), self.maxTitleCount)
|
||||
self.leftForm.addRow(self.tr("Headings"), self.maxTitleCount)
|
||||
self.leftForm.addRow(self.tr("Paragraphs"), self.maxParCount)
|
||||
self.leftForm.setHorizontalSpacing(hPx)
|
||||
self.leftForm.setVerticalSpacing(vPx)
|
||||
@@ -1038,10 +1038,10 @@ class _StatsWidget(QWidget):
|
||||
|
||||
self.rightForm = QFormLayout()
|
||||
self.rightForm.addRow(self.tr("Characters"), self.maxTotalChars)
|
||||
self.rightForm.addRow(self.tr("Header Characters"), self.maxHeaderChars)
|
||||
self.rightForm.addRow(self.tr("Heading Characters"), self.maxHeaderChars)
|
||||
self.rightForm.addRow(self.tr("Body Text Characters"), self.maxTextChars)
|
||||
self.rightForm.addRow(self.tr("Characters, No Spaces"), self.maxTotalWordChars)
|
||||
self.rightForm.addRow(self.tr("Header Characters, No Spaces"), self.maxHeaderWordChars)
|
||||
self.rightForm.addRow(self.tr("Heading Characters, No Spaces"), self.maxHeaderWordChars)
|
||||
self.rightForm.addRow(self.tr("Body Text Characters, No Spaces"), self.maxTextWordChars)
|
||||
self.rightForm.setHorizontalSpacing(hPx)
|
||||
self.rightForm.setVerticalSpacing(vPx)
|
||||
|
||||
Reference in New Issue
Block a user