Sungsoo Lim | 692a547 | 2018-01-17 15:11:07 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright 2018 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> |
| 18 | <!-- Name for the default system route prior to Jellybean. [CHAR LIMIT=30] --> |
| 19 | <string name="mr_system_route_name">System</string> |
| 20 | |
| 21 | <!-- Name for the user route category created when publishing routes to the system in Jellybean and above. [CHAR LIMIT=30] --> |
| 22 | <string name="mr_user_route_category_name">Devices</string> |
| 23 | |
| 24 | <!-- String to be shown as a tooltip of MediaRouteButton |
| 25 | Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=50] --> |
| 26 | <string name="mr_button_content_description">Cast button</string> |
| 27 | |
| 28 | <!-- Content description of a MediaRouteButton for accessibility support when no remote device is connected. |
| 29 | Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=NONE] --> |
| 30 | <string name="mr_cast_button_disconnected">Cast button. Disconnected</string> |
| 31 | |
| 32 | <!-- Content description of a MediaRouteButton for accessibility support while connecting to a remote device. |
| 33 | Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=NONE] --> |
| 34 | <string name="mr_cast_button_connecting">Cast button. Connecting</string> |
| 35 | |
| 36 | <!-- Content description of a MediaRouteButton for accessibility support when a remote device is connected. |
| 37 | Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=NONE] --> |
| 38 | <string name="mr_cast_button_connected">Cast button. Connected</string> |
| 39 | |
| 40 | <!-- Title of the media route chooser dialog. [CHAR LIMIT=30] --> |
| 41 | <string name="mr_chooser_title">Cast to</string> |
| 42 | |
| 43 | <!-- Placeholder text to show when no devices have been found. [CHAR LIMIT=50] --> |
| 44 | <string name="mr_chooser_searching">Finding devices</string> |
| 45 | |
| 46 | <!-- Button to disconnect from a media route. [CHAR LIMIT=30] --> |
| 47 | <string name="mr_controller_disconnect">Disconnect</string> |
| 48 | |
| 49 | <!-- Button to stop playback and disconnect from a media route. [CHAR LIMIT=30] --> |
| 50 | <string name="mr_controller_stop_casting">Stop casting</string> |
| 51 | |
| 52 | <!-- Content description for accessibility (not shown on the screen): dialog close button. [CHAR LIMIT=NONE] --> |
| 53 | <string name="mr_controller_close_description">Close</string> |
| 54 | |
| 55 | <!-- Content description for accessibility (not shown on the screen): media play button. [CHAR LIMIT=NONE] --> |
| 56 | <string name="mr_controller_play">Play</string> |
| 57 | |
| 58 | <!-- Content description for accessibility (not shown on the screen): media pause button. [CHAR LIMIT=NONE] --> |
| 59 | <string name="mr_controller_pause">Pause</string> |
| 60 | |
| 61 | <!-- Content description for accessibility (not shown on the screen): media stop button. [CHAR LIMIT=NONE] --> |
| 62 | <string name="mr_controller_stop">Stop</string> |
| 63 | |
| 64 | <!-- Content description for accessibility (not shown on the screen): group expand button. Pressing button shows group members of a selected route group. [CHAR LIMIT=NONE] --> |
| 65 | <string name="mr_controller_expand_group">Expand</string> |
| 66 | |
| 67 | <!-- Content description for accessibility (not shown on the screen): group collapse button. Pressing button hides group members of a selected route group. [CHAR LIMIT=NONE] --> |
| 68 | <string name="mr_controller_collapse_group">Collapse</string> |
| 69 | |
| 70 | <!-- Content description for accessibility (not shown on the screen): album art button. Clicking on the album art takes user to a predefined activity per media app. [CHAR LIMIT=50] --> |
| 71 | <string name="mr_controller_album_art">Album art</string> |
| 72 | |
| 73 | <!-- Content description for accessibility (not shown on the screen): volume slider. [CHAR LIMIT=NONE] --> |
| 74 | <string name="mr_controller_volume_slider">Volume slider</string> |
| 75 | |
| 76 | <!-- Placeholder text to show when no media have been selected for playback. [CHAR LIMIT=50] --> |
| 77 | <string name="mr_controller_no_media_selected">No media selected</string> |
| 78 | |
| 79 | <!-- Placeholder text to show when no title/description have been found for a given song/video. [CHAR LIMIT=50] --> |
| 80 | <string name="mr_controller_no_info_available">No info available</string> |
| 81 | |
| 82 | <!-- Placeholder text indicating that the user is currently casting screen. [CHAR LIMIT=50] --> |
| 83 | <string name="mr_controller_casting_screen">Casting screen</string> |
Insun Kang | 080b934 | 2018-01-17 23:03:48 +0900 | [diff] [blame^] | 84 | |
| 85 | <string name="lockscreen_pause_button_content_description">Pause</string> |
| 86 | <string name="lockscreen_play_button_content_description">Play</string> |
| 87 | |
| 88 | <!-- Text for error alert when a video container is not valid for progressive download/playback. --> |
| 89 | <string name="VideoView2_error_text_invalid_progressive_playback">This video isn\'t valid for streaming to this device.</string> |
| 90 | <!-- Text for error alert when a video cannot be played. It can be used by any app. --> |
| 91 | <string name="VideoView2_error_text_unknown">Can\'t play this video.</string> |
| 92 | <!-- Button to close error alert when a video cannot be played. --> |
| 93 | <string name="VideoView2_error_button">OK</string> |
Sungsoo Lim | 692a547 | 2018-01-17 15:11:07 +0900 | [diff] [blame] | 94 | </resources> |