1<!-- 2 Copyright 2024 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 18 19 <!-- Label to show to user for this package and for Photo picker. --> 20 <string name="photopicker_application_label" translation_description="Label for the application that handles picking media files to share with other apps. [CHAR_LIMIT=NONE]">Photos & videos</string> 21 22 <!-- Content description for an individual piece of media in the photopicker's media grid --> 23 <string name="photopicker_media_item" translation_description="Accessibility text denoting an element that represents an individual photo or video in a grid of selectable media. [CHAR_LIMIT=NONE]">Media</string> 24 25 <!-- Content description of when a photo was taken on [CHAR LIMIT=NONE] --> 26 <string name="photopicker_item_content_desc"><xliff:g id="item_name" example="Photo">%1$s</xliff:g> taken on <xliff:g id="time" example="Jul 7, 2020, 12:00:00 AM">%2$s</xliff:g></string> 27 28 <!-- Content description of a video item [CHAR LIMIT=NONE] --> 29 <string name="photopicker_video_item_content_desc">Video taken on <xliff:g id="time" example="Jul 7, 2020, 12:00:00 AM">%1$s</xliff:g> with duration <xliff:g id="duration" example="00:03">%2$s</xliff:g></string> 30 31 <!-- Title of the picker photo item [CHAR LIMIT=40] --> 32 <string name="photopicker_photo">Photo</string> 33 34 <!-- Title of the picker GIF item [CHAR LIMIT=40] --> 35 <string name="photopicker_gif">GIF</string> 36 37 <!-- Title of the picker motion photo item [CHAR LIMIT=60] --> 38 <string name="photopicker_motion_photo">Motion Photo</string> 39 40 <!-- Content description for the selected checkmark in the media grid --> 41 <string name="photopicker_item_selected" translation_description="Accessibility text denoting an individual photo is selected in a grid of photos. [CHAR_LIMIT=NONE]">Selected</string> 42 43 <!-- Content description for the not selected empty circle in the media grid --> 44 <string name="photopicker_item_not_selected" translation_description="Accessibility text denoting an individual photo is not selected in a grid of photos. [CHAR_LIMIT=NONE]">Not selected</string> 45 46 <!-- Content description for action to select an item --> 47 <string name="photopicker_select_action_description" translation_description="Accessibility text for describing the action to select. [CHAR_LIMIT=NONE]">Select</string> 48 49 <!-- Content description for action to deselect an item --> 50 <string name="photopicker_deselect_action_description" translation_description="Accessibility text for describing the action to deselect. [CHAR_LIMIT=NONE]">Deselect</string> 51 52 <!-- Button label for the "Done" button in the selection bar --> 53 <string name="photopicker_done_button_label" translation_description="Button label that confirms the selected items and closes the photopicker.">Done</string> 54 55 <!-- Accessibility description for the X (deselect all) button in the selection bar --> 56 <string name="photopicker_clear_selection_button_description" translation_description="Button Accessibility description that unselects all selected media items.">Deselect all</string> 57 58 <!-- Accessibility description for the count in the selection bar --> 59 <string name="photopicker_selection_size_description" translation_description="Accessibility description for selection count in the selection bar."><xliff:g id="count" example="5">%1$s</xliff:g> photos or videos selected</string> 60 61 <!-- Snackbar message when new items can't be selected because the selection is full --> 62 <string name="photopicker_selection_limit_exceeded_snackbar" translation_description="">Select up to <xliff:g id="count" example="42">%1$s</xliff:g> items</string> 63 64 <!-- Button label for the Photos navigation button --> 65 <string name="photopicker_photos_nav_button_label" translation_description="Button label that gives the user the option to navigate to a grid of their photos.">Photos</string> 66 67 <!-- Button label for the Albums navigation button --> 68 <string name="photopicker_albums_nav_button_label" translation_description="Button label that gives the user the option to navigate to a grid of their albums.">Albums</string> 69 70 <!-- Empty state title when the photo grid has no photos --> 71 <string name="photopicker_photos_empty_state_title" translation_description="Title of the message shown to the user when there are no photos to show">No photos yet</string> 72 73 <!-- Empty state message when the photo grid has no photos --> 74 <string name="photopicker_photos_empty_state_body" translation_description="Message shown to the user when no photos are able to be shown underneath the primary message title">Start capturing photos and videos</string> 75 76 <!-- Empty state title when the camera album has no photos --> 77 <string name="photopicker_camera_empty_state_body" translation_description="Title of the message shown to the user when there are no photos in the camera album">Photos and videos captured by your camera app will appear here</string> 78 79 <!-- Empty state title when the favorites album has no photos --> 80 <string name="photopicker_favorites_empty_state_title" translation_description="Title of the message shown to the user when there are no favorite photos to show">No favorites yet</string> 81 82 <!-- Empty state body when the favorites album has no photos --> 83 <string name="photopicker_favorites_empty_state_body" translation_description="Message shown to the user when there are no favorite photos to show">Photos and videos marked as favorites, or starred, will appear here</string> 84 85 <!-- Empty state title when the videos album has no photos --> 86 <string name="photopicker_videos_empty_state_title" translation_description="Title of the message shown to the user when there are no videos to show">No videos yet</string> 87 88 <!-- Empty state body when the videos album has no photos --> 89 <string name="photopicker_videos_empty_state_body" translation_description="Message shown to the user when there are no videos to show">Videos captured by your camera app, saved, or shared will appear here</string> 90 91 92 <!-- Content description for a button which performs back option --> 93 <string name="photopicker_back_option" translation_description="Button content description that gives the user the option to navigate back to the parent view.">Back</string> 94 95 <!-- Button label for the banner dismiss button --> 96 <string name="photopicker_dismiss_banner_button_label" translation_description="Button label that gives the user the option to dismiss an informational banner">Dismiss</string> 97 98</resources> 99