Merge pull request #10521 from KDSBrowne/2.2-profile-messages
Remove string concatenation from webcam profile label
This commit is contained in:
commit
ca64c7c1b2
@ -563,7 +563,7 @@ class VideoPreview extends Component {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<option key={profile.id} value={profile.id}>
|
<option key={profile.id} value={profile.id}>
|
||||||
{`${label} ${profile.id === 'hd' ? '' : intl.formatMessage(intlMessages.qualityLabel).toLowerCase()}`}
|
{`${label}`}
|
||||||
</option>
|
</option>
|
||||||
)})}
|
)})}
|
||||||
</select>
|
</select>
|
||||||
|
@ -545,9 +545,9 @@
|
|||||||
"app.recording.stopDescription": "Are you sure you want to pause the recording? You can resume by selecting the record button again.",
|
"app.recording.stopDescription": "Are you sure you want to pause the recording? You can resume by selecting the record button again.",
|
||||||
"app.videoPreview.cameraLabel": "Camera",
|
"app.videoPreview.cameraLabel": "Camera",
|
||||||
"app.videoPreview.profileLabel": "Quality",
|
"app.videoPreview.profileLabel": "Quality",
|
||||||
"app.videoPreview.quality.low": "Low",
|
"app.videoPreview.quality.low": "Low quality",
|
||||||
"app.videoPreview.quality.medium": "Medium",
|
"app.videoPreview.quality.medium": "Medium quality",
|
||||||
"app.videoPreview.quality.high": "High",
|
"app.videoPreview.quality.high": "High quality",
|
||||||
"app.videoPreview.quality.hd": "High definition",
|
"app.videoPreview.quality.hd": "High definition",
|
||||||
"app.videoPreview.cancelLabel": "Cancel",
|
"app.videoPreview.cancelLabel": "Cancel",
|
||||||
"app.videoPreview.closeLabel": "Close",
|
"app.videoPreview.closeLabel": "Close",
|
||||||
|
Loading…
Reference in New Issue
Block a user