@@ -11,6 +11,7 @@ import FormLegend from 'calypso/components/forms/form-legend';
11
11
import FormSectionHeading from 'calypso/components/forms/form-section-heading' ;
12
12
import FormSelect from 'calypso/components/forms/form-select' ;
13
13
import FormSettingExplanation from 'calypso/components/forms/form-setting-explanation' ;
14
+ import InlineSupportLink from 'calypso/components/inline-support-link' ;
14
15
import { withLocalizedMoment } from 'calypso/components/localized-moment' ;
15
16
import Main from 'calypso/components/main' ;
16
17
import NavigationHeader from 'calypso/components/navigation-header' ;
@@ -155,23 +156,6 @@ class NotificationSubscriptions extends Component {
155
156
</ FormSelect >
156
157
</ FormFieldset >
157
158
158
- < FormFieldset >
159
- < FormLegend > { this . props . translate ( 'Jabber subscription delivery' ) } </ FormLegend >
160
- < FormLabel >
161
- < FormCheckbox
162
- checked = { this . props . getSetting ( 'subscription_delivery_jabber_default' ) }
163
- disabled = { this . props . getDisabledState ( ) }
164
- id = "subscription_delivery_jabber_default"
165
- name = "subscription_delivery_jabber_default"
166
- onChange = { this . props . toggleSetting }
167
- onClick = { this . handleCheckboxEvent ( 'Notification delivery by Jabber' ) }
168
- />
169
- < span >
170
- { this . props . translate ( 'Default delivery via Jabber instant message' ) }
171
- </ span >
172
- </ FormLabel >
173
- </ FormFieldset >
174
-
175
159
< FormFieldset >
176
160
< FormLabel htmlFor = "subscription_delivery_mail_option" >
177
161
{ this . props . translate ( 'Email delivery format' ) }
@@ -240,6 +224,27 @@ class NotificationSubscriptions extends Component {
240
224
</ FormSettingExplanation >
241
225
</ FormFieldset >
242
226
227
+ < FormFieldset >
228
+ < FormLegend > { this . props . translate ( 'Jabber subscription delivery' ) } </ FormLegend >
229
+ < FormLabel >
230
+ < FormCheckbox
231
+ checked = { this . props . getSetting ( 'subscription_delivery_jabber_default' ) }
232
+ disabled = { this . props . getDisabledState ( ) }
233
+ id = "subscription_delivery_jabber_default"
234
+ name = "subscription_delivery_jabber_default"
235
+ onChange = { this . props . toggleSetting }
236
+ onClick = { this . handleCheckboxEvent ( 'Notification delivery by Jabber' ) }
237
+ />
238
+ < span >
239
+ { this . props . translate ( 'Receive subscription updates via instant message.' ) } { ' ' }
240
+ < InlineSupportLink
241
+ supportContext = "jabber-subscription-updates"
242
+ showIcon = { false }
243
+ />
244
+ </ span >
245
+ </ FormLabel >
246
+ </ FormFieldset >
247
+
243
248
< FormFieldset >
244
249
< FormLegend > { this . props . translate ( 'Pause emails' ) } </ FormLegend >
245
250
< FormLabel >
0 commit comments