Show
Ignore:
Timestamp:
02/09/03 14:05:43 (21 years ago)
Author:
jalet
Message:

Internationalization continues...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storage.py

    r768 r773  
    1515# 
    1616# $Log$ 
     17# Revision 1.6  2003/02/09 13:05:43  jalet 
     18# Internationalization continues... 
     19# 
    1720# Revision 1.5  2003/02/08 22:39:46  jalet 
    1821# --reset command line option added 
     
    109112        exec "from pykota.storages import %s as storagebackend" % backend.lower()     
    110113    except ImportError : 
    111         raise PyKotaStorageError, "Unsupported quota storage backend %s" % backend 
     114        raise PyKotaStorageError, _("Unsupported quota storage backend %s") % backend 
    112115    else :     
    113116        return getattr(storagebackend, "Storage")(host, database, (asadmin and admin) or user)