Merge pull request #1108 from emanuelschuetze/duration
Duration field and EN translation file
This commit is contained in:
commit
980ce56bc3
@ -27,7 +27,8 @@ class ItemForm(CleanHtmlFormMixin, CssClassMixin, forms.ModelForm):
|
||||
error_message=ugettext_lazy("Invalid format. Hours from 0 to 99 and minutes from 00 to 59"),
|
||||
max_length=5,
|
||||
required=False,
|
||||
label=ugettext_lazy("Duration (hh:mm)"))
|
||||
label=ugettext_lazy("Duration"),
|
||||
help_text=ugettext_lazy('Input format: HH:MM or M or MM or MMM'))
|
||||
|
||||
class Meta:
|
||||
model = Item
|
||||
|
@ -63,8 +63,7 @@ class Item(SlideMixin, MPTTModel):
|
||||
See Item.ITEM_TYPE for more information.
|
||||
"""
|
||||
|
||||
duration = models.CharField(null=True, blank=True, max_length=5,
|
||||
verbose_name=ugettext_lazy("Duration (hh:mm)"))
|
||||
duration = models.CharField(null=True, blank=True, max_length=5)
|
||||
"""
|
||||
The intended duration for the topic.
|
||||
"""
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -661,7 +661,7 @@ class MotionSetStateView(SingleObjectMixin, RedirectView):
|
||||
if success:
|
||||
self.object.save(update_fields=['state', 'identifier'])
|
||||
self.object.write_log(
|
||||
message_list=[ugettext_noop('State changed to'), ' %s' % self.object.state.name], # TODO: Change string to 'State set to ...'
|
||||
message_list=[ugettext_noop('State changed to'), ' ', self.object.state.name], # TODO: Change string to 'State set to ...'
|
||||
person=self.request.user)
|
||||
messages.success(request,
|
||||
_('The state of the motion was set to %s.')
|
||||
|
Loading…
Reference in New Issue
Block a user