Remove "IT admin" from personal VPN message.
Bug: 242296806 Test: atest com.android.systemui.qs.QSSecurityFooterTest Change-Id: I9678496f7635a3b7abff6c4056f5d568a6ed9e5f
This commit is contained in:
@@ -1257,7 +1257,10 @@
|
||||
<string name="monitoring_description_managed_profile_network_logging">Your admin has turned on network logging, which monitors traffic in your work profile but not in your personal profile.</string>
|
||||
|
||||
<!-- Monitoring dialog: Description of an active VPN. [CHAR LIMIT=NONE]-->
|
||||
<string name="monitoring_description_named_vpn">This device is connected to the internet through <xliff:g id="vpn_app" example="Foo VPN App">%1$s</xliff:g>. Your network activity, including emails and browsing data, is visible to your IT admin.</string>
|
||||
<string name="monitoring_description_named_vpn">This device is connected to the internet through <xliff:g id="vpn_app" example="Foo VPN App">%1$s</xliff:g>. Your network activity, including emails and browsing data, is visible to the VPN provider.</string>
|
||||
|
||||
<!-- Monitoring dialog: Description of an active VPN on a managed device. [CHAR LIMIT=NONE]-->
|
||||
<string name="monitoring_description_managed_device_named_vpn">This device is connected to the internet through <xliff:g id="vpn_app" example="Foo VPN App">%1$s</xliff:g>. Your network activity, including emails and browsing data, is visible to your IT admin.</string>
|
||||
|
||||
<!-- Monitoring dialog: Description of two active VPNs. [CHAR LIMIT=NONE]-->
|
||||
<string name="monitoring_description_two_named_vpns">This device is connected to the internet through <xliff:g id="vpn_app" example="Foo VPN App">%1$s</xliff:g> and <xliff:g id="vpn_app" example="Bar VPN App">%2$s</xliff:g>. Your network activity, including emails and browsing data, is visible to your IT admin.</string>
|
||||
|
||||
@@ -719,7 +719,8 @@ public class QSSecurityFooterUtils implements DialogInterface.OnClickListener {
|
||||
String name = vpnName != null ? vpnName : vpnNameWorkProfile;
|
||||
String namedVp = mDpm.getResources().getString(
|
||||
QS_DIALOG_MANAGEMENT_NAMED_VPN,
|
||||
() -> mContext.getString(R.string.monitoring_description_named_vpn, name),
|
||||
() -> mContext.getString(
|
||||
R.string.monitoring_description_managed_device_named_vpn, name),
|
||||
name);
|
||||
message.append(namedVp);
|
||||
}
|
||||
|
||||
@@ -587,14 +587,14 @@ public class QSSecurityFooterTest extends SysuiTestCase {
|
||||
assertEquals(addLink(mContext.getString(R.string.monitoring_description_two_named_vpns,
|
||||
VPN_PACKAGE, VPN_PACKAGE_2)),
|
||||
mFooterUtils.getVpnMessage(false, true, VPN_PACKAGE, VPN_PACKAGE_2));
|
||||
assertEquals(addLink(mContext.getString(R.string.monitoring_description_named_vpn,
|
||||
VPN_PACKAGE)),
|
||||
assertEquals(addLink(mContext.getString(
|
||||
R.string.monitoring_description_managed_device_named_vpn, VPN_PACKAGE)),
|
||||
mFooterUtils.getVpnMessage(true, false, VPN_PACKAGE, null));
|
||||
assertEquals(addLink(mContext.getString(R.string.monitoring_description_named_vpn,
|
||||
VPN_PACKAGE)),
|
||||
mFooterUtils.getVpnMessage(false, false, VPN_PACKAGE, null));
|
||||
assertEquals(addLink(mContext.getString(R.string.monitoring_description_named_vpn,
|
||||
VPN_PACKAGE_2)),
|
||||
assertEquals(addLink(mContext.getString(
|
||||
R.string.monitoring_description_managed_device_named_vpn, VPN_PACKAGE_2)),
|
||||
mFooterUtils.getVpnMessage(true, true, null, VPN_PACKAGE_2));
|
||||
assertEquals(addLink(mContext.getString(
|
||||
R.string.monitoring_description_managed_profile_named_vpn,
|
||||
|
||||
Reference in New Issue
Block a user