Remove the final traces of the translation indirection

CURA-6005
This commit is contained in:
Jaime van Kessel 2019-01-04 10:43:40 +01:00
parent 8ebd4282fd
commit 87eb863451
3 changed files with 5 additions and 11 deletions

View file

@ -47,7 +47,7 @@ class DriveApiService:
if backup_list_request.status_code >= 300:
Logger.log("w", "Could not get backups list from remote: %s", backup_list_request.text)
Message(catalog.i18nc("@info:backup_status", "There was an error listing your backups."), title = Settings.MESSAGE_TITLE).show()
Message(catalog.i18nc("@info:backup_status", "There was an error listing your backups."), title = catalog.i18nc("@info:title", "Backup")).show()
return []
return backup_list_request.json()["data"]