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

GH-908 Un-swapped text on cliqz-features page on setup flow #27

Merged
merged 2 commits into from Apr 4, 2018
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Next

GH-908 Un-swapped text on cliqz-features page on setup flow

  • Loading branch information
IAmThePan committed Apr 3, 2018
commit 3d09a37dfe1b88d4d8a13b3639ff430f55fd3a3d
@@ -78,15 +78,15 @@ class AdditionalFeaturesView extends Component {
* @return {Object}
*/
createAntiTrackDescriptionMarkup() {
return { __html: IS_CLIQZ ? t('setup_feature_active_in_cliqz') : t('setup_additional_view_adblock_desc') };
return { __html: IS_CLIQZ ? t('setup_feature_active_in_cliqz') : t('setup_additional_view_antitrack_desc') };
}

/**
* The html for for the Enhanced AdBlock description
* @return {Object}
*/
createAdBlockDescriptionMarkup() {
return { __html: IS_CLIQZ ? t('setup_feature_active_in_cliqz') : t('setup_additional_view_antitrack_desc') };
return { __html: IS_CLIQZ ? t('setup_feature_active_in_cliqz') : t('setup_additional_view_adblock_desc') };
}

/**
ProTip! Use n and p to navigate between commits in a pull request.