Align strings from 'subtitles' to 'captions' (#9941)

This commit is contained in:
surfdude29
2026-02-24 21:56:12 +00:00
committed by GitHub
parent db1f45de92
commit e656fe688d
3 changed files with 6 additions and 6 deletions
@@ -402,8 +402,8 @@ export function Controls({
{hasSubtitleTrack && (
<ControlButton
active={subtitlesEnabled}
activeLabel={_(msg`Disable subtitles`)}
inactiveLabel={_(msg`Enable subtitles`)}
activeLabel={_(msg`Disable captions`)}
inactiveLabel={_(msg`Enable captions`)}
activeIcon={CCActiveIcon}
inactiveIcon={CCInactiveIcon}
onPress={onPressSubtitles}
@@ -180,7 +180,7 @@ function SubtitleDialogInner({
{subtitleMissingLanguage && (
<Text style={[a.text_sm, t.atoms.text_contrast_medium]}>
<Trans>
Ensure you have selected a language for each subtitle file.
Ensure you have selected a language for each caption file.
</Trans>
</Text>
)}
@@ -283,7 +283,7 @@ function SubtitleFileRow({
</View>
<Button
label={_(msg`Remove subtitle file`)}
label={_(msg`Remove caption file`)}
size="tiny"
shape="round"
variant="outline"
@@ -58,14 +58,14 @@ export function SubtitleFilePicker({
<View style={a.flex_row}>
<Button
onPress={handleClick}
label={_(msg`Select subtitle file (.vtt)`)}
label={_(msg`Select caption file (.vtt)`)}
size="large"
color="primary"
variant="solid"
disabled={disabled}>
<ButtonIcon icon={CCIcon} />
<ButtonText>
<Trans>Select subtitle file (.vtt)</Trans>
<Trans>Select caption file (.vtt)</Trans>
</ButtonText>
</Button>
</View>