default language is english. devel
authorSandro Knauß <knauss@netzguerilla.net>
Sun, 26 Feb 2012 18:44:52 +0100
branchdevel
changeset 189 ae2767918faa
parent 188 4d6130d91e56
child 190 71221fd1f7c1
default language is english.
iro/error.py
--- a/iro/error.py	Sun Feb 26 17:48:28 2012 +0100
+++ b/iro/error.py	Sun Feb 26 18:44:52 2012 +0100
@@ -13,15 +13,15 @@
 
 class UserNotFound(InterfaceException):
     def __init__(self):
-        InterfaceException.__init__(self, 901, u"Der API-Key ist ungültig.")
+        InterfaceException.__init__(self, 901, "API-Key is unknown.")
 
 class JobNotFound(InterfaceException):
     def __init__(self):
-        InterfaceException.__init__(self, 902, u"Die Jobid ist ungültig.")
+        InterfaceException.__init__(self, 902, "Jobid is unknown.")
 
 class ExternalException(InterfaceException):
     def __init__(self):
-        InterfaceException.__init__(self, 950, "Fehler in externer API.")
+        InterfaceException.__init__(self, 950, "Error in external API.")
 
 class ValidateException(Exception):
     def __init__(self, code=700, field=None, msg=None):