diff --git a/src/com/android/settings/TrustedCredentialsSettings.java b/src/com/android/settings/TrustedCredentialsSettings.java index 4efbe02abcf..5ec513fbdfd 100644 --- a/src/com/android/settings/TrustedCredentialsSettings.java +++ b/src/com/android/settings/TrustedCredentialsSettings.java @@ -316,7 +316,11 @@ public class TrustedCredentialsSettings extends Fragment { final TextView title = (TextView) convertView.findViewById(android.R.id.title); final UserHandle profile = getGroup(groupPosition); final UserInfo userInfo = mUserManager.getUserInfo(profile.getIdentifier()); - title.setText(userInfo.name); + if (userInfo.isManagedProfile()) { + title.setText(R.string.category_work); + } else { + title.setText(R.string.category_personal); + } title.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_END); return convertView;