i18 missed things

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-06-02 00:27:20 +01:00
parent 0bafd6458a
commit 6b4daf02a9
2 changed files with 4 additions and 2 deletions

View file

@ -966,7 +966,7 @@ module.exports = React.createClass({
} }
microphoneDropdown = <div> microphoneDropdown = <div>
<h4>Microphone</h4> <h4>{_t('Microphone')}</h4>
<Dropdown <Dropdown
className="mx_UserSettings_webRtcDevices_dropdown" className="mx_UserSettings_webRtcDevices_dropdown"
value={this.state.activeAudioInput || defaultInput} value={this.state.activeAudioInput || defaultInput}
@ -986,7 +986,7 @@ module.exports = React.createClass({
} }
webcamDropdown = <div> webcamDropdown = <div>
<h4>Cameras</h4> <h4>{_t('Camera')}</h4>
<Dropdown <Dropdown
className="mx_UserSettings_webRtcDevices_dropdown" className="mx_UserSettings_webRtcDevices_dropdown"
value={this.state.activeVideoInput || defaultInput} value={this.state.activeVideoInput || defaultInput}

View file

@ -136,6 +136,8 @@
"No media permissions": "No media permissions", "No media permissions": "No media permissions",
"You may need to manually permit Riot to access your microphone/webcam": "You may need to manually permit Riot to access your microphone/webcam", "You may need to manually permit Riot to access your microphone/webcam": "You may need to manually permit Riot to access your microphone/webcam",
"Default Device": "Default Device", "Default Device": "Default Device",
"Microphone": "Microphone",
"Camera": "Camera",
"Advanced": "Advanced", "Advanced": "Advanced",
"Algorithm": "Algorithm", "Algorithm": "Algorithm",
"Always show message timestamps": "Always show message timestamps", "Always show message timestamps": "Always show message timestamps",