# HG changeset patch # User dellsystem # Date 1351369614 14400 # Node ID 1eb652aa501a90584b8abdbd61b3bdc46f60a0c7 # Parent 4752861906b31fd3de485b447caeecf7e438e3c3 Use ugettext for octave_format help_text (bundle) diff -r 4752861906b3 -r 1eb652aa501a apps/bundle/models.py --- a/apps/bundle/models.py Sat Oct 27 16:26:11 2012 -0400 +++ b/apps/bundle/models.py Sat Oct 27 16:26:54 2012 -0400 @@ -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")