diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-02-14 11:06:37 +0900 |
---|---|---|
committer | Minseo Lee <itoupluk427@gmail.com> | 2024-02-14 11:06:37 +0900 |
commit | 3f5bdd8be37efbe3bf7b1b60bea2bfa4e32aa159 (patch) | |
tree | ef4c3ae654f5be2708aaff1063994b4e7048ca53 /src/view/com/auth/SplashScreen.tsx | |
parent | 836cff306e3485f894cba7c7a4245178745bbfa5 (diff) | |
download | voidsky-3f5bdd8be37efbe3bf7b1b60bea2bfa4e32aa159.tar.zst |
Mark more texts for localization
Diffstat (limited to 'src/view/com/auth/SplashScreen.tsx')
-rw-r--r-- | src/view/com/auth/SplashScreen.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/view/com/auth/SplashScreen.tsx b/src/view/com/auth/SplashScreen.tsx index 134ae11f1..f3d783476 100644 --- a/src/view/com/auth/SplashScreen.tsx +++ b/src/view/com/auth/SplashScreen.tsx @@ -66,7 +66,9 @@ export const SplashScreen = ({ onPress={onPressCreateAccount} accessibilityRole="button" accessibilityLabel={_(msg`Create new account`)} - accessibilityHint="Opens flow to create a new Bluesky account"> + accessibilityHint={_( + msg`Opens flow to create a new Bluesky account`, + )}> <Text style={[s.white, styles.btnLabel]}> <Trans>Create a new account</Trans> </Text> @@ -77,7 +79,9 @@ export const SplashScreen = ({ onPress={onPressSignin} accessibilityRole="button" accessibilityLabel={_(msg`Sign in`)} - accessibilityHint="Opens flow to sign into your existing Bluesky account"> + accessibilityHint={_( + msg`Opens flow to sign into your existing Bluesky account`, + )}> <Text style={[pal.text, styles.btnLabel]}> <Trans>Sign In</Trans> </Text> |