Translation tweaks

This commit is contained in:
Oliver Walters 2020-05-16 17:32:20 +10:00
parent 7190a8ef69
commit 40735d66a1

View File

@ -55,10 +55,14 @@ class CompleteBuildForm(HelperForm):
location = forms.ModelChoiceField( location = forms.ModelChoiceField(
queryset=StockLocation.objects.all(), queryset=StockLocation.objects.all(),
help_text='Location of completed parts', help_text=_('Location of completed parts'),
) )
serial_numbers = forms.CharField(label='Serial numbers', required=False, help_text=_('Enter unique serial numbers (or leave blank)')) serial_numbers = forms.CharField(
label=_('Serial numbers'),
required=False,
help_text=_('Enter unique serial numbers (or leave blank)')
)
confirm = forms.BooleanField(required=False, help_text=_('Confirm build completion')) confirm = forms.BooleanField(required=False, help_text=_('Confirm build completion'))