blob: b3ee4f6ff8727adff66a9f21813fb768be14ec40 [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 Projecta857e7a2008-12-17 18:05:59 -080029 <plurals name="Nsongscomp">
30 <item quantity="other"><xliff:g id="count">%d</xliff:g> songs total, <xliff:g id="count_for_artist">%d</xliff:g> by <xliff:g id="count_for_artist">%s</xliff:g></item>
31 </plurals>
32
33 <!-- Used in artists list view, indicates how many albums exist for a given artist. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070034 <plurals name="Nalbums">
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080035 <!-- number of albums is one -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070036 <item quantity="one">1 album</item>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080037 <!-- number of albums is not equal to one -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070038 <item quantity="other"><xliff:g id="count">%d</xliff:g> albums</item>
39 </plurals>
40
41 <!--
42 This string is used as the format string in a String.format call,
43 and 5 additional arguments are available for printing:
44 1 - hours
45 2 - minutes
46 3 - minutes%60
47 4 - seconds
48 5 - second%60
49 -->
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080050 <skip/>
51 <!-- Do not translate. Duration format. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070052 <string name="durationformat"><xliff:g id="format">%2$d:%5$02d</xliff:g></string>
53
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080054 <!-- 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 -070055 <string name="goto_start">Library</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080056 <!-- 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 -070057 <string name="goto_playback">Playback</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080058 <!-- Menu item that switches the music player in to party shuffle mode -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070059 <string name="party_shuffle">Party shuffle</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080060 <!-- Menu item that switches the music player out of party shuffle mode -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070061 <string name="party_shuffle_off">Party shuffle off</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080062 <!-- Menu item that deletes the currently selected item, which might be a single song, or a collection of songs.
63 The user will be prompted to confirm before deletion actually takes place -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070064 <string name="delete_item">Delete</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080065 <!-- 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 -070066 <string name="shuffle_all">Shuffle all</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080067 <!-- 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 -070068 <string name="play_all">Play all</string>
69
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080070 <!-- Delete confirmation dialog when deleting an entire artist -->
71 <string name="delete_artist_desc">All songs by <xliff:g id="artist">%s</xliff:g> will be permanently deleted from the SD card.</string>
72
73 <!-- Delete confirmation dialog when deleting an entire album -->
74 <string name="delete_album_desc">The entire album \"<xliff:g id="album">%s</xliff:g>\" will be permanently deleted from the SD card.</string>
75
76 <!-- Delete confirmation dialog when deleting a single song -->
77 <string name="delete_song_desc">\"<xliff:g id="song">%s</xliff:g>\" will be permanently deleted from the SD card.</string>
78
79 <!-- Delete confirmation dialog, confirmation button text -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070080 <string name="delete_confirm_button_text">OK</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080081 <!-- Toast confirming that song(s) was/were deleted. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070082 <plurals name="NNNtracksdeleted">
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080083 <!-- delete confirmation message for 1 song -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070084 <item quantity="one">1 song was deleted.</item>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080085 <!-- delete confirmation message for 0 or more than 1 songs -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070086 <item quantity="other"><xliff:g id="songs_to_delete">%d</xliff:g> songs were deleted.</item>
87 </plurals>
88
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080089 <!-- shown in dialog while the media scanner is starting up -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070090 <string name="scanning">Scanning SD card\u2026</string>
91
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080092 <!-- title of the "current playlist" screen when not in party shuffle mode -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070093 <string name="nowplaying_title">Now playing</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080094 <!-- title of the "current playlist" screen when in party shuffle mode-->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070095 <string name="partyshuffle_title">Party shuffle</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080096 <!-- Artist screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070097 <string name="artists_title">Artists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -080098 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -070099 <string name="albums_menu">Albums</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800100 <!-- Albums screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700101 <string name="albums_title">Albums</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800102 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700103 <string name="tracks_menu">Songs</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800104 <!-- Songs screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700105 <string name="tracks_title">Songs</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800106 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700107 <string name="playlists_menu">Playlists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800108 <!-- Playlists screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700109 <string name="playlists_title">Playlists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800110 <!-- Videos screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700111 <string name="videos_title">Videos</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800112 <!-- All media screen title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700113 <string name="all_title">All media</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800114 <!-- Category label on Library screen -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700115 <string name="browse_menu">Artists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800116 <!-- Library screen, menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700117 <string name="search_title">Search</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800118 <!-- Title of screen when there are no artists, or if the SD card is busy -->
119 <string name="no_artists_title">No artists</string>
120 <!-- Title of screen when there are no albums, or if the SD card is busy -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700121 <string name="no_albums_title">No albums</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800122 <!-- 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 -0700123 <string name="no_tracks_title">No songs</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800124 <!-- 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 -0700125 <string name="no_videos_title">No videos</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800126 <!-- 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 -0700127 <string name="no_playlists_title">No playlists</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800128 <!-- Playlist context menu item to delete the selected playlist. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700129 <string name="delete_playlist_menu">Delete</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800130 <!-- Playlist context menu item to edit the selected playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700131 <string name="edit_playlist_menu">Edit</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800132 <!-- Playlist context menu item to rename the selected playlist-->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700133 <string name="rename_playlist_menu">Rename</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800134 <!-- Transient popup message shown after deleting a playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700135 <string name="playlist_deleted_message">Playlist deleted.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800136 <!-- Transient popup message shown after renaming a playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700137 <string name="playlist_renamed_message">Playlist renamed.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800138 <!-- The name of the pseudo-playlist that holds all the recently added files -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700139 <string name="recentlyadded">Recently added</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800140 <!-- Title of screen when no sd card is present -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700141 <string name="sdcard_missing_title">No SD card</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800142 <!-- label underneath icon used to indicate that no sd card is present -->
143 <string name="sdcard_missing_message">Your phone does not have an SD card inserted.</string>
144 <!-- label underneath icon used to indicate that the sd card is present, but currently unavailable -->
145 <string name="sdcard_busy_title">SD card unavailable</string>
146 <!-- 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 -0700147 <string name="sdcard_busy_message">Sorry, your SD card is busy.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800148 <!-- Title of screen when there was an error accessing the sd card -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700149 <string name="sdcard_error_title">SD card error</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800150 <!-- label underneath icon used to indicate there was an error accessing the sd card -->
151 <string name="sdcard_error_message">An error was encountered on your SD card.</string>
152 <!-- Default name of artist that doesn't have a name in the metadata -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700153 <string name="unknown_artist_name">Unknown artist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800154 <!-- Default name of album that doesn't have a name in the metadata -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700155 <string name="unknown_album_name">Unknown album</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800156 <!-- Toast after turning shuffle on -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700157 <string name="shuffle_on_notif">Shuffle is on.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800158 <!-- Toast after turning shuffle off -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700159 <string name="shuffle_off_notif">Shuffle is off.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800160 <!-- Toast after turning repeat off -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700161 <string name="repeat_off_notif">Repeat is off.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800162 <!-- Toast after turning single repeat on -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700163 <string name="repeat_current_notif">Repeating current song.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800164 <!-- Toast after turning repeat all on -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700165 <string name="repeat_all_notif">Repeating all songs.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800166 <!-- Individual song context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700167 <string name="ringtone_menu">Use as phone ringtone</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800168 <!-- Menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700169 <string name="ringtone_menu_short">Use as ringtone</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800170 <!-- Toast after setting a song as phone ringtone -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700171 <string name="ringtone_set">\"%s\" set as phone ringtone.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800172 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700173 <string name="play_selection">Play</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800174 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700175 <string name="add_to_playlist">Add to playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800176 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700177 <string name="queue">Current playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800178 <!-- Context menu item -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700179 <string name="new_playlist">New</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800180 <!-- Template for newly created playlist name -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700181 <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 -0800182 <!-- Toasts after adding song(s) to playlists -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700183 <plurals name="NNNtrackstoplaylist">
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800184 <!-- message shown when one song was added -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700185 <item quantity="one">1 song added to playlist.</item>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800186 <!-- message shown when zero or more than one song was added -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700187 <item quantity="other">%d songs added to playlist.</item>
188 </plurals>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800189 <!-- Toast after selecting an empty playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700190 <string name="emptyplaylist">Selected playlist is empty.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800191 <!-- Button name when saving a playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700192 <string name="create_playlist_create_text">Save</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800193 <!-- 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 -0700194 <string name="create_playlist_overwrite_text">Overwrite</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800195 <!-- Dialog box title -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700196 <string name="service_start_error_title">Playback problem</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800197 <!-- Dialog box message -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700198 <string name="service_start_error_msg">Sorry, the song could not be played.</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800199 <!-- Dialog box button -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700200 <string name="service_start_error_button">OK</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800201 <!-- Time span edit options that appear when editing system playlist "Recently added" -->
202 <!-- 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 -0700203 <string-array name="weeklist">
204 <item>"1 week"</item>
205 <item>"2 weeks"</item>
206 <item>"3 weeks"</item>
207 <item>"4 weeks"</item>
208 <item>"5 weeks"</item>
209 <item>"6 weeks"</item>
210 <item>"7 weeks"</item>
211 <item>"8 weeks"</item>
212 <item>"9 weeks"</item>
213 <item>"10 weeks"</item>
214 <item>"11 weeks"</item>
215 <item>"12 weeks"</item>
216 </string-array>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800217 <!-- Button name in time span picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700218 <string name="weekpicker_set">Done</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800219 <!-- Title of time span picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700220 <string name="weekpicker_title">Set time</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800221 <!-- Do not translate. Background color for currently dragged item in playlist edit mode. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700222 <color name="dragndrop_background">#e0103010</color>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800223 <!-- Do not translate. Background color for albums in the artists list view. -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700224 <color name="expanding_child_background">#ff404040</color>
225
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800226 <!-- menu item to save the current list as a new playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700227 <string name="save_as_playlist">Save as playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800228 <!-- menu item to clear the current playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700229 <string name="clear_playlist">Clear playlist</string>
230
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800231 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700232 <string name="musicbrowserlabel">Music</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800233 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700234 <string name="musicshortcutlabel">Music playlist</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800235 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700236 <string name="mediaplaybacklabel">Music</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800237 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700238 <string name="videobrowserlabel">Videos</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800239 <!-- Activity label. This might show up in the activity-picker -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700240 <string name="mediapickerlabel">Music</string>
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700241
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800242 <!-- Shown as a transient message whenever a file fails to play -->
243 <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 -0700244
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800245 <!-- Text for the "cancel" button in the "delete" and "create playlist" confirmation dialogs -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700246 <string name="cancel">Cancel</string>
247
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800248 <!-- context menu item to remove the selected item from the playlist -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700249 <string name="remove_from_playlist">Remove from playlist</string>
250
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800251 <!-- shown when connecting to a music stream, before it starts playing -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700252 <string name="streamloadingtext">Connecting to <xliff:g id="host">%s</xliff:g></string>
253
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800254 <!-- title of contextual music search menu -->
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700255 <string name="mediasearch">Search for %s using:</string>
The Android Open Source Projecta857e7a2008-12-17 18:05:59 -0800256
257 <!-- Shown in the title bar while the list of artists is being retrieved in the background -->
258 <string name="working_artists">Artists\u2026</string>
259 <!-- Shown in the title bar while the list of albums is being retrieved in the background -->
260 <string name="working_albums">Albums\u2026</string>
261 <!-- Shown in the title bar while the list of songs is being retrieved in the background -->
262 <string name="working_songs">Songs\u2026</string>
The Android Open Source Project95c42932009-01-09 17:51:25 -0800263
264 <!-- Shown in the music picker while loading the music database. -->
265 <string name="loading">Loading</string>
266 <!-- Menu in music picker to sort the list by track/song name. -->
267 <string name="sort_by_track">Tracks</string>
268 <!-- Menu in music picker to sort the list by album name. -->
269 <string name="sort_by_album">Albums</string>
270 <!-- Menu in music picker to sort the list by artist name. -->
271 <string name="sort_by_artist">Artists</string>
272 <!-- Title of the music picker activity. -->
273 <string name="music_picker_title">Select music track</string>
The Android Open Source Project6cb8bc92008-10-21 07:00:00 -0700274</resources>
275