blob: 855b44324c5debd558040bfdcc4a40b0f20667cb [file] [log] [blame]
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4** Copyright 2007, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
21
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080022 <!-- used in various places to indicate there is one song for a given artist or album -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070023 <string name="onesong">1 song</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080024 <!-- used in various places to indicate there is some number other than one songs for a given artist or album. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070025 <plurals name="Nsongs">
26 <item quantity="other"><xliff:g id="count">%d</xliff:g> songs</item>
27 </plurals>
28
The Android Open Source Projectd57d6982009-02-10 15:44:05 -080029 <!-- shows how many songs on the album are by the selected artist, out of how many total, if those two numbers are different -->
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080030 <plurals name="Nsongscomp">
The Android Open Source Projectd57d6982009-02-10 15:44:05 -080031 <item quantity="other"><xliff:g id="count_for_artist">%2$d</xliff:g> of <xliff:g id="total_count">%1$d</xliff:g> songs</item>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080032 </plurals>
33
34 <!-- Used in artists list view, indicates how many albums exist for a given artist. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070035 <plurals name="Nalbums">
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080036 <!-- number of albums is one -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070037 <item quantity="one">1 album</item>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080038 <!-- number of albums is not equal to one -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070039 <item quantity="other"><xliff:g id="count">%d</xliff:g> albums</item>
40 </plurals>
41
42 <!--
43 This string is used as the format string in a String.format call,
44 and 5 additional arguments are available for printing:
45 1 - hours
46 2 - minutes
47 3 - minutes%60
48 4 - seconds
49 5 - second%60
50 -->
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080051 <skip/>
52 <!-- Do not translate. Duration format. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070053 <string name="durationformat"><xliff:g id="format">%2$d:%5$02d</xliff:g></string>
54
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080055 <!-- Menu item that takes the user back to the top level screen of the music player -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070056 <string name="goto_start">Library</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080057 <!-- Menu item that takes the user to the "now playing" screen of the music player -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070058 <string name="goto_playback">Playback</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080059 <!-- Menu item that switches the music player in to party shuffle mode -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070060 <string name="party_shuffle">Party shuffle</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080061 <!-- Menu item that switches the music player out of party shuffle mode -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070062 <string name="party_shuffle_off">Party shuffle off</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080063 <!-- Menu item that deletes the currently selected item, which might be a single song, or a collection of songs.
64 The user will be prompted to confirm before deletion actually takes place -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070065 <string name="delete_item">Delete</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080066 <!-- Menu item to play back all the songs in the currently showing list in shuffle mode -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070067 <string name="shuffle_all">Shuffle all</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080068 <!-- Menu item to play back all the songs in the currently showing list in list order -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070069 <string name="play_all">Play all</string>
70
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080071 <!-- Delete confirmation dialog when deleting an entire artist -->
72 <string name="delete_artist_desc">All songs by <xliff:g id="artist">%s</xliff:g> will be permanently deleted from the SD card.</string>
73
74 <!-- Delete confirmation dialog when deleting an entire album -->
75 <string name="delete_album_desc">The entire album \"<xliff:g id="album">%s</xliff:g>\" will be permanently deleted from the SD card.</string>
76
77 <!-- Delete confirmation dialog when deleting a single song -->
78 <string name="delete_song_desc">\"<xliff:g id="song">%s</xliff:g>\" will be permanently deleted from the SD card.</string>
79
80 <!-- Delete confirmation dialog, confirmation button text -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070081 <string name="delete_confirm_button_text">OK</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080082 <!-- Toast confirming that song(s) was/were deleted. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070083 <plurals name="NNNtracksdeleted">
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080084 <!-- delete confirmation message for 1 song -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070085 <item quantity="one">1 song was deleted.</item>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080086 <!-- delete confirmation message for 0 or more than 1 songs -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070087 <item quantity="other"><xliff:g id="songs_to_delete">%d</xliff:g> songs were deleted.</item>
88 </plurals>
89
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080090 <!-- shown in dialog while the media scanner is starting up -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070091 <string name="scanning">Scanning SD card\u2026</string>
92
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080093 <!-- title of the "current playlist" screen when not in party shuffle mode -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070094 <string name="nowplaying_title">Now playing</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080095 <!-- title of the "current playlist" screen when in party shuffle mode-->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070096 <string name="partyshuffle_title">Party shuffle</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080097 <!-- Artist screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070098 <string name="artists_title">Artists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080099 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700100 <string name="albums_menu">Albums</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800101 <!-- Albums screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700102 <string name="albums_title">Albums</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800103 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700104 <string name="tracks_menu">Songs</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800105 <!-- Songs screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700106 <string name="tracks_title">Songs</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800107 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700108 <string name="playlists_menu">Playlists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800109 <!-- Playlists screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700110 <string name="playlists_title">Playlists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800111 <!-- Videos screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700112 <string name="videos_title">Videos</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800113 <!-- All media screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700114 <string name="all_title">All media</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800115 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700116 <string name="browse_menu">Artists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800117 <!-- Library screen, menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700118 <string name="search_title">Search</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800119 <!-- Title of screen when there are no songs, or if the SD card is busy -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700120 <string name="no_tracks_title">No songs</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800121 <!-- Title of screen when there are no videos, or if the SD card is busy -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700122 <string name="no_videos_title">No videos</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800123 <!-- Title of screen when there are no playlists, or if the SD card is busy -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700124 <string name="no_playlists_title">No playlists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800125 <!-- Playlist context menu item to delete the selected playlist. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700126 <string name="delete_playlist_menu">Delete</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800127 <!-- Playlist context menu item to edit the selected playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700128 <string name="edit_playlist_menu">Edit</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800129 <!-- Playlist context menu item to rename the selected playlist-->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700130 <string name="rename_playlist_menu">Rename</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800131 <!-- Transient popup message shown after deleting a playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700132 <string name="playlist_deleted_message">Playlist deleted.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800133 <!-- Transient popup message shown after renaming a playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700134 <string name="playlist_renamed_message">Playlist renamed.</string>
The Android Open Source Projectd57d6982009-02-10 15:44:05 -0800135 <!-- The name of the pseudo-playlist that holds all the recently added files, shown in list view -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700136 <string name="recentlyadded">Recently added</string>
The Android Open Source Projectd57d6982009-02-10 15:44:05 -0800137 <!-- The name of the pseudo-playlist that holds all the recently added files, shown in title bar of songs list -->
138 <string name="recentlyadded_title">Recently added</string>
139 <!-- The name of the pseudo-playlist that holds all the podcasts, shown in list view -->
140 <string name="podcasts_listitem">Podcasts</string>
141 <!-- The name of the pseudo-playlist that holds all the podcasts, shown in title bar of songs list -->
142 <string name="podcasts_title">Podcasts</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800143 <!-- Title of screen when no sd card is present -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700144 <string name="sdcard_missing_title">No SD card</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800145 <!-- label underneath icon used to indicate that no sd card is present -->
146 <string name="sdcard_missing_message">Your phone does not have an SD card inserted.</string>
147 <!-- label underneath icon used to indicate that the sd card is present, but currently unavailable -->
148 <string name="sdcard_busy_title">SD card unavailable</string>
149 <!-- label underneath icon used to indicate sd card is mounted to your computer via USB -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700150 <string name="sdcard_busy_message">Sorry, your SD card is busy.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800151 <!-- Title of screen when there was an error accessing the sd card -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700152 <string name="sdcard_error_title">SD card error</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800153 <!-- label underneath icon used to indicate there was an error accessing the sd card -->
154 <string name="sdcard_error_message">An error was encountered on your SD card.</string>
155 <!-- Default name of artist that doesn't have a name in the metadata -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700156 <string name="unknown_artist_name">Unknown artist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800157 <!-- Default name of album that doesn't have a name in the metadata -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700158 <string name="unknown_album_name">Unknown album</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800159 <!-- Toast after turning shuffle on -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700160 <string name="shuffle_on_notif">Shuffle is on.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800161 <!-- Toast after turning shuffle off -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700162 <string name="shuffle_off_notif">Shuffle is off.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800163 <!-- Toast after turning repeat off -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700164 <string name="repeat_off_notif">Repeat is off.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800165 <!-- Toast after turning single repeat on -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700166 <string name="repeat_current_notif">Repeating current song.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800167 <!-- Toast after turning repeat all on -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700168 <string name="repeat_all_notif">Repeating all songs.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800169 <!-- Individual song context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700170 <string name="ringtone_menu">Use as phone ringtone</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800171 <!-- Menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700172 <string name="ringtone_menu_short">Use as ringtone</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800173 <!-- Toast after setting a song as phone ringtone -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700174 <string name="ringtone_set">\"%s\" set as phone ringtone.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800175 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700176 <string name="play_selection">Play</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800177 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700178 <string name="add_to_playlist">Add to playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800179 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700180 <string name="queue">Current playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800181 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700182 <string name="new_playlist">New</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800183 <!-- Template for newly created playlist name -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700184 <string name="new_playlist_name_template">New playlist <xliff:g id="number">%d</xliff:g></string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800185 <!-- Toasts after adding song(s) to playlists -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700186 <plurals name="NNNtrackstoplaylist">
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800187 <!-- message shown when one song was added -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700188 <item quantity="one">1 song added to playlist.</item>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800189 <!-- message shown when zero or more than one song was added -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700190 <item quantity="other">%d songs added to playlist.</item>
191 </plurals>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800192 <!-- Toast after selecting an empty playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700193 <string name="emptyplaylist">Selected playlist is empty.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800194 <!-- Button name when saving a playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700195 <string name="create_playlist_create_text">Save</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800196 <!-- Button name when saving a playlist and the new playlist will overwrite an existing one -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700197 <string name="create_playlist_overwrite_text">Overwrite</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800198 <!-- Dialog box title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700199 <string name="service_start_error_title">Playback problem</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800200 <!-- Dialog box message -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700201 <string name="service_start_error_msg">Sorry, the song could not be played.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800202 <!-- Dialog box button -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700203 <string name="service_start_error_button">OK</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800204 <!-- Time span edit options that appear when editing system playlist "Recently added" -->
205 <!-- Used to indicate the number of weeks the "recently added" playlist covers in a selector widget -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700206 <string-array name="weeklist">
207 <item>"1 week"</item>
208 <item>"2 weeks"</item>
209 <item>"3 weeks"</item>
210 <item>"4 weeks"</item>
211 <item>"5 weeks"</item>
212 <item>"6 weeks"</item>
213 <item>"7 weeks"</item>
214 <item>"8 weeks"</item>
215 <item>"9 weeks"</item>
216 <item>"10 weeks"</item>
217 <item>"11 weeks"</item>
218 <item>"12 weeks"</item>
219 </string-array>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800220 <!-- Button name in time span picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700221 <string name="weekpicker_set">Done</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800222 <!-- Title of time span picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700223 <string name="weekpicker_title">Set time</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800224 <!-- Do not translate. Background color for currently dragged item in playlist edit mode. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700225 <color name="dragndrop_background">#e0103010</color>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800226 <!-- Do not translate. Background color for albums in the artists list view. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700227 <color name="expanding_child_background">#ff404040</color>
228
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800229 <!-- menu item to save the current list as a new playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700230 <string name="save_as_playlist">Save as playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800231 <!-- menu item to clear the current playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700232 <string name="clear_playlist">Clear playlist</string>
233
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800234 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700235 <string name="musicbrowserlabel">Music</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800236 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700237 <string name="musicshortcutlabel">Music playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800238 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700239 <string name="mediaplaybacklabel">Music</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800240 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700241 <string name="videobrowserlabel">Videos</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800242 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700243 <string name="mediapickerlabel">Music</string>
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700244
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800245 <!-- Shown as a transient message whenever a file fails to play -->
246 <string name="playback_failed">Sorry, the player does not support this type of audio file.</string>
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700247
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800248 <!-- Text for the "cancel" button in the "delete" and "create playlist" confirmation dialogs -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700249 <string name="cancel">Cancel</string>
250
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800251 <!-- context menu item to remove the selected item from the playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700252 <string name="remove_from_playlist">Remove from playlist</string>
253
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800254 <!-- shown when connecting to a music stream, before it starts playing -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700255 <string name="streamloadingtext">Connecting to <xliff:g id="host">%s</xliff:g></string>
256
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800257 <!-- title of contextual music search menu -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700258 <string name="mediasearch">Search for %s using:</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800259
260 <!-- Shown in the title bar while the list of artists is being retrieved in the background -->
261 <string name="working_artists">Artists\u2026</string>
262 <!-- Shown in the title bar while the list of albums is being retrieved in the background -->
263 <string name="working_albums">Albums\u2026</string>
264 <!-- Shown in the title bar while the list of songs is being retrieved in the background -->
265 <string name="working_songs">Songs\u2026</string>
The Android Open Source Projectd57d6982009-02-10 15:44:05 -0800266 <!-- Shown in the title bar while the list of playlists is being retrieved in the background -->
267 <string name="working_playlists">Playlists\u2026</string>
The Android Open Source Project95c42932009-01-09 17:51:25 -0800268
269 <!-- Shown in the music picker while loading the music database. -->
270 <string name="loading">Loading</string>
271 <!-- Menu in music picker to sort the list by track/song name. -->
272 <string name="sort_by_track">Tracks</string>
273 <!-- Menu in music picker to sort the list by album name. -->
274 <string name="sort_by_album">Albums</string>
275 <!-- Menu in music picker to sort the list by artist name. -->
276 <string name="sort_by_artist">Artists</string>
277 <!-- Title of the music picker activity. -->
278 <string name="music_picker_title">Select music track</string>
The Android Open Source Projectd57d6982009-02-10 15:44:05 -0800279
280 <!-- Title for track number in music gadget -->
281 <string name="gadget_track">Track <xliff:g id="track_number">%d</xliff:g></string>
The Android Open Source Projectc4a91122009-02-19 10:57:36 -0800282
283 <!-- Mixes together track number and track title in music gadget -->
284 <string name="gadget_track_num_title" translatable="false"><xliff:g id="track_number">%d</xliff:g>. <xliff:g id="track_title">%s</xliff:g></string>
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700285</resources>
286