From 58c6e92abc858ad3e1780c77c0a353165e08bb34 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 22 Aug 2013 10:02:14 +0200 Subject: Replace all "Reference" label by "Ref." (refs #1322) --- archaeological_warehouse/forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'archaeological_warehouse/forms.py') diff --git a/archaeological_warehouse/forms.py b/archaeological_warehouse/forms.py index 69bb2cae3..ff869c5fb 100644 --- a/archaeological_warehouse/forms.py +++ b/archaeological_warehouse/forms.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2012 Étienne Loks +# Copyright (C) 2010-2013 Étienne Loks # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -84,7 +84,7 @@ class WarehouseForm(forms.Form): class ContainerForm(forms.Form): form_label = _(u"Container") - reference = forms.CharField(label=_(u"Reference")) + reference = forms.CharField(label=_(u"Ref.")) container_type = forms.ChoiceField(label=_(u"Container type"), choices=[]) location = forms.IntegerField(label=_(u"Warehouse"), widget=widgets.JQueryAutoComplete( @@ -113,7 +113,7 @@ class ContainerForm(forms.Form): class ContainerSelect(TableSelect): location = get_warehouse_field() container_type = forms.ChoiceField(label=_(u"Container type"), choices=[]) - reference = forms.CharField(label=_(u"Reference")) + reference = forms.CharField(label=_(u"Ref.")) def __init__(self, *args, **kwargs): super(ContainerSelect, self).__init__(*args, **kwargs) -- cgit v1.2.3