diff options
| author | 2024-01-30 15:54:03 -0500 | |
|---|---|---|
| committer | 2024-01-30 15:57:54 -0500 | |
| commit | 068c7147bd553869fca073fee25f62809c82fb3d (patch) | |
| tree | 3e74270b534164f238e76a84d319699e5d740340 /java/res | |
| parent | bd5caa0531d029d5215df0cab98d62c73b8f6d7e (diff) | |
Adds ProfilePagerResources
This consolidates resources for tabbed profile UI into a form
which can be accessed generically, via profile type, instead of
specific properties.
Bug: 309960444
Test: manual
Change-Id: If96d1a5956ee5c25a36ab5d7160289bb655c224b
Diffstat (limited to 'java/res')
| -rw-r--r-- | java/res/values/strings.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index 0c772573..f98f5cd1 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -250,16 +250,20 @@ <!-- Prompt for the USB device resolver dialog with warning text for USB device dialogs. [CHAR LIMIT=200] --> <string name="usb_device_resolve_prompt_warn">This app has not been granted record permission but could capture audio through this USB device.</string> - <!-- ResolverActivity - profile tabs --> + <!-- ChooserActivity + ResolverActivity - profile tabs --> <!-- Label of a tab on a screen. A user can tap this tap to switch to the 'Personal' view (that shows their personal content) if they have a work profile on their device. [CHAR LIMIT=NONE] --> <string name="resolver_personal_tab">Personal</string> <!-- Label of a tab on a screen. A user can tap this tab to switch to the 'Work' view (that shows their work content) if they have a work profile on their device. [CHAR LIMIT=NONE] --> <string name="resolver_work_tab">Work</string> + <!-- Label of a tab on a screen. A user can tap this tab to switch to the 'Private' view (that shows their Private Space content) if they have private space configured on their device. [CHAR LIMIT=NONE] --> + <string name="resolver_private_tab">Private</string> <!-- Accessibility label for the personal tab button. [CHAR LIMIT=NONE] --> <string name="resolver_personal_tab_accessibility">Personal view</string> <!-- Accessibility label for the work tab button. [CHAR LIMIT=NONE] --> <string name="resolver_work_tab_accessibility">Work view</string> + <!-- Accessibility label for the private tab button. [CHAR LIMIT=NONE] --> + <string name="resolver_private_tab_accessibility">Private view</string> <!-- Title of a screen. This text lets the user know that their IT admin doesn't allow them to share this content across profiles. [CHAR LIMIT=NONE] --> <string name="resolver_cross_profile_blocked">Blocked by your IT admin</string> |