changeset 188:1eb652aa501a

Use ugettext for octave_format help_text (bundle)
author dellsystem <ilostwaldo@gmail.com>
date Sat, 27 Oct 2012 16:26:54 -0400
parents 4752861906b3
children 683d41e124b7
files apps/bundle/models.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/apps/bundle/models.py
+++ b/apps/bundle/models.py
@@ -26,8 +26,8 @@
         "Optional. If this field is left empty and the checkbox below "
         "is ticked, then the DESCRIPTION file (if it exists) will be "
         "used as the bundle description instead."))
-    octave_format = models.BooleanField('Is the bundle formatted according'
-        ' to Octave package manager standards?', default=False)
+    octave_format = models.BooleanField(_("Is the bundle formatted according"
+        " to Octave package manager standards?"), default=False)
     # If octave_format is true and there is a DESCRIPTION file in the root
     description_file = models.ForeignKey('BundleFile', blank=True, null=True,
         related_name="described")