diff options
author | Eric Bailey <git@esb.lol> | 2025-03-06 12:14:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-06 12:14:58 -0600 |
commit | 8eb1f8f1fc0d80635ac2f78d87adc73a3862ca3f (patch) | |
tree | ca237caccf5ef06b24d284a92a1d5f9bbac70c7c /src/screens/StarterPack/Wizard/StepDetails.tsx | |
parent | da2b6f4797f55d4c2437f4ad32c94777eacfbf2c (diff) | |
download | voidsky-8eb1f8f1fc0d80635ac2f78d87adc73a3862ca3f.tar.zst |
* 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>
Diffstat (limited to 'src/screens/StarterPack/Wizard/StepDetails.tsx')
-rw-r--r-- | src/screens/StarterPack/Wizard/StepDetails.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/screens/StarterPack/Wizard/StepDetails.tsx b/src/screens/StarterPack/Wizard/StepDetails.tsx index 49de979ee..a01a3d3a9 100644 --- a/src/screens/StarterPack/Wizard/StepDetails.tsx +++ b/src/screens/StarterPack/Wizard/StepDetails.tsx @@ -50,7 +50,14 @@ export function StepDetails() { value={state.name} onChangeText={text => dispatch({type: 'SetName', name: text})} /> - <TextField.SuffixText label={_(`${state.name?.length} out of 50`)}> + <TextField.SuffixText + label={_( + msg({ + comment: + 'Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field', + message: '${state.name?.length} out of 50', + }), + )}> <Text style={[t.atoms.text_contrast_medium]}> {state.name?.length ?? 0}/50 </Text> |