diff --git a/i18n/en-US.json b/i18n/en-US.json index 81b57d0..0f11d88 100644 --- a/i18n/en-US.json +++ b/i18n/en-US.json @@ -125,6 +125,7 @@ "G722": "G722", "speex@32000h": "Speex @ 32khz", "speex@16000h": "Speex @ 16khz", + "speex": "Speex", "PCMU": "G711u / PCMU - 64kbps (NA)", "PCMA": "G711a / PCMA - 64kbps (Elsewhere)", "G729":"G729 - 8kbps (Requires License)", diff --git a/submodules/devices/devices.js b/submodules/devices/devices.js index ecdbdfc..fb63d97 100644 --- a/submodules/devices/devices.js +++ b/submodules/devices/devices.js @@ -491,6 +491,7 @@ define(function(require){ 'G722': codecsAudioI18n['G722'], 'speex@32000h':codecsAudioI18n['speex@32000h'], 'speex@16000h': codecsAudioI18n['speex@16000h'], + 'speex': codecsAudioI18n['speex'], 'PCMU': codecsAudioI18n['PCMU'], 'PCMA': codecsAudioI18n['PCMA'], 'G729':codecsAudioI18n['G729'],