Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HCD 516] Add default language precedence #570

Merged
merged 3 commits into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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