Merge pull request #10521 from KDSBrowne/2.2-profile-messages

Remove string concatenation from webcam profile label
This commit is contained in:
Anton Georgiev 2020-09-24 16:19:59 -04:00 committed by GitHub
commit ca64c7c1b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -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",