Update US English and Norwegian translations (#870)

* Fix typo in main menu
* Add missing source file to translation list
* Update en_US translation
* Update nb_NO translation
This commit is contained in:
Veronica Berglyd Olsen
2021-08-26 18:46:55 +02:00
committed by GitHub
parent 1fb9648c6c
commit cdc9ab4ad6
4 changed files with 2315 additions and 2076 deletions
+1156 -1037
View File
File diff suppressed because it is too large Load Diff
+1156 -1037
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -9,6 +9,7 @@ SOURCES += \
novelwriter/dialogs/preferences.py \
novelwriter/dialogs/projload.py \
novelwriter/dialogs/projsettings.py \
novelwriter/dialogs/updates.py \
novelwriter/dialogs/wordlist.py \
novelwriter/gui/custom.py \
novelwriter/gui/doceditor.py \
+2 -2
View File
@@ -732,13 +732,13 @@ class GuiMainMenu(QMenuBar):
# Insert > Vertical Space (Single)
self.aInsVSpaceS = QAction(self.tr("Vertical Space (Single)"), self)
self.aInsVSpaceS.setStatusTip(self.tr("Insert a vertical space equal to one pragraph"))
self.aInsVSpaceS.setStatusTip(self.tr("Insert a vertical space equal to one paragraph"))
self.aInsVSpaceS.triggered.connect(lambda: self._docInsert(nwDocInsert.VSPACE_S))
self.mInsBreaks.addAction(self.aInsVSpaceS)
# Insert > Vertical Space (Multi)
self.aInsVSpaceM = QAction(self.tr("Vertical Space (Multi)"), self)
self.aInsVSpaceM.setStatusTip(self.tr("Insert a vertical space equal to n pragraphs"))
self.aInsVSpaceM.setStatusTip(self.tr("Insert a vertical space equal to n paragraphs"))
self.aInsVSpaceM.triggered.connect(lambda: self._docInsert(nwDocInsert.VSPACE_M))
self.mInsBreaks.addAction(self.aInsVSpaceM)