From acdbba694ec8aea693b4b4f4a5c2088aac562376 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 19 Dec 2016 11:42:39 +0000 Subject: [PATCH] =?UTF-8?q?Use=20=E2=80=98pence=E2=80=99=20in=20full?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This matches what we now do on the product page. From the GOV.UK style guide: > Write out pence in full: calls will cost 4 pence per minute from a landline. – https://www.gov.uk/guidance/style-guide/a-to-z-of-gov-uk-style#money --- app/templates/views/pricing.html | 2 +- app/templates/views/usage.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/views/pricing.html b/app/templates/views/pricing.html index 367e4687e..103044f7e 100644 --- a/app/templates/views/pricing.html +++ b/app/templates/views/pricing.html @@ -26,7 +26,7 @@
  • Up to 306 characters = 2 text messages
  • Up to 459 characters = 3 text messages
  • -
  • Standard text message rate: 1.65p + VAT
  • +
  • Standard text message rate: 1.65 pence + VAT
  • diff --git a/app/templates/views/usage.html b/app/templates/views/usage.html index 37794f1b4..e5d5f64b1 100644 --- a/app/templates/views/usage.html +++ b/app/templates/views/usage.html @@ -37,7 +37,7 @@ {% if sms_chargeable %} {{ big_number( sms_chargeable, - 'at {:.2f}p per message'.format(sms_rate * 100), + 'at {:.2f} pence per message'.format(sms_rate * 100), smaller=True ) }} {% endif %}