blob: 305cef4983601a1b19ef5c5179110d54c8a479eb [file] [log] [blame]
Sungsoo Lim692a5472018-01-17 15:11:07 +09001<?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
Jin Seok Parkc9969af2018-02-09 16:49:09 +090017<resources xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19
Sungsoo Lim692a5472018-01-17 15:11:07 +090020 <!-- Name for the default system route prior to Jellybean. [CHAR LIMIT=30] -->
21 <string name="mr_system_route_name">System</string>
22
23 <!-- Name for the user route category created when publishing routes to the system in Jellybean and above. [CHAR LIMIT=30] -->
24 <string name="mr_user_route_category_name">Devices</string>
25
26 <!-- String to be shown as a tooltip of MediaRouteButton
27 Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=50] -->
28 <string name="mr_button_content_description">Cast button</string>
29
30 <!-- Content description of a MediaRouteButton for accessibility support when no remote device is connected.
31 Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=NONE] -->
32 <string name="mr_cast_button_disconnected">Cast button. Disconnected</string>
33
34 <!-- Content description of a MediaRouteButton for accessibility support while connecting to a remote device.
35 Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=NONE] -->
36 <string name="mr_cast_button_connecting">Cast button. Connecting</string>
37
38 <!-- Content description of a MediaRouteButton for accessibility support when a remote device is connected.
39 Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=NONE] -->
40 <string name="mr_cast_button_connected">Cast button. Connected</string>
41
42 <!-- Title of the media route chooser dialog. [CHAR LIMIT=30] -->
43 <string name="mr_chooser_title">Cast to</string>
44
45 <!-- Placeholder text to show when no devices have been found. [CHAR LIMIT=50] -->
46 <string name="mr_chooser_searching">Finding devices</string>
47
48 <!-- Button to disconnect from a media route. [CHAR LIMIT=30] -->
49 <string name="mr_controller_disconnect">Disconnect</string>
50
51 <!-- Button to stop playback and disconnect from a media route. [CHAR LIMIT=30] -->
52 <string name="mr_controller_stop_casting">Stop casting</string>
53
54 <!-- Content description for accessibility (not shown on the screen): dialog close button. [CHAR LIMIT=NONE] -->
55 <string name="mr_controller_close_description">Close</string>
56
57 <!-- Content description for accessibility (not shown on the screen): media play button. [CHAR LIMIT=NONE] -->
58 <string name="mr_controller_play">Play</string>
59
60 <!-- Content description for accessibility (not shown on the screen): media pause button. [CHAR LIMIT=NONE] -->
61 <string name="mr_controller_pause">Pause</string>
62
63 <!-- Content description for accessibility (not shown on the screen): media stop button. [CHAR LIMIT=NONE] -->
64 <string name="mr_controller_stop">Stop</string>
65
66 <!-- 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] -->
67 <string name="mr_controller_expand_group">Expand</string>
68
69 <!-- 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] -->
70 <string name="mr_controller_collapse_group">Collapse</string>
71
72 <!-- 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] -->
73 <string name="mr_controller_album_art">Album art</string>
74
75 <!-- Content description for accessibility (not shown on the screen): volume slider. [CHAR LIMIT=NONE] -->
76 <string name="mr_controller_volume_slider">Volume slider</string>
77
78 <!-- Placeholder text to show when no media have been selected for playback. [CHAR LIMIT=50] -->
79 <string name="mr_controller_no_media_selected">No media selected</string>
80
81 <!-- Placeholder text to show when no title/description have been found for a given song/video. [CHAR LIMIT=50] -->
82 <string name="mr_controller_no_info_available">No info available</string>
83
84 <!-- Placeholder text indicating that the user is currently casting screen. [CHAR LIMIT=50] -->
85 <string name="mr_controller_casting_screen">Casting screen</string>
Insun Kang080b9342018-01-17 23:03:48 +090086
87 <string name="lockscreen_pause_button_content_description">Pause</string>
88 <string name="lockscreen_play_button_content_description">Play</string>
Jin Seok Parka69dcf02018-01-20 13:27:28 +090089 <string name="lockscreen_replay_button_content_description">Replay</string>
Insun Kang080b9342018-01-17 23:03:48 +090090
91 <!-- Text for error alert when a video container is not valid for progressive download/playback. -->
92 <string name="VideoView2_error_text_invalid_progressive_playback">This video isn\'t valid for streaming to this device.</string>
93 <!-- Text for error alert when a video cannot be played. It can be used by any app. -->
94 <string name="VideoView2_error_text_unknown">Can\'t play this video.</string>
95 <!-- Button to close error alert when a video cannot be played. -->
96 <string name="VideoView2_error_button">OK</string>
Jin Seok Parkc9969af2018-02-09 16:49:09 +090097
98 <!-- Text for displaying ad skip wait time. -->
99 <string name="MediaControlView2_ad_skip_wait_time">
100 You can skip Ad in <xliff:g id="wait_time" example="5">%1$d</xliff:g>s
101 </string>
102 <!-- Text for displaying ad total remaining time. -->
103 <string name="MediaControlView2_ad_remaining_time">
104 Ad ยท <xliff:g id="remaining_time" example="1:15">%1$s</xliff:g> remaining
105 </string>
106 <!-- Placeholder text indicating that the user can press the button to go to an external website. -->
107 <string name="MediaControlView2_ad_text">Visit Advertiser</string>
Jin Seok Park1a3ee2f2018-02-21 19:55:58 +0900108 <string name="MediaControlView2_subtitle_text">Closed caption</string>
109 <string name="MediaControlView2_subtitle_off_text">Off</string>
Jin Seok Parkf8cdcb82018-02-13 15:25:58 +0900110 <string name="MediaControlView2_audio_track_text">Audio track</string>
Jin Seok Park1a3ee2f2018-02-21 19:55:58 +0900111 <string name="MediaControlView2_audio_track_none_text">None</string>
Jin Seok Parkf8cdcb82018-02-13 15:25:58 +0900112 <string name="MediaControlView2_video_quality_text">Video quality</string>
113 <string name="MediaControlView2_video_quality_auto_text">Auto</string>
114 <string name="MediaControlView2_playback_speed_text">Playback speed</string>
Jin Seok Park1a3ee2f2018-02-21 19:55:58 +0900115 <string name="MediaControlView2_playback_speed_0_25x_text">0.25x</string>
116 <string name="MediaControlView2_playback_speed_0_5x_text">0.5x</string>
117 <string name="MediaControlView2_playback_speed_0_75x_text">0.75x</string>
118 <string name="MediaControlView2_playback_speed_1x_text">Normal</string>
119 <string name="MediaControlView2_playback_speed_1_25x_text">1.25x</string>
120 <string name="MediaControlView2_playback_speed_1_5x_text">1.5x</string>
121 <string name="MediaControlView2_playback_speed_2x_text">2x</string>
Jin Seok Parkf8cdcb82018-02-13 15:25:58 +0900122 <string name="MediaControlView2_help_text">Help &amp; feedback</string>
Jin Seok Park1a3ee2f2018-02-21 19:55:58 +0900123 <!-- Text for displaying subtitle track number. -->
124 <string name="MediaControlView2_subtitle_track_number_text">
125 Track <xliff:g id="track_number" example="1">%1$s</xliff:g>
126 </string>
127 <!-- Text for displaying audio track number. -->
128 <string name="MediaControlView2_audio_track_number_text">
129 Track <xliff:g id="audio_number" example="1">%1$s</xliff:g>
130 </string>
Sungsoo Lim692a5472018-01-17 15:11:07 +0900131</resources>