VirtualMailManager/Account.py
changeset 156 a849843115e9
parent 155 eb866ebb9f2e
child 162 0ac9ef587769
--- a/VirtualMailManager/Account.py	Mon Oct 19 00:56:19 2009 +0000
+++ b/VirtualMailManager/Account.py	Tue Oct 20 02:41:36 2009 +0000
@@ -31,6 +31,9 @@
         self._exists()
         if self._uid < 1 and VMM.VirtualMailManager.aliasExists(self._dbh,
                 self._addr):
+            # TP: Hm, what quotation marks should be used?
+            # If you are unsure have a look at:
+            # http://en.wikipedia.org/wiki/Quotation_mark,_non-English_usage
             raise AccE(_(u"There is already an alias with the address ā€œ%sā€.") %\
                     self._addr, ERR.ALIAS_EXISTS)
         if self._uid < 1 and VMM.VirtualMailManager.relocatedExists(self._dbh,
@@ -190,8 +193,10 @@
             info = dict(zip(keys, info))
             for service in ('smtp', 'pop3', 'imap', sieve_col):
                 if bool(info[service]):
+                    # TP: A service (pop3/imap/ā€¦) is enabled/usable for a user
                     info[service] = _('enabled')
                 else:
+                    # TP: A service (pop3/imap) isn't enabled/usable for a user
                     info[service] = _('disabled')
             info['address'] = self._addr
             info['maildir'] = '%s/%s/%s' % (self._base, info['uid'],