* Add missing msg macro calls for i18n (#7903) * Add missing msg macro calls for i18n * Update src/screens/Settings/AppIconSettings/useAppIconSets.ts Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Apply surfdude29's suggestions from code review Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com> Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Format --------- Co-authored-by: Stanislas Signoud <signez@stanisoft.net> Co-authored-by: Samuel Newman <mozzius@protonmail.com> Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
This commit is contained in:
@@ -38,11 +38,11 @@ export function SubtitleDialogBtn(props: Props) {
|
||||
return (
|
||||
<View style={[a.flex_row, a.my_xs]}>
|
||||
<Button
|
||||
label={isWeb ? _('Captions & alt text') : _('Alt text')}
|
||||
label={isWeb ? _(msg`Captions & alt text`) : _(msg`Alt text`)}
|
||||
accessibilityHint={
|
||||
isWeb
|
||||
? _('Opens captions and alt text dialog')
|
||||
: _('Opens alt text dialog')
|
||||
? _(msg`Opens captions and alt text dialog`)
|
||||
: _(msg`Opens alt text dialog`)
|
||||
}
|
||||
size="small"
|
||||
color="secondary"
|
||||
|
||||
@@ -56,7 +56,7 @@ export function SubtitleFilePicker({
|
||||
<View style={a.flex_row}>
|
||||
<Button
|
||||
onPress={handleClick}
|
||||
label={_('Select subtitle file (.vtt)')}
|
||||
label={_(msg`Select subtitle file (.vtt)`)}
|
||||
size="large"
|
||||
color="primary"
|
||||
variant="solid"
|
||||
|
||||
Reference in New Issue
Block a user