-
Notifications
You must be signed in to change notification settings - Fork 8
Localization
Vladas Drejeris edited this page Jun 4, 2021
·
2 revisions
Adform SDK allows publishers to localize texts used in ad views. These texts may be localized using two methods:
- By setting localized texts through AdformSDK shared instance. This method is convenient when an application uses custom localization and allows users to select the language in-app. In this case, you should set localized texts on application launch and every time when the user changes the app language.
Swift
AdformSDK.setLocalizedString("Skip", forKey: AFSkipLocalizationKey)
Objective-C
[AdformSDK setLocalizedString:@"Skip" forKey:AFSkipLocalizationKey];
- By using default app localization through Localizable.strings and
NSLocalizedString
macro. You can just add strings used by SDK to your localized strings files and SDK will use them automatically.
At the moment SDK provides these texts for translation:
"AFSkipLocalizationKey" = "Skip";
"AFSkipInLocalizationKey" = "Skip in";
Basic integrations
- Integrating Inline Ad
- Integrating Full Screen Overlay Ad
- Integrating AdHesion Ad
- Integrating Interstitial Ad
- Video Ad Integration
- Debug mode
- Troubleshooting
Advanced integrations
- Advanced Inline Ad Integration
- Integrating Inline Ads in UITableView
- Advanced Full Screen Overlay Ad Integration
- Advanced Interstitial Ad Integration
- Instream Video Ads
Other
- Adding Custom Values
- Adding Keywords
- Adding Key Value Pairs
- Adding Search Words
- Location Tracking
- Security
- Ad Tags
- Header Bidding
- Changing ADX Domain
- Specifying banner loading behaviour
- Customizing in app browser
- GDPR
- US Privacy
- Localization
- In app deeplinks
Mediation adapters