diff options
| author | 2023-05-10 13:38:59 +0000 | |
|---|---|---|
| committer | 2023-05-10 13:38:59 +0000 | |
| commit | db2f94de76af2af3201bd5ec58e38bf52c95c2b1 (patch) | |
| tree | 6f40cdb2ffd4dcd2cbc415c4bfe6ec38a4b08b3f | |
| parent | d6c040c7b2ae5fb682f7900b67ad7d38bf614f1e (diff) | |
| parent | 89eb10e3461581744aca2653f372caee1e2c8ce7 (diff) | |
Merge "Add separate category header string for clone accounts" into udc-dev
| -rw-r--r-- | core/java/android/app/admin/DevicePolicyResources.java | 13 | ||||
| -rw-r--r-- | packages/SettingsLib/res/values/strings.xml | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/core/java/android/app/admin/DevicePolicyResources.java b/core/java/android/app/admin/DevicePolicyResources.java index f4dc6ba5e2de..0512c7511ec6 100644 --- a/core/java/android/app/admin/DevicePolicyResources.java +++ b/core/java/android/app/admin/DevicePolicyResources.java @@ -243,6 +243,12 @@ public final class DevicePolicyResources { PREFIX + "ACCESSIBILITY_CATEGORY_PERSONAL"; /** + * Content description for clone profile accounts group + */ + public static final String ACCESSIBILITY_CATEGORY_CLONE = + PREFIX + "ACCESSIBILITY_CATEGORY_CLONE"; + + /** * Content description for work profile details page title */ public static final String ACCESSIBILITY_WORK_ACCOUNT_TITLE = @@ -1172,6 +1178,13 @@ public final class DevicePolicyResources { PREFIX + "PERSONAL_CATEGORY_HEADER"; /** + * Header for items under the clone user + */ + public static final String CLONE_CATEGORY_HEADER = + PREFIX + "CLONE_CATEGORY_HEADER"; + + + /** * Text to indicate work notification content will be shown on the lockscreen. */ public static final String LOCK_SCREEN_SHOW_WORK_NOTIFICATION_CONTENT = diff --git a/packages/SettingsLib/res/values/strings.xml b/packages/SettingsLib/res/values/strings.xml index 4e7579277aee..d3203020c363 100644 --- a/packages/SettingsLib/res/values/strings.xml +++ b/packages/SettingsLib/res/values/strings.xml @@ -516,6 +516,9 @@ <string name="category_personal">Personal</string> <!-- Header for items under the work user [CHAR LIMIT=30] --> <string name="category_work">Work</string> + <!-- Header for items under the clone user [CHAR LIMIT=30] --> + <string name="category_clone">Clone</string> + <!-- Full package name of OEM preferred device feedback reporter. Leave this blank, overlaid in Settings/TvSettings [DO NOT TRANSLATE] --> <string name="oem_preferred_feedback_reporter" translatable="false" /> |