diff --git a/mayan/apps/document_states/migrations/0016_auto_20191108_2332.py b/mayan/apps/document_states/migrations/0016_auto_20191108_2332.py deleted file mode 100644 index 6e175e00df..0000000000 --- a/mayan/apps/document_states/migrations/0016_auto_20191108_2332.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.11.25 on 2019-11-08 23:32 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('document_states', '0015_auto_20190701_1311'), - ] - - operations = [ - migrations.AlterField( - model_name='workflowstate', - name='completion', - field=models.IntegerField(blank=True, default=0, help_text='The percent of completion that this state represents in relation to the workflow. Use numbers without the percent sign.', verbose_name='Completion'), - ), - migrations.AlterField( - model_name='workflowstate', - name='initial', - field=models.BooleanField(default=False, help_text='The state at which the workflow will start in. Only one state can be the initial state.', verbose_name='Initial'), - ), - migrations.AlterField( - model_name='workflowstateaction', - name='when', - field=models.PositiveIntegerField(choices=[(1, 'On entry'), (2, 'On exit')], default=1, help_text='At which moment of the state this action will execute.', verbose_name='When'), - ), - ] diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index 24e966d3a6..a5da8ab106 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -200,13 +200,13 @@ class WorkflowState(models.Model): initial = models.BooleanField( default=False, help_text=_( - 'The state at which the workflow will start in. Only one state ' - 'can be the initial state.' + 'Select if this will be the state with which you want the ' + 'workflow to start in. Only one state can be the initial state.' ), verbose_name=_('Initial') ) completion = models.IntegerField( blank=True, default=0, help_text=_( - 'The percent of completion that this state represents in ' + 'Enter the percent of completion that this state represents in ' 'relation to the workflow. Use numbers without the percent sign.' ), verbose_name=_('Completion') ) @@ -283,7 +283,7 @@ class WorkflowStateAction(models.Model): when = models.PositiveIntegerField( choices=WORKFLOW_ACTION_WHEN_CHOICES, default=WORKFLOW_ACTION_ON_ENTRY, help_text=_( - 'At which moment of the state this action will execute.' + 'At which moment of the state this action will execute' ), verbose_name=_('When') ) action_path = models.CharField(