Fix translation of there being no file formats available

This entry said that it had a context, but it had none. As a result, the whole string was seen as a context.
This commit is contained in:
Ghostkeeper 2018-03-15 16:52:16 +01:00
parent 40ba06f011
commit b0f7a5b358
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -60,7 +60,7 @@ class RemovableDriveOutputDevice(OutputDevice):
if len(file_formats) == 0:
Logger.log("e", "There are no file formats available to write with!")
raise OutputDeviceError.WriteRequestFailedError(catalog.i18nc("There are no file formats available to write with!"))
raise OutputDeviceError.WriteRequestFailedError(catalog.i18nc("@info:status", "There are no file formats available to write with!"))
# Just take the first file format available.
if file_handler is not None: