about summary refs log tree commit diff
path: root/kindlecomicconverter/KCC_gui.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@iosphe.re>2017-08-20 18:04:04 +0200
committerPaweł Jastrzębski <pawelj@iosphe.re>2017-08-20 18:06:09 +0200
commit36a7dc49ecb097b699523071ab00b55d5ad958e9 (patch)
tree3ecdee6f3eee98ab43a2edb39561ad0684011d79 /kindlecomicconverter/KCC_gui.py
parentTweaked build process (diff)
downloadkcc-36a7dc49ecb097b699523071ab00b55d5ad958e9.tar.gz
kcc-36a7dc49ecb097b699523071ab00b55d5ad958e9.tar.bz2
kcc-36a7dc49ecb097b699523071ab00b55d5ad958e9.zip
Fixed some typos
Diffstat (limited to 'kindlecomicconverter/KCC_gui.py')
-rw-r--r--kindlecomicconverter/KCC_gui.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py
index f1cdd5a..c2749ff 100644
--- a/kindlecomicconverter/KCC_gui.py
+++ b/kindlecomicconverter/KCC_gui.py
@@ -152,7 +152,7 @@ class VersionThread(QtCore.QThread):
                 self.getNewVersion()
             else:
                 MW.addMessage.emit('<a href="https://kcc.iosphe.re/">'
-                                   '<b>New version is available!</b></a> '
+                                   '<b>The new version is available!</b></a> '
                                    '(<a href="https://github.com/ciromattia/kcc/releases/">'
                                    'Changelog</a>)', 'warning', False)
 
@@ -176,7 +176,7 @@ class VersionThread(QtCore.QThread):
                 Popen(path[0] + '.exe  /SP- /silent /noicons', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True)
                 MW.forceShutdown.emit()
             except Exception:
-                MW.addMessage.emit('Failed to download update!', 'warning', False)
+                MW.addMessage.emit('Failed to download the update!', 'warning', False)
                 MW.hideProgressBar.emit()
                 MW.modeConvert.emit(1)
 
@@ -620,7 +620,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
         if value == 2:
             if profile['Label'] in ['KV']:
                 self.addMessage('This option is intended for older Kindle models.', 'warning')
-                self.addMessage('It might not provide any quality increase in this case.', 'warning')
+                self.addMessage('It will not increase quality on a device with 300 ppi screen.', 'warning')
             GUI.upscaleBox.setEnabled(False)
             GUI.upscaleBox.setChecked(True)
         else:
@@ -720,7 +720,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
     def convertStart(self):
         if self.conversionAlive:
             GUI.convertButton.setEnabled(False)
-            self.addMessage('Process will be interrupted. Please wait.', 'warning')
+            self.addMessage('The process will be interrupted. Please wait.', 'warning')
             self.conversionAlive = False
             self.worker.sync()
         else:
@@ -766,7 +766,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
     def saveSettings(self, event):
         if self.conversionAlive:
             GUI.convertButton.setEnabled(False)
-            self.addMessage('Process will be interrupted. Please wait.', 'warning')
+            self.addMessage('The process will be interrupted. Please wait.', 'warning')
             self.conversionAlive = False
             self.worker.sync()
             event.ignore()
@@ -989,9 +989,9 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
         GUI.statusBar.addPermanentWidget(statusBarLabel, 1)
 
         self.addMessage('<b>Welcome!</b>', 'info')
-        self.addMessage('<b>Remember:</b> All options have additional informations in tooltips.', 'info')
+        self.addMessage('<b>Remember:</b> All options have additional information in tooltips.', 'info')
         if self.startNumber < 5:
-            self.addMessage('Since you are new user of <b>KCC</b> please see few '
+            self.addMessage('Since you are a new user of <b>KCC</b> please see few '
                             '<a href="https://github.com/ciromattia/kcc/wiki/Important-tips">important tips</a>.',
                             'info')
         rarExitCode = Popen('unrar', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True)