Update of /cvsroot/spambayes/spambayes/Outlook2000
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv20708/Outlook2000

Modified Files:
        config.py 
Log Message:
Fix some string localization problems - strings such as "Untouched", "Moved"
and "Copied" are used internally as flags, not as literals displayed to the
user.


Index: config.py
===================================================================
RCS file: /cvsroot/spambayes/spambayes/Outlook2000/config.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** config.py   11 Feb 2005 21:05:49 -0000      1.38
--- config.py   29 Jun 2007 01:05:58 -0000      1.39
***************
*** 26,31 ****
  FOLDER_ID = r"\(\'[a-fA-F0-9]+\', \'[a-fA-F0-9]+\'\)"
  FIELD_NAME = r"[a-zA-Z0-9 ]+"
! FILTER_ACTION = _("Untouched"), _("Moved"), _("Copied")
! MSG_READ_STATE = _("None"), _("Read"), _("Unread")
  
  from spambayes.OptionsClass import OptionsClass, Option
--- 26,34 ----
  FOLDER_ID = r"\(\'[a-fA-F0-9]+\', \'[a-fA-F0-9]+\'\)"
  FIELD_NAME = r"[a-zA-Z0-9 ]+"
! # These are stored in the INI file.  They must not be localized - we can't
! # have all option settings being unrecognized just because a new localization
! # becomes available for users.  The dialogs manage this.
! FILTER_ACTION = "Untouched", "Moved", "Copied"
! MSG_READ_STATE = "None", "Read", "Unread"
  
  from spambayes.OptionsClass import OptionsClass, Option

_______________________________________________
Spambayes-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/spambayes-checkins

Reply via email to