Skip to content

Commit 5b77602

Browse files
committed
Updated Twilio settings language
1 parent c6e0e22 commit 5b77602

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

templates/services/twilio/settings.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,31 @@
22

33
{{ forms.textField({
44
label: "AccountSID"|t,
5-
instructions: "Your Twilio AccountSID"|t,
5+
instructions: "Your Twilio AccountSID."|t,
66
id: 'twilio_account_sid',
77
name: 'settings[serviceSettings][twilio][accountSid]',
88
value: settings.accountSid
99
}) }}
1010

1111
{{ forms.textField({
1212
label: "AuthToken"|t,
13-
instructions: "Your Twilio AuthToken"|t,
13+
instructions: "Your Twilio AuthToken."|t,
1414
id: 'twilio_authtoken',
1515
name: 'settings[serviceSettings][twilio][authToken]',
1616
value: settings.authToken
1717
}) }}
1818

1919
{{ forms.textField({
2020
label: "From Number"|t,
21-
instructions: "The number sending the SMS message"|t,
21+
instructions: "The number sending the SMS message. This is a verified number in your Twilio account or a short code number."|t,
2222
id: 'twilio_from_number',
2323
name: 'settings[serviceSettings][twilio][from]',
2424
value: settings.from
2525
}) }}
2626

2727
{{ forms.textField({
2828
label: "To Number"|t,
29-
instructions: "The number receiving the SMS message"|t,
29+
instructions: "The number receiving the SMS message. For more informatiom on formatting, vist the <a href=\"https://www.twilio.com/docs/api/rest/sending-sms\">Twilio API reference</a>."|t,
3030
id: 'twilio_to_number',
3131
name: 'settings[serviceSettings][twilio][to]',
3232
value: settings.to

0 commit comments

Comments
 (0)