Changeset - 63d07f8db31c
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-07-18 23:21:21
lukeman@gmail.com
mark strings for i18n
1 file changed with 9 insertions and 6 deletions:
0 comments (0 inline, 0 general)
symposion/proposals/models.py
Show inline comments
...
 
@@ -7,2 +7,3 @@ from django.db import models
 
from django.db.models import Q
 
from django.utils.translation import ugettext_lazy as _
 

	
...
 
@@ -59,3 +60,3 @@ class ProposalKind(models.Model):
 
    
 
    name = models.CharField("name", max_length=100)
 
    name = models.CharField(_("Name"), max_length=100)
 
    slug = models.SlugField()
...
 
@@ -74,2 +75,3 @@ class ProposalBase(models.Model):
 
    description = models.TextField(
 
        _("Brief Outline"),
 
        max_length=400,  # @@@ need to enforce 400 in UI
...
 
@@ -78,3 +80,4 @@ class ProposalBase(models.Model):
 
    abstract = MarkupField(
 
        help_text="Detailed description and outline. Will be made public if your talk is accepted. Edit using <a href='http://warpedvisions.org/projects/markdown-cheat-sheet/' target='_blank'>Markdown</a>."
 
        _("Detailed Abstract"),
 
        help_text=_("Detailed description and outline. Will be made public if your talk is accepted. Edit using <a href='http://daringfireball.net/projects/markdown/basics' target='_blank'>Markdown</a>.")
 
    )
...
 
@@ -82,3 +85,3 @@ class ProposalBase(models.Model):
 
        blank=True,
 
        help_text="Anything else you'd like the program committee to know when making their selection: your past speaking experience, open source community experience, etc. Edit using <a href='http://warpedvisions.org/projects/markdown-cheat-sheet/' target='_blank'>Markdown</a>."
 
        help_text=_("Anything else you'd like the program committee to know when making their selection: your past speaking experience, open source community experience, etc. Edit using <a href='http://daringfireball.net/projects/markdown/basics' target='_blank'>Markdown</a>.")
 
    )
...
 
@@ -119,5 +122,5 @@ class AdditionalSpeaker(models.Model):
 
    SPEAKING_STATUS = [
 
        (SPEAKING_STATUS_PENDING, "Pending"),
 
        (SPEAKING_STATUS_ACCEPTED, "Accepted"),
 
        (SPEAKING_STATUS_DECLINED, "Declined"),
 
        (SPEAKING_STATUS_PENDING, _("Pending")),
 
        (SPEAKING_STATUS_ACCEPTED, _("Accepted")),
 
        (SPEAKING_STATUS_DECLINED, _("Declined")),
 
    ]
0 comments (0 inline, 0 general)