From a2a8496d521d7e10a0888ca9a997d03e6187ba93 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Tue, 18 Sep 2018 11:12:12 +0100 Subject: [PATCH] Updated postage radio labels Updated postage radio labels --- app/main/forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main/forms.py b/app/main/forms.py index 42bdaf37e..737a5b003 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -687,10 +687,10 @@ class ServiceSwitchLettersForm(StripWhitespaceForm): class ServiceLetterClassForm(StripWhitespaceForm): letter_class = RadioField( - 'Postage classes', + 'Choose your postage', choices=[ - ('first', '1st class only'), - ('second', '2nd class only'), + ('first', 'First class only'), + ('second', 'Second class only'), ], )