|
1 | 1 | # Roundup Issue Tracker configuration support |
2 | 2 | # |
3 | | -# $Id: configuration.py,v 1.22 2004-11-12 04:07:03 richard Exp $ |
| 3 | +# $Id: configuration.py,v 1.23 2004-11-18 14:02:25 a1s Exp $ |
4 | 4 | # |
5 | 5 | __docformat__ = "restructuredtext" |
6 | 6 |
|
@@ -460,6 +460,11 @@ class NullableFilePathOption(NullableOption, FilePathOption): |
460 | 460 | "You MUST include a trailing '/' in the URL."), |
461 | 461 | (MailAddressOption, "email", "issue_tracker", |
462 | 462 | "Email address that mail to roundup should go to."), |
| 463 | + (NullableOption, "language", "", |
| 464 | + "Default locale name for this tracker.\n" |
| 465 | + "If this option is not set, the language is determined\n" |
| 466 | + "by OS environment variable LANGUAGE, LC_ALL, LC_MESSAGES,\n" |
| 467 | + "or LANG, in that order of preference."), |
463 | 468 | )), |
464 | 469 | ("rdbms", ( |
465 | 470 | (Option, 'name', 'roundup', |
@@ -545,6 +550,10 @@ class NullableFilePathOption(NullableOption, FilePathOption): |
545 | 550 | "if one isn't supplied in email subjects.\n" |
546 | 551 | "To disable, leave the value blank.", |
547 | 552 | ["MAIL_DEFAULT_CLASS"]), |
| 553 | + (NullableOption, "language", "", |
| 554 | + "Default locale name for the tracker mail gateway.\n" |
| 555 | + "If this option is not set, mail gateway will use\n" |
| 556 | + "the language of the tracker instance."), |
548 | 557 | ), "Roundup Mail Gateway options"), |
549 | 558 | ("nosy", ( |
550 | 559 | (RunDetectorOption, "messages_to_author", "no", |
|
0 commit comments