diff -r 89f952b0f366 -r c44ea4526546 VirtualMailManager/Alias.py --- a/VirtualMailManager/Alias.py Wed Jun 11 00:05:22 2008 +0000 +++ b/VirtualMailManager/Alias.py Wed Jun 11 05:07:07 2008 +0000 @@ -41,7 +41,7 @@ self._exists() if self._isAccount(): raise VMMAliasException( - (_(u'There is already an account with address »%s«') % self._addr, + (_(u"There is already an account with address '%s'") % self._addr, ERR.ACCOUNT_EXISTS)) def _exists(self): @@ -71,7 +71,7 @@ dom = Domain(self._dbh, d) self._gid = dom.getID() if self._gid == 0: - raise VMMAliasException((_(u"Domain »%s« doesn't exist.") % d, + raise VMMAliasException((_(u"Domain '%s' doesn't exist.") % d, ERR.NO_SUCH_DOMAIN)) def save(self):