OSDN Git Service

Merge pull request #2 from techmik/techtest2
[android-x86/packages-apps-Eleven.git] / res / values / strings.xml
1 <?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
22     <!-- used in various places to indicate there is one song for a given artist or album -->
23     <string name="onesong">1 song</string>
24     <!-- used in various places to indicate there is some number other than one songs for a given artist or album. -->
25     <plurals name="Nsongs">
26         <item quantity="other"><xliff:g id="count">%d</xliff:g> songs</item>
27     </plurals>
28
29     <!-- shows how many songs on the album are by the selected artist, out of how many total, if those two numbers are different -->
30     <plurals name="Nsongscomp">
31         <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>
32     </plurals>
33
34     <!-- Used in artists list view, indicates how many albums exist for a given artist. -->
35     <plurals name="Nalbums">
36
37         <!-- number of albums is one -->
38         <item quantity="one">1 album</item>
39         <!-- number of albums is not equal to one -->
40         <item quantity="other"><xliff:g id="count">%d</xliff:g> albums</item>
41     </plurals>
42
43     <!--
44     This string is used as the format string in a String.format call,
45     and 5 additional arguments are available for printing:
46     1 - hours
47     2 - minutes
48     3 - minutes%60
49     4 - seconds
50     5 - second%60
51     -->
52     <skip />
53     <!-- Do not translate. Duration format for duration < 1 hour -->
54     <string name="durationformatshort" translatable="false"><xliff:g id="format">%2$d:%5$02d</xliff:g></string>
55     <!-- Do not translate. Duration format for duration >= 1 hour -->
56     <string name="durationformatlong" translatable="false"><xliff:g id="format">%1$d:%3$02d:%5$02d</xliff:g></string>
57
58     <!-- Menu item that takes the user back to the top level screen of the music player -->
59     <string name="goto_start">Library</string>
60     <!-- Menu item that switches the music player in to party shuffle mode -->
61     <string name="party_shuffle">Party shuffle</string>
62     <!-- Menu item that switches the music player out of party shuffle mode -->
63     <string name="party_shuffle_off">Party shuffle off</string>
64     <string name="party_shuffle_on">Party shuffle on</string>
65
66     <!--
67          Menu item that deletes the currently selected item, which might be a single song, or a collection of songs.
68          The user will be prompted to confirm before deletion actually takes place
69     -->
70     <string name="delete_item">Delete</string>
71     <!-- Menu item to play back all the songs in the currently showing list in shuffle mode -->
72     <string name="shuffle_all">Shuffle all</string>
73     <!-- Menu item to play back all the songs in the currently showing list in list order -->
74     <string name="play_all">Play all</string>
75
76     <!-- Delete confirmation dialog when deleting an entire artist -->
77     <string name="delete_artist_desc">All songs by <xliff:g id="artist">%s</xliff:g> will be permanently deleted from the SD card.</string>
78     <!-- Delete confirmation dialog when deleting an entire artist -->
79     <string name="delete_artist_desc_nosdcard">All songs by <xliff:g id="artist">%s</xliff:g> will be permanently deleted from USB storage.</string>
80
81     <!-- Delete confirmation dialog when deleting an entire album -->
82     <string name="delete_album_desc">The entire album \"<xliff:g id="album">%s</xliff:g>\" will be permanently deleted from the SD card.</string>
83     <!-- Delete confirmation dialog when deleting an entire album -->
84     <string name="delete_album_desc_nosdcard">The entire album \"<xliff:g id="album">%s</xliff:g>\" will be permanently deleted from USB storage.</string>
85
86     <!-- Delete confirmation dialog when deleting a single song -->
87     <string name="delete_song_desc">\"<xliff:g id="song">%s</xliff:g>\" will be permanently deleted from the SD card.</string>
88     <!-- Delete confirmation dialog when deleting a single song -->
89     <string name="delete_song_desc_nosdcard">\"<xliff:g id="song">%s</xliff:g>\" will be permanently deleted from USB storage.</string>
90
91     <!-- Delete confirmation dialog, confirmation button text -->
92     <string name="delete_confirm_button_text">OK</string>
93     <!-- Toast confirming that song(s) was/were deleted. -->
94     <plurals name="NNNtracksdeleted">
95
96         <!-- delete confirmation message for 1 song -->
97         <item quantity="one">1 song was deleted.</item>
98         <!-- delete confirmation message for 0 or more than 1 songs -->
99         <item quantity="other"><xliff:g id="songs_to_delete">%d</xliff:g> songs were deleted.</item>
100     </plurals>
101
102     <!-- shown in dialog while the media scanner is starting up -->
103     <string name="scanning">Scanning SD card\u2026</string>
104     <!-- shown in dialog while the media scanner is starting up -->
105     <string name="scanning_nosdcard">Scanning USB storage\u2026</string>
106
107     <!-- title of the "current playlist" screen when not in party shuffle mode -->
108     <string name="nowplaying_title">Now playing</string>
109     <!-- Artist screen title -->
110     <string name="artists_title">Artists</string>
111     <!-- Category label on Library screen -->
112     <string name="albums_menu">Albums</string>
113     <!-- Albums screen title -->
114     <string name="albums_title">Albums</string>
115     <!-- Category label on Library screen -->
116     <string name="tracks_menu">Songs</string>
117     <!-- Songs screen title -->
118     <string name="tracks_title">Songs</string>
119     <!-- Category label on Library screen -->
120     <string name="playlists_menu">Playlists</string>
121     <!-- Playlists screen title -->
122     <string name="playlists_title">Playlists</string>
123     <!-- Videos screen title -->
124     <string name="videos_title">Videos</string>
125     <!-- All media screen title -->
126     <string name="all_title">All media</string>
127     <!-- Category label on Library screen -->
128     <string name="browse_menu">Artists</string>
129     <!-- Library screen, menu item -->
130     <string name="search_title">Search</string>
131     <!-- Title of screen when there are no songs, or if the SD card is busy -->
132     <string name="no_tracks_title">No songs</string>
133     <!-- Title of screen when there are no videos, or if the SD card is busy -->
134     <string name="no_videos_title">No videos</string>
135     <!-- Title of screen when there are no playlists, or if the SD card is busy -->
136     <string name="no_playlists_title">No playlists</string>
137     <!-- Playlist context menu item to delete the selected playlist. -->
138     <string name="delete_playlist_menu">Delete</string>
139     <!-- Playlist context menu item to edit the selected playlist -->
140     <string name="edit_playlist_menu">Edit</string>
141     <!-- Playlist context menu item to rename the selected playlist -->
142     <string name="rename_playlist_menu">Rename</string>
143     <!-- Transient popup message shown after deleting a playlist -->
144     <string name="playlist_deleted_message">Playlist deleted.</string>
145     <!-- Transient popup message shown after renaming a playlist -->
146     <string name="playlist_renamed_message">Playlist renamed.</string>
147     <!-- The name of the pseudo-playlist that holds all the recently added files, shown in list view -->
148     <string name="recentlyadded">Recently added</string>
149     <!-- The name of the pseudo-playlist that holds all the recently added files, shown in title bar of songs list -->
150     <string name="recentlyadded_title">Recently added</string>
151     <!-- The name of the pseudo-playlist that holds all the podcasts, shown in list view -->
152     <string name="podcasts_listitem">Podcasts</string>
153     <!-- The name of the pseudo-playlist that holds all the podcasts, shown in title bar of songs list -->
154     <string name="podcasts_title">Podcasts</string>
155     <!-- Title of screen when no sd card is present -->
156     <string name="sdcard_missing_title">No SD card</string>
157     <!-- Title of screen when no sd card is present -->
158     <string name="sdcard_missing_title_nosdcard">No USB storage</string>
159     <!-- label underneath icon used to indicate that no sd card is present -->
160     <string name="sdcard_missing_message">Your phone does not have an SD card inserted.</string>
161     <!-- label underneath icon used to indicate that no sd card is present -->
162     <string name="sdcard_missing_message_nosdcard">Your phone does not have USB storage.</string>
163     <!-- label underneath icon used to indicate that the sd card is present, but currently unavailable -->
164     <string name="sdcard_busy_title">SD card unavailable</string>
165     <!-- label underneath icon used to indicate that the sd card is present, but currently unavailable -->
166     <string name="sdcard_busy_title_nosdcard">USB storage unavailable</string>
167     <!-- label underneath icon used to indicate sd card is mounted to your computer via USB -->
168     <string name="sdcard_busy_message">Sorry, your SD card is busy.</string>
169     <!-- label underneath icon used to indicate sd card is mounted to your computer via USB -->
170     <string name="sdcard_busy_message_nosdcard">Sorry, your USB storage is busy.</string>
171     <!-- Title of screen when there was an error accessing the sd card -->
172     <string name="sdcard_error_title">SD card error</string>
173     <!-- Title of screen when there was an error accessing the sd card -->
174     <string name="sdcard_error_title_nosdcard">USB storage error</string>
175     <!-- label underneath icon used to indicate there was an error accessing the sd card -->
176     <string name="sdcard_error_message">An error was encountered on your SD card.</string>
177     <!-- label underneath icon used to indicate there was an error accessing the sd card -->
178     <string name="sdcard_error_message_nosdcard">An error was encountered on your USB storage.</string>
179     <!-- Default name of artist that doesn't have a name in the metadata -->
180     <string name="unknown_artist_name">Unknown artist</string>
181     <!-- Default name of album that doesn't have a name in the metadata -->
182     <string name="unknown_album_name">Unknown album</string>
183     <!-- Toast after turning shuffle on -->
184     <string name="shuffle_on_notif">Shuffle is on</string>
185     <!-- Toast after turning shuffle off -->
186     <string name="shuffle_off_notif">Shuffle is off</string>
187     <!-- Toast after turning repeat off -->
188     <string name="repeat_off_notif">Repeat is off</string>
189     <!-- Toast after turning single repeat on -->
190     <string name="repeat_current_notif">Repeating current song</string>
191     <!-- Toast after turning repeat all on -->
192     <string name="repeat_all_notif">Repeating all songs</string>
193     <!-- Individual song context menu item -->
194     <string name="ringtone_menu">Use as phone ringtone</string>
195     <!-- Menu item -->
196     <string name="ringtone_menu_short">Use as ringtone</string>
197     <!-- Toast after setting a song as phone ringtone -->
198     <string name="ringtone_set">\"<xliff:g id="name" example="Alarm Bell">%s</xliff:g>\" set as phone ringtone.</string>
199     <!-- Context menu item -->
200     <string name="play_selection">Play</string>
201     <!-- Context menu item -->
202     <string name="add_to_playlist">Add to playlist</string>
203     <!-- Context menu item -->
204     <string name="queue">Queue</string>
205     <!-- Context menu item -->
206     <string name="new_playlist">New playlist</string>
207     <!-- Context menu item -->
208     <string name="show_all">Show All</string>
209     <!-- Template for newly created playlist name -->
210     <string name="new_playlist_name_template">New playlist <xliff:g id="number">%d</xliff:g></string>
211     <!-- Toasts after adding song(s) to playlists -->
212     <plurals name="NNNtrackstoplaylist">
213
214         <!-- message shown when one song was added -->
215         <item quantity="one">1 song added to playlist.</item>
216         <!-- message shown when zero or more than one song was added -->
217         <item quantity="other"><xliff:g id="number" example="27">%d</xliff:g> songs added to playlist.</item>
218     </plurals>
219     <!-- Toast after selecting an empty playlist -->
220     <string name="emptyplaylist">Selected playlist is empty.</string>
221     <!-- Button name when saving a playlist -->
222     <string name="create_playlist_create_text">Save</string>
223     <!-- Button name when saving a playlist and the new playlist will overwrite an existing one -->
224     <string name="create_playlist_overwrite_text">Overwrite</string>
225     <!-- Dialog box title -->
226     <string name="service_start_error_title">Playback problem</string>
227     <!-- Dialog box message -->
228     <string name="service_start_error_msg">Sorry, the song could not be played.</string>
229     <!-- Dialog box button -->
230     <string name="service_start_error_button">OK</string>
231     <!-- Time span edit options that appear when editing system playlist "Recently added" -->
232     <!-- Used to indicate the number of weeks the "recently added" playlist covers in a selector widget -->
233     <string-array name="weeklist">
234         <item>"1 week"</item>
235         <item>"2 weeks"</item>
236         <item>"3 weeks"</item>
237         <item>"4 weeks"</item>
238         <item>"5 weeks"</item>
239         <item>"6 weeks"</item>
240         <item>"7 weeks"</item>
241         <item>"8 weeks"</item>
242         <item>"9 weeks"</item>
243         <item>"10 weeks"</item>
244         <item>"11 weeks"</item>
245         <item>"12 weeks"</item>
246     </string-array>
247     <!-- Button name in time span picker -->
248     <string name="weekpicker_set">Done</string>
249     <!-- Title of time span picker -->
250     <string name="weekpicker_title">Set time</string>
251     <!-- Do not translate. Background color for currently dragged item in playlist edit mode. -->
252     <color name="dragndrop_background">#e0103010</color>
253     <!-- Do not translate. Background color for albums in the artists list view. -->
254     <color name="expanding_child_background">#ff404040</color>
255
256     <!-- menu item to save the current list as a new playlist -->
257     <string name="save_as_playlist">Save as playlist</string>
258     <!-- menu item to clear the current playlist -->
259     <string name="clear_playlist">Clear playlist</string>
260
261     <!-- Activity label. This might show up in the activity-picker -->
262     <string name="musicbrowserlabel">Music</string>
263     <!-- Activity label. This might show up in the activity-picker -->
264     <string name="musicshortcutlabel">Music playlist</string>
265     <!-- Activity label. This might show up in the activity-picker -->
266     <string name="mediaplaybacklabel">Music</string>
267     <!-- Activity label. This might show up in the activity-picker -->
268     <string name="videobrowserlabel">Videos</string>
269     <!-- Activity label. This might show up in the activity-picker -->
270     <string name="mediapickerlabel">Music</string>
271
272     <!-- Shown as a transient message whenever a file fails to play -->
273     <string name="playback_failed">Sorry, the player does not support this type of audio file.</string>
274
275     <!-- Text for the "cancel" button in the "delete" and "create playlist" confirmation dialogs -->
276     <string name="cancel">Cancel</string>
277
278     <!-- context menu item to remove the selected item from the playlist -->
279     <string name="remove_from_playlist">Remove from playlist</string>
280
281     <!-- shown when connecting to a music stream, before it starts playing -->
282     <string name="streamloadingtext">Connecting to <xliff:g id="host">%s</xliff:g></string>
283
284     <!-- title of contextual music search menu -->
285     <string name="mediasearch">Search for <xliff:g id="term" example="Beethoven">%s</xliff:g> using:</string>
286
287     <!-- Shown in the title bar while the list of artists is being retrieved in the background -->
288     <string name="working_artists">Artists\u2026</string>
289     <!-- Shown in the title bar while the list of albums is being retrieved in the background -->
290     <string name="working_albums">Albums\u2026</string>
291     <!-- Shown in the title bar while the list of songs is being retrieved in the background -->
292     <string name="working_songs">Songs\u2026</string>
293     <!-- Shown in the title bar while the list of playlists is being retrieved in the background -->
294     <string name="working_playlists">Playlists\u2026</string>
295
296     <!-- Shown in the music picker while loading the music database. -->
297     <string name="loading">Loading</string>
298     <!-- Menu in music picker to sort the list by track/song name. -->
299     <string name="sort_by_track">Tracks</string>
300     <!-- Menu in music picker to sort the list by album name. -->
301     <string name="sort_by_album">Albums</string>
302     <!-- Menu in music picker to sort the list by artist name. -->
303     <string name="sort_by_artist">Artists</string>
304     <!-- Title of the music picker activity. -->
305     <string name="music_picker_title">Select music track</string>
306
307     <!-- The string used to describe Music as a searchable item within system search settings. -->
308     <string name="search_settings_description">Artists, albums, and tracks</string>
309
310     <!-- Shown in the search box as a hint -->
311     <string name="search_hint">Search Music</string>
312
313     <!-- The fast scroll thumb will show one character from this string depending on the position in the list -->
314     <string name="fast_scroll_alphabet">\u0020ABCDEFGHIJKLMNOPQRSTUVWXYZ</string>
315
316     <!-- Text shown on widget when first loaded -->
317     <string name="widget_initial_text">Touch to select music.</string>
318
319     <!-- Menu text for the item controlling the audio effects panel [CHAR LIMIT=15] -->
320     <!-- Extra Controls -->
321     <string name="shuffle_extra">Shuffle</string>
322     <string name="repeat_extra_one">Repeating one</string>
323     <string name="repeat_extra_all">Repeating all</string>
324     <string name="repeat_extra">Repeat</string>
325     <string name="share">Share track</string>
326     <string name="eq">Equalizer</string>
327     <string name="shop">Shop the Market</string>
328     <string name="shop_min">Shop Market</string>
329     <string name="set_ring">Set ringtone</string>
330     <string name="delete_track">Delete track</string>
331     <string name="audio_cat">Audio</string>
332     <string name="ui_cat">UI</string>
333     <string name="edit_gesture_summary">Haptic feedback, color picker, define gestures</string>
334     <string name="gesture_color_picker_title">Gesture Color Picker</string>
335     <string name="gesture_color_picker_summary">Change the color of the gesture overlay</string>
336     <string name="define_gestures">Define Gestures</string>
337     <string name="shake_action_title_bg">Send to Background</string>
338     <string name="shake_action_summary_bg">The Tab action will continue working outside the app</string>
339     <string name="customizations_title">Customization</string>
340     <string name="customizations_summary">Heavy modification</string>
341     <string name="small_np_window_title">Small Now Playing Window</string>
342     <string name="small_np_window_summary">Customize smaller now playing window</string>
343     <string name="small_np_ui">Small Window UI</string>
344     <string name="small_np_ui_summary">Media buttons, text views, font size</string>
345     <string name="np_media_play_title">Play and Pause</string>
346     <string name="np_media_next_title">Next Track</string>
347     <string name="np_media_prev_title">Previous Track</string>
348     <string name="np_media_search_title">Search Music</string>
349     <string name="np_media_playlist_title">Quick Playlist</string>
350     <string name="np_media_market_title">Market Search</string>
351     <string name="np_media_share_title">Share Track</string>
352     <string name="np_media_album_art_title">Album Art</string>
353     <string name="np_media_play_summary">Play and Pause music</string>
354     <string name="np_media_next_summary">Play next track</string>
355     <string name="np_media_prev_summary">Play previous track</string>
356     <string name="np_media_search_summary">Search your music</string>
357     <string name="np_media_playlist_summary">Create a Quick Playlist (Playlist tab only)</string>
358     <string name="np_media_market_summary">Search Market for currently playing artist</string>
359     <string name="np_media_share_summary">Show your current track</string>
360     <string name="np_media_album_art_summary">Show album art</string>
361     <string name="np_tv">       Small Now Playing Window Text Views</string>
362     <string name="np_tv_artist">Artist Name</string>
363     <string name="np_tv_album">Album Name</string>
364     <string name="np_tv_track">Track Name</string>
365     <string name="np_tv_artist_summary">Show artist name</string>
366     <string name="np_tv_album_summary">Show album name</string>
367     <string name="np_tv_track_summary">Show track name</string>
368     <string name="np_font_title">Font Size</string>
369     <string name="np_font_dialog_title">Now Playing Window Font Size</string>
370     <string name="np_font_summary">Choose your font size for artist, album, and track</string>
371     <string name="np_progress_title">Progress bar</string>
372     <string name="np_progress_summary">Show a progress bar above your controls</string>
373     <string name="swipe_up_gesture">Swipe Up Gesture</string>
374     <string name="status_bar_ui_title">Status Bar UI</string>
375     <string name="status_bar_ui_summary">Customize the status bar</string>
376     <string name="status_bar_close">Stop Playback</string>
377     <string name="status_bar_close_summary">Cease all music</string>
378     <string name="status_bar_text_views">Status Bar Text Views</string>
379     <string name="status_bar_color_picker">Status Bar Text Color Picker</string>
380     <string name="status_bar_color_picker_summary">Change the color for album, artist, and track in
381                 the status bar</string>
382     <string name="full_np_title">Enter Full Now Playing Screen</string>
383     <string name="full_np_summary">Enter into the full "Now Playing" screen when your
384                 music starts</string>
385     <string name="charging_title">Screen On While Charging</string>
386     <string name="charging_summary">Keep the screen on while playing music and charging
387                 your phone</string>
388     <string name="fullscreen_np_title">Now Playing Full Screen</string>
389     <string name="fullscreen_np_summary">Hide the status bar in the "Now Playing" screen</string>
390     <string name="lockscreen_controls_title">Use Lockscreen Controls</string>
391     <string name="lockscreen_controls_summary">Display lockscreen controls when your music is
392                 playing</string>
393     <string name="album_art_anim_title">Now Playing Animations</string>
394     <string name="album_art_anim_summary">Animate the album art in the "Now Playing" screen</string>
395     <string name="tab_anim_title">Tab Animations</string>
396     <string name="tab_anim_summary">Select animation when swiping tabs</string>
397     <string name="status_bar_nonya_title">Minimal</string>
398     <string name="status_bar_nonya_summary">Remove the album art/status icon when the status bar is extended</string>
399     <string name="build_version">Build Version</string>
400     <string name="build_version_summary">Unknown</string>
401     <string name="flip_to_pause">Flip To Pause</string>
402     <string name="flip_to_pause_summary">Flip your phone over to quickly pause your music then back up to resume</string>
403     <string name="home_art">Album Art As Wallpaper</string>
404     <string name="home_art_summary">Set your home screen wallpaper to the current album art while playing</string>
405     <string name="lock">Lock Screen Controls</string>
406     <string name="lock_summary">Enables lock screen controls</string>
407     <string name="flow">Menu Button</string>
408     <string name="flow_summary">Courtesy for Galaxy Nexus users</string>
409     <string name="tick">Ticker Text</string>
410     <string name="tick_summary">Display a short preview of your notification\'s content </string>
411     <!-- Menu text for the item controlling the audio effects panel [CHAR LIMIT=15] -->
412     <string name="effectspanel">Sound effects</string>
413     <string name="effectspanel_summary">FX Booster, Bass boost, 3D effect, etc</string>
414
415     <!-- Menu text for the music settings item [CHAR LIMIT=15] -->
416     <string name="settings">Settings</string>
417
418     <!-- Title, summary, and entries for 'enable gestures' preference list -->
419     <string name="duck_attenuation_db_title">Duck attentuation</string>
420     <string name="duck_attenuation_db_summary">Select the amount by which to attenuate the volume
421                 during focus loss</string>
422
423     <string-array name="duck_attenuation_db_entries">
424         <item>None</item>
425         <item>4 dB</item>
426         <item>8 dB</item>
427         <item>12 dB</item>
428     </string-array>
429     <!-- Do not translate. Entry values for 'enable gestures' preference list -->
430     <string-array name="duck_attenuation_db_entryvalues" translatable="false">
431         <item>0</item>
432         <item>4</item>
433         <item>8</item>
434         <item>12</item>
435     </string-array>
436
437     <string name="back_button_action_title">Long Press Back Button Action</string>
438     <string name="back_button_action">Long Press Back Button</string>
439     <string name="back_button_action_summary">Select long-press action while in tabs</string>
440     <string name="np_swipe_gesture_title">Now Playing Gesture</string>
441     <string name="np_swipe_gesture_title_summary">Small now playing window gesture</string>
442
443     <string-array name="np_font_size_entries">
444         <item>Extra Small</item>
445         <item>Small</item>
446         <item>Normal</item>
447         <item>Large</item>
448         <item>Extra Large</item>
449     </string-array>
450     <string-array name="np_font_size_entrievalues">
451         <item>0</item>
452         <item>1</item>
453         <item>2</item>
454         <item>3</item>
455         <item>4</item>
456     </string-array>
457     <string-array name="np_swipe_gesture_entries">
458         <item>None</item>
459         <item>Play and Pause</item>
460         <item>Next</item>
461         <item>Prev</item>
462     </string-array>
463     <string-array name="np_swipe_gesture_entrievalues">
464         <item>0</item>
465         <item>1</item>
466         <item>2</item>
467         <item>3</item>
468     </string-array>
469     <string-array name="back_button_db_entries">
470         <item>None</item>
471         <item>Party Shuffle</item>
472         <item>Recently Added</item>
473         <item>Shuffle All</item>
474     </string-array>
475     <string-array name="back_button_db_entrievalues">
476         <item>3</item>
477         <item>0</item>
478         <item>1</item>
479         <item>2</item>
480     </string-array>
481
482     <string name="artist_ui_title">Artist Animations</string>
483     <string name="artist_ui_summary">Select animation for the Artist tab</string>
484     <string name="album_ui_title">Album Animations</string>
485     <string name="album_ui_summary">Select animation for the Album tab</string>
486     <string name="song_ui_title">Song Animations</string>
487     <string name="song_ui_summary">Select animation for the Song tab</string>
488     <string name="playlist_ui_title">Playlist Animations</string>
489     <string name="playlist_ui_summary">Select animation for the Playlists tab</string>
490
491     <string-array name="animation_ui_db_entries">
492         <item>None</item>
493         <item>Eye Opener</item>
494         <item>Corkscrew</item>
495         <item>Diagonally</item>
496         <item>Expand</item>
497         <item>Stacked</item>
498         <item>Slide Right</item>
499         <item>Fade</item>
500     </string-array>
501     <string-array name="animation_ui_db_entrievalues">
502         <item>7</item>
503         <item>0</item>
504         <item>1</item>
505         <item>2</item>
506         <item>3</item>
507         <item>4</item>
508         <item>5</item>
509         <item>6</item>
510     </string-array>
511
512     <string name="shaker_title_artist">Tab Shake Actions</string>
513     <string name="shaker_summary_artist">Shake action for each tab</string>
514     <string name="shaker_summary_playlist">Shake action for the Playlist tab</string>
515     <string name="shaker_title_nowplaying">Shake Actions</string>
516     <string name="shaker_summary_nowplaying">Play, next, prev, etc</string>
517     <string name="shaker_title">Shake &amp; Flip Actions</string>
518     <string name="shaker_summary">Select your "shake" and "flip" actions</string>
519     <string name="sensitivity">Sensitivity</string>
520     <string name="sensitivity_summary">Shake &amp; Flip sensitivity</string>
521
522     <string-array name="shaker_db_entries">
523         <item>None</item>
524         <item>Play and Pause</item>
525         <item>Next</item>
526         <item>Prev</item>
527         <item>Shuffle</item>
528         <item>Party Shuffle</item>
529     </string-array>
530     <string-array name="shaker_db_entrievalues">
531         <item>0</item>
532         <item>1</item>
533         <item>2</item>
534         <item>3</item>
535         <item>4</item>
536         <item>5</item>
537     </string-array>
538
539     <string name="animation_ui_title">Animations</string>
540     <string name="animation_ui_summary">Customize your animations</string>
541
542     <!-- Category title for gestures in music settings -->
543     <string name="gestures_category_title">Gestures</string>
544
545     <!-- Title and summary for 'enable gestures' preference checkbox -->
546     <string name="enable_gestures_summary">Control music playback via gestures on the \"Now
547                 playing\" screen</string>
548
549     <!-- Title and summary for 'enable haptic feedback' preference checkbox -->
550     <string name="enable_haptic_feedback_title">Haptic feedback</string>
551     <string name="enable_haptic_feedback_summary">Enable phone vibration in response to completed
552                 gestures</string>
553
554     <!-- Title for 'edit gestures' preference screen and subsequent activity -->
555     <string name="edit_gestures_title">Edit gestures</string>
556
557     <!-- Titles and summaries for gestures when listed in 'edit gestures' activity -->
558     <string-array name="gesture_titles">
559         <item>Pause/Resume</item>
560         <item>Next</item>
561         <item>Previous</item>
562         <item>Shuffle</item>
563         <item>Repeat</item>
564     </string-array>
565     <string-array name="gesture_summaries">
566         <item>Pause current song or resume playback</item>
567         <item>Skip to next song on playlist</item>
568         <item>Restart current song or skip to previous song on playlist</item>
569         <item>Toggle shuffle on and off</item>
570         <item>Cycle through repeat modes</item>
571     </string-array>
572
573     <!-- Loading text for 'edit gestures' activity -->
574     <string name="gestures_loading">Loading gestures</string>
575
576     <!-- Context menu entries for 'edit gestures' activity -->
577     <string name="gestures_customize">Customize gesture</string>
578     <string name="gestures_reset">Reset to default</string>
579
580     <!-- Button text for 'edit gestures' activity -->
581     <string name="button_reload_gestures">Reload gestures</string>
582     <string name="button_reset_all_gestures">Default</string>
583
584     <!-- Alert dialog text to confirm desire to reset all gestures to default -->
585     <string name="gestures_reset_all_alert">Are you sure you want to reset all gestures to
586                 default?</string>
587
588     <!-- Alert dialog 'yes' and 'no' button text -->
589     <string name="button_yes">Yes</string>
590     <string name="button_no">No</string>
591
592     <!-- Error messages for 'edit gestures' activity -->
593     <string name="gestures_error_loading">Could not load gesture library.</string>
594     <string name="gestures_error_library">Your custom gesture library is corrupted. Try
595                 resetting all gestures to default.</string>
596
597     <!-- Title for 'customize gesture' activity -->
598     <string name="customize_gesture_title">Customize gesture</string>
599
600     <!-- Prompt and instructions for 'customize gesture' activity -->
601     <string name="custimize_gesture_prompt">Draw your desired gesture below. For compatibility
602                 with playback controls, gestures cannot consist solely of a horizontal
603                 swipe.</string>
604
605     <!-- Button text for 'customize gesture' activity -->
606     <string name="button_done">Done</string>
607     <string name="button_cancel">Cancel</string>
608
609     <!-- Theme preferences -->
610     <string name="pref_title_theme_settings">Themes Chooser</string>
611     <string name="pref_summary_theme_settings">Select themes for Music</string>
612     <string name="pref_title_theme_package">Select your theme</string>
613     <string name="pref_summary_theme_package">Choose your theme for fLockScreen</string>
614     <string name="pref_title_theme_preview">Theme Preview</string>
615     <string name="pref_summary_theme_preview">Preview of the selected theme</string>
616     <string name="pref_themes_apply_theme">Apply theme!</string>
617     <string name="pref_themes_get_themes">Get themes!</string>
618     <string name="activity_not_found">Android Market can\'t be found!</string>
619
620     <!-- Color Picker Dialog -->
621     <string name="settings_bg_color_confirm">Tap to confirm</string>
622     <string name="settings_default_color_confirm">Default Color</string>
623     <string name="settings_bg_color_dialog">Color Picker</string>
624     <!-- Sample time used in color picker -->
625     <string name="color_picker_sample">Music</string>
626
627     <!-- Labels for colors in color picker -->
628     <string name="color_picker_alpha">Transparency</string>
629     <string name="color_picker_red">Red</string>
630     <string name="color_picker_green">Green</string>
631     <string name="color_picker_blue">Blue</string>
632
633     <!-- Do not show again -->
634     <string name="do_not_show">Do not show again</string>
635
636     <!-- Shake and Flip sensitivity -->
637     <string name="tv_shake_sens">Shake action sensitivity</string>
638     <string name="tv_flip_sens">Flip action sensitivity</string>
639
640 </resources>