Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 6b4daf0

Browse files
committed
i18 missed things
Signed-off-by: Michael Telatynski <[email protected]>
1 parent 0bafd64 commit 6b4daf0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/structures/UserSettings.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ module.exports = React.createClass({
966966
}
967967

968968
microphoneDropdown = <div>
969-
<h4>Microphone</h4>
969+
<h4>{_t('Microphone')}</h4>
970970
<Dropdown
971971
className="mx_UserSettings_webRtcDevices_dropdown"
972972
value={this.state.activeAudioInput || defaultInput}
@@ -986,7 +986,7 @@ module.exports = React.createClass({
986986
}
987987

988988
webcamDropdown = <div>
989-
<h4>Cameras</h4>
989+
<h4>{_t('Camera')}</h4>
990990
<Dropdown
991991
className="mx_UserSettings_webRtcDevices_dropdown"
992992
value={this.state.activeVideoInput || defaultInput}

src/i18n/strings/en_EN.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@
136136
"No media permissions": "No media permissions",
137137
"You may need to manually permit Riot to access your microphone/webcam": "You may need to manually permit Riot to access your microphone/webcam",
138138
"Default Device": "Default Device",
139+
"Microphone": "Microphone",
140+
"Camera": "Camera",
139141
"Advanced": "Advanced",
140142
"Algorithm": "Algorithm",
141143
"Always show message timestamps": "Always show message timestamps",

0 commit comments

Comments
 (0)