* Issue #24: Add ability to localise queues so that the templates used

by those queues are in languages that differ from the installation 
  langugage. 

  To utilise this, call your templates 'zz:templatename' where 'zz' is the 
  language code and 'templatename' is the name used by the Helpdesk when 
  sending e-mails.

  Thanks to Paul Boehm for the submission.
This commit is contained in:
Ross Poulton
2008-11-18 01:43:50 +00:00
parent d5d692db45
commit 065e7e9eb0
6 changed files with 46 additions and 4 deletions

View File

@ -45,6 +45,14 @@ class Queue(models.Model):
'address for that mailbox.'),
)
locale = models.CharField(
_('Locale'),
max_length=10,
blank=True,
null=True,
help_text=_('Locale of this queue. All correspondence in this queue will be in this language.'),
)
allow_public_submission = models.BooleanField(
_('Allow Public Submission?'),
blank=True,