Can I show the localized Drop In user interface using the Braintree iOS SDK

I have the built-in Braintree Drop-In user interface in my application and everything works fine :) I just want to know that I can show a localized interface? Is it supported in the current version of iOS SDK? For example, if the current locale is French .. I can set it by doing something like [self.braintree setLocale:@"fr"] , etc.

I searched several Braintree forums and received no answer regarding this.

+5
source share
2 answers

On iOS integration, yes, it is supported. The Drop-in option is currently available in 18 languages ​​on iOS and Android, but only in English (USA) on the Internet.

Here is the SDK Details for iOS Localization Packs

+4
source

If you integrate through Cocoapods, then localizations are automatically available to you when you switch the device language.

However, if you are doing manual integration (for example, dragging and dropping raw Braintree SDK files into your project), you need to create a resource package called Braintree-Drop-In-Localization , add localized .strings files for your desired languages, and add this resource to the application.

0
source

All Articles