Browse Source

KAZOO-2489: Changed the text for Audio Encryption Strategy

4.3
Jean-Roch Maitre 12 years ago
parent
commit
364ae10540
5 changed files with 28 additions and 14 deletions
  1. +2
    -1
      i18n/en-US.json
  2. +2
    -1
      submodules/devices/devices.css
  3. +8
    -4
      views/devices-mobile.html
  4. +8
    -4
      views/devices-sip_device.html
  5. +8
    -4
      views/devices-softphone.html

+ 2
- 1
i18n/en-US.json View File

@ -123,7 +123,8 @@
"menuTitle": "Miscellaneous",
"sectionTitle": "Miscellaneous",
"rtp": {
"enable": "Audio Encryption Strategy",
"enable": "Encrypt the audio",
"type": "Type of encryption: ",
"srtp": "SRTP",
"zrtp": "ZRTP"
}


+ 2
- 1
submodules/devices/devices.css View File

@ -302,6 +302,7 @@
.edit-device .content .rtp-line > * {
float: left;
line-height: 30px;
font-size: 14px;
line-height: 28px;
margin: 0 10px;
}

+ 8
- 4
views/devices-mobile.html View File

@ -181,10 +181,14 @@
{{ i18n.devices.popupSettings.miscellaneous.rtp.enable }}
</label>
<select id="rtp_method" name="extra.rtpMethod">
<option value="srtp"{{#compare extra.rtpMethod "===" "srtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.srtp }}</option>
<option value="zrtp"{{#compare extra.rtpMethod "===" "zrtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.zrtp }}</option>
</select>
<div id="rtp_method">
{{ i18n.devices.popupSettings.miscellaneous.rtp.type }}
<select name="extra.rtpMethod" class="input-small">
<option value="srtp"{{#compare extra.rtpMethod "===" "srtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.srtp }}</option>
<option value="zrtp"{{#compare extra.rtpMethod "===" "zrtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.zrtp }}</option>
</select>
</div>
</div>
</div>
</form>


+ 8
- 4
views/devices-sip_device.html View File

@ -229,10 +229,14 @@
{{ i18n.devices.popupSettings.miscellaneous.rtp.enable }}
</label>
<select id="rtp_method" name="extra.rtpMethod">
<option value="srtp"{{#compare extra.rtpMethod "===" "srtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.srtp }}</option>
<option value="zrtp"{{#compare extra.rtpMethod "===" "zrtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.zrtp }}</option>
</select>
<div id="rtp_method">
{{ i18n.devices.popupSettings.miscellaneous.rtp.type }}
<select class="input-small" name="extra.rtpMethod">
<option value="srtp"{{#compare extra.rtpMethod "===" "srtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.srtp }}</option>
<option value="zrtp"{{#compare extra.rtpMethod "===" "zrtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.zrtp }}</option>
</select>
</div>
</div>
</div>
</form>


+ 8
- 4
views/devices-softphone.html View File

@ -180,10 +180,14 @@
{{ i18n.devices.popupSettings.miscellaneous.rtp.enable }}
</label>
<select id="rtp_method" name="extra.rtpMethod">
<option value="srtp"{{#compare extra.rtpMethod "===" "srtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.srtp }}</option>
<option value="zrtp"{{#compare extra.rtpMethod "===" "zrtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.zrtp }}</option>
</select>
<div id="rtp_method">
{{ i18n.devices.popupSettings.miscellaneous.rtp.type }}
<select class="input-small" name="extra.rtpMethod">
<option value="srtp"{{#compare extra.rtpMethod "===" "srtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.srtp }}</option>
<option value="zrtp"{{#compare extra.rtpMethod "===" "zrtp"}} selected{{/compare}}>{{ i18n.devices.popupSettings.miscellaneous.rtp.zrtp }}</option>
</select>
</div>
</div>
</div>
</form>


Loading…
Cancel
Save