diff options
author | 2025-02-19 14:43:13 -0800 | |
---|---|---|
committer | 2025-02-24 11:36:49 -0800 | |
commit | e6a9f21e66371f6234f916345233a8f65871e80e (patch) | |
tree | cd83467c81c80804747dc9871b21157111f0d351 /java/res | |
parent | fd34abc34ce07dbe6a740592a42bf7822d0f903e (diff) |
Update the text preview UI copy button content description
Update the text preview UI copy button content description from "copy"
to either "Copy text" or "Copy link" depending whether the shared text
is a link.
Fix: 395683735
Test: atest IntentResolver-tests-unit
Test: manual testing: share a text and a link and check TalkBack
announcement for the button.
Flag: EXEMPT bug fix
Change-Id: I668c2fd7e7f0a025c75e43a8a49541ebf3a94730
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values/strings.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index 52b27304..c9ee9d80 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -353,4 +353,11 @@ <!-- Accessibility announcement for the all-applications group in the list of targets. [CHAR LIMIT=NONE] --> <string name="all_apps_group_a11y_title">App list</string> + + <!-- Content description for an action chip button in the content preview UI when a text is + shared. The button is used to copy the text into the clipboard. [CHAR_LIMIT=NONE] --> + <string name="copy_text">Copy text</string> + <!-- Content description for an action chip button in the content preview UI when a link is + shared. The button is used to copy the text into the clipboard. [CHAR_LIMIT=NONE] --> + <string name="copy_link">Copy link</string> </resources> |