1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Fix grammar of Mailbox.last_polling.help_text

This commit is contained in:
Adam Dobrawy 2016-08-16 07:18:51 +02:00
parent fc05ee6505
commit 251b12161c
2 changed files with 4 additions and 3 deletions

View file

@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations.AddField( migrations.AddField(
model_name='mailbox', model_name='mailbox',
name='last_polling', name='last_polling',
field=models.DateTimeField(blank=True, null=True, help_text='The time of last successfull polling of message. It is blank for new mailbox or processing email via pipe only.', verbose_name='Last polling'), field=models.DateTimeField(blank=True, help_text='The time of last successful polling for messages.It is blank for new mailboxes and is not set for mailboxes that only receive messages via a pipe.', null=True, verbose_name='Last polling'),
), ),
] ]

View file

@ -100,8 +100,9 @@ class Mailbox(models.Model):
last_polling = models.DateTimeField( last_polling = models.DateTimeField(
_(u"Last polling"), _(u"Last polling"),
help_text=(_("The time of last successfull polling of message. " help_text=(_("The time of last successful polling for messages."
"It is blank for new mailbox or processing email via pipe only.")), "It is blank for new mailboxes and is not set for "
"mailboxes that only receive messages via a pipe.")),
blank=True, blank=True,
null=True null=True
) )