Fix a bunch of missing translation tags and fix a few default strings

This commit is contained in:
Veronica K. B. Olsen
2021-02-17 01:37:28 +01:00
parent 7f84c3c71c
commit 1f0e6c0426
11 changed files with 15 additions and 14 deletions
+2 -2
View File
@@ -1060,7 +1060,7 @@ class Config:
try:
import enchant # noqa: F401
self.hasEnchant = True
logger.debug("Checking package 'pyenchant': Ok")
logger.debug("Checking package 'pyenchant': OK")
except Exception:
self.hasEnchant = False
logger.debug("Checking package 'pyenchant': Missing")
@@ -1068,7 +1068,7 @@ class Config:
assistPath = shutil.which("assistant")
self.hasAssistant = assistPath is not None
if self.hasAssistant:
logger.debug("Checking executable 'assistant': Ok")
logger.debug("Checking executable 'assistant': OK")
else:
logger.debug("Checking executable 'assistant': Missing")