Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluz paz <luzpaz@users.noreply.github.com>2021-09-07 18:33:54 +0300
committerluz paz <luzpaz@users.noreply.github.com>2021-09-07 18:33:54 +0300
commitd68f375e386049878de69eb0b33aacc3f40cb344 (patch)
tree7c31e3a32ac8b9d2c7328c6de5f300eb4eb15182 /plugins/RemovableDriveOutputDevice
parent7eeae4db87f3f6e860c2bc4faab79af50c59e484 (diff)
Fix various typos
Found via `codespell -q 3 -S *.po,*.pot -L childs,initialy,lod,ned,te,slicable,sur,tutoriels,wont`
Diffstat (limited to 'plugins/RemovableDriveOutputDevice')
-rw-r--r--plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py2
-rw-r--r--plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py
index 05543813db..067773d988 100644
--- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py
+++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py
@@ -136,7 +136,7 @@ class RemovableDriveOutputDevice(OutputDevice):
self._stream.close()
self._stream = None
except:
- Logger.logException("w", "An execption occured while trying to write to removable drive.")
+ Logger.logException("w", "An exception occurred while trying to write to removable drive.")
message = Message(catalog.i18nc("@info:status", "Could not save to removable drive {0}: {1}").format(self.getName(),str(job.getError())),
title = catalog.i18nc("@info:title", "Error"),
message_type = Message.MessageType.ERROR)
diff --git a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py
index d59d1296e3..d60e4b34f0 100644
--- a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py
+++ b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py
@@ -48,7 +48,7 @@ class RemovableDrivePlugin(OutputDevicePlugin):
result = False
if result:
- Logger.log("i", "Succesfully ejected the device")
+ Logger.log("i", "Successfully ejected the device")
return result
def performEjectDevice(self, device):