For iOS we have 2 props cropperChooseText and cropperCancelText to localize these buttons inside Crop screen
ImagePicker.openPicker({
cropperChooseText: 'any text...', //ios only
cropperCancelText: 'any text...', //ios only
})
and we can add languages to localizate the camera / gallery / cropper text buttons:
- Open your Xcode project
- Go to your project settings by opening the project name on the Navigation (left side)
- Select your project in the project list
- Should be into the Info tab and add in Localizations the language your app was missing throughout the +
- Rebuild and you should now have your app camera and gallery with the classic ios text in the language you added.
But how to localize Crop screen on Android?