diff options
| author | 2023-03-18 14:45:17 +0000 | |
|---|---|---|
| committer | 2023-03-21 02:48:30 +0000 | |
| commit | 19b5edd72865206184068604804d5eebf83f896d (patch) | |
| tree | 0be73be8bac970e03c2a3b6baf80c1f2901da961 /java/res/values | |
| parent | 3c3755b4ea535df1b5f2a9f3e57b235b660e1fcd (diff) | |
Add headline to sharesheet.
Move modify share UI to upper right.
Bug: 273788379
Bug: 271159515
Test: atest IntentResolverUnitTests
Change-Id: Ia1099c60a4bf9034b6a34b48a948ca1b5280a9aa
Diffstat (limited to 'java/res/values')
| -rw-r--r-- | java/res/values/strings.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index d1c97c7e..f38666e4 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -137,6 +137,36 @@ } </string> + <!-- Title atop a sharing UI indicating that text is being shared [CHAR_LIMIT=25] --> + <string name="sharing_text">Sharing text</string> + <!-- Title atop a sharing UI indicating that a link (URL) is being shared [CHAR_LIMIT=25] --> + <string name="sharing_link">Sharing link</string> + <!-- Title atop a sharing UI indicating that some images are being shared [CHAR_LIMIT=25] --> + <string name="sharing_images">{count, plural, + =1 {Sharing image} + other {Sharing # images} + } + </string> + <!-- Title atop a sharing UI indicating that some videos are being shared [CHAR_LIMIT=25] --> + <string name="sharing_videos">{count, plural, + =1 {Sharing video} + other {Sharing # videos} + } + </string> + <!-- Title atop a sharing UI indicating that some number of items are being shared + (for example: sharing a mixture of photos and videos [CHAR_LIMIT=25] --> + <string name="sharing_items">{count, plural, + =1 {Sharing # item} + other {Sharing # items} + } + </string> + <!-- Title atop a sharing UI indicating that an image is being shared with text attached. + [CHAR_LIMIT=25] --> + <string name="sharing_image_with_text">Sharing image with text</string> + <!-- Title atop a sharing UI indicating that an image is being shared with a link (URL) + attached. [CHAR_LIMIT=25] --> + <string name="sharing_image_with_link">Sharing image with link</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> |