]> git.openstreetmap.org Git - osqa.git/commitdiff
removed a redundant 'one' in the help text for the tags
authorrick <rick@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Fri, 14 May 2010 19:22:47 +0000 (19:22 +0000)
committerrick <rick@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Fri, 14 May 2010 19:22:47 +0000 (19:22 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@280 0cfe37f9-358a-4d5e-be75-b63607b5c754

forum/forms.py

index e57e8bb19ff787b7c4150f703970710596e5ed41..509c1255dd5578aebce63017f75789f8756d97fe 100644 (file)
@@ -50,7 +50,7 @@ class TagNamesField(forms.CharField):
         self.max_length = 255
         self.label  = _('tags')
         #self.help_text = _('please use space to separate tags (this enables autocomplete feature)')
-        self.help_text = _('Tags are short keywords, with no spaces within. At least one %(min)s and up to %(max)s tags can be used.') % {
+        self.help_text = _('Tags are short keywords, with no spaces within. At least %(min)s and up to %(max)s tags can be used.') % {
             'min': settings.FORM_MIN_NUMBER_OF_TAGS, 'max': settings.FORM_MAX_NUMBER_OF_TAGS    
         }
         self.initial = ''