Skip to content

Commit

Permalink
Merge pull request #570 from SourcePointUSA/tom-win87-patch-1
Browse files Browse the repository at this point in the history
[HCD 516] Add default language precedence
  • Loading branch information
andresilveirah committed May 13, 2024
2 parents 6945eb6 + 48a355e commit 2d6bd11
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class ViewController: UIViewController {
propertyName: try! SPPropertyName("mobile.multicampaign.demo"),
campaigns: SPCampaigns(
gdpr: SPCampaign(),
ccpa: SPCampaign(),
usnat: SPCampaign(),
ios14: SPCampaign()
),
delegate: self
Expand Down Expand Up @@ -164,7 +164,7 @@ extension ViewController: SPDelegate {

SPCampaigns *campaigns = [[SPCampaigns alloc]
initWithGdpr: campaign
ccpa: campaign
usnat: campaign
ios14: campaign
environment: SPCampaignEnvPublic];

Expand Down Expand Up @@ -488,7 +488,9 @@ consentManager.messageLanguage = SPMessageLanguageGerman;
[consentManager loadMessage];
```

It's important to notice that if any of the components of the message doesn't have a translation for that language, the component will be rendered in english as a fallback.
It's important to notice that if any of the components of the message doesn't have a translation for that language, the component will be rendered in the default language configured in the message builder.

> When the **Use Browser Default** toggle is enabled in the message builder, Sourcepoint will ignore the language setting configured in the SDK and use the default language configured in the message builder. If the end-user's browser language is not supported by a translation in the message builder, the default language set in the message builder will be used instead.
## Loading Stage campaigns

Expand Down

0 comments on commit 2d6bd11

Please sign in to comment.