Add TetheredNet

This commit is contained in:
linsui
2024-09-04 20:40:06 +08:00
committed by Hans-Christoph Steiner
parent 374b3251d4
commit 7f096c714d
4 changed files with 10 additions and 0 deletions

View File

@@ -140,6 +140,8 @@ public class AntiFeaturesListingView extends RecyclerView {
return context.getString(R.string.antitracklist);
} else if (antiFeatureName.equals(context.getString(R.string.antinonfreenet_key))) {
return context.getString(R.string.antinonfreenetlist);
} else if (antiFeatureName.equals(context.getString(R.string.antitetherednet_key))) {
return context.getString(R.string.antitetherednetlist);
} else if (antiFeatureName.equals(context.getString(R.string.antinonfreead_key))) {
return context.getString(R.string.antinonfreeadlist);
} else if (antiFeatureName.equals(context.getString(R.string.antinonfreedep_key))) {
@@ -168,6 +170,8 @@ public class AntiFeaturesListingView extends RecyclerView {
return R.drawable.ic_antifeature_tracking;
} else if (antiFeatureName.equals(context.getString(R.string.antinonfreenet_key))) {
return R.drawable.ic_antifeature_nonfreenet;
} else if (antiFeatureName.equals(context.getString(R.string.antitetherednet_key))) {
return R.drawable.ic_antifeature_tetherednet;
} else if (antiFeatureName.equals(context.getString(R.string.antinonfreead_key))) {
return R.drawable.ic_antifeature_nonfreeadd;
} else if (antiFeatureName.equals(context.getString(R.string.antinonfreedep_key))) {

View File

@@ -20,6 +20,7 @@
<item>@string/antitrack_key</item>
<item>@string/antinonfreead_key</item>
<item>@string/antinonfreenet_key</item>
<item>@string/antitetherednet_key</item>
<item>@string/antinonfreedep_key</item>
<item>@string/antiupstreamnonfree_key</item>
<item>@string/antinonfreeassets_key</item>
@@ -35,6 +36,7 @@
<item>@string/antitrack_key</item>
<item>@string/antinonfreead_key</item>
<item>@string/antinonfreenet_key</item>
<item>@string/antitetherednet_key</item>
<item>@string/antinonfreedep_key</item>
<item>@string/antiupstreamnonfree_key</item>
<item>@string/antinonfreeassets_key</item>
@@ -49,6 +51,7 @@
<item>@string/antitrack</item>
<item>@string/antinonfreead</item>
<item>@string/antinonfreenet</item>
<item>@string/antitetherednet</item>
<item>@string/antinonfreedep</item>
<item>@string/antiupstreamnonfree</item>
<item>@string/antinonfreeassets</item>

View File

@@ -21,6 +21,7 @@
<string name="antiads_key">Ads</string>
<string name="antitrack_key">Tracking</string>
<string name="antinonfreenet_key">NonFreeNet</string>
<string name="antitetherednet_key">TetheredNet</string>
<string name="antinonfreead_key">NonFreeAdd</string>
<string name="antinonfreedep_key">NonFreeDep</string>
<string name="antiupstreamnonfree_key">UpstreamNonFree</string>

View File

@@ -320,6 +320,7 @@ This often occurs with apps installed via Google Play or other sources, if they
<string name="antitrack">Tracking</string>
<string name="antinonfreead">Non-Free Addons</string>
<string name="antinonfreenet">Non-Free Network Services</string>
<string name="antitetherednet">Tethered Network Services</string>
<string name="antinonfreedep">Non-Free Dependencies</string>
<string name="antiupstreamnonfree">Upstream Non-Free</string>
<string name="antinonfreeassets">Non-Free Assets</string>
@@ -332,6 +333,7 @@ This often occurs with apps installed via Google Play or other sources, if they
<string name="antitracklist">This app tracks and reports your activity</string>
<string name="antinonfreeadlist">This app promotes non-free add-ons</string>
<string name="antinonfreenetlist">This app promotes or depends entirely on a non-free network service</string>
<string name="antitetherednetlist">This app depends entirely on a certain instance of a network service</string>
<string name="antinonfreedeplist">This app depends on other non-free apps</string>
<string name="antiupstreamnonfreelist">The upstream source code is not entirely Free</string>
<string name="antinonfreeassetslist">This app contains non-free assets</string>