Compare commits
46 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
149fb181ca | ||
|
|
b70baf8840 | ||
|
|
7f587ee491 | ||
|
|
cf32696fdd | ||
|
|
1bcd39a6b7 | ||
|
|
e00acb5979 | ||
|
|
72936722d7 | ||
|
|
d1bd75368a | ||
|
|
0743f21d57 | ||
|
|
49dabd5da8 | ||
|
|
935b6c63d7 | ||
|
|
9772ea2b85 | ||
|
|
6c0746fc88 | ||
|
|
99d8648c07 | ||
|
|
4ff7c8d165 | ||
|
|
baa79776b3 | ||
|
|
78414b6e37 | ||
|
|
42b7d84cd0 | ||
|
|
449838bf15 | ||
|
|
f5e3baf3bd | ||
|
|
90fafbea84 | ||
|
|
76b2755d80 | ||
|
|
5c15f120a8 | ||
|
|
bb36460a8e | ||
|
|
b45526bece | ||
|
|
f5c0b37b00 | ||
|
|
85cf00b7ee | ||
|
|
29ad695733 | ||
|
|
e347d37abe | ||
|
|
b1cbaa9b98 | ||
|
|
4c6425437f | ||
|
|
ba55434318 | ||
|
|
c191eb7d8f | ||
|
|
a51b982cd4 | ||
|
|
16ca11cb6d | ||
|
|
24e1e6735a | ||
|
|
040f7656c7 | ||
|
|
6e7e263a2c | ||
|
|
03b82aa09a | ||
|
|
61c611c549 | ||
|
|
4b5a24f46c | ||
|
|
5c19400898 | ||
|
|
ad78148bc3 | ||
|
|
695e133ffe | ||
|
|
ace4c58502 | ||
|
|
23ffa37116 |
60 changed files with 2235 additions and 469 deletions
|
|
@ -204,7 +204,12 @@ static int get_action_worker(int context, int timeout,
|
|||
pcmbuf_beep(4000, KEYCLICK_DURATION, 2500*global_settings.keyclick);
|
||||
#endif
|
||||
|
||||
if ((context != last_context) && ((last_button & BUTTON_REL) == 0))
|
||||
if ((context != last_context) && ((last_button & BUTTON_REL) == 0)
|
||||
#ifdef HAVE_SCROLLWHEEL
|
||||
/* Scrollwheel doesn't generate release events */
|
||||
&& !(last_button & (BUTTON_SCROLL_BACK | BUTTON_SCROLL_FWD))
|
||||
#endif
|
||||
)
|
||||
{
|
||||
if (button & BUTTON_REL)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -101,6 +101,9 @@ mpc_demux_fill(mpc_demux * d, mpc_uint32_t min_bytes, int flags)
|
|||
memmove(d->buffer + offset, d->bits_reader.buff, unread_bytes);
|
||||
d->bits_reader.buff = d->buffer + offset;
|
||||
d->bytes_total = unread_bytes + offset;
|
||||
/* reset Coldfire optimized read when rebuffering */
|
||||
d->bits_reader.buffered_addr = 0;
|
||||
d->bits_reader.buffered_code = 0;
|
||||
}
|
||||
bytes2read = d->r->read(d->r, d->buffer + d->bytes_total, bytes2read);
|
||||
if (flags & MPC_BUFFER_SWAP){
|
||||
|
|
|
|||
|
|
@ -1423,7 +1423,7 @@ int ov_pcm_seek(OggVorbis_File *vf,ogg_int64_t pos){
|
|||
int thisblock,lastblock=0;
|
||||
int ret=ov_pcm_seek_page(vf,pos);
|
||||
if(ret<0)return(ret);
|
||||
_make_decode_ready(vf);
|
||||
if((ret=_make_decode_ready(vf)))return ret;
|
||||
|
||||
/* discard leading packets we don't need for the lapping of the
|
||||
position we want; don't decode them */
|
||||
|
|
|
|||
|
|
@ -331,7 +331,7 @@ void list_draw(struct screen *display, struct gui_synclist *list)
|
|||
}
|
||||
/* do the icon */
|
||||
display->set_viewport(&list_icons);
|
||||
if (list->callback_get_item_icon && global_settings.show_icons)
|
||||
if (list->callback_get_item_icon != NULL)
|
||||
{
|
||||
screen_put_icon_with_offset(display, show_cursor?1:0,
|
||||
(line),show_cursor?ICON_PADDING:0,draw_offset,
|
||||
|
|
@ -468,7 +468,7 @@ unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list)
|
|||
return ACTION_NONE;
|
||||
|
||||
/* x and y are relative to info_vp */
|
||||
if (global_settings.show_icons)
|
||||
if (gui_list->callback_get_item_icon != NULL)
|
||||
icon_width += get_icon_width(screen);
|
||||
if (show_cursor)
|
||||
icon_width += get_icon_width(screen);
|
||||
|
|
|
|||
|
|
@ -51,8 +51,7 @@ void gui_synclist_scroll_stop(struct gui_synclist *lists)
|
|||
void list_draw(struct screen *display, struct gui_synclist *gui_list)
|
||||
{
|
||||
int text_pos;
|
||||
bool draw_icons = (gui_list->callback_get_item_icon != NULL &&
|
||||
global_settings.show_icons);
|
||||
bool draw_icons = (gui_list->callback_get_item_icon != NULL);
|
||||
bool draw_cursor;
|
||||
int i;
|
||||
int lines;
|
||||
|
|
|
|||
|
|
@ -217,7 +217,7 @@ static const struct button_mapping button_context_recscreen[] = {
|
|||
#if CONFIG_TUNER
|
||||
static const struct button_mapping button_context_radio[] = {
|
||||
{ ACTION_NONE, BUTTON_UP, BUTTON_NONE },
|
||||
{ ACTION_FM_MENU, BUTTON_DOWN|BUTTON_REL, BUTTON_NONE },
|
||||
{ ACTION_FM_MENU, BUTTON_DOWN, BUTTON_NONE },
|
||||
{ ACTION_FM_PRESET, BUTTON_SELECT, BUTTON_NONE },
|
||||
{ ACTION_FM_STOP, BUTTON_UP|BUTTON_REPEAT, BUTTON_UP },
|
||||
{ ACTION_FM_MODE, BUTTON_REC, BUTTON_NONE },
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@ static const struct button_mapping button_context_radio[] = {
|
|||
{ ACTION_FM_PRESET, BUTTON_SELECT|BUTTON_REL, BUTTON_NONE },
|
||||
{ ACTION_FM_STOP, BUTTON_POWER|BUTTON_REL, BUTTON_NONE },
|
||||
{ ACTION_FM_MODE, BUTTON_UP|BUTTON_REPEAT, BUTTON_UP },
|
||||
{ ACTION_FM_EXIT, BUTTON_DOWN|BUTTON_REL, BUTTON_NONE },
|
||||
{ ACTION_FM_EXIT, BUTTON_DOWN, BUTTON_NONE },
|
||||
{ ACTION_FM_PLAY, BUTTON_UP|BUTTON_REL, BUTTON_UP },
|
||||
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_SETTINGS)
|
||||
}; /* button_context_radio */
|
||||
|
|
|
|||
|
|
@ -12027,7 +12027,7 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12044,7 +12044,7 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12061,7 +12061,7 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12078,7 +12078,7 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12197,7 +12197,7 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12415,7 +12415,7 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
|
|||
|
|
@ -12038,15 +12038,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Základní vzhled"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Základní vzhled"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12055,15 +12055,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Základní dálkový vzhled"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Základní dálkový vzhled"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12072,15 +12072,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Hlavní displej"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Hlavní dysplej"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12089,15 +12089,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Dálkový displej"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Dálkový dysplej"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12208,15 +12208,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Obrazovka dálkové rádia"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Obrazovka dálkové rádia"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12426,15 +12426,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Obrazovka rádia"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Obrazovka rádia"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -1960,7 +1960,7 @@
|
|||
desc: "talkbox" mode for directories + files
|
||||
user: core
|
||||
<source>
|
||||
*: ".talk mp3 clip"
|
||||
*: ".talk Clip"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stemme lydfil"
|
||||
|
|
@ -11801,15 +11801,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Browser Mode"
|
||||
usb_hid: "Browser"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Browsertilstand"
|
||||
usb_hid: "Browser"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Browsertilstand"
|
||||
usb_hid: "Browser"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11920,15 +11920,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Mouse Mode"
|
||||
usb_hid: "Mouse"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Musetilstand"
|
||||
usb_hid: "Mus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Musetilstand"
|
||||
usb_hid: "Mus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11954,15 +11954,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Multimedia Mode"
|
||||
usb_hid: "Multimedia"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Multimedietilstand"
|
||||
usb_hid: "Multimedie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Multimedietilstand"
|
||||
usb_hid: "Multimedie"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12064,15 +12064,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Presentation Mode"
|
||||
usb_hid: "Presentation"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Præsentationstilstand"
|
||||
usb_hid: "Præsentation"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Præsentationstilstand"
|
||||
usb_hid: "Præsentation"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12089,3 +12089,509 @@
|
|||
*: "af"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_OK
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY_WPS
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "WPS Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "Afspilningsskærm genvejstast"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Afspilningsskærm genvejstast"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_REMOTE_RADIOSCREEN
|
||||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio_remote: "Fjernbetjenings radioskærm"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio_remote: "Fjernbetjenings radioskærm"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_GAIN
|
||||
desc: in sound_menu, hardware equalizer tone controls filter gain
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Bånd %d forstærkning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Bånd forstærkning"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_LINEOUT_ONOFF
|
||||
desc: in system settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
lineout_poweroff: "Line Out"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
lineout_poweroff: "Linjeudgang"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
lineout_poweroff: "Linjeudgang"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: VOICE_EXT_FMS
|
||||
desc: spoken only, for file extension
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: ""
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: ""
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "radioskærm skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH_WIDE
|
||||
desc: in sound_menu, hardware equalizer tone controls wide bandwidth setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Wide"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Bred"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Bred"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_BOOKMARK_SETTINGS_AUTOUPDATE
|
||||
desc: prompt for user to decide whether to update bookmarks
|
||||
user: core
|
||||
<source>
|
||||
*: "Update on Stop"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opdater ved stop"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Opdater ved stop"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_DELETE
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Del"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Slet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Slet"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: VOICE_EXT_RFMS
|
||||
desc: spoken only, for file extension
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio_remote: ""
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio_remote: ""
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio_remote: "fjernbetjenings radioskærm skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_REMOTE_SCREEN
|
||||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
remote: "Fjernbetjenings skærm"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "Fjernbetjenings skærm"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH_NARROW
|
||||
desc: in sound_menu, hardware equalizer tone controls narrow bandwith setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Narrow"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Smal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Smal"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY_FILE_BROWSER
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "File Browser Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "Filbrowser genvejstast"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Filbrowser genvejstast"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESUME_REWIND
|
||||
desc: in playback settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
swcodec: "Rewind Before Resume"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Spol tilbage før genoptagning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Spol tilbage før genoptagning"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_TAGNAVI_UNTAGGED
|
||||
desc: "<untagged>" entry in tag browser
|
||||
user: core
|
||||
<source>
|
||||
*: "<Untagged>"
|
||||
</source>
|
||||
<dest>
|
||||
*: "<Umærket>"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Umærket"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_TONE_CONTROLS_ADVANCED
|
||||
desc: in sound_menu, advanced settings for hardware equalizer tone controls
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Advanced Tone Control Settings"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Avancerede tonekontrol indstillinger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Avancerede tonekontrol indstillinger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_DEPTH_3D
|
||||
desc: in sound_menu, amount of 3D enhancement effect
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "3-D Enhancement"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "3D forbedring"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "3D forbedring"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_CANCEL
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Cancel"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Annuller"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Annuller"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_ID3_COMPOSER
|
||||
desc: in tag viewer
|
||||
user: core
|
||||
<source>
|
||||
*: "Composer"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Komponist"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Start filbrowser ved roden"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Start filbrowser ved roden"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_FREQUENCY
|
||||
desc: in sound_menu, hardware equalizer tone controls shelf filter cutoff frequency
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Bånd %d frekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Bånd frekvens"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH
|
||||
desc: in sound_menu, hardware equalizer tone controls peak bandwith setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Width"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Bånd %d bredde"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Bånd bredde"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_FM_STATION_HEADER
|
||||
desc: in radio screen
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: "Station:"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Station:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RADIOSCREEN
|
||||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Radioskærm"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "Radioskærm"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_MAIN_SCREEN
|
||||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
remote: "Hovedskærm"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "Hovedskærm"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_ONPLAY_PICTUREFLOW
|
||||
desc: Onplay pictureflow
|
||||
user: core
|
||||
<source>
|
||||
*: "PictureFlow"
|
||||
</source>
|
||||
<dest>
|
||||
*: "PictureFlow"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "åben pictureflow"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_FORCE
|
||||
desc: alternative to yes/no for tristate settings
|
||||
user: core
|
||||
<source>
|
||||
*: "Force"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tving"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tving"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_TONE_CONTROLS
|
||||
desc: in sound_menu, hardware equalizer tone controls
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Tone Controls"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Tonekontrol"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Tonekontrol"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "Genvejstast"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Genvejstast"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Start filbrowser her"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Start filbrowser her"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RECORDING_HISTOGRAM_INTERVAL
|
||||
desc: in record settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
recording_histogram: "Histogram interval"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
recording_histogram: "Histogram interval"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
recording_histogram: "Histogram interval"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12055,15 +12055,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Basisskin (SBS)"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Basisskin"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12072,15 +12072,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Fernbedienungs-SBS"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Fernbedienungs-SBS"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12157,15 +12157,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Fernbedienungsradioanzeige"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Fernbedienungsradioanzeige"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12406,15 +12406,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radioanzeige"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radioanzeige"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12548,3 +12548,45 @@
|
|||
*: "Erzwingen"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_BOOKMARK_SETTINGS_AUTOUPDATE
|
||||
desc: prompt for user to decide whether to update bookmarks
|
||||
user: core
|
||||
<source>
|
||||
*: "Update on Stop"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Beim Stoppen aktualisieren"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Beim Stoppen aktualisieren"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dateibrowser in / starten"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Dateibrowser im Hauptverzeichnis starten"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dateibrowser hier starten"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Dateibrowser hier starten"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12112,15 +12112,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12129,15 +12129,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12146,15 +12146,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12163,15 +12163,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12282,15 +12282,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12500,15 +12500,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
# - Jose Ramon Garcia
|
||||
# - Robert Menes
|
||||
# - Chelo Sacristán
|
||||
# - Francisco Vila, 2009
|
||||
# - Francisco Vila, 2009, 2010
|
||||
<phrase>
|
||||
id: LANG_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
|
|
@ -9180,7 +9180,7 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
recording_swcodec: "Bitrate"
|
||||
recording_swcodec: "Tasa de bits"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
|
|
@ -11227,10 +11227,10 @@
|
|||
*: "Queue Last Shuffled"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Queue Last Shuffled"
|
||||
*: "Encolar última aleatoria"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Queue Last Shuffled"
|
||||
*: "Encolar última aleatoria"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11257,11 +11257,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Release Time"
|
||||
swcodec: "Tiempo de salida"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Release Time"
|
||||
swcodec: "Tiempo de salida"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11274,11 +11274,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Threshold"
|
||||
swcodec: "Umbral"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Threshold"
|
||||
swcodec: "Umbral"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11291,11 +11291,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Makeup Gain"
|
||||
swcodec: "Ganancia de compensación"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Makeup Gain"
|
||||
swcodec: "Ganancia de compensación"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11325,11 +11325,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
lcd_bitmap: "Scroll Bar Position"
|
||||
lcd_bitmap: "Posición de la barra de desplazamiento"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
lcd_bitmap: "Scroll bar position"
|
||||
lcd_bitmap: "Posición de la barra de desplazamiento"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11342,11 +11342,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
remote: "Remote Statusbar"
|
||||
remote: "Barra de estado del mando"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "Remote Statusbar"
|
||||
remote: "Barra de estado del mando"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11363,7 +11363,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "remote statusbar skin"
|
||||
remote: "Aspecto de la barra de estado del mando"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11376,11 +11376,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Knee"
|
||||
swcodec: "Codo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Knee"
|
||||
swcodec: "Codo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11393,11 +11393,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Auto"
|
||||
swcodec: "Automático"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Auto"
|
||||
swcodec: "Automático"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11408,10 +11408,10 @@
|
|||
*: "Insert Last Shuffled"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Insert Last Shuffled"
|
||||
*: "Insertar la última aleatoria"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Insert Last Shuffled"
|
||||
*: "Insertar la última aleatoria"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11424,11 +11424,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Soft Knee"
|
||||
swcodec: "Codo suave"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Soft Knee"
|
||||
swcodec: "Codo suave"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11439,10 +11439,10 @@
|
|||
*: "Next:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Next:"
|
||||
*: "Siguiente:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Next:"
|
||||
*: "Siguiente:"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11455,11 +11455,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Ratio"
|
||||
swcodec: "Proporción"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Ratio"
|
||||
swcodec: "Proporción"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11472,11 +11472,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "USB Keypad Mode"
|
||||
usb_hid: "Modo de teclado USB"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "USB Keypad Mode"
|
||||
usb_hid: "Modo de teclado u s b"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11489,11 +11489,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Hard Knee"
|
||||
swcodec: "Codo duro"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Hard Knee"
|
||||
swcodec: "Codo duro"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11506,11 +11506,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
quickscreen: "Set as Top Quickscreen Item"
|
||||
quickscreen: "Establecer como elemento de la pantalla rápida principal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
quickscreen: "Set as Top Quickscreen Item"
|
||||
quickscreen: "Establecer como elemento de la pantalla rápida principal"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11523,11 +11523,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
pitchscreen: "Rate"
|
||||
pitchscreen: "Tasa"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
pitchscreen: "Rate"
|
||||
pitchscreen: "Tasa"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11578,7 +11578,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "USB Human Interface Device"
|
||||
usb_hid: "Dispositivo de interfaz humano USB"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11589,10 +11589,10 @@
|
|||
*: "Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Right"
|
||||
*: "Derecha"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Right"
|
||||
*: "Derecha"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11605,11 +11605,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
pitchscreen: "Semitone"
|
||||
pitchscreen: "Semitono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
pitchscreen: "Semitone"
|
||||
pitchscreen: "Semitono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11622,11 +11622,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Other"
|
||||
radio: "Otras"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "Other"
|
||||
radio: "Otras"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11639,11 +11639,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
pitchscreen: "Limit"
|
||||
pitchscreen: "Límite"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
pitchscreen: "Limit"
|
||||
pitchscreen: "Límite"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11656,11 +11656,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Italy"
|
||||
radio: "Italia"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "Italy"
|
||||
radio: "Italia"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11673,11 +11673,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Calibrate"
|
||||
touchscreen: "Calibrar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Calibrate"
|
||||
touchscreen: "Calibrar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11694,7 +11694,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "10 to 1"
|
||||
swcodec: "10 a 1"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11707,11 +11707,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
morse_input: "Use Morse Code Input"
|
||||
morse_input: "Usar entrada Morse"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
morse_input: "Use Morse Code Input"
|
||||
morse_input: "Usar entrada Morse"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11724,11 +11724,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Reset Calibration"
|
||||
touchscreen: "Reiniciar calibración"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Reset Calibration"
|
||||
touchscreen: "Reiniciar calibración"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11745,7 +11745,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "2 to 1"
|
||||
swcodec: "2 a 1"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11775,11 +11775,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Limit"
|
||||
swcodec: "Límite"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Limit"
|
||||
swcodec: "Límite"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11807,10 +11807,10 @@
|
|||
*: "Custom"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Custom"
|
||||
*: "Personalizado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Custom"
|
||||
*: "Personalizado"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11823,11 +11823,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
lcd_bitmap: "Scroll Bar Width"
|
||||
lcd_bitmap: "Ancho de la barra de desplazamiento"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
lcd_bitmap: "Scroll bar width"
|
||||
lcd_bitmap: "Ancho de la barra de desplazamiento"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11838,10 +11838,10 @@
|
|||
*: "Skin RAM usage:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Skin RAM usage:"
|
||||
*: "Uso de RAM de la piel:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Skin RAM usage"
|
||||
*: "Uso de RAM de la piel"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11852,10 +11852,10 @@
|
|||
*: "Skip to Outro"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Skip to Outro"
|
||||
*: "Saltar a Outro"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Skip to Outro"
|
||||
*: "Saltar a Outro"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11868,11 +11868,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
crossfade: "Automatic Track Change Only"
|
||||
crossfade: "Sólo cambio automático de pistas"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
crossfade: "Automatic Track Change Only"
|
||||
crossfade: "Sólo cambio automático de pistas"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11883,10 +11883,10 @@
|
|||
*: "Bottom"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Bottom"
|
||||
*: "Abajo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Bottom"
|
||||
*: "Abajo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11899,11 +11899,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Timestretch"
|
||||
swcodec: "Ajuste de tiempo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Timestretch"
|
||||
swcodec: "Ajuste de tiempo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11920,7 +11920,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "6 to 1"
|
||||
swcodec: "6 a 1"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11933,11 +11933,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Compressor"
|
||||
swcodec: "Compresor"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Compressor"
|
||||
swcodec: "Compresor"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11948,10 +11948,10 @@
|
|||
*: "Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Left"
|
||||
*: "Izquierda"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Left"
|
||||
*: "Izquierda"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11964,11 +11964,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Touchscreen Settings"
|
||||
touchscreen: "Ajustes de la pantalla táctil"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Touchscreen Settings"
|
||||
touchscreen: "Ajustes de la pantalla táctil"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11979,10 +11979,10 @@
|
|||
*: "Top"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Top"
|
||||
*: "Arriba"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Top"
|
||||
*: "Arriba"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11995,11 +11995,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Speed"
|
||||
swcodec: "Velocidad"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Speed"
|
||||
swcodec: "Velocidad"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12010,10 +12010,10 @@
|
|||
*: "Next Track:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Next Track:"
|
||||
*: "Siguiente:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Next Track:"
|
||||
*: "Siguiente:"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12030,7 +12030,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "4 to 1"
|
||||
swcodec: "4 a 1"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12058,10 +12058,10 @@
|
|||
*: "of"
|
||||
</source>
|
||||
<dest>
|
||||
*: "of"
|
||||
*: "de"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "of"
|
||||
*: "de"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12214,6 +12214,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Tecla rápida del examinador de archivos"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12241,10 +12242,10 @@
|
|||
*: "<Untagged>"
|
||||
</source>
|
||||
<dest>
|
||||
*: "<Untagged>"
|
||||
*: "<Sin etiqueta>"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Untagged"
|
||||
*: "Sin etiqueta"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12410,11 +12411,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio_remote: "Pantalla de rádio del mando"
|
||||
radio_remote: "Pantalla de radio del mando"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio_remote: "Pantalla de rádio del mando"
|
||||
radio_remote: "Pantalla de radio del mando"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12441,11 +12442,11 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Pantalla de rádio"
|
||||
radio: "Pantalla de radio"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "Pantalla de rádio"
|
||||
radio: "Pantalla de radio"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12476,3 +12477,96 @@
|
|||
*: "Forzar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_OK
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Aceptar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Aceptar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_BOOKMARK_SETTINGS_AUTOUPDATE
|
||||
desc: prompt for user to decide whether to update bookmarks
|
||||
user: core
|
||||
<source>
|
||||
*: "Update on Stop"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Actualizar al parar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Actualizar al parar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_DELETE
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Del"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Supr"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Suprimir"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_CANCEL
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Cancel"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Cancelar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Cancelar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Iniciar examinador en /"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Iniciar examinador de archivos en la raíz"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Iniciar examinador aquí"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Iniciar examinador aquí"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12066,7 +12066,7 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12083,7 +12083,7 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12100,15 +12100,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Ecran principal"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "écran principal"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12117,15 +12117,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Ecran télécommande"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "écran télécommande"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12236,15 +12236,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Ecran radio pour télécommande"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "écran radio pour télécommande"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12454,15 +12454,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Ecran radio"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "écran radio"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -4807,13 +4807,13 @@
|
|||
desc: "talkbox" mode for directories + files
|
||||
user: core
|
||||
<source>
|
||||
*: ".talk mp3 clip"
|
||||
*: ".talk Clip"
|
||||
</source>
|
||||
<dest>
|
||||
*: ".mp3 הקרא קטעי"
|
||||
*: ".talk Clip"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ".mp3 הקרא קטעי"
|
||||
*: ".talk Clip"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -7926,8 +7926,6 @@
|
|||
*: "זמן"
|
||||
</voice>
|
||||
</phrase>
|
||||
/* TODO: cleanup LANG_USB_CHARGING unless HAVE_USB_CHARGING_ENABLE defined,
|
||||
* the selector should probably be usb_charging_enable_enable as well. */
|
||||
<phrase>
|
||||
id: LANG_USB_CHARGING
|
||||
desc: in Battery menu
|
||||
|
|
@ -11460,15 +11458,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Multimedia Mode"
|
||||
usb_hid: "Multimedia"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "מצב מולטימדיה"
|
||||
usb_hid: "מולטימדיה"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "מצב מולטימדיה"
|
||||
usb_hid: "מולטימדיה"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11477,15 +11475,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Presentation Mode"
|
||||
usb_hid: "Presentation"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "מצב מצגת"
|
||||
usb_hid: "מצגת"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "מצב מצגת"
|
||||
usb_hid: "מצגת"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11494,15 +11492,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Browser Mode"
|
||||
usb_hid: "Browser"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "מצב דפדפן"
|
||||
usb_hid: "דפדפן"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "מצב דפדפן"
|
||||
usb_hid: "דפדפן"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11511,15 +11509,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Mouse Mode"
|
||||
usb_hid: "Mouse"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "מצב עכבר"
|
||||
usb_hid: "עכבר"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "מצב עכבר"
|
||||
usb_hid: "עכבר"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12044,15 +12042,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12061,15 +12059,521 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_OK
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "אישור"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "אישור"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY_WPS
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "WPS Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "WPS Hotkey"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "WPS Hotkey"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_REMOTE_RADIOSCREEN
|
||||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio_remote: "מסך רדיו בשלט"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio_remote: "מסך רדיו בשלט"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_GAIN
|
||||
desc: in sound_menu, hardware equalizer tone controls filter gain
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Band %d Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Band %d Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_LINEOUT_ONOFF
|
||||
desc: in system settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
lineout_poweroff: "Line Out"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
lineout_poweroff: "Line Out"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
lineout_poweroff: "Line Out"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: VOICE_EXT_FMS
|
||||
desc: spoken only, for file extension
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: ""
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: ""
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH_WIDE
|
||||
desc: in sound_menu, hardware equalizer tone controls wide bandwidth setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Wide"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "רחב"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "רחב"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_BOOKMARK_SETTINGS_AUTOUPDATE
|
||||
desc: prompt for user to decide whether to update bookmarks
|
||||
user: core
|
||||
<source>
|
||||
*: "Update on Stop"
|
||||
</source>
|
||||
<dest>
|
||||
*: "עדכן בעצירה"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "עדכן בעצירה"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_DELETE
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Del"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "מחק"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "מחק"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: VOICE_EXT_RFMS
|
||||
desc: spoken only, for file extension
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio_remote: ""
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio_remote: ""
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio_remote: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_REMOTE_SCREEN
|
||||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
remote: "מסך שלט"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "מסך שלט"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH_NARROW
|
||||
desc: in sound_menu, hardware equalizer tone controls narrow bandwith setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Narrow"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "צר"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "צר"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY_FILE_BROWSER
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "File Browser Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "File Browser Hotkey"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "File Browser Hotkey"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESUME_REWIND
|
||||
desc: in playback settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
swcodec: "Rewind Before Resume"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Rewind Before Resume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Rewind before resume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_TAGNAVI_UNTAGGED
|
||||
desc: "<untagged>" entry in tag browser
|
||||
user: core
|
||||
<source>
|
||||
*: "<Untagged>"
|
||||
</source>
|
||||
<dest>
|
||||
*: "<Untagged>"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Untagged"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_TONE_CONTROLS_ADVANCED
|
||||
desc: in sound_menu, advanced settings for hardware equalizer tone controls
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Advanced Tone Control Settings"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Advanced Tone Control Settings"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Advanced Tone Control Settings"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_DEPTH_3D
|
||||
desc: in sound_menu, amount of 3D enhancement effect
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "3-D Enhancement"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "3-D Enhancement"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "3-D Enhancement"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_CANCEL
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Cancel"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "ביטול"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "ביטול"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_ID3_COMPOSER
|
||||
desc: in tag viewer
|
||||
user: core
|
||||
<source>
|
||||
*: "Composer"
|
||||
</source>
|
||||
<dest>
|
||||
*: "מלחין"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Start File Browser at /"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Start File Browser at root"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_FREQUENCY
|
||||
desc: in sound_menu, hardware equalizer tone controls shelf filter cutoff frequency
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Band %d Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Band Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH
|
||||
desc: in sound_menu, hardware equalizer tone controls peak bandwith setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Width"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Band %d Width"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Band Width"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_FM_STATION_HEADER
|
||||
desc: in radio screen
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: "Station:"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: ":תחנה"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RADIOSCREEN
|
||||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "מסך רדיו"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_MAIN_SCREEN
|
||||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "מסך ראשי"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_ONPLAY_PICTUREFLOW
|
||||
desc: Onplay pictureflow
|
||||
user: core
|
||||
<source>
|
||||
*: "PictureFlow"
|
||||
</source>
|
||||
<dest>
|
||||
*: "PictureFlow"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "open picture flow"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_FORCE
|
||||
desc: alternative to yes/no for tristate settings
|
||||
user: core
|
||||
<source>
|
||||
*: "Force"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Force"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Force"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_TONE_CONTROLS
|
||||
desc: in sound_menu, hardware equalizer tone controls
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Tone Controls"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Tone Controls"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Tone Controls"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "Hotkey"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Hotkey"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Start File Browser Here"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Start File Browser Here"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RECORDING_HISTOGRAM_INTERVAL
|
||||
desc: in record settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
recording_histogram: "Histogram interval"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
recording_histogram: "Histogram interval"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
recording_histogram: "Histogram interval"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -251,6 +251,7 @@
|
|||
cowond2*: "MENU, or top-right = Yes"
|
||||
iriverh100,iriverh120,iriverh300: "NAVI = Yes"
|
||||
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes"
|
||||
mrobe500: "PLAY, POWER, or top-right = Yes"
|
||||
archosplayer: "(PLAY/STOP)"
|
||||
vibe500: "OK = Yes"
|
||||
</source>
|
||||
|
|
@ -259,7 +260,7 @@
|
|||
cowond2*: "MENU, o alto-destra = Sì"
|
||||
iriverh100,iriverh120,iriverh300: "NAVI = Sì"
|
||||
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Sì"
|
||||
mrobe500: "PLAY o POWER = Sì"
|
||||
mrobe500: "PLAY, POWER o alto-destra = Sì"
|
||||
archosplayer: "(PLAY/STOP)"
|
||||
vibe500: "OK = Sì"
|
||||
</dest>
|
||||
|
|
@ -12037,15 +12038,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base "
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base "
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12054,15 +12055,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base Per Telecomando"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base Per Telecomando"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12071,15 +12072,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Schermo Principale"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Schermo Principale"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12088,15 +12089,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Schermo Telecomando"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Schermo Telecomando"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12207,15 +12208,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Schermo Telecomando Radio"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Schermo Telecomando Radio"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12425,15 +12426,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Schermo Radio"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Schermo Radio"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12042,15 +12042,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "基本スキン"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "基本スキン"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12059,15 +12059,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "リモコンの基本スキン"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "リモコンの基本スキン"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12076,15 +12076,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "メイン画面"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "メイン画面"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12093,15 +12093,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "リモコン画面"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "リモコン画面"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12212,15 +12212,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "リモコンのラジオ画面"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "リモコンのラジオ画面"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12430,15 +12430,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "ラジオ画面"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "ラジオ画面"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12549,3 +12549,31 @@
|
|||
*: "停止時にブックマークを更新"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ブラウザの初期ディレクトリに設定"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ブラウザの初期ディレクトリに設定"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ブラウザの初期ディレクトリをルートに設定"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ブラウザの初期ディレクトリをルートに設定"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12041,15 +12041,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Basis skin"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Basis skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12058,15 +12058,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Afstandsbediening basis skin"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Afstandsbediening basis skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12075,15 +12075,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Afstandsbediening scherm"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Afstandsbediening scherm"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12092,15 +12092,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Hoofd scherm"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Hoofd scherm"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12412,15 +12412,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Radio scherm op afstandsbediening"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Radio scherm op afstandsbediening"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12443,15 +12443,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio scherm"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio scherm"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -11638,15 +11638,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Styl bazowy"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Styl bazowy"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -11853,15 +11853,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Styl bazowy pilota"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Styl bazowy pilota"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -11921,15 +11921,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Ekran pilota"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Ekran pilota"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12286,15 +12286,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Ekran główny"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Ekran główny"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12416,15 +12416,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Ekran radia na pilocie"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Ekran radia na pilocie"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12433,15 +12433,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Ekran radia"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Ekran radia"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12034,15 +12034,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12051,15 +12051,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base Remota"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base Remota"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12068,15 +12068,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Tela Principal"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Tela Principal"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12085,15 +12085,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Tela Remota"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Tela Remota"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -10849,7 +10849,7 @@
|
|||
*: ""
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Skin da Barra de Estado"
|
||||
*: "Visual da Barra de Estado"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -10925,16 +10925,16 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base"
|
||||
lcd_bitmap: "Visual Base"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
lcd_bitmap: "Skin Base"
|
||||
lcd_bitmap: "Visual Base"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11016,7 +11016,7 @@
|
|||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "skin da barra de estado remota"
|
||||
remote: "visual da barra de estado remota"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11250,16 +11250,16 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
lcd_bitmap: "Skin da Base Remota"
|
||||
lcd_bitmap: "Visual da Base Remota"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
lcd_bitmap: "Skin da Base Remota"
|
||||
lcd_bitmap: "Visual da Base Remota"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11268,15 +11268,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Browser Mode"
|
||||
usb_hid: "Browser"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Modo Navegador"
|
||||
usb_hid: "Navegador"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Modo Navegador"
|
||||
usb_hid: "Navegador"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11616,15 +11616,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Mouse Mode"
|
||||
usb_hid: "Mouse"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Modo Rato"
|
||||
usb_hid: "Rato"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Modo Rato"
|
||||
usb_hid: "Rato"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11650,15 +11650,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Multimedia Mode"
|
||||
usb_hid: "Multimedia"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Modo Multimédia"
|
||||
usb_hid: "Multimédia"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Modo Multimédia"
|
||||
usb_hid: "Multimédia"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -11700,10 +11700,10 @@
|
|||
*: "Skin RAM usage:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Uso de RAM da Skin:"
|
||||
*: "Uso de RAM do Visual:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Uso de RAM da Skin"
|
||||
*: "Uso de RAM do Visual"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12020,15 +12020,15 @@
|
|||
user: core
|
||||
<source>
|
||||
*: none
|
||||
usb_hid: "Presentation Mode"
|
||||
usb_hid: "Presentation"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
usb_hid: "Modo de Apresentação"
|
||||
usb_hid: "Apresentação"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
usb_hid: "Modo de Apresentação"
|
||||
usb_hid: "Apresentação"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
|
|
@ -12069,10 +12069,502 @@
|
|||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
recording: "Tipo de Botão de Arranque
|
||||
recording: "Tipo de Botão de Arranque"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
recording: "Tipo de Botão de Arranque"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_OK
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "OK"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY_WPS
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "WPS Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "Atalho do WPS"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Atalho do WPS"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_REMOTE_RADIOSCREEN
|
||||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio_remote: "Ecrã do Rádio Remoto"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio_remote: "Ecrã do Rádio Remoto"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_GAIN
|
||||
desc: in sound_menu, hardware equalizer tone controls filter gain
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Banda de Ganho %d"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Banda de Ganho"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_LINEOUT_ONOFF
|
||||
desc: in system settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
lineout_poweroff: "Line Out"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
lineout_poweroff: "Linha de Saída"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
lineout_poweroff: "Linha de Saída"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: VOICE_EXT_FMS
|
||||
desc: spoken only, for file extension
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: ""
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: ""
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "visual do ecrã de rádio"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH_WIDE
|
||||
desc: in sound_menu, hardware equalizer tone controls wide bandwidth setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Wide"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Largo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Largo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_BOOKMARK_SETTINGS_AUTOUPDATE
|
||||
desc: prompt for user to decide whether to update bookmarks
|
||||
user: core
|
||||
<source>
|
||||
*: "Update on Stop"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Actualizar ao Parar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Actualizar ao Parar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_DELETE
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Del"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Del"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Del"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: VOICE_EXT_RFMS
|
||||
desc: spoken only, for file extension
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio_remote: ""
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio_remote: ""
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio_remote: "visual do ecrã do rádio remoto"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_REMOTE_SCREEN
|
||||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
remote: "Ecrã Remoto"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "Ecrã Remoto"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH_NARROW
|
||||
desc: in sound_menu, hardware equalizer tone controls narrow bandwith setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Narrow"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Estreito"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Estreito"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY_FILE_BROWSER
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "File Browser Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "Atalho do Explorador de Ficheiros"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Atalho do Explorador de Ficheiros"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESUME_REWIND
|
||||
desc: in playback settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
swcodec: "Rewind Before Resume"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
swcodec: "Recuar antes de Resumir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
swcodec: "Recuar antes de Resumir"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_TONE_CONTROLS_ADVANCED
|
||||
desc: in sound_menu, advanced settings for hardware equalizer tone controls
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Advanced Tone Control Settings"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Opções de Controlo Avançado de Tons"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Opções de Controlo Avançado de Tons"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_DEPTH_3D
|
||||
desc: in sound_menu, amount of 3D enhancement effect
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "3-D Enhancement"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Melhoramento 3-D"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Melhoramento 3-D"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_KBD_CANCEL
|
||||
desc: in keyboard
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
touchscreen: "Cancel"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
touchscreen: "Cancelar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
touchscreen: "Cancelar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_ID3_COMPOSER
|
||||
desc: in tag viewer
|
||||
user: core
|
||||
<source>
|
||||
*: "Composer"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Compositor"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Iniciar Explorador de Ficheiros na /"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Iniciar Explorador de Ficheiros na raíz"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_FREQUENCY
|
||||
desc: in sound_menu, hardware equalizer tone controls shelf filter cutoff frequency
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Banda de Frequência %d"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Banda de Frequência"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_WIDTH
|
||||
desc: in sound_menu, hardware equalizer tone controls peak bandwith setting
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Band %d Width"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Largura de Banda %d"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Largura de Banda"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_FM_STATION_HEADER
|
||||
desc: in radio screen
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: "Station:"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Estação:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RADIOSCREEN
|
||||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
radio: "Ecrã do Rádio"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
radio: "Ecrã do Rádio"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_MAIN_SCREEN
|
||||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
remote: "Ecrã Principal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
remote: "Ecrã Principal"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_ONPLAY_PICTUREFLOW
|
||||
desc: Onplay pictureflow
|
||||
user: core
|
||||
<source>
|
||||
*: "PictureFlow"
|
||||
</source>
|
||||
<dest>
|
||||
*: "PictureFlow"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "abrir picture flow"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_FORCE
|
||||
desc: alternative to yes/no for tristate settings
|
||||
user: core
|
||||
<source>
|
||||
*: "Force"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forçar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Forçar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HW_EQ_TONE_CONTROLS
|
||||
desc: in sound_menu, hardware equalizer tone controls
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
gigabeats: "Tone Controls"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
gigabeats: "Controlo de Tons"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
gigabeats: "Controlo de Tons"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_HOTKEY
|
||||
desc: hotkey menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
hotkey: "Hotkey"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
hotkey: "Tecla de Atalho"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
hotkey: "Tecla de Atalho"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Iniciar Explorador de Ficheiros aqui"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Iniciar Explorador de Ficheiros aqui"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RECORDING_HISTOGRAM_INTERVAL
|
||||
desc: in record settings menu
|
||||
user: core
|
||||
<source>
|
||||
*: none
|
||||
recording_histogram: "Histogram interval"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
recording_histogram: "Intervalo do Histograma"
|
||||
</dest>
|
||||
<voice>
|
||||
*: none
|
||||
recording_histogram: "Intervalo do Histograma"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -4166,6 +4166,7 @@
|
|||
<source>
|
||||
*: none
|
||||
rtc: "OFF = Revert"
|
||||
mrobe500: "POWER = Revert"
|
||||
iriverh100,iriverh120,iriverh300: "STOP = Revert"
|
||||
ipod*,sansac200*: "MENU = Revert"
|
||||
iaudiox5,iaudiom5: "RECORD = Revert"
|
||||
|
|
@ -4173,11 +4174,13 @@
|
|||
gigabeatfx: "POWER = Revert"
|
||||
mrobe100: "DISPLAY = Revert"
|
||||
gigabeats: "BACK = Revert"
|
||||
gogearsa9200: "LEFT = Revert"
|
||||
vibe500: "CANCEL = Revert"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
rtc: "ВЫКЛ. = Отмена"
|
||||
mrobe500: "ВЫКЛ. = Отмена"
|
||||
iriverh100,iriverh120,iriverh300: "СТОП = Отмена"
|
||||
ipod*,sansac200*: "МЕНЮ = Отмена"
|
||||
iaudiox5,iaudiom5: "ЗАПИСЬ = Отмена"
|
||||
|
|
@ -4185,6 +4188,7 @@
|
|||
gigabeatfx: "ВЫКЛ. = Отмена"
|
||||
mrobe100: "ПОКАЗ. = Отмена"
|
||||
gigabeats: "НАЗАД = Отмена"
|
||||
gogearsa9200: "ЛЕВО = Отмена"
|
||||
vibe500: "C = Отмена"
|
||||
</dest>
|
||||
<voice>
|
||||
|
|
@ -7460,12 +7464,16 @@
|
|||
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
|
||||
ipod*: "Building database... %d found (PREV to return)"
|
||||
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)"
|
||||
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
|
||||
gogearsa9200: "Building database... %d found (REW to return)"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Построение базы... %d найдено (ВЫКЛ. для отмены)"
|
||||
iriverh100,iriverh120,iriverh300: "Построение базы... %d найдено (СТОП для отмены)"
|
||||
ipod*: "Построение базы... %d найдено (ПРЕД. для отмены)"
|
||||
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Построение базы... %d найдено (ВЛЕВО для отмены)"
|
||||
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Построение базы... %d найдено (ПРЕД. для отмены)"
|
||||
gogearsa9200: "Построение базы... %d найдено (РЕВЕРС. для отмены)"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "найдено записей в базе"
|
||||
|
|
@ -8178,15 +8186,19 @@
|
|||
user: core
|
||||
<source>
|
||||
*: "PLAY = Yes"
|
||||
cowond2*: "MENU, or top-right = Yes"
|
||||
iriverh100,iriverh120,iriverh300: "NAVI = Yes"
|
||||
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes"
|
||||
mrobe500: "PLAY, POWER, or top-right = Yes"
|
||||
archosplayer: "(PLAY/STOP)"
|
||||
vibe500: "OK = Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ВОСПР. = Да"
|
||||
cowond2*: "МЕНЮ или прав. верх. = Да"
|
||||
iriverh100,iriverh120,iriverh300: "НАВИГ. = Да"
|
||||
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "ВЫБОР = Да"
|
||||
mrobe500: "ВОСПР., ВЫКЛ или прав. верх. = Да"
|
||||
archosplayer: "(ВОСПР./СТОП)"
|
||||
vibe500: "OK = Да"
|
||||
</dest>
|
||||
|
|
@ -8201,15 +8213,19 @@
|
|||
<source>
|
||||
*: none
|
||||
rtc: "ON = Set"
|
||||
mrobe500: "HEART = Set"
|
||||
iriverh100,iriverh120,iriverh300: "NAVI = Set"
|
||||
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set"
|
||||
gogearsa9200: "PLAY = Set"
|
||||
vibe500: "OK = Set"
|
||||
</source>
|
||||
<dest>
|
||||
*: none
|
||||
rtc: "ВКЛ. = Установить"
|
||||
mrobe500: "СЕРДЦЕ = Установить"
|
||||
iriverh100,iriverh120,iriverh300: "НАВИГ. = Установить"
|
||||
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "ВЫБОР = Установить"
|
||||
gogearsa9200: "ВОСПР. = Установить"
|
||||
vibe500: "OK = Установить"
|
||||
</dest>
|
||||
<voice>
|
||||
|
|
@ -12533,3 +12549,31 @@
|
|||
recording_histogram: "Интервал гистограммы"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Начинать показ файлов с /"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Начинать показ файлов с корня"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Начинать показ файлов здесь"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Начинать показ файлов здесь"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12034,15 +12034,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Základný Vzhľad"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Základný vzhľad"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12051,15 +12051,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Vzdialený Základný Vzhľad"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Vzdialený základný vzhľad"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12068,15 +12068,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Vzdialená Obrazovka"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Vzdialená obrazovka"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12085,15 +12085,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Hlavná Obrazovka"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Hlavná obrazovka"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12255,7 +12255,7 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
@ -12405,7 +12405,7 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
|
|
|
|||
|
|
@ -12069,15 +12069,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Екран радија на даљинском"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Екран радија на даљинском"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12103,15 +12103,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Основни Skin"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Основни Skin"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12188,15 +12188,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Основни скин на даљинском"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Основни скин на даљинском"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12222,15 +12222,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Eкран на даљинском"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Eкран на даљинском"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12420,15 +12420,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Екран радија"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Екран радија"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12437,15 +12437,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Главни екран"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Главни екран"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12528,3 +12528,45 @@
|
|||
recording_histogram: "Интервал хистограма"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_BOOKMARK_SETTINGS_AUTOUPDATE
|
||||
desc: prompt for user to decide whether to update bookmarks
|
||||
user: core
|
||||
<source>
|
||||
*: "Update on Stop"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Обнови при заустављању"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Обнови при заустављању"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_RESET_START_DIR
|
||||
desc: reset the browser start directory
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser at /"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Покрени прегледач фајлова у /"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Покрени прегледач фајлова у основном фолдеру"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SET_AS_START_DIR
|
||||
desc: used in the onplay menu to set a starting browser dir
|
||||
user: core
|
||||
<source>
|
||||
*: "Start File Browser Here"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Покрени прегледач фајлова у овом фолдеру"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Покрени прегледач фајлова у овом фолдеру"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12040,15 +12040,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Grundskal"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Grundskal"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12057,15 +12057,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Fjärrgrundskal"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Fjärrgrundskal"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12074,15 +12074,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Huvudskärm"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Huvudskärm"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12091,15 +12091,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Fjärrskärm"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Fjärrskärm"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12210,15 +12210,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Remote Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Fjärradioskal"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio_remote: "Fjärradioskal"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12428,15 +12428,15 @@
|
|||
desc: in the theme menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radio Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radioskal"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
radio: "Radioskal"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -12063,15 +12063,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Pea"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Pea"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12080,15 +12080,15 @@
|
|||
desc: browse for the base skin in theme settings
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Remote Base Skin"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Pea då lon"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
lcd_bitmap: "Pea då lon"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12097,15 +12097,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Main Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Mwaisse waitroûle"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Mwaisse waitroûle"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
@ -12114,15 +12114,15 @@
|
|||
desc: in the main menu
|
||||
user: core
|
||||
<source>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Remote Screen"
|
||||
</source>
|
||||
<dest>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Waitroûle då lon"
|
||||
</dest>
|
||||
<voice>
|
||||
*:none
|
||||
*: none
|
||||
remote: "Waitroûle då lon"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -584,6 +584,11 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
|
|||
temp->function->param);
|
||||
else
|
||||
return_value = temp->function->function();
|
||||
if (!(menu->flags&MENU_EXITAFTERTHISMENU) ||
|
||||
(temp->flags&MENU_EXITAFTERTHISMENU))
|
||||
{
|
||||
init_menu_lists(menu, &lists, selected, true, vps);
|
||||
}
|
||||
if (temp->flags&MENU_FUNC_CHECK_RETVAL)
|
||||
{
|
||||
if (return_value != 0)
|
||||
|
|
|
|||
|
|
@ -652,7 +652,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
|||
}
|
||||
|
||||
/* Timeout so we can determine if play status has changed */
|
||||
bool res = list_do_action(CONTEXT_LIST, HZ/2,
|
||||
bool res = list_do_action(CONTEXT_TREE, HZ/2,
|
||||
&playlist_lists, &button, LIST_WRAP_UNLESS_HELD);
|
||||
/* during moving, another redraw is going to be needed,
|
||||
* since viewer.selected_track is updated too late (after the first draw)
|
||||
|
|
|
|||
|
|
@ -122,13 +122,10 @@ battery_bench.c
|
|||
crypt_firmware.c
|
||||
#endif
|
||||
|
||||
#if (CONFIG_CODEC == SWCODEC)
|
||||
metronome.c
|
||||
#endif
|
||||
|
||||
#if ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F))
|
||||
wavplay.c
|
||||
#endif
|
||||
|
||||
#if (CONFIG_CODEC == MAS3587F)
|
||||
wavrecord.c
|
||||
#endif
|
||||
|
|
@ -137,6 +134,12 @@ wavrecord.c
|
|||
|
||||
|
||||
|
||||
#if CONFIG_CODEC == SWCODEC || !defined(SIMULATOR) /* Not for hwcodec sims */
|
||||
metronome.c
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifdef HAVE_LCD_BITMAP /* Not for the Archos Player */
|
||||
|
||||
boomshine.lua
|
||||
|
|
|
|||
|
|
@ -244,7 +244,6 @@ enum tidy_return tidy_removedir(char *path, int *path_length)
|
|||
/* silent error */
|
||||
continue;
|
||||
|
||||
|
||||
struct dirinfo info = rb->dir_get_info(dir, entry);
|
||||
if (info.attribute & ATTR_DIRECTORY)
|
||||
{
|
||||
|
|
@ -252,7 +251,7 @@ enum tidy_return tidy_removedir(char *path, int *path_length)
|
|||
if ((rb->strcmp(entry->d_name, ".") != 0) && \
|
||||
(rb->strcmp(entry->d_name, "..") != 0))
|
||||
{
|
||||
tidy_removedir(path, path_length);
|
||||
status = tidy_removedir(path, path_length);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
@ -261,7 +260,7 @@ enum tidy_return tidy_removedir(char *path, int *path_length)
|
|||
removed++;
|
||||
rb->remove(path);
|
||||
}
|
||||
|
||||
|
||||
/* restore path */
|
||||
tidy_path_remove_entry(path, old_path_length, path_length);
|
||||
}
|
||||
|
|
@ -284,7 +283,6 @@ enum tidy_return tidy_clean(char *path, int *path_length)
|
|||
struct dirent *entry;
|
||||
enum tidy_return status = TIDY_RETURN_OK;
|
||||
int button;
|
||||
int del; /* has the item been deleted */
|
||||
DIR *dir;
|
||||
int old_path_length = *path_length;
|
||||
|
||||
|
|
@ -321,8 +319,6 @@ enum tidy_return tidy_clean(char *path, int *path_length)
|
|||
if ((rb->strcmp(entry->d_name, ".") != 0) && \
|
||||
(rb->strcmp(entry->d_name, "..") != 0))
|
||||
{
|
||||
del = 0;
|
||||
|
||||
/* get absolute path */
|
||||
/* returns an error if path is too long */
|
||||
if(!tidy_path_append_entry(path, entry, path_length))
|
||||
|
|
@ -332,11 +328,9 @@ enum tidy_return tidy_clean(char *path, int *path_length)
|
|||
if (tidy_remove_item(entry->d_name, info.attribute))
|
||||
{
|
||||
/* delete dir */
|
||||
tidy_removedir(path, path_length);
|
||||
del = 1;
|
||||
status = tidy_removedir(path, path_length);
|
||||
}
|
||||
|
||||
if (del == 0)
|
||||
else
|
||||
{
|
||||
/* dir not deleted so clean it */
|
||||
status = tidy_clean(path, path_length);
|
||||
|
|
@ -349,7 +343,6 @@ enum tidy_return tidy_clean(char *path, int *path_length)
|
|||
else
|
||||
{
|
||||
/* file */
|
||||
del = 0;
|
||||
if (tidy_remove_item(entry->d_name, info.attribute))
|
||||
{
|
||||
/* get absolute path */
|
||||
|
|
@ -361,8 +354,7 @@ enum tidy_return tidy_clean(char *path, int *path_length)
|
|||
removed++; /* increment removed files counter */
|
||||
/* delete file */
|
||||
rb->remove(path);
|
||||
del = 1;
|
||||
|
||||
|
||||
/* restore path */
|
||||
tidy_path_remove_entry(path, old_path_length, path_length);
|
||||
}
|
||||
|
|
@ -496,7 +488,6 @@ enum tidy_return tidy_lcd_menu(void)
|
|||
|
||||
case 1:
|
||||
{
|
||||
bool show_icons = rb->global_settings->show_icons;
|
||||
struct simplelist_info list;
|
||||
rb->simplelist_info_init(&list, "Files to Clean",
|
||||
tidy_type_count, NULL);
|
||||
|
|
@ -504,7 +495,6 @@ enum tidy_return tidy_lcd_menu(void)
|
|||
list.get_name = get_name;
|
||||
list.action_callback = list_action_callback;
|
||||
rb->simplelist_show_list(&list);
|
||||
rb->global_settings->show_icons = show_icons;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
|
|||
|
|
@ -2491,6 +2491,7 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
{
|
||||
int rat, srat, nrat; /* for rate selection */
|
||||
int cont = 1, butt;
|
||||
int ret;
|
||||
long tim = 0;
|
||||
static const char* bstrg[] = {
|
||||
"64", "80", "96", "112", "128", "160", "192", "224", "256", "320"
|
||||
|
|
@ -2544,7 +2545,8 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
|
||||
if(cont)
|
||||
{
|
||||
if(wave_open() == 0)
|
||||
ret = wave_open();
|
||||
if(ret == 0)
|
||||
{
|
||||
init_mp3_encoder_engine(true, brate[srat], cfg.samplerate);
|
||||
get_mp3_filename(wav_filename);
|
||||
|
|
@ -2557,11 +2559,12 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
|
||||
rb->close(wavfile);
|
||||
rb->close(mp3file);
|
||||
rb->reload_directory();
|
||||
}
|
||||
else
|
||||
{
|
||||
rb->close(wavfile);
|
||||
rb->lcd_putsxyf(0, 20, "WaveOpen failed %d", wave_open());
|
||||
rb->lcd_putsxyf(0, 20, "WaveOpen failed %d", ret);
|
||||
rb->lcd_update();
|
||||
rb->sleep(5*HZ);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@ void vid_update(int scanline)
|
|||
scanline-=16;
|
||||
else if (fb.mode==2)
|
||||
scanline-=8;
|
||||
scanline_remapped = scanline / 16;
|
||||
scanline_remapped = (scanline / 16 + 7) % 8;
|
||||
frameb = rb->lcd_framebuffer + scanline_remapped * LCD_WIDTH;
|
||||
while (cnt < 160) {
|
||||
balance += LCD_WIDTH;
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@ static int wav2wv(const char *infile)
|
|||
|
||||
if (rb->read (in_fd, &raw_header, sizeof (raw_header)) != sizeof (raw_header)) {
|
||||
rb->splash(HZ*2, "could not read file!");
|
||||
rb->close (in_fd);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -135,6 +136,7 @@ static int wav2wv(const char *infile)
|
|||
rb->strncmp (native_header.data_ckID, "data", 4) ||
|
||||
native_header.FormatTag != 1 || native_header.BitsPerSample != 16) {
|
||||
rb->splash(HZ*2, "incompatible wav file!");
|
||||
rb->close (in_fd);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -266,6 +268,7 @@ static int wav2wv(const char *infile)
|
|||
else
|
||||
rb->splash(HZ*3, "operation successful");
|
||||
|
||||
rb->reload_directory();
|
||||
return error;
|
||||
}
|
||||
|
||||
|
|
@ -290,6 +293,5 @@ enum plugin_status plugin_start(const void *parameter)
|
|||
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||
rb->cpu_boost(false);
|
||||
#endif
|
||||
/* Return PLUGIN_USB_CONNECTED to force a file-tree refresh */
|
||||
return PLUGIN_USB_CONNECTED;
|
||||
return PLUGIN_OK;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4645,6 +4645,10 @@ bool tagcache_is_initialized(void)
|
|||
{
|
||||
return tc_stat.initialized;
|
||||
}
|
||||
bool tagcache_is_fully_initialized(void)
|
||||
{
|
||||
return tc_stat.readyvalid;
|
||||
}
|
||||
bool tagcache_is_usable(void)
|
||||
{
|
||||
return tc_stat.initialized && tc_stat.ready;
|
||||
|
|
|
|||
|
|
@ -246,6 +246,7 @@ void tagcache_unload_ramcache(void);
|
|||
#endif
|
||||
void tagcache_init(void) INIT_ATTR;
|
||||
bool tagcache_is_initialized(void);
|
||||
bool tagcache_is_fully_initialized(void);
|
||||
bool tagcache_is_usable(void);
|
||||
void tagcache_start_scan(void);
|
||||
void tagcache_stop_scan(void);
|
||||
|
|
|
|||
|
|
@ -652,6 +652,9 @@ static void tagtree_buffer_event(void *data)
|
|||
|
||||
logf("be:%s", id3->path);
|
||||
|
||||
while (! tagcache_is_fully_initialized())
|
||||
yield();
|
||||
|
||||
if (!tagcache_find_index(&tcs, id3->path))
|
||||
{
|
||||
logf("tc stat: not found: %s", id3->path);
|
||||
|
|
|
|||
|
|
@ -562,6 +562,7 @@ Tuomas Airaksinen
|
|||
Calvin Walden
|
||||
Michael Gentry
|
||||
David Fowle
|
||||
Michael Hohmuth
|
||||
|
||||
The libmad team
|
||||
The wavpack team
|
||||
|
|
|
|||
|
|
@ -115,13 +115,13 @@ static bool button_try_post(int button, int data)
|
|||
/* one can swipe over the scren very quickly,
|
||||
* for this to work we want to forget about old presses and
|
||||
* only respect the very latest ones */
|
||||
const int force_post = true;
|
||||
const bool force_post = true;
|
||||
#else
|
||||
/* Only post events if the queue is empty,
|
||||
* to avoid afterscroll effects.
|
||||
* i.e. don't post new buttons if previous ones haven't been
|
||||
* processed yet */
|
||||
const int force_post = false;
|
||||
* processed yet - but always post releases */
|
||||
const bool force_post = button & BUTTON_REL;
|
||||
#endif
|
||||
|
||||
bool ret = queue_empty(&button_queue);
|
||||
|
|
|
|||
|
|
@ -96,7 +96,6 @@ static const uint16_t initvals[16] = {
|
|||
};
|
||||
|
||||
static bool tuner_present = false;
|
||||
static int curr_frequency = 87500000; /* Current station frequency (HZ) */
|
||||
static uint16_t cache[16];
|
||||
|
||||
/* reads <len> registers from radio at offset 0x0A into cache */
|
||||
|
|
@ -204,8 +203,6 @@ static void rda5802_set_frequency(int freq)
|
|||
int start = CHANNEL_BANDr(cache[CHANNEL]) & 1 ? 76000000 : 87000000;
|
||||
int chan = (freq - start) / 50000;
|
||||
|
||||
curr_frequency = freq;
|
||||
|
||||
for (i = 0; i < 5; i++) {
|
||||
/* tune and wait a bit */
|
||||
rda5802_write_masked(CHANNEL, CHANNEL_CHANw(chan) | CHANNEL_TUNE,
|
||||
|
|
@ -246,16 +243,9 @@ static void rda5802_set_region(int region)
|
|||
|
||||
uint16_t bandspacing = CHANNEL_BANDw(band) |
|
||||
CHANNEL_SPACEw(CHANNEL_SPACE_50KHZ);
|
||||
uint16_t oldbs = cache[CHANNEL] & (CHANNEL_BAND | CHANNEL_SPACE);
|
||||
|
||||
rda5802_write_masked(SYSCONFIG1, deemphasis, SYSCONFIG1_DE);
|
||||
rda5802_write_masked(CHANNEL, bandspacing, CHANNEL_BAND | CHANNEL_SPACE);
|
||||
rda5802_write_cache();
|
||||
|
||||
/* Retune if this region change would change the channel number. */
|
||||
if (oldbs != bandspacing) {
|
||||
rda5802_set_frequency(curr_frequency);
|
||||
}
|
||||
}
|
||||
|
||||
static bool rda5802_st(void)
|
||||
|
|
|
|||
|
|
@ -209,7 +209,6 @@ extern int si4700_st(void);
|
|||
/* 4702/03: RDS Block A-D data */
|
||||
|
||||
static bool tuner_present = false;
|
||||
static int curr_frequency = 87500000; /* Current station frequency (HZ) */
|
||||
static uint16_t cache[16];
|
||||
|
||||
/* reads <len> registers from radio at offset 0x0A into cache */
|
||||
|
|
@ -376,8 +375,6 @@ static void si4700_set_frequency(int freq)
|
|||
int chan = (freq - bands[band]) / spacings[space];
|
||||
int readchan;
|
||||
|
||||
curr_frequency = freq;
|
||||
|
||||
do
|
||||
{
|
||||
/* tuning should be done within 60 ms according to the datasheet */
|
||||
|
|
@ -412,15 +409,9 @@ static void si4700_set_region(int region)
|
|||
|
||||
uint16_t bandspacing = SYSCONFIG2_BANDw(band) |
|
||||
SYSCONFIG2_SPACEw(spacing);
|
||||
uint16_t oldbs = cache[SYSCONFIG2] & (SYSCONFIG2_BAND | SYSCONFIG2_SPACE);
|
||||
|
||||
si4700_write_masked(SYSCONFIG1, deemphasis, SYSCONFIG1_DE);
|
||||
si4700_write_masked(SYSCONFIG2, bandspacing,
|
||||
SYSCONFIG2_BAND | SYSCONFIG2_SPACE);
|
||||
|
||||
/* Retune if this region change would change the channel number. */
|
||||
if (oldbs != bandspacing)
|
||||
si4700_set_frequency(curr_frequency);
|
||||
}
|
||||
|
||||
/* tuner abstraction layer: set something to the tuner */
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@
|
|||
/* #define HAVE_POWEROFF_WHILE_CHARGING */
|
||||
|
||||
/* define current usage levels (based on battery bench) */
|
||||
#define CURRENT_NORMAL 37
|
||||
#define CURRENT_NORMAL 42
|
||||
#define CURRENT_BACKLIGHT 13
|
||||
#define CURRENT_RECORD CURRENT_NORMAL
|
||||
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@
|
|||
#define CONFIG_RTC RTC_AS3514
|
||||
|
||||
/* Define if the device can wake from an RTC alarm */
|
||||
#define HAVE_RTC_ALARM
|
||||
/* #define HAVE_RTC_ALARM */
|
||||
#endif
|
||||
|
||||
/* Define this if you have a software controlled poweroff */
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
#define CONFIG_RTC RTC_AS3514
|
||||
|
||||
/* Define if the device can wake from an RTC alarm */
|
||||
#define HAVE_RTC_ALARM
|
||||
/* #define HAVE_RTC_ALARM */
|
||||
#endif
|
||||
|
||||
/* Define this if you have a software controlled poweroff */
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@
|
|||
#define CONFIG_I2C I2C_AS3525
|
||||
|
||||
/* define current usage levels (based on battery bench) */
|
||||
#define CURRENT_NORMAL 44
|
||||
#define CURRENT_NORMAL 45
|
||||
#define CURRENT_BACKLIGHT 30
|
||||
#define CURRENT_RECORD CURRENT_NORMAL
|
||||
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
#define CONFIG_I2C I2C_AS3525
|
||||
|
||||
/* define current usage levels (based on battery bench) */
|
||||
#define CURRENT_NORMAL 35
|
||||
#define CURRENT_NORMAL 37
|
||||
#define CURRENT_BACKLIGHT 30
|
||||
#define CURRENT_RECORD CURRENT_NORMAL
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
#define CONFIG_RTC RTC_AS3514
|
||||
|
||||
/* Define if the device can wake from an RTC alarm */
|
||||
#define HAVE_RTC_ALARM
|
||||
/* #define HAVE_RTC_ALARM */
|
||||
#endif
|
||||
|
||||
/* There is no hardware tone control */
|
||||
|
|
|
|||
|
|
@ -139,6 +139,7 @@
|
|||
#define AS3525_FCLK_POSTDIV (CLK_DIV((AS3525_PLLA_FREQ*(8-AS3525_FCLK_PREDIV)/8), AS3525_FCLK_FREQ) - 1) /*div=1/(n+1)*/
|
||||
|
||||
#if CONFIG_CPU == AS3525v2
|
||||
/* On as3525v2 we change fclk by writing to CGU_PROC */
|
||||
#define AS3525_FCLK_POSTDIV_UNBOOSTED (CLK_DIV((AS3525_PLLA_FREQ*(8-AS3525_FCLK_PREDIV)/8), CPUFREQ_NORMAL) - 1) /*div=1/(n+1) */
|
||||
/* Since pclk is based on fclk, we need to change CGU_PERI as well */
|
||||
#define AS3525_PCLK_DIV0_UNBOOSTED (CLK_DIV(CPUFREQ_NORMAL, AS3525_DRAM_FREQ) - 1) /*div=1/(n+1)*/
|
||||
|
|
@ -163,18 +164,21 @@
|
|||
|
||||
/* PCLK */
|
||||
|
||||
#if CONFIG_CPU == AS3525
|
||||
/* Figure out if we need to use asynchronous bus */
|
||||
#if ((CONFIG_CPU == AS3525) && (AS3525_FCLK_FREQ % AS3525_PCLK_FREQ))
|
||||
#define ASYNCHRONOUS_BUS /* Boosted mode asynchronous */
|
||||
#endif
|
||||
|
||||
#define AS3525_PCLK_SEL AS3525_CLK_PLLA
|
||||
/*unable to use AS3525_PCLK_DIV1 != 0 successfuly so far*/
|
||||
#define AS3525_PCLK_DIV1 (CLK_DIV(AS3525_DRAM_FREQ, AS3525_PCLK_FREQ) - 1)/* div = 1/(n+1)*/
|
||||
#ifdef ASYNCHRONOUS_BUS
|
||||
#define AS3525_PCLK_SEL AS3525_CLK_PLLA /* PLLA input for asynchronous */
|
||||
#define AS3525_PCLK_DIV0 (CLK_DIV(AS3525_PLLA_FREQ, AS3525_DRAM_FREQ) - 1) /*div=1/(n+1)*/
|
||||
#else
|
||||
|
||||
#define AS3525_PCLK_SEL AS3525_CLK_FCLK
|
||||
#else /* ASYNCHRONOUS_BUS */
|
||||
#define AS3525_PCLK_SEL AS3525_CLK_FCLK /* Fclk input for synchronous */
|
||||
#define AS3525_PCLK_DIV0 (CLK_DIV(AS3525_FCLK_FREQ, AS3525_DRAM_FREQ) - 1) /*div=1/(n+1)*/
|
||||
#endif /* ASYNCHRONOUS_BUS */
|
||||
|
||||
#endif /* CONFIG_CPU */
|
||||
/*unable to use AS3525_PCLK_DIV1 != 0 successfuly so far*/
|
||||
#define AS3525_PCLK_DIV1 (CLK_DIV(AS3525_DRAM_FREQ, AS3525_PCLK_FREQ) - 1)/* div = 1/(n+1)*/
|
||||
|
||||
/* PCLK as Source */
|
||||
#define AS3525_DBOP_DIV (CLK_DIV(AS3525_PCLK_FREQ, AS3525_DBOP_FREQ) - 1) /*div=1/(n+1)*/
|
||||
|
|
|
|||
|
|
@ -262,7 +262,11 @@ void system_init(void)
|
|||
#endif
|
||||
AS3525_PCLK_SEL);
|
||||
|
||||
set_cpu_frequency(CPUFREQ_DEFAULT);
|
||||
#if CONFIG_CPU == AS3525
|
||||
cpu_frequency = CPUFREQ_DEFAULT; /* fastbus */
|
||||
#else
|
||||
cpu_frequency = CPUFREQ_MAX;
|
||||
#endif
|
||||
|
||||
#if 0 /* the GPIO clock is already enabled by the dualboot function */
|
||||
CGU_PERI |= CGU_GPIO_CLOCK_ENABLE;
|
||||
|
|
@ -363,14 +367,15 @@ void set_cpu_frequency(long frequency)
|
|||
while(adc_read(ADC_CVDD) < 470); /* 470 * .0025 = 1.175V */
|
||||
#endif /* HAVE_ADJUSTABLE_CPU_VOLTAGE */
|
||||
|
||||
CGU_PROC = ((AS3525_FCLK_POSTDIV << 4) |
|
||||
(AS3525_FCLK_PREDIV << 2) |
|
||||
AS3525_FCLK_SEL);
|
||||
|
||||
asm volatile(
|
||||
"mrc p15, 0, r0, c1, c0 \n"
|
||||
#ifdef ASYNCHRONOUS_BUS
|
||||
"orr r0, r0, #3<<30 \n" /* asynchronous bus clocking */
|
||||
#else
|
||||
"bic r0, r0, #3<<30 \n" /* clear bus bits */
|
||||
"orr r0, r0, #1<<30 \n" /* synchronous bus clocking */
|
||||
#endif
|
||||
|
||||
"mcr p15, 0, r0, c1, c0 \n"
|
||||
: : : "r0" );
|
||||
|
||||
|
|
@ -384,8 +389,6 @@ void set_cpu_frequency(long frequency)
|
|||
"mcr p15, 0, r0, c1, c0 \n"
|
||||
: : : "r0" );
|
||||
|
||||
/* FCLK is unused so put it to the lowest freq we can */
|
||||
CGU_PROC = ((0xf << 4) | (0x3 << 2) | AS3525_CLK_MAIN);
|
||||
|
||||
#ifdef HAVE_ADJUSTABLE_CPU_VOLTAGE
|
||||
/* Decreasing frequency so reduce voltage after change */
|
||||
|
|
|
|||
|
|
@ -106,7 +106,9 @@ void ata_dma_set_mode(unsigned char mode) {
|
|||
int modeidx;
|
||||
|
||||
(*(volatile unsigned long *)(0x600060C4)) = 0xC0000000; /* 80 Mhz */
|
||||
#if !defined(IPOD_NANO)
|
||||
IDE0_CFG &= ~0x10000000;
|
||||
#endif
|
||||
|
||||
modeidx = mode & 7;
|
||||
mode &= 0xF8;
|
||||
|
|
@ -121,7 +123,9 @@ void ata_dma_set_mode(unsigned char mode) {
|
|||
} else if (mode == 0x20 && modeidx <= ATA_MAX_MWDMA)
|
||||
IDE0_PRI_TIMING1 = tm_mwdma[modeidx];
|
||||
|
||||
#if !defined(IPOD_NANO)
|
||||
IDE0_CFG |= 0x20000000; /* >= 50 Mhz */
|
||||
#endif
|
||||
}
|
||||
|
||||
#define IDE_CFG_INTRQ 8
|
||||
|
|
|
|||
|
|
@ -772,8 +772,8 @@ int nand_device_init(void)
|
|||
nand_tunk3[i] = nand_deviceinfotable[nand_type[i]].tunk3;
|
||||
}
|
||||
if (nand_type[0] < 0) return nand_type[0];
|
||||
nand_interleaved = ((nand_type[0] >> 22) & 1);
|
||||
nand_cached = ((nand_type[0] >> 23) & 1);
|
||||
nand_interleaved = ((nand_deviceinfotable[nand_type[0]].id >> 22) & 1);
|
||||
nand_cached = ((nand_deviceinfotable[nand_type[0]].id >> 23) & 1);
|
||||
|
||||
nand_last_activity_value = current_tick;
|
||||
create_thread(nand_thread, nand_stack,
|
||||
|
|
|
|||
|
|
@ -71,7 +71,11 @@ static int usb_mmc_countdown = 0;
|
|||
/* FIXME: The extra 0x800 is consumed by fat_mount() when the fsinfo
|
||||
needs updating */
|
||||
#ifdef USB_FULL_INIT
|
||||
#ifdef IPOD_NANO2G
|
||||
static long usb_stack[(DEFAULT_STACK_SIZE + 0x1000)/sizeof(long)];
|
||||
#else
|
||||
static long usb_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
|
||||
#endif
|
||||
static const char usb_thread_name[] = "usb";
|
||||
static unsigned int usb_thread_entry = 0;
|
||||
#ifndef USB_STATUS_BY_EVENT
|
||||
|
|
|
|||
|
|
@ -537,7 +537,8 @@ Rockbox uses highpass triangular distribution noise as the dithering noise
|
|||
source, and a third order noise shaper.
|
||||
}
|
||||
|
||||
\opt{swcodec}{
|
||||
\opt{swcodec}{%
|
||||
\opt{pitchscreen}{%
|
||||
\section{Timestretch}
|
||||
Enabling \setting{Timestretch} allows you to change the playback speed without
|
||||
it affecting the pitch of the recording. After enabling this feature and
|
||||
|
|
@ -545,6 +546,7 @@ rebooting, you can access this via the \setting{Pitch Screen}. This function is
|
|||
intended for speech playback and may significantly dilute your listening
|
||||
experience with more complex audio.
|
||||
}
|
||||
}
|
||||
|
||||
\opt{swcodec}{
|
||||
\section{Compressor}
|
||||
|
|
|
|||
|
|
@ -28,8 +28,8 @@
|
|||
\newcommand{\ActionRCWpsPlay}{\ButtonRCOn}
|
||||
\newcommand{\ActionRCWpsSkipNext}{\ButtonRCFF}
|
||||
\newcommand{\ActionRCWpsSkipPrev}{\ButtonRCRew}
|
||||
\newcommand{\ActionRCWpsSeekBack}{Long \ButtonRCFF}
|
||||
\newcommand{\ActionRCWpsSeekFwd}{Long \ButtonRCRew}
|
||||
\newcommand{\ActionRCWpsSeekBack}{Long \ButtonRCRew}
|
||||
\newcommand{\ActionRCWpsSeekFwd}{Long \ButtonRCFF}
|
||||
\newcommand{\ActionRCWpsAbSetBNextDir}{\ButtonRCBitrate}
|
||||
\newcommand{\ActionRCWpsAbSetAPrevDir}{\ButtonRCSource}
|
||||
\newcommand{\ActionRCWpsStop}{\ButtonRCStop}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ block and crosses which allow you to choose a replacement block.
|
|||
\opt{IPOD_4G_PAD,IPOD_3G_PAD}{\ButtonSelect{} + \ButtonRight}
|
||||
\opt{IRIVER_H10_PAD,PBELL_VIBE500_PAD}{\ButtonPlay}
|
||||
\opt{touchscreen}{\TouchCenter}
|
||||
%
|
||||
&
|
||||
\opt{HAVEREMOTEKEYMAP}{
|
||||
&}
|
||||
to choose peg
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
$publicrelease="3.6";
|
||||
$manualrelease="3.6";
|
||||
$voicerelease="3.6";
|
||||
$releasedate="June 3, 2010";
|
||||
$releasenotes="/wiki/ReleaseNotes36";
|
||||
$publicrelease="3.7.1";
|
||||
$manualrelease="3.7.1";
|
||||
$voicerelease="3.7";
|
||||
$releasedate="November 25, 2010";
|
||||
$releasenotes="/wiki/ReleaseNotes371";
|
||||
|
||||
%builds = (
|
||||
'archosav300' => {
|
||||
|
|
@ -109,20 +109,12 @@ $releasenotes="/wiki/ReleaseNotes36";
|
|||
},
|
||||
'ipodnano2g' => {
|
||||
name => 'iPod Nano 2nd gen',
|
||||
status => 2,
|
||||
status => 3,
|
||||
},
|
||||
'ipodvideo' => {
|
||||
name => 'iPod Video 30GB',
|
||||
status => 3,
|
||||
},
|
||||
'ipodvideo64mb' => {
|
||||
name => 'iPod Video 60/80GB',
|
||||
status => 3,
|
||||
icon => 'ipodvideo',
|
||||
manual => 'ipodvideo',
|
||||
voice => 'ipodvideo',
|
||||
configname => 'ipodvideo',
|
||||
},
|
||||
'iriverh10' => {
|
||||
name => 'iriver H10 20GB',
|
||||
status => 3,
|
||||
|
|
@ -232,12 +224,12 @@ $releasenotes="/wiki/ReleaseNotes36";
|
|||
},
|
||||
'sansaclipv2' => {
|
||||
name => 'SanDisk Sansa Clip v2',
|
||||
status => 2,
|
||||
status => 3,
|
||||
icon => 'sansaclip',
|
||||
},
|
||||
'sansaclipplus' => {
|
||||
name => 'SanDisk Sansa Clip+',
|
||||
status => 2,
|
||||
status => 3,
|
||||
},
|
||||
'sansae200' => {
|
||||
name => 'SanDisk Sansa e200',
|
||||
|
|
@ -254,7 +246,7 @@ $releasenotes="/wiki/ReleaseNotes36";
|
|||
},
|
||||
'sansafuzev2' => {
|
||||
name => 'SanDisk Sansa Fuze v2',
|
||||
status => 2,
|
||||
status => 3,
|
||||
icon => 'sansafuze',
|
||||
},
|
||||
'sansam200' => {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/perl
|
||||
$version="3.5RC";
|
||||
$version="3.7.1";
|
||||
|
||||
require "tools/builds.pm";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
$version="3.0";
|
||||
$version="3.7.1";
|
||||
|
||||
require "tools/builds.pm";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
version="3.0"
|
||||
version="3.7.1"
|
||||
|
||||
srcdir=.
|
||||
tempdir=rockbox-temp
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
$version="3.0";
|
||||
$version="3.7.1";
|
||||
|
||||
require "tools/builds.pm";
|
||||
|
||||
|
|
|
|||
|
|
@ -85,6 +85,10 @@ bzrversion() {
|
|||
echo "${version}${mod}"
|
||||
}
|
||||
|
||||
# XXX: Don't run the scripts and just display the release version
|
||||
echo "3.7.1"
|
||||
exit 0
|
||||
|
||||
#
|
||||
# First locate the top of the src tree (passed in usually)
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue