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

(8.5.4) GH-2166: Update name of Unknown category #613

Merged
merged 9 commits into from Oct 27, 2020
Next

Rename unknown to unidentified

  • Loading branch information
benstrumeyer committed Oct 1, 2020
commit b56ba5595e829d124e9126f9afa71c6388130a93
@@ -1507,7 +1507,7 @@
"message": "Choose which trackers to block"
},
"hub_setup_antisuite_description_antitracking": {
"message": "Anonymize unblocked and unknown trackers for greater browsing protection."
"message": "Anonymize unblocked and unidentified trackers for greater browsing protection."
},
"hub_setup_feature_already_active": {
"message": "This feature is already active in Cliqz by default. $LINK_LM_START$Learn More$LINK_LM_END$",
@@ -2324,11 +2324,11 @@
"OFFERS_ENDS": {
"message": ""
},
"unknown": {
"message": "Unknown"
"unidentified": {
"message": "Unidentified"
},
"unknown_description": {
"message": "Unknown trackers scrubbed by Anti-Tracking"
"unidentified_description": {
"message": "Unidentified trackers scrubbed by Anti-Tracking"
},
"ghostery_is_ready": {
"message": "Ghostery is Ready!"
@@ -223,8 +223,8 @@ class PanelAndroid extends React.Component {
});
const unknownCategory = {
id: 'unknown',
name: t('unknown'),
description: t('unknown_description'),
name: t('unidentified'),
description: t('unidentified_description'),
img_name: 'unknown',
num_total: unknownTrackers.length,
num_blocked: 0, // We don't want to see the Trackers Blocked text
@@ -53,8 +53,8 @@ class Categories extends React.Component {
const unknownCategoryMapping = isUnknown ? (
{
id: 'unknown',
name: t('unknown'),
description: t('unknown_description'),
name: t('unidentified'),
description: t('unidentified_description'),
img_name: 'unknown',
num_total: unknownCategory.unknownTrackers.length,
num_blocked: unknownCategory.unknownTrackerCount,
@@ -388,7 +388,7 @@ class DonutGraph extends React.Component {
id="unknown_tooltip"
key="unknown"
>
{t('unknown')}
{t('unidentified')}
</span>
)}
</div>
ProTip! Use n and p to navigate between commits in a pull request.