diff --git a/lib/qrscanner.py b/lib/qrscanner.py index 0b712e60..12c0bcb6 100644 --- a/lib/qrscanner.py +++ b/lib/qrscanner.py @@ -1,4 +1,5 @@ import os +from i18n import _ try: import zbar @@ -8,7 +9,7 @@ except ImportError: def scan_qr(config): if not zbar: - raise BaseException("The zbar package is not available.\nOn Linux, try 'sudo apt-get install python-zbar'") + raise BaseException("\n".join([_("Cannot start QR scanner."),_("The zbar package is not available."),_("On Linux, try 'sudo apt-get install python-zbar'")])) device = config.get("video_device", "default") if device == 'default': device = ''