diff options
| author | 2023-04-25 19:17:58 +0000 | |
|---|---|---|
| committer | 2023-04-26 19:24:59 +0000 | |
| commit | c74648831207df9495dcb13bf08afdecdf30fa93 (patch) | |
| tree | 03a354689cc5ff2eb962dafc3ac62a404d45af26 /java/res | |
| parent | f1107ce7b0771006130ac9fc49944f69d9594076 (diff) | |
Update file+share to align toggled text with mock.
When text is toggled off, it should say e.g. "Image only".
Mock:
https://www.figma.com/file/JVIcmg4OhWuO5Vc1UdPVxe/Sharesheet-(U)?node-id=66-5067&t=Wj5ulJXOpvpOPlYY-0
Bug: 279599021
Test: atest UnbundledChooserActivityTest
Test: Manual test with ShareTest
Change-Id: I85eecae3c24f348e355717b78b2cf23aa748f91a
Diffstat (limited to 'java/res')
| -rw-r--r-- | java/res/values/strings.xml | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index 8a24b349..360e2bc6 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -155,48 +155,85 @@ } </string> <!-- Title atop a sharing UI indicating that some number of files are being shared - (for example: sharing a mixture of photos and videos [CHAR_LIMIT=50] --> + (for example: sharing a mixture of photos and videos) [CHAR_LIMIT=50] --> <string name="sharing_files">{count, plural, =1 {Sharing # file} other {Sharing # files} } </string> + + <!-- Title atop a sharing UI indicating that some number of images are being shared + along with text [CHAR_LIMIT=50] --> <string name="sharing_images_with_text">{count, plural, =1 {Sharing image with text} other {Sharing # images with text} } </string> + <!-- Title atop a sharing UI indicating that some number of images are being shared + along with a web link [CHAR_LIMIT=50] --> <string name="sharing_images_with_link">{count, plural, =1 {Sharing image with link} other {Sharing # images with link} } </string> + <!-- Title atop a sharing UI indicating that some number of videos are being shared + along with text [CHAR_LIMIT=50] --> <string name="sharing_videos_with_text">{count, plural, =1 {Sharing video with text} other {Sharing # videos with text} } </string> + <!-- Title atop a sharing UI indicating that some number of videos are being shared + along with a web link [CHAR_LIMIT=50] --> <string name="sharing_videos_with_link">{count, plural, =1 {Sharing video with link} other {Sharing # videos with link} } </string> + <!-- Title atop a sharing UI indicating that some number of files are being shared + along with text [CHAR_LIMIT=50] --> <string name="sharing_files_with_text">{count, plural, =1 {Sharing file with text} other {Sharing # files with text} } </string> + <!-- Title atop a sharing UI indicating that some number of files are being shared + along with a web link [CHAR_LIMIT=50] --> <string name="sharing_files_with_link">{count, plural, =1 {Sharing file with link} other {Sharing # files with link} } </string> + <!-- Message indicating that the attached text has been removed from this share and only the + images are being shared. [CHAR LIMIT=none] --> + <string name="sharing_images_only">{count, plural, + =1 {Image only} + other {Images only} + } + </string> + + <!-- Message indicating that the attached text has been removed from this share and only the + videos are being shared. [CHAR LIMIT=none] --> + <string name="sharing_videos_only">{count, plural, + =1 {Video only} + other {Videos only} + } + </string> + + <!-- Message indicating that the attached text has been removed from this share and only the + files are being shared. [CHAR LIMIT=none] --> + <string name="sharing_files_only">{count, plural, + =1 {File only} + other {Files only} + } + </string> + <!-- ChooserActivity - No direct share targets are available. [CHAR LIMIT=NONE] --> <string name="chooser_no_direct_share_targets">No recommended people to share with</string> |