hieuvp / react-native-fingerprint-scanner

Provide Fingerprint, Touch ID, and Face ID Scanner for React Native (Compatible with both Android and iOS)
https://www.npmjs.com/package/react-native-fingerprint-scanner
870 stars 298 forks source link

Language Translation for Cancel Text and Bio metric type text #114

Closed Ramaraju1992 closed 4 years ago

Ramaraju1992 commented 4 years ago

Hi, We are trying to change language translations for description in confirm bio metric popup using

const authOptions = {
            description: translate('confirmYourFingerprint'),,
            onAttempt: this.handleAuthenticationAttempted,
        };

it is working as expected. And when we try to change the language for cancel button text, we are unable to find where we can change. please help us to change language translations for cancel button text and Bio Metric type text

phillbaker commented 4 years ago

To confirm @Ramaraju1992, you're using an iOS device? If so, the prompt is system generated and only accepts a description, not text for the action buttons. Those buttons should be translated as per the system language, so whatever language the user has set on their phone will be used.

Ramaraju1992 commented 4 years ago

Hai @phillbaker , Yes i am facing issue in iOS device only. in android i was able change texts as expected. thanks for update.