mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 13:39:41 -04:00
Allow Welsh characters in SMS
- This brings in the latest version of notifications-utils which allows Welsh characters in SMS templates. - Updated the pricing page to show the new prices for SMS with certain Welsh characters
This commit is contained in:
@@ -40,10 +40,10 @@
|
||||
<p>See <a href="#paying">how to pay</a>.
|
||||
|
||||
<h3 class="heading-small">Long text messages</h3>
|
||||
<p>If a text message is beyond a certain length, it’ll be charged as more than one message:</p>
|
||||
<p>If a text message is longer than 160 characters (including spaces), it’ll be charged as more than one message:</p>
|
||||
<div class="bottom-gutter-3-2">
|
||||
{% call mapping_table(
|
||||
caption='Letter pricing',
|
||||
caption='Text message pricing',
|
||||
field_headings=['Message length', 'Charge'],
|
||||
field_headings_visible=True,
|
||||
caption_visible=False
|
||||
@@ -61,6 +61,29 @@
|
||||
{% endfor %}
|
||||
{% endcall %}
|
||||
</div>
|
||||
<h3 class="heading-small">Text messages containing Welsh characters</h3>
|
||||
<p>Long text messages containing Welsh characters (Â, â, Ê, ê, Î, î, Ô, ô, Û, û, Ŵ, ŵ, Ŷ, and ŷ) are charged differently:</p>
|
||||
<div class="bottom-gutter-3-2">
|
||||
{% call mapping_table(
|
||||
caption='Text message pricing',
|
||||
field_headings=['Message length', 'Charge'],
|
||||
field_headings_visible=True,
|
||||
caption_visible=False
|
||||
) %}
|
||||
{% for message_length, charge in [
|
||||
('Up to 70 characters', '1 text message'),
|
||||
('Up to 134 characters', '2 text messages'),
|
||||
('Up to 201 characters', '3 text messages'),
|
||||
('Up to 268 characters', '4 text messages'),
|
||||
('Each additional 67 characters', '1 additional text message'),
|
||||
] %}
|
||||
{% call row() %}
|
||||
{{ text_field(message_length) }}
|
||||
{{ text_field(charge) }}
|
||||
{% endcall %}
|
||||
{% endfor %}
|
||||
{% endcall %}
|
||||
</div>
|
||||
<h3 class="heading-small">Sending text messages to international numbers</h3>
|
||||
<p>It might cost more to send text messages to international numbers than UK ones, depending on the country.</p>
|
||||
<details>
|
||||
|
||||
Reference in New Issue
Block a user