YH8xx,YH9xx: Keymap improvement

The main "innovation" in this patch are two "virtual buttons"
for the record switch on YH92x targets. When the switch state
changes, a single BUTTON_REC_SW_ON or .._OFF button event will
be generated. Thus keymap code can react on switching, but
not on the actual state of the switch.

Wherever sensible, the following user scheme is applied:
- use PLAY as confirm button
- use REW button or Long REW to exit
- use REC (YH820) or FFWD (YH92X) as modifier key for button combos

Change-Id: Ic8d1db9cc6869daed8dda98990dfdf7f6fd5d5a1
This commit is contained in:
Sebastian Leonhardt 2015-07-20 01:50:26 +02:00 committed by Gerrit Rockbox
parent a8758c953d
commit a507bb2837
142 changed files with 1380 additions and 685 deletions

View file

@ -40,15 +40,15 @@
CONTEXT_CUSTOM|CONTEXT_TREE = the standard list/tree defines (without directions) CONTEXT_CUSTOM|CONTEXT_TREE = the standard list/tree defines (without directions)
CONTEXT_CUSTOM|CONTEXT_SETTINGS = the direction keys for the eq/col picker screens CONTEXT_CUSTOM|CONTEXT_SETTINGS = the direction keys for the eq/col picker screens
i.e where up/down is inc/dec i.e where l/r is inc/dec
CONTEXT_SETTINGS = up/down is prev/next, l/r is inc/dec CONTEXT_SETTINGS = l/r is prev/next, up/down is inc/dec
*/ */
static const struct button_mapping button_context_standard[] = { static const struct button_mapping button_context_standard[] = {
{ ACTION_STD_OK, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT }, { ACTION_STD_OK, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT },
{ ACTION_STD_CANCEL, BUTTON_LEFT, BUTTON_NONE }, { ACTION_STD_CANCEL, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT },
{ ACTION_STD_CANCEL, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_STD_CANCEL, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_STD_PREV, BUTTON_UP, BUTTON_NONE }, { ACTION_STD_PREV, BUTTON_UP, BUTTON_NONE },
{ ACTION_STD_PREVREPEAT, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_STD_PREVREPEAT, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
@ -59,8 +59,12 @@ static const struct button_mapping button_context_standard[] = {
{ ACTION_STD_QUICKSCREEN, BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT, { ACTION_STD_QUICKSCREEN, BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT,
BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT }, BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT },
{ ACTION_STD_MENU, BUTTON_LEFT|BUTTON_UP|BUTTON_REPEAT, { ACTION_STD_MENU, BUTTON_LEFT|BUTTON_UP|BUTTON_REPEAT,
BUTTON_LEFT|BUTTON_UP|BUTTON_REPEAT }, BUTTON_LEFT|BUTTON_UP },
#ifdef SAMSUNG_YH820
{ ACTION_STD_REC, BUTTON_REC|BUTTON_REPEAT, BUTTON_REC }, { ACTION_STD_REC, BUTTON_REC|BUTTON_REPEAT, BUTTON_REC },
#else
{ ACTION_STD_REC, BUTTON_REC_SW_ON, BUTTON_NONE },
#endif
LAST_ITEM_IN_LIST LAST_ITEM_IN_LIST
}; /* button_context_standard */ }; /* button_context_standard */
@ -74,34 +78,50 @@ static const struct button_mapping button_context_wps[] = {
{ ACTION_WPS_SKIPPREV, BUTTON_REW|BUTTON_REL, BUTTON_REW }, { ACTION_WPS_SKIPPREV, BUTTON_REW|BUTTON_REL, BUTTON_REW },
{ ACTION_WPS_SEEKBACK, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_WPS_SEEKBACK, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_WPS_STOPSEEK, BUTTON_REW|BUTTON_REL, BUTTON_REW|BUTTON_REPEAT }, { ACTION_WPS_STOPSEEK, BUTTON_REW|BUTTON_REL, BUTTON_REW|BUTTON_REPEAT },
#ifdef SAMSUNG_YH820
{ ACTION_WPS_ABSETB_NEXTDIR,BUTTON_REC|BUTTON_FFWD, BUTTON_NONE },
{ ACTION_WPS_ABSETA_PREVDIR,BUTTON_REC|BUTTON_REW, BUTTON_NONE },
{ ACTION_WPS_ABRESET, BUTTON_REC|BUTTON_PLAY, BUTTON_NONE },
#else
{ ACTION_WPS_ABSETB_NEXTDIR,BUTTON_PLAY|BUTTON_RIGHT, BUTTON_PLAY }, { ACTION_WPS_ABSETB_NEXTDIR,BUTTON_PLAY|BUTTON_RIGHT, BUTTON_PLAY },
{ ACTION_WPS_ABSETA_PREVDIR,BUTTON_PLAY|BUTTON_LEFT, BUTTON_PLAY }, { ACTION_WPS_ABSETA_PREVDIR,BUTTON_PLAY|BUTTON_LEFT, BUTTON_PLAY },
{ ACTION_WPS_ABRESET, BUTTON_PLAY|BUTTON_UP, BUTTON_PLAY }, { ACTION_WPS_ABRESET, BUTTON_PLAY|BUTTON_UP, BUTTON_PLAY },
{ ACTION_WPS_ABRESET, BUTTON_PLAY|BUTTON_DOWN, BUTTON_PLAY },
#endif
{ ACTION_WPS_VOLDOWN, BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_WPS_VOLDOWN, BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_WPS_VOLDOWN, BUTTON_DOWN, BUTTON_NONE }, { ACTION_WPS_VOLDOWN, BUTTON_DOWN, BUTTON_NONE },
{ ACTION_WPS_VOLUP, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_WPS_VOLUP, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_WPS_VOLUP, BUTTON_UP, BUTTON_NONE }, { ACTION_WPS_VOLUP, BUTTON_UP, BUTTON_NONE },
{ ACTION_WPS_BROWSE, BUTTON_RIGHT|BUTTON_REL, BUTTON_NONE }, { ACTION_WPS_BROWSE, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT },
/* these match context_standard */ /* these match context_standard */
{ ACTION_WPS_MENU, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT }, { ACTION_WPS_MENU, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT },
{ ACTION_WPS_CONTEXT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_RIGHT }, { ACTION_WPS_CONTEXT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_RIGHT },
/* kludge: pressing 2 directional buttons is easy on this target */ /* kludge: pressing 2 directional buttons is easy on this target */
{ ACTION_WPS_QUICKSCREEN, BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT, { ACTION_WPS_QUICKSCREEN, BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT,
BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT }, BUTTON_LEFT|BUTTON_DOWN|BUTTON_REPEAT },
#ifdef SAMSUNG_YH820
{ ACTION_WPS_HOTKEY, BUTTON_REC|BUTTON_REL, BUTTON_REC }, { ACTION_WPS_HOTKEY, BUTTON_REC|BUTTON_REL, BUTTON_REC },
#else
{ ACTION_WPS_HOTKEY, BUTTON_RIGHT|BUTTON_DOWN|BUTTON_REPEAT,
BUTTON_RIGHT|BUTTON_DOWN|BUTTON_REPEAT },
{ ACTION_WPS_REC, BUTTON_REC_SW_ON, BUTTON_NONE },
#endif
{ ACTION_WPS_VIEW_PLAYLIST, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_LEFT }, { ACTION_WPS_VIEW_PLAYLIST, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_LEFT },
{ ACTION_WPS_REC, BUTTON_REC|BUTTON_REPEAT, BUTTON_NONE },
LAST_ITEM_IN_LIST LAST_ITEM_IN_LIST
}; /* button_context_wps */ }; /* button_context_wps */
static const struct button_mapping button_context_list[] = { static const struct button_mapping button_context_list[] = {
#ifdef SAMSUNG_YH820 #ifdef SAMSUNG_YH820
{ ACTION_LISTTREE_PGUP, BUTTON_REC|BUTTON_UP, BUTTON_NONE }, { ACTION_LISTTREE_PGUP, BUTTON_REW, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_REC|BUTTON_DOWN, BUTTON_NONE }, { ACTION_LISTTREE_PGUP, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_FFWD, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_NONE },
#else #else
{ ACTION_LISTTREE_PGUP, BUTTON_FFWD, BUTTON_NONE }, { ACTION_LISTTREE_PGUP, BUTTON_FFWD, BUTTON_NONE },
{ ACTION_LISTTREE_PGUP, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_REW, BUTTON_NONE }, { ACTION_LISTTREE_PGDOWN, BUTTON_REW, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
#endif #endif
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
@ -110,94 +130,115 @@ static const struct button_mapping button_context_list[] = {
static const struct button_mapping button_context_tree[] = { static const struct button_mapping button_context_tree[] = {
{ ACTION_TREE_WPS, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY }, { ACTION_TREE_WPS, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY },
{ ACTION_TREE_STOP, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_PLAY }, { ACTION_TREE_STOP, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_PLAY },
#ifdef SAMSUNG_YH820
{ ACTION_TREE_HOTKEY, BUTTON_REC|BUTTON_REL, BUTTON_REC }, { ACTION_TREE_HOTKEY, BUTTON_REC|BUTTON_REL, BUTTON_REC },
#else
{ ACTION_TREE_HOTKEY, BUTTON_RIGHT|BUTTON_DOWN|BUTTON_REPEAT,
BUTTON_RIGHT|BUTTON_DOWN|BUTTON_REPEAT },
#endif
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_LIST) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
}; /* button_context_tree */ }; /* button_context_tree */
static const struct button_mapping button_context_listtree_scroll_with_combo[] = { static const struct button_mapping button_context_listtree_scroll_with_combo[] = {
{ ACTION_TREE_PGLEFT, BUTTON_REC|BUTTON_LEFT, BUTTON_NONE }, { ACTION_TREE_PGLEFT, BUTTON_FFWD|BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_TREE_ROOT_INIT, BUTTON_REC|BUTTON_LEFT|BUTTON_REPEAT,BUTTON_REC|BUTTON_LEFT }, /* Note: we omit ACTION_TREE_ROOT_INIT to keep "left" the sole cancel button */
{ ACTION_TREE_PGLEFT, BUTTON_REC|BUTTON_LEFT|BUTTON_REPEAT,BUTTON_NONE }, { ACTION_TREE_PGRIGHT, BUTTON_FFWD|BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_TREE_PGRIGHT, BUTTON_REC|BUTTON_RIGHT, BUTTON_NONE }, { ACTION_TREE_PGRIGHT, BUTTON_FFWD|BUTTON_RIGHT|BUTTON_REPEAT,BUTTON_NONE },
{ ACTION_TREE_PGRIGHT, BUTTON_REC|BUTTON_RIGHT|BUTTON_REPEAT,BUTTON_NONE }, #ifdef SAMSUNG_YH820
{ ACTION_LISTTREE_PGUP, BUTTON_REW, BUTTON_NONE },
{ ACTION_LISTTREE_PGUP, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD },
{ ACTION_LISTTREE_PGDOWN, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_FFWD|BUTTON_REPEAT },
#else
{ ACTION_LISTTREE_PGUP, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD },
{ ACTION_LISTTREE_PGUP, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_FFWD|BUTTON_REPEAT },
{ ACTION_LISTTREE_PGDOWN, BUTTON_REW, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
#endif
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_TREE) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_TREE)
}; }; /* button_context_listtree_scroll_with_combo */
static const struct button_mapping button_context_listtree_scroll_without_combo[] = { static const struct button_mapping button_context_listtree_scroll_without_combo[] = {
{ ACTION_TREE_ROOT_INIT, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW },
{ ACTION_TREE_PGLEFT, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_TREE_PGLEFT, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_TREE_PGRIGHT, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_TREE_PGRIGHT, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_NONE },
/* Note: we omit ACTION_TREE_ROOT_INIT to keep "left" the sole cancel button */
#ifdef SAMSUNG_YH820
{ ACTION_LISTTREE_PGUP, BUTTON_REW|BUTTON_REL, BUTTON_REW },
{ ACTION_LISTTREE_PGDOWN, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD },
#else
{ ACTION_LISTTREE_PGUP, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD },
{ ACTION_LISTTREE_PGDOWN, BUTTON_REW|BUTTON_REL, BUTTON_REW },
#endif
/* keep button combos for use with CONTEXT_TREE keymaps */
/* this is to permit pgup/down repeats */
{ ACTION_LISTTREE_PGUP, BUTTON_FFWD|BUTTON_UP, BUTTON_NONE },
{ ACTION_LISTTREE_PGUP, BUTTON_FFWD|BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_FFWD|BUTTON_DOWN, BUTTON_NONE },
{ ACTION_LISTTREE_PGDOWN, BUTTON_FFWD|BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_TREE) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_TREE)
}; }; /* button_context_listtree_scroll_without_combo */
static const struct button_mapping button_context_settings[] = { static const struct button_mapping button_context_settings[] = {
{ ACTION_SETTINGS_INC, BUTTON_UP, BUTTON_NONE }, { ACTION_SETTINGS_INC, BUTTON_UP, BUTTON_NONE },
{ ACTION_SETTINGS_INCREPEAT,BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_SETTINGS_INCREPEAT,BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_SETTINGS_DEC, BUTTON_DOWN, BUTTON_NONE }, { ACTION_SETTINGS_DEC, BUTTON_DOWN, BUTTON_NONE },
{ ACTION_SETTINGS_DECREPEAT,BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_SETTINGS_DECREPEAT,BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_NONE, BUTTON_LEFT, BUTTON_NONE }, { ACTION_STD_PREV, BUTTON_LEFT, BUTTON_NONE },
{ ACTION_STD_PREV, BUTTON_LEFT|BUTTON_REL, BUTTON_NONE },
{ ACTION_STD_PREVREPEAT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_STD_PREVREPEAT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_STD_NEXT, BUTTON_RIGHT|BUTTON_REL, BUTTON_NONE }, { ACTION_STD_NEXT, BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_STD_NEXTREPEAT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_STD_NEXTREPEAT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_SETTINGS_RESET, BUTTON_PLAY, BUTTON_NONE }, { ACTION_STD_OK, BUTTON_PLAY, BUTTON_NONE },
{ ACTION_STD_CANCEL, BUTTON_REW, BUTTON_NONE },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) LAST_ITEM_IN_LIST
}; /* button_context_settings */ }; /* button_context_settings */
static const struct button_mapping button_context_settings_right_is_inc[] = { static const struct button_mapping button_context_settings_right_is_inc[] = {
{ ACTION_NONE, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT },
{ ACTION_SETTINGS_INC, BUTTON_RIGHT, BUTTON_NONE }, { ACTION_SETTINGS_INC, BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_SETTINGS_INCREPEAT,BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_SETTINGS_INCREPEAT,BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_SETTINGS_DEC, BUTTON_LEFT, BUTTON_NONE }, { ACTION_SETTINGS_DEC, BUTTON_LEFT, BUTTON_NONE },
{ ACTION_SETTINGS_DECREPEAT,BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_SETTINGS_DECREPEAT,BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_SETTINGS_RESET, BUTTON_PLAY, BUTTON_NONE }, { ACTION_SETTINGS_RESET, BUTTON_REW|BUTTON_REL, BUTTON_REW },
{ ACTION_STD_PREV, BUTTON_UP, BUTTON_NONE }, { ACTION_STD_PREV, BUTTON_UP, BUTTON_NONE },
{ ACTION_STD_PREVREPEAT, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_STD_PREVREPEAT, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_STD_NEXT, BUTTON_DOWN, BUTTON_NONE }, { ACTION_STD_NEXT, BUTTON_DOWN, BUTTON_NONE },
{ ACTION_STD_NEXTREPEAT, BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_STD_NEXTREPEAT, BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) { ACTION_STD_OK, BUTTON_PLAY, BUTTON_NONE },
}; /* button_context_settingsgraphical */ { ACTION_STD_CANCEL, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
LAST_ITEM_IN_LIST
}; /* button_context_settings_right_is_inc */
static const struct button_mapping button_context_yesno[] = { static const struct button_mapping button_context_yesno[] = {
{ ACTION_YESNO_ACCEPT, BUTTON_RIGHT, BUTTON_NONE }, { ACTION_YESNO_ACCEPT, BUTTON_PLAY, BUTTON_NONE },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
}; /* button_context_settings_yesno */ }; /* button_context_settings_yesno */
static const struct button_mapping button_context_colorchooser[] = {
{ ACTION_STD_OK, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_SETTINGS)
}; /* button_context_settings_colorchooser */
static const struct button_mapping button_context_eq[] = { static const struct button_mapping button_context_eq[] = {
/* Naming scheme for EQ is misleading: "OK" switches between gain/freq/Q */
{ ACTION_STD_OK, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD }, { ACTION_STD_OK, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD },
{ ACTION_STD_CANCEL, BUTTON_REW|BUTTON_REL, BUTTON_REW }, /* "CANCEL" means "leave menu and keep settings", so it's "OK" from the user's view */
{ ACTION_STD_CANCEL, BUTTON_PLAY, BUTTON_NONE },
/* de facto there is no CANCEL, so deactivate the correspondent keymaps */
{ ACTION_NONE, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_SETTINGS) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_SETTINGS)
}; /* button_context_settings_context_eq */ }; /* button_context_eq */
static const struct button_mapping button_context_bmark[] = { static const struct button_mapping button_context_bmark[] = {
{ ACTION_BMS_DELETE, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_PLAY }, { ACTION_BMS_DELETE, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_PLAY },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_LIST) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_TREE)
}; /* button_context_settings_bmark */ }; /* button_context_bmark */
static const struct button_mapping button_context_time[] = {
{ ACTION_STD_OK, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY },
{ ACTION_STD_CANCEL, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_PLAY },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_SETTINGS)
}; /* button_context_settings_bmark */
static const struct button_mapping button_context_quickscreen[] = { static const struct button_mapping button_context_quickscreen[] = {
{ ACTION_NONE, BUTTON_LEFT, BUTTON_NONE },
{ ACTION_NONE, BUTTON_LEFT|BUTTON_DOWN|BUTTON_REL,BUTTON_NONE },
{ ACTION_QS_TOP, BUTTON_UP|BUTTON_REL, BUTTON_UP }, { ACTION_QS_TOP, BUTTON_UP|BUTTON_REL, BUTTON_UP },
{ ACTION_QS_TOP, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_QS_TOP, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_QS_DOWN, BUTTON_DOWN|BUTTON_REL, BUTTON_DOWN }, { ACTION_QS_DOWN, BUTTON_DOWN|BUTTON_REL, BUTTON_DOWN },
@ -207,9 +248,9 @@ static const struct button_mapping button_context_quickscreen[] = {
{ ACTION_QS_RIGHT, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT }, { ACTION_QS_RIGHT, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT },
{ ACTION_QS_RIGHT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_QS_RIGHT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_STD_CANCEL, BUTTON_PLAY, BUTTON_NONE }, { ACTION_STD_CANCEL, BUTTON_PLAY, BUTTON_NONE },
{ ACTION_STD_CANCEL, BUTTON_FFWD, BUTTON_NONE }, { ACTION_STD_CANCEL, BUTTON_REW, BUTTON_NONE },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) LAST_ITEM_IN_LIST
}; /* button_context_quickscreen */ }; /* button_context_quickscreen */
static const struct button_mapping button_context_pitchscreen[] = { static const struct button_mapping button_context_pitchscreen[] = {
@ -228,18 +269,23 @@ static const struct button_mapping button_context_pitchscreen[] = {
{ ACTION_PS_EXIT, BUTTON_PLAY, BUTTON_NONE }, { ACTION_PS_EXIT, BUTTON_PLAY, BUTTON_NONE },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
}; /* button_context_pitchcreen */ }; /* button_context_pitchscreen */
static const struct button_mapping button_context_recscreen[] = { static const struct button_mapping button_context_recscreen[] = {
{ ACTION_REC_PAUSE, BUTTON_PLAY|BUTTON_REL, BUTTON_NONE }, { ACTION_REC_PAUSE, BUTTON_PLAY|BUTTON_REL, BUTTON_NONE },
{ ACTION_REC_NEWFILE, BUTTON_FFWD|BUTTON_REL, BUTTON_NONE }, { ACTION_REC_NEWFILE, BUTTON_FFWD|BUTTON_REL, BUTTON_NONE },
{ ACTION_STD_MENU, BUTTON_REW|BUTTON_REL, BUTTON_NONE }, { ACTION_STD_CANCEL, BUTTON_REW|BUTTON_REL, BUTTON_NONE },
{ ACTION_STD_CANCEL, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW }, { ACTION_STD_MENU, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW },
#ifdef SAMSUNG_YH820
{ ACTION_STD_CANCEL, BUTTON_REC, BUTTON_NONE }, { ACTION_STD_CANCEL, BUTTON_REC, BUTTON_NONE },
#else
{ ACTION_STD_CANCEL, BUTTON_REC_SW_OFF, BUTTON_NONE },
#endif
{ ACTION_SETTINGS_INC, BUTTON_RIGHT, BUTTON_NONE }, { ACTION_SETTINGS_INC, BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_SETTINGS_INCREPEAT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_SETTINGS_INCREPEAT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_SETTINGS_DEC, BUTTON_LEFT, BUTTON_NONE }, { ACTION_SETTINGS_DEC, BUTTON_LEFT, BUTTON_NONE },
{ ACTION_SETTINGS_DECREPEAT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_SETTINGS_DECREPEAT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_NONE, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT },
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
}; /* button_context_recscreen */ }; /* button_context_recscreen */
@ -253,22 +299,30 @@ static const struct button_mapping button_context_keyboard[] = {
{ ACTION_KBD_LEFT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_KBD_LEFT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_KBD_RIGHT, BUTTON_RIGHT, BUTTON_NONE }, { ACTION_KBD_RIGHT, BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_KBD_RIGHT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_KBD_RIGHT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_KBD_CURSOR_LEFT, BUTTON_FFWD|BUTTON_LEFT, BUTTON_NONE }, #ifdef SAMSUNG_YH820
{ ACTION_KBD_CURSOR_LEFT, BUTTON_FFWD|BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_KBD_CURSOR_LEFT, BUTTON_REC|BUTTON_LEFT, BUTTON_NONE },
{ ACTION_KBD_CURSOR_RIGHT, BUTTON_FFWD|BUTTON_RIGHT, BUTTON_NONE }, { ACTION_KBD_CURSOR_LEFT, BUTTON_REC|BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_KBD_CURSOR_RIGHT, BUTTON_FFWD|BUTTON_RIGHT|BUTTON_REPEAT,BUTTON_NONE }, { ACTION_KBD_CURSOR_RIGHT, BUTTON_REC|BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_KBD_CURSOR_RIGHT, BUTTON_REC|BUTTON_RIGHT|BUTTON_REPEAT,BUTTON_NONE },
#endif
{ ACTION_KBD_SELECT, BUTTON_PLAY, BUTTON_NONE }, { ACTION_KBD_SELECT, BUTTON_PLAY, BUTTON_NONE },
{ ACTION_KBD_DONE, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD }, { ACTION_KBD_PAGE_FLIP, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD },
{ ACTION_KBD_ABORT, BUTTON_FFWD|BUTTON_REW, BUTTON_NONE }, { ACTION_KBD_DONE, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_KBD_ABORT, BUTTON_REC, BUTTON_NONE }, { ACTION_KBD_BACKSPACE, BUTTON_REW|BUTTON_REL, BUTTON_REW },
{ ACTION_KBD_BACKSPACE, BUTTON_REW|BUTTON_REL, BUTTON_REW }, { ACTION_KBD_ABORT, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_KBD_BACKSPACE, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE }, #ifdef SAMSUNG_YH820
{ ACTION_KBD_MORSE_INPUT, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD|BUTTON_REPEAT }, { ACTION_KBD_MORSE_INPUT, BUTTON_FFWD|BUTTON_REC, BUTTON_NONE },
{ ACTION_KBD_BACKSPACE, BUTTON_REC|BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE },
#else
{ ACTION_KBD_MORSE_INPUT, BUTTON_REC_SW_ON, BUTTON_NONE },
{ ACTION_KBD_MORSE_INPUT, BUTTON_REC_SW_OFF, BUTTON_NONE },
#endif
{ ACTION_KBD_MORSE_SELECT, BUTTON_PLAY|BUTTON_REL, BUTTON_NONE }, { ACTION_KBD_MORSE_SELECT, BUTTON_PLAY|BUTTON_REL, BUTTON_NONE },
LAST_ITEM_IN_LIST LAST_ITEM_IN_LIST
}; /* button_context_keyboard */ }; /* button_context_keyboard */
#if CONFIG_TUNER #if CONFIG_TUNER
static const struct button_mapping button_context_radio[] = { static const struct button_mapping button_context_radio[] = {
{ ACTION_FM_MENU, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT }, { ACTION_FM_MENU, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT },
@ -292,10 +346,17 @@ static const struct button_mapping button_context_radio[] = {
#ifdef USB_ENABLE_HID #ifdef USB_ENABLE_HID
static const struct button_mapping button_context_usb_hid[] = { static const struct button_mapping button_context_usb_hid[] = {
#ifdef SAMSUNG_YH820
{ ACTION_USB_HID_MODE_SWITCH_NEXT, BUTTON_REC|BUTTON_FFWD|BUTTON_REL, BUTTON_REC|BUTTON_FFWD }, { ACTION_USB_HID_MODE_SWITCH_NEXT, BUTTON_REC|BUTTON_FFWD|BUTTON_REL, BUTTON_REC|BUTTON_FFWD },
{ ACTION_USB_HID_MODE_SWITCH_NEXT, BUTTON_REC|BUTTON_FFWD|BUTTON_REPEAT,BUTTON_REC|BUTTON_FFWD }, { ACTION_USB_HID_MODE_SWITCH_NEXT, BUTTON_REC|BUTTON_FFWD|BUTTON_REPEAT,BUTTON_REC|BUTTON_FFWD },
{ ACTION_USB_HID_MODE_SWITCH_PREV, BUTTON_REC|BUTTON_REW|BUTTON_REL, BUTTON_REC|BUTTON_REW }, { ACTION_USB_HID_MODE_SWITCH_PREV, BUTTON_REC|BUTTON_REW|BUTTON_REL, BUTTON_REC|BUTTON_REW },
{ ACTION_USB_HID_MODE_SWITCH_PREV, BUTTON_REC|BUTTON_REW|BUTTON_REPEAT, BUTTON_REC|BUTTON_REW }, { ACTION_USB_HID_MODE_SWITCH_PREV, BUTTON_REC|BUTTON_REW|BUTTON_REPEAT, BUTTON_REC|BUTTON_REW },
#else
{ ACTION_USB_HID_MODE_SWITCH_NEXT, BUTTON_FFWD|BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_USB_HID_MODE_SWITCH_NEXT, BUTTON_FFWD|BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_USB_HID_MODE_SWITCH_PREV, BUTTON_FFWD|BUTTON_LEFT, BUTTON_NONE },
{ ACTION_USB_HID_MODE_SWITCH_PREV, BUTTON_FFWD|BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
#endif
LAST_ITEM_IN_LIST LAST_ITEM_IN_LIST
}; /* button_context_usb_hid */ }; /* button_context_usb_hid */
@ -315,8 +376,8 @@ static const struct button_mapping button_context_usb_hid_mode_multimedia[] = {
}; /* button_context_usb_hid_mode_multimedia */ }; /* button_context_usb_hid_mode_multimedia */
static const struct button_mapping button_context_usb_hid_mode_presentation[] = { static const struct button_mapping button_context_usb_hid_mode_presentation[] = {
{ ACTION_USB_HID_PRESENTATION_SLIDESHOW_START, BUTTON_PLAY|BUTTON_REL, BUTTON_RIGHT }, { ACTION_USB_HID_PRESENTATION_SLIDESHOW_START, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY },
{ ACTION_USB_HID_PRESENTATION_SLIDESHOW_LEAVE, BUTTON_REC|BUTTON_REL, BUTTON_REC }, { ACTION_USB_HID_PRESENTATION_SLIDESHOW_LEAVE, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_PLAY },
{ ACTION_USB_HID_PRESENTATION_SLIDE_PREV, BUTTON_REW|BUTTON_REL, BUTTON_REW }, { ACTION_USB_HID_PRESENTATION_SLIDE_PREV, BUTTON_REW|BUTTON_REL, BUTTON_REW },
{ ACTION_USB_HID_PRESENTATION_SLIDE_NEXT, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD }, { ACTION_USB_HID_PRESENTATION_SLIDE_NEXT, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD },
{ ACTION_USB_HID_PRESENTATION_SLIDE_FIRST, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW }, { ACTION_USB_HID_PRESENTATION_SLIDE_FIRST, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW },
@ -348,7 +409,12 @@ static const struct button_mapping button_context_usb_hid_mode_browser[] = {
{ ACTION_USB_HID_BROWSER_TAB_CLOSE, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY }, { ACTION_USB_HID_BROWSER_TAB_CLOSE, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY },
{ ACTION_USB_HID_BROWSER_HISTORY_BACK, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW }, { ACTION_USB_HID_BROWSER_HISTORY_BACK, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW },
{ ACTION_USB_HID_BROWSER_HISTORY_FORWARD, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_FFWD }, { ACTION_USB_HID_BROWSER_HISTORY_FORWARD, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_FFWD },
#ifdef SAMSUNG_YH820
{ ACTION_USB_HID_BROWSER_VIEW_FULL_SCREEN, BUTTON_REC|BUTTON_REL, BUTTON_REC }, { ACTION_USB_HID_BROWSER_VIEW_FULL_SCREEN, BUTTON_REC|BUTTON_REL, BUTTON_REC },
#else
{ ACTION_USB_HID_BROWSER_VIEW_FULL_SCREEN, BUTTON_REC_SW_ON, BUTTON_NONE },
{ ACTION_USB_HID_BROWSER_VIEW_FULL_SCREEN, BUTTON_REC_SW_OFF, BUTTON_NONE },
#endif
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_USB_HID) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_USB_HID)
}; /* button_context_usb_hid_mode_browser */ }; /* button_context_usb_hid_mode_browser */
@ -363,6 +429,7 @@ static const struct button_mapping button_context_usb_hid_mode_mouse[] = {
{ ACTION_USB_HID_MOUSE_LEFT_REP, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_LEFT_REP, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_RIGHT, BUTTON_RIGHT, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_RIGHT, BUTTON_RIGHT, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_RIGHT_REP, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_RIGHT_REP, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
#ifdef SAMSUNG_YH820
{ ACTION_USB_HID_MOUSE_BUTTON_LEFT, BUTTON_REW, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_BUTTON_LEFT, BUTTON_REW, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_BUTTON_LEFT_REL, BUTTON_REW|BUTTON_REL, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_BUTTON_LEFT_REL, BUTTON_REW|BUTTON_REL, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_BUTTON_RIGHT, BUTTON_FFWD, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_BUTTON_RIGHT, BUTTON_FFWD, BUTTON_NONE },
@ -371,6 +438,16 @@ static const struct button_mapping button_context_usb_hid_mode_mouse[] = {
{ ACTION_USB_HID_MOUSE_WHEEL_SCROLL_UP, BUTTON_REC|BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_WHEEL_SCROLL_UP, BUTTON_REC|BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_WHEEL_SCROLL_DOWN, BUTTON_REC|BUTTON_DOWN, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_WHEEL_SCROLL_DOWN, BUTTON_REC|BUTTON_DOWN, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_WHEEL_SCROLL_DOWN, BUTTON_REC|BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_USB_HID_MOUSE_WHEEL_SCROLL_DOWN, BUTTON_REC|BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
#else
{ ACTION_USB_HID_MOUSE_BUTTON_LEFT, BUTTON_FFWD, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_BUTTON_LEFT_REL, BUTTON_FFWD|BUTTON_REL, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_BUTTON_RIGHT, BUTTON_REW, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_BUTTON_RIGHT_REL, BUTTON_REW|BUTTON_REL, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_WHEEL_SCROLL_UP, BUTTON_PLAY|BUTTON_UP, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_WHEEL_SCROLL_UP, BUTTON_PLAY|BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_WHEEL_SCROLL_DOWN, BUTTON_PLAY|BUTTON_DOWN, BUTTON_NONE },
{ ACTION_USB_HID_MOUSE_WHEEL_SCROLL_DOWN, BUTTON_PLAY|BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
#endif
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_USB_HID) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_USB_HID)
}; /* button_context_usb_hid_mode_mouse */ }; /* button_context_usb_hid_mode_mouse */
@ -397,20 +474,16 @@ const struct button_mapping* get_context_mapping(int context)
case CONTEXT_CUSTOM|CONTEXT_TREE: case CONTEXT_CUSTOM|CONTEXT_TREE:
return button_context_tree; return button_context_tree;
case CONTEXT_SETTINGS_TIME:
case CONTEXT_SETTINGS: case CONTEXT_SETTINGS:
return button_context_settings; return button_context_settings;
case CONTEXT_CUSTOM|CONTEXT_SETTINGS: case CONTEXT_CUSTOM|CONTEXT_SETTINGS:
case CONTEXT_SETTINGS_RECTRIGGER: case CONTEXT_SETTINGS_RECTRIGGER:
return button_context_settings_right_is_inc;
case CONTEXT_SETTINGS_COLOURCHOOSER: case CONTEXT_SETTINGS_COLOURCHOOSER:
return button_context_colorchooser; return button_context_settings_right_is_inc;
case CONTEXT_SETTINGS_EQ: case CONTEXT_SETTINGS_EQ:
return button_context_eq; return button_context_eq;
case CONTEXT_SETTINGS_TIME:
return button_context_time;
case CONTEXT_YESNOSCREEN: case CONTEXT_YESNOSCREEN:
return button_context_yesno; return button_context_yesno;
case CONTEXT_BOOKMARKSCREEN: case CONTEXT_BOOKMARKSCREEN:

View file

@ -3664,7 +3664,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -3672,7 +3672,7 @@
*: "جاري بناء قاعدة البيانات... عثر على d% (إيقاف للعودة)" *: "جاري بناء قاعدة البيانات... عثر على d% (إيقاف للعودة)"
iriverh100,iriverh120,iriverh300: "جاري بناء قاعدة البيانات... عثر على d% (إيقاف للعودة)" iriverh100,iriverh120,iriverh300: "جاري بناء قاعدة البيانات... عثر على d% (إيقاف للعودة)"
ipod*: "جاري بناء قاعدة البيانات... عثر على d% (السابق للعودة)" ipod*: "جاري بناء قاعدة البيانات... عثر على d% (السابق للعودة)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "جاري بناء قاعدة البيانات... عثر على d% (يسار للعودة)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "جاري بناء قاعدة البيانات... عثر على d% (يسار للعودة)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "جاري بناء قاعدة البيانات... عثر على d% (يسار للعودة)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "جاري بناء قاعدة البيانات... عثر على d% (يسار للعودة)"
gogearsa9200: "جاري بناء قاعدة البيانات... عثر على d% (يسار للعودة)" gogearsa9200: "جاري بناء قاعدة البيانات... عثر على d% (يسار للعودة)"
</dest> </dest>
@ -6568,6 +6568,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -6581,6 +6582,7 @@
gigabeats: "خلف = إاغاء الأمر" gigabeats: "خلف = إاغاء الأمر"
gogearsa9200: "يسار = إاغاء الأمر" gogearsa9200: "يسار = إاغاء الأمر"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -257,7 +257,7 @@
*: "PLAY = Bai" *: "PLAY = Bai"
cowond2*: "MENU, edo goi-eskuin = Bai" cowond2*: "MENU, edo goi-eskuin = Bai"
iriverh100,iriverh120,iriverh300: "NAVI = Bai" iriverh100,iriverh120,iriverh300: "NAVI = Bai"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Bai" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Bai"
mrobe500: "PLAY, POWER, or top-right = Bai" mrobe500: "PLAY, POWER, or top-right = Bai"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Bai" vibe500: "OK = Bai"
@ -2231,7 +2231,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2240,7 +2240,7 @@
*: "Datubasea eraikitzen... %d aurkituak (OFF itzultzeko)" *: "Datubasea eraikitzen... %d aurkituak (OFF itzultzeko)"
iriverh100,iriverh120,iriverh300: "Datubasea eraikitzen... %d aurkituak (STOP itzultzeko)" iriverh100,iriverh120,iriverh300: "Datubasea eraikitzen... %d aurkituak (STOP itzultzeko)"
ipod*: "Datubasea eraikitzen... %d aurkituak ( |<< itzultzeko)" ipod*: "Datubasea eraikitzen... %d aurkituak ( |<< itzultzeko)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Datubasea eraikitzen... %d aurkituak (EZKER itzultzeko)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Datubasea eraikitzen... %d aurkituak (EZKER itzultzeko)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Datubasea eraikitzen... %d aurkituak (AURR itzultzeko)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Datubasea eraikitzen... %d aurkituak (AURR itzultzeko)"
gogearsa9200: "Datubasea Eraikitzen... %d aurkituak (REW itzultzeko)" gogearsa9200: "Datubasea Eraikitzen... %d aurkituak (REW itzultzeko)"
archosplayer: "Datubasea Eraikitzen %d aurkituak" archosplayer: "Datubasea Eraikitzen %d aurkituak"
@ -3947,7 +3947,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3957,13 +3957,13 @@
mrobe500: "HEART = Ezarri" mrobe500: "HEART = Ezarri"
iriverh100,iriverh120,iriverh300: "NAVI = Ezarri" iriverh100,iriverh120,iriverh300: "NAVI = Ezarri"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ezarri" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ezarri"
gogearsa9200: "PLAY = Ezarri" gogearsa9200,samsungyh*: "PLAY = Ezarri"
vibe500: "OK = Ezarri" vibe500: "OK = Ezarri"
mpiohd300: "ENTER = Ezarri" mpiohd300: "ENTER = Ezarri"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3984,6 +3984,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3999,6 +4000,7 @@
gigabeats: "BACK = Itzuli" gigabeats: "BACK = Itzuli"
gogearsa9200: "LEFT = Itzuli" gogearsa9200: "LEFT = Itzuli"
vibe500: "CANCEL = Itzuli" vibe500: "CANCEL = Itzuli"
samsungyh*: "REW = Itzuli"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7980,6 +7982,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7987,6 +7990,7 @@
iriverh100,iriverh120,iriverh300: "Diskoa beterik. Sakatu STOP jarraitzeko." iriverh100,iriverh120,iriverh300: "Diskoa beterik. Sakatu STOP jarraitzeko."
iaudiom5,iaudiox5: "Diskoa beterik. Sakatu POWER jarraitzeko." iaudiom5,iaudiox5: "Diskoa beterik. Sakatu POWER jarraitzeko."
sansae200*,sansac200*,vibe500: "Diskoa beterik. Sakatu AUR jarraitzeko." sansae200*,sansac200*,vibe500: "Diskoa beterik. Sakatu AUR jarraitzeko."
samsungyh*: "Diskoa beterik. Sakatu LEFT jarraitzeko."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -252,7 +252,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -262,7 +262,7 @@
*: "PLAY = Да" *: "PLAY = Да"
cowond2*: "MENU или горе ляво = Да" cowond2*: "MENU или горе ляво = Да"
iriverh100,iriverh120,iriverh300: "NAVI = Да" iriverh100,iriverh120,iriverh300: "NAVI = Да"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Да" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Да"
mrobe500: "PLAY, POWER или горе дясно = Да" mrobe500: "PLAY, POWER или горе дясно = Да"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Да" vibe500: "OK = Да"
@ -2237,7 +2237,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2246,7 +2246,7 @@
*: "Изграждане на базата данни... намерени %d (OFF за връщане)" *: "Изграждане на базата данни... намерени %d (OFF за връщане)"
iriverh100,iriverh120,iriverh300: "Изграждане на базата данни... намерени %d (STOP за връщане)" iriverh100,iriverh120,iriverh300: "Изграждане на базата данни... намерени %d (STOP за връщане)"
ipod*: "Изграждане на базата данни... намерени %d (PREV за връщане)" ipod*: "Изграждане на базата данни... намерени %d (PREV за връщане)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Изграждане на базата данни... намерени %d (LEFT за връщане)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Изграждане на базата данни... намерени %d (LEFT за връщане)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Изграждане на базата данни... намерени %d (PREV за връщане)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Изграждане на базата данни... намерени %d (PREV за връщане)"
gogearsa9200: "Изграждане на базата данни... намерени %d (REW за връщане)" gogearsa9200: "Изграждане на базата данни... намерени %d (REW за връщане)"
archosplayer: "Изгр. на БД %d файла" archosplayer: "Изгр. на БД %d файла"
@ -3953,7 +3953,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3963,13 +3963,13 @@
mrobe500: "HEART = Запази" mrobe500: "HEART = Запази"
iriverh100,iriverh120,iriverh300: "NAVI = Запази" iriverh100,iriverh120,iriverh300: "NAVI = Запази"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Запази" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Запази"
gogearsa9200: "PLAY = Запази" gogearsa9200,samsungyh*: "PLAY = Запази"
vibe500: "OK = Запази" vibe500: "OK = Запази"
mpiohd300: "ENTER = Запази" mpiohd300: "ENTER = Запази"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3990,6 +3990,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4005,6 +4006,7 @@
gigabeats: "BACK = отказ" gigabeats: "BACK = отказ"
gogearsa9200: "LEFT = отказ" gogearsa9200: "LEFT = отказ"
vibe500: "CANCEL = отказ" vibe500: "CANCEL = отказ"
samsungyh*: "REW = отказ"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7986,6 +7988,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7993,6 +7996,7 @@
iriverh100,iriverh120,iriverh300: "Дискът е пълен. Натиснете stop за да продължите." iriverh100,iriverh120,iriverh300: "Дискът е пълен. Натиснете stop за да продължите."
iaudiom5,iaudiox5: "Дискът е пълен. Натиснете Power за да продължите." iaudiom5,iaudiox5: "Дискът е пълен. Натиснете Power за да продължите."
sansae200*,sansac200*,vibe500: "Дискът е пълен. Натиснете PREV за да продължите." sansae200*,sansac200*,vibe500: "Дискът е пълен. Натиснете PREV за да продължите."
samsungyh*: "Дискът е пълен. Натиснете LEFT за да продължите."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -250,7 +250,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -259,7 +259,7 @@
*: "PLAY = Sí" *: "PLAY = Sí"
cowond2*: "MENU, o a dalt a la dreta = Sí" cowond2*: "MENU, o a dalt a la dreta = Sí"
iriverh100,iriverh120,iriverh300: "NAVI = Sí" iriverh100,iriverh120,iriverh300: "NAVI = Sí"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sí" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sí"
mrobe500: "PLAY, POWER, o a dalt a la dreta = Sí" mrobe500: "PLAY, POWER, o a dalt a la dreta = Sí"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Sí" vibe500: "OK = Sí"
@ -2230,7 +2230,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2239,7 +2239,7 @@
*: "Construint la base de dades... %d trobats (OFF per tornar)" *: "Construint la base de dades... %d trobats (OFF per tornar)"
iriverh100,iriverh120,iriverh300: "Construint la base de dades.... %d trobats (STOP per tornar)" iriverh100,iriverh120,iriverh300: "Construint la base de dades.... %d trobats (STOP per tornar)"
ipod*: "Construint la base de dades...Construint base de dades... %d trobats (PREV per tornar)" ipod*: "Construint la base de dades...Construint base de dades... %d trobats (PREV per tornar)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Construint la base de dades... %d trobats (LEFT per tornar)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Construint la base de dades... %d trobats (LEFT per tornar)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construint la base de dades... %d trobats (PREV per tornar)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construint la base de dades... %d trobats (PREV per tornar)"
gogearsa9200: "Construint la base de dades... %d trobats (REW per tornar)" gogearsa9200: "Construint la base de dades... %d trobats (REW per tornar)"
archosplayer: "Construint la base de dades... %d trobats" archosplayer: "Construint la base de dades... %d trobats"
@ -3944,7 +3944,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3954,7 +3954,7 @@
mrobe500: "HEART = Desa" mrobe500: "HEART = Desa"
iriverh100,iriverh120,iriverh300: "NAVI = Desa" iriverh100,iriverh120,iriverh300: "NAVI = Desa"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: " SELECT = Desa" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: " SELECT = Desa"
gogearsa9200: "PLAY = Desa" gogearsa9200,samsungyh*: "PLAY = Desa"
vibe500: "OK = Desa" vibe500: "OK = Desa"
mpiohd300: "ENTER = Desa" mpiohd300: "ENTER = Desa"
</dest> </dest>
@ -3980,6 +3980,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3995,6 +3996,7 @@
gigabeats: "BACK = Cancel·la" gigabeats: "BACK = Cancel·la"
gogearsa9200: "LEFT = Cancel·la" gogearsa9200: "LEFT = Cancel·la"
vibe500: "CANCEL = Cancel·la" vibe500: "CANCEL = Cancel·la"
samsungyh*: "REW = Cancel·la"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7973,6 +7975,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7980,6 +7983,7 @@
iriverh100,iriverh120,iriverh300: "Disc ple. Prem STOP per continuar" iriverh100,iriverh120,iriverh300: "Disc ple. Prem STOP per continuar"
iaudiom5,iaudiox5: "Disc ple. Prem POWER per continuar" iaudiom5,iaudiox5: "Disc ple. Prem POWER per continuar"
sansae200*,sansac200*,vibe500: "Disc ple. Prem PREV per continuar" sansae200*,sansac200*,vibe500: "Disc ple. Prem PREV per continuar"
samsungyh*: "Disc ple. Prem LEFT per continuar"
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -4459,6 +4459,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4474,6 +4475,7 @@
gigabeats: "BACK:取消" gigabeats: "BACK:取消"
gogearsa9200: "LEFT:取消" gogearsa9200: "LEFT:取消"
vibe500: "CANCEL:取消" vibe500: "CANCEL:取消"
samsungyh*: "REW:取消"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4523,6 +4525,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4530,6 +4533,7 @@
iriverh100,iriverh120,iriverh300: "磁盘已满按下STOP继续." iriverh100,iriverh120,iriverh300: "磁盘已满按下STOP继续."
iaudiom5,iaudiox5: "磁盘已满按下POWER继续." iaudiom5,iaudiox5: "磁盘已满按下POWER继续."
sansae200*,sansac200*,vibe500: "磁盘按下PREV继续." sansae200*,sansac200*,vibe500: "磁盘按下PREV继续."
samsungyh*: "磁盘按下LEFT继续."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7952,7 +7956,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -7961,7 +7965,7 @@
*: "数据库更新中...已找到%d个(按OFF键返回)" *: "数据库更新中...已找到%d个(按OFF键返回)"
iriverh100,iriverh120,iriverh300: "数据库更新中...已找到%d个(按STOP键返回)" iriverh100,iriverh120,iriverh300: "数据库更新中...已找到%d个(按STOP键返回)"
ipod*: "数据库更新中...已找到%d个(按PREV键返回)" ipod*: "数据库更新中...已找到%d个(按PREV键返回)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "数据库更新中...已找到%d个(按LEFT键返回)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "数据库更新中...已找到%d个(按LEFT键返回)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "数据库更新中...已找到%d个(按PREV键返回)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "数据库更新中...已找到%d个(按PREV键返回)"
gogearsa9200: "数据库更新中...已找到%d个(按REW键返回)" gogearsa9200: "数据库更新中...已找到%d个(按REW键返回)"
archosplayer: "数据库更新中...已找到%d个" archosplayer: "数据库更新中...已找到%d个"
@ -8448,7 +8452,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -8457,7 +8461,7 @@
*: "PLAY:是" *: "PLAY:是"
cowond2*: "MENU或TOP-RIGHT:是" cowond2*: "MENU或TOP-RIGHT:是"
iriverh100,iriverh120,iriverh300: "NAVI=是" iriverh100,iriverh120,iriverh300: "NAVI=是"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT:是" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT:是"
mrobe500: "PLAY,POWER或TOP-RIGHT:是" mrobe500: "PLAY,POWER或TOP-RIGHT:是"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK:是" vibe500: "OK:是"
@ -8476,7 +8480,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -8486,7 +8490,7 @@
mrobe500: "HEART:设置" mrobe500: "HEART:设置"
iriverh100,iriverh120,iriverh300: "NAVI=设置" iriverh100,iriverh120,iriverh300: "NAVI=设置"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT:设置" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT:设置"
gogearsa9200: "PLAY:设置" gogearsa9200,samsungyh*: "PLAY:设置"
vibe500: "OK:设置" vibe500: "OK:设置"
mpiohd300: "ENTER:设置" mpiohd300: "ENTER:设置"
</dest> </dest>

View file

@ -4458,6 +4458,7 @@
mrobe100: "DISPLAY = Revert" mrobe100: "DISPLAY = Revert"
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4471,6 +4472,7 @@
mrobe100: "DISPLAY = 返回" mrobe100: "DISPLAY = 返回"
gigabeats: "BACK = 返回" gigabeats: "BACK = 返回"
vibe500: "CANCEL = 返回" vibe500: "CANCEL = 返回"
samsungyh*: "REW = 返回"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4482,6 +4484,7 @@
gigabeatfx: "" gigabeatfx: ""
mrobe100: "" mrobe100: ""
gigabeats: "" gigabeats: ""
samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -4528,6 +4531,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4535,6 +4539,7 @@
iriverh100,iriverh120,iriverh300: "硬碟已滿, 按下 STOP 繼續." iriverh100,iriverh120,iriverh300: "硬碟已滿, 按下 STOP 繼續."
iaudiom5,iaudiox5: "硬碟已滿, 按下 POWER 繼續." iaudiom5,iaudiox5: "硬碟已滿, 按下 POWER 繼續."
sansae200*,sansac200*,vibe500: "硬碟已滿, 按下 PREV 繼續." sansae200*,sansac200*,vibe500: "硬碟已滿, 按下 PREV 繼續."
samsungyh*: "硬碟已滿, 按下 LEFT 繼續."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7996,14 +8001,14 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)"
</source> </source>
<dest> <dest>
*: "建立資料庫... 找到 %d 項 (OFF: 回上一畫面)" *: "建立資料庫... 找到 %d 項 (OFF: 回上一畫面)"
iriverh100,iriverh120,iriverh300: "建立資料庫... 找到 %d 項 (STOP: 回上一畫面)" iriverh100,iriverh120,iriverh300: "建立資料庫... 找到 %d 項 (STOP: 回上一畫面)"
ipod*: "建立資料庫... 找到 %d 項 (PREV: 回上一畫面)" ipod*: "建立資料庫... 找到 %d 項 (PREV: 回上一畫面)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "建立資料庫... 找到 %d 項 (LEFT: 回上一畫面)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "建立資料庫... 找到 %d 項 (LEFT: 回上一畫面)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "建立資料庫... 找到 %d 項 (PREV: 回上一畫面)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "建立資料庫... 找到 %d 項 (PREV: 回上一畫面)"
</dest> </dest>
<voice> <voice>
@ -8492,21 +8497,21 @@
<source> <source>
*: "PLAY = Yes" *: "PLAY = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
</source> </source>
<dest> <dest>
*: "PLAY = 是" *: "PLAY = 是"
iriverh100,iriverh120,iriverh300: "NAVI = 是" iriverh100,iriverh120,iriverh300: "NAVI = 是"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = 是" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = 是"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = 是" vibe500: "OK = 是"
</dest> </dest>
<voice> <voice>
*: "" *: ""
iriverh100,iriverh120,iriverh300: "" iriverh100,iriverh120,iriverh300: ""
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: ""
archosplayer: "" archosplayer: ""
</voice> </voice>
</phrase> </phrase>
@ -8518,7 +8523,8 @@
*: none *: none
rtc: "ON = Set" rtc: "ON = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "SELECT = Set"
gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -8526,7 +8532,8 @@
*: none *: none
rtc: "ON = 設定" rtc: "ON = 設定"
iriverh100,iriverh120,iriverh300: "NAVI = 設定" iriverh100,iriverh120,iriverh300: "NAVI = 設定"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "SELECT = 設定" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "SELECT = 設定"
gogearsa9200,samsungyh*: "PLAY = 設定"
vibe500: "OK = 設定" vibe500: "OK = 設定"
mpiohd300: "ENTER = 設定" mpiohd300: "ENTER = 設定"
</dest> </dest>

View file

@ -252,7 +252,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -261,7 +261,7 @@
*: "PLAY = Ano" *: "PLAY = Ano"
cowond2*: "MENU, nebo vpravo nahoře = Ano" cowond2*: "MENU, nebo vpravo nahoře = Ano"
iriverh100,iriverh120,iriverh300: "NAVI = Ano" iriverh100,iriverh120,iriverh300: "NAVI = Ano"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ano" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ano"
mrobe500: "PLAY, POWER, nebo vpravo nahoře = Ano" mrobe500: "PLAY, POWER, nebo vpravo nahoře = Ano"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Ano" vibe500: "OK = Ano"
@ -2235,7 +2235,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2244,7 +2244,7 @@
*: "Vytvářím databázi... %d nalezeno (OFF pro návrat)" *: "Vytvářím databázi... %d nalezeno (OFF pro návrat)"
iriverh100,iriverh120,iriverh300: "Vytvářím databázi... %d nalezeno (STOP pro návrat)" iriverh100,iriverh120,iriverh300: "Vytvářím databázi... %d nalezeno (STOP pro návrat)"
ipod*: "Vytvářím databázi... %d nalezeno (PREV pro návrat)" ipod*: "Vytvářím databázi... %d nalezeno (PREV pro návrat)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Vytvářím databázi... %d nalezeno (LEFT pro návrat)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Vytvářím databázi... %d nalezeno (LEFT pro návrat)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Vytvářím databázi... %d nalezeno (PREV pro návrat)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Vytvářím databázi... %d nalezeno (PREV pro návrat)"
gogearsa9200: "Vytvářím databázi.. %d nalezeno (REW pro návrat)" gogearsa9200: "Vytvářím databázi.. %d nalezeno (REW pro návrat)"
archosplayer: "Vytvář. DB %d nalez." archosplayer: "Vytvář. DB %d nalez."
@ -3951,7 +3951,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3961,13 +3961,13 @@
mrobe500: "HEART = Nastavit" mrobe500: "HEART = Nastavit"
iriverh100,iriverh120,iriverh300: "NAVI = Nastavit" iriverh100,iriverh120,iriverh300: "NAVI = Nastavit"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Nastavit" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Nastavit"
gogearsa9200: "PLAY = Nastavit" gogearsa9200,samsungyh*: "PLAY = Nastavit"
vibe500: "OK = Nastavit" vibe500: "OK = Nastavit"
mpiohd300: "ENTER = Nastavit" mpiohd300: "ENTER = Nastavit"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3988,6 +3988,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4003,6 +4004,7 @@
gigabeats: "BACK = Vrátit zpět" gigabeats: "BACK = Vrátit zpět"
gogearsa9200: "LEFT = Vrátit zpět" gogearsa9200: "LEFT = Vrátit zpět"
vibe500: "CANCEL = Vrátit zpět" vibe500: "CANCEL = Vrátit zpět"
samsungyh*: "REW = Vrátit zpět"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7984,6 +7986,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7991,6 +7994,7 @@
iriverh100,iriverh120,iriverh300: "Disk je plný. Pro pokračování stiskněte STOP." iriverh100,iriverh120,iriverh300: "Disk je plný. Pro pokračování stiskněte STOP."
iaudiom5,iaudiox5: "Disk je plný. Pro pokračování stiskněte POWER." iaudiom5,iaudiox5: "Disk je plný. Pro pokračování stiskněte POWER."
sansae200*,sansac200*,vibe500: "Disk je plný. Pro pokračování stiskněte PREV." sansae200*,sansac200*,vibe500: "Disk je plný. Pro pokračování stiskněte PREV."
samsungyh*: "Disk je plný. Pro pokračování stiskněte LEFT."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -3753,6 +3753,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3767,6 +3768,7 @@
gigabeats: "TILBAGE = Fortryd" gigabeats: "TILBAGE = Fortryd"
gogearsa9200: "VENSTRE = Fortryd" gogearsa9200: "VENSTRE = Fortryd"
vibe500: "C = Fortryd" vibe500: "C = Fortryd"
samsungyh*: "REW = Fortryd"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -3816,6 +3818,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -3823,6 +3826,7 @@
iriverh100,iriverh120,iriverh300: "Disken er fuld. Tryk STOP for at fortsætte." iriverh100,iriverh120,iriverh300: "Disken er fuld. Tryk STOP for at fortsætte."
iaudiom5,iaudiox5: "Disken er fuld. Tryk TÆND/SLUK for at fortsætte." iaudiom5,iaudiox5: "Disken er fuld. Tryk TÆND/SLUK for at fortsætte."
sansae200*,sansac200*,vibe500: "Disken er fuld. Tryk FORRIGE for at fortsætte." sansae200*,sansac200*,vibe500: "Disken er fuld. Tryk FORRIGE for at fortsætte."
samsungyh*: "Disken er fuld. Tryk LEFT for at fortsætte."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -8401,7 +8405,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -8410,7 +8414,7 @@
*: "Bygger database... %d fundet (SLUK for at stoppe)" *: "Bygger database... %d fundet (SLUK for at stoppe)"
iriverh100,iriverh120,iriverh300: "Bygger database... %d fundet (STOP for at stoppe)" iriverh100,iriverh120,iriverh300: "Bygger database... %d fundet (STOP for at stoppe)"
ipod*: "Bygger database... %d fundet (FORRIGE for at stoppe)" ipod*: "Bygger database... %d fundet (FORRIGE for at stoppe)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Bygger database... %d fundet (VENSTRE for at stoppe)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Bygger database... %d fundet (VENSTRE for at stoppe)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Bygger database... %d fundet (FORRIGE for at stoppe)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Bygger database... %d fundet (FORRIGE for at stoppe)"
gogearsa9200: "Bygger database... %d fundet (SPOL TILBAGE for at stoppe)" gogearsa9200: "Bygger database... %d fundet (SPOL TILBAGE for at stoppe)"
archosplayer: "Bygger DB %d fundet" archosplayer: "Bygger DB %d fundet"
@ -9578,7 +9582,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -9587,7 +9591,7 @@
*: "SPIL = Ja" *: "SPIL = Ja"
cowond2*: "MENU eller top-højre = Ja" cowond2*: "MENU eller top-højre = Ja"
iriverh100,iriverh120,iriverh300: "NAVI = Ja" iriverh100,iriverh120,iriverh300: "NAVI = Ja"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "VÆLG = Ja" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "VÆLG = Ja"
mrobe500: "SPIL, TÆND/SLUK eller top-højre = Ja" mrobe500: "SPIL, TÆND/SLUK eller top-højre = Ja"
archosplayer: "(SPIL/STOP)" archosplayer: "(SPIL/STOP)"
vibe500: "OK = Ja" vibe500: "OK = Ja"
@ -9606,7 +9610,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -9616,7 +9620,7 @@
mrobe500: "HJERTE = Indstil" mrobe500: "HJERTE = Indstil"
iriverh100,iriverh120,iriverh300: "NAVI = Indstil" iriverh100,iriverh120,iriverh300: "NAVI = Indstil"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "VÆLG = Indstil" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "VÆLG = Indstil"
gogearsa9200: "SPIL = Indstil" gogearsa9200,samsungyh*: "SPIL = Indstil"
vibe500: "OK = Indstil" vibe500: "OK = Indstil"
mpiohd300: "ENTER = Indstil" mpiohd300: "ENTER = Indstil"
</dest> </dest>

View file

@ -268,7 +268,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -277,7 +277,7 @@
*: "PLAY = Ja" *: "PLAY = Ja"
cowond2*: "MENU oder rechts oben= Ja" cowond2*: "MENU oder rechts oben= Ja"
iriverh100,iriverh120,iriverh300: "NAVI = Ja" iriverh100,iriverh120,iriverh300: "NAVI = Ja"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja"
mrobe500: "PLAY, POWER oder rechts oben = Ja" mrobe500: "PLAY, POWER oder rechts oben = Ja"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Ja" vibe500: "OK = Ja"
@ -2234,7 +2234,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2243,7 +2243,7 @@
*: "Erstelle Datenbank... %d gefunden (OFF zum Abbrechen)" *: "Erstelle Datenbank... %d gefunden (OFF zum Abbrechen)"
iriverh100,iriverh120,iriverh300: "Erstelle Datenbank... %d gefunden (STOP zum Abbrechen)" iriverh100,iriverh120,iriverh300: "Erstelle Datenbank... %d gefunden (STOP zum Abbrechen)"
ipod*: "Erstelle Datenbank... %d gefunden (PLAY/PAUSE zum Abbrechen)" ipod*: "Erstelle Datenbank... %d gefunden (PLAY/PAUSE zum Abbrechen)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Erstelle Datenbank... %d gefunden (LEFT zum Abbrechen)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Erstelle Datenbank... %d gefunden (LEFT zum Abbrechen)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Erstelle Datenbank... %d gefunden (PREV zum Abbrechen)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Erstelle Datenbank... %d gefunden (PREV zum Abbrechen)"
gogearsa9200: "Erstelle Datenbank... %d gefunden (REW zum Abbrechen)" gogearsa9200: "Erstelle Datenbank... %d gefunden (REW zum Abbrechen)"
archosplayer: "Erstelle DB %d gefu." archosplayer: "Erstelle DB %d gefu."
@ -3952,7 +3952,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3962,13 +3962,13 @@
mrobe500: "HEART = Speichern" mrobe500: "HEART = Speichern"
iriverh100,iriverh120,iriverh300: "NAVI = Speichern" iriverh100,iriverh120,iriverh300: "NAVI = Speichern"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Speichern" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Speichern"
gogearsa9200: "PLAY = Speichern" gogearsa9200,samsungyh*: "PLAY = Speichern"
vibe500: "OK = Speichern" vibe500: "OK = Speichern"
mpiohd300: "ENTER = Speichern" mpiohd300: "ENTER = Speichern"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3989,6 +3989,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4004,6 +4005,7 @@
gigabeats: "BACK = Abbrechen" gigabeats: "BACK = Abbrechen"
gogearsa9200: "LEFT = Abbrechen" gogearsa9200: "LEFT = Abbrechen"
vibe500: "CANCEL = Abbrechen" vibe500: "CANCEL = Abbrechen"
samsungyh*: "REW = Abbrechen"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7985,6 +7987,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7992,6 +7995,7 @@
iriverh100,iriverh120,iriverh300: "Kein Speicherplatz mehr vorhanden. Drücke STOP zum fortfahren." iriverh100,iriverh120,iriverh300: "Kein Speicherplatz mehr vorhanden. Drücke STOP zum fortfahren."
iaudiom5,iaudiox5: "Kein Speicherplatz mehr vorhanden. Drücke POWER zum fortfahren." iaudiom5,iaudiox5: "Kein Speicherplatz mehr vorhanden. Drücke POWER zum fortfahren."
sansae200*,sansac200*,vibe500: "Kein Speicherplatz mehr vorhanden. Drücke PREV zum fortfahren." sansae200*,sansac200*,vibe500: "Kein Speicherplatz mehr vorhanden. Drücke PREV zum fortfahren."
samsungyh*: "Kein Speicherplatz mehr vorhanden. Drücke LEFT zum fortfahren."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -4099,6 +4099,7 @@
gigabeatfx: "POWER = Revert" gigabeatfx: "POWER = Revert"
sansafuzeplus: "BACK = Revert" sansafuzeplus: "BACK = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: "OFF tagasi pöördumiseks" *: "OFF tagasi pöördumiseks"
@ -4109,6 +4110,7 @@
gigabeatfx: "POWER tagasi pöördumiseks" gigabeatfx: "POWER tagasi pöördumiseks"
sansafuzeplus: "BACK tagasi pöördumiseks" sansafuzeplus: "BACK tagasi pöördumiseks"
vibe500: "C tagasi pöördumiseks" vibe500: "C tagasi pöördumiseks"
samsungyh*: "REW tagasi pöördumiseks"
</dest> </dest>
<voice> <voice>
*: "" *: ""
@ -4192,11 +4194,13 @@
*: "The disk is full. Press OFF to continue." *: "The disk is full. Press OFF to continue."
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
vibe500: "The disk is full. Press PREV to continue." vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: "The disk is full. Press OFF to continue." *: "The disk is full. Press OFF to continue."
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
vibe500: "The disk is full. Press PREV to continue." vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</dest> </dest>
<voice> <voice>
*: "" *: ""

View file

@ -247,7 +247,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -256,7 +256,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -2230,7 +2230,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2239,7 +2239,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -3946,7 +3946,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3956,13 +3956,13 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3983,6 +3983,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3998,6 +3999,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7979,6 +7981,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7986,6 +7989,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -332,7 +332,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -342,7 +342,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -2317,7 +2317,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2326,7 +2326,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -4033,7 +4033,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -4043,13 +4043,13 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -4070,6 +4070,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4085,10 +4086,11 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,ipod*,sansae200*,sansac200*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,ipod*,sansae200*,sansac200*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -8068,6 +8070,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -8075,10 +8078,11 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</dest> </dest>
<voice> <voice>
*: none *: none
recording,iriverh100,iriverh120,iriverh300,iaudiom5,iaudiox5,sansae200*,sansac200*: "" recording,iriverh100,iriverh120,iriverh300,iaudiom5,iaudiox5,sansae200*,sansac200*,vibe500,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>

View file

@ -2896,6 +2896,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -2911,6 +2912,7 @@
gigabeats: "ATRÁS = Cancelar" gigabeats: "ATRÁS = Cancelar"
gogearsa9200: "IZQUIERDA = Cancelar" gogearsa9200: "IZQUIERDA = Cancelar"
vibe500: "C = Cancelar" vibe500: "C = Cancelar"
samsungyh*: "REW = Cancelar"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -2960,6 +2962,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -2967,6 +2970,7 @@
iriverh100,iriverh120,iriverh300: "Disco duro lleno. Pulse STOP para continuar" iriverh100,iriverh120,iriverh300: "Disco duro lleno. Pulse STOP para continuar"
iaudiom5,iaudiox5: "Disco duro lleno. Pulse POWER para continuar" iaudiom5,iaudiox5: "Disco duro lleno. Pulse POWER para continuar"
sansae200*,sansac200*,vibe500: "Disco duro lleno. Pulse PREV para continuar" sansae200*,sansac200*,vibe500: "Disco duro lleno. Pulse PREV para continuar"
samsungyh*: "Disco duro lleno. Pulse LEFT para continuar"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -8466,7 +8470,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -8475,7 +8479,7 @@
*: "Construyendo base de datos... %d encontrados (OFF para volver)" *: "Construyendo base de datos... %d encontrados (OFF para volver)"
iriverh100,iriverh120,iriverh300: "Construyendo base de datos... %d encontrados (STOP para volver)" iriverh100,iriverh120,iriverh300: "Construyendo base de datos... %d encontrados (STOP para volver)"
ipod*: "Construyendo base de datos... %d encontrados (PREV para volver)" ipod*: "Construyendo base de datos... %d encontrados (PREV para volver)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Construyendo base de datos... %d encontrados (LEFT para volver)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Construyendo base de datos... %d encontrados (LEFT para volver)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construyendo base de datos... %d encontrados (PREV para volver)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construyendo base de datos... %d encontrados (PREV para volver)"
gogearsa9200: "Construyendo base de datos... %d encontrados (REW para volver)" gogearsa9200: "Construyendo base de datos... %d encontrados (REW para volver)"
archosplayer: "Construyendo BD %d encontrados" archosplayer: "Construyendo BD %d encontrados"
@ -9075,7 +9079,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -9084,7 +9088,7 @@
*: "PLAY = Sí" *: "PLAY = Sí"
cowond2*: "MENÚ o arriba-derecha = Sí" cowond2*: "MENÚ o arriba-derecha = Sí"
iriverh100,iriverh120,iriverh300: "NAVI = Sí" iriverh100,iriverh120,iriverh300: "NAVI = Sí"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sí" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sí"
mrobe500: "PLAY, POWER o arriba-derecha = Sí" mrobe500: "PLAY, POWER o arriba-derecha = Sí"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Sí" vibe500: "OK = Sí"
@ -9103,7 +9107,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -9113,7 +9117,7 @@
mrobe500: "HEART = Fijar" mrobe500: "HEART = Fijar"
iriverh100,iriverh120,iriverh300: "NAVI = Fijar" iriverh100,iriverh120,iriverh300: "NAVI = Fijar"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Fijar" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Fijar"
gogearsa9200: "PLAY = Fijar" gogearsa9200,samsungyh*: "PLAY = Fijar"
vibe500: "OK = Fijar" vibe500: "OK = Fijar"
mpiohd300: "ENTER = Fijar" mpiohd300: "ENTER = Fijar"
</dest> </dest>

View file

@ -4318,11 +4318,13 @@
*: "OFF To Revert" *: "OFF To Revert"
vibe500: "CANCEL To Revert" vibe500: "CANCEL To Revert"
mpiohd300: "MENU To Revert" mpiohd300: "MENU To Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: "OFF Por Malvalidigi" *: "OFF Por Malvalidigi"
vibe500: "C Por Malvalidigi" vibe500: "C Por Malvalidigi"
mpiohd300: "MENU Por Malvalidigi" mpiohd300: "MENU Por Malvalidigi"
samsungyh*: "REW Por Malvalidigi"
</dest> </dest>
<voice> <voice>
*: "" *: ""
@ -4404,9 +4406,11 @@
user: core user: core
<source> <source>
*: "The disk is full. Press OFF to continue." *: "The disk is full. Press OFF to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: "Durdisko plena. Pesu OFF por kontinui." *: "Durdisko plena. Pesu OFF por kontinui."
samsungyh*: "Durdisko plena. Pesu LEFT por kontinui."
</dest> </dest>
<voice> <voice>
*: "" *: ""

View file

@ -4458,6 +4458,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4471,8 +4472,9 @@
sansafuzeplus: "BACK = Peruuta" sansafuzeplus: "BACK = Peruuta"
mrobe100: "DISPLAY = Peruuta" mrobe100: "DISPLAY = Peruuta"
gigabeats: "BACK = Peruuta" gigabeats: "BACK = Peruuta"
gogearsa9200: "VASEN = Revert" gogearsa9200: "VASEN = Peruuta"
vibe500: "CANCEL = Peruuta" vibe500: "CANCEL = Peruuta"
samsungyh*: "REW = Peruuta"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4522,6 +4524,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4529,6 +4532,7 @@
iriverh100,iriverh120,iriverh300: "Levy täynnä. Jatka painamalla STOP." iriverh100,iriverh120,iriverh300: "Levy täynnä. Jatka painamalla STOP."
iaudiom5,iaudiox5: "Levy täynnä. Jatka painamalla POWER." iaudiom5,iaudiox5: "Levy täynnä. Jatka painamalla POWER."
sansae200*,sansac200*,vibe500: "Levy täynnä. Jatka painamalla PREV." sansae200*,sansac200*,vibe500: "Levy täynnä. Jatka painamalla PREV."
samsungyh*: "Levy täynnä. Jatka painamalla LEFT."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -9042,7 +9046,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -9051,7 +9055,7 @@
*: "Luodaan tietokantaa... %d löytyi (OFF = palaa)" *: "Luodaan tietokantaa... %d löytyi (OFF = palaa)"
iriverh100,iriverh120,iriverh300: "Luodaan tietokantaa... %d löytyi (STOP = palaa)" iriverh100,iriverh120,iriverh300: "Luodaan tietokantaa... %d löytyi (STOP = palaa)"
ipod*: "Luodaan tietokantaa... %d löytyi (PREV = palaa)" ipod*: "Luodaan tietokantaa... %d löytyi (PREV = palaa)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Luodaan tietokantaa... %d löytyi (VASEN = palaa)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Luodaan tietokantaa... %d löytyi (VASEN = palaa)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Luodaan tietokantaa... %d löytyi (PREV = palaa)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Luodaan tietokantaa... %d löytyi (PREV = palaa)"
gogearsa9200: "Luodaan tietokantaa... %d löytyi (REW = palaa)" gogearsa9200: "Luodaan tietokantaa... %d löytyi (REW = palaa)"
archosplayer: "Luodaan tk %d löytyi" archosplayer: "Luodaan tk %d löytyi"
@ -9554,7 +9558,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -9563,7 +9567,7 @@
*: "PLAY = Kyllä" *: "PLAY = Kyllä"
cowond2*: "MENU tai yläoikea = Kyllä" cowond2*: "MENU tai yläoikea = Kyllä"
iriverh100,iriverh120,iriverh300: "NAVI = Kyllä" iriverh100,iriverh120,iriverh300: "NAVI = Kyllä"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Kyllä" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Kyllä"
mrobe500: "PLAY, POWER tai yläoikea = Kyllä" mrobe500: "PLAY, POWER tai yläoikea = Kyllä"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Kyllä" vibe500: "OK = Kyllä"
@ -9582,7 +9586,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -9592,7 +9596,7 @@
mrobe500: "HEART = Aseta" mrobe500: "HEART = Aseta"
iriverh100,iriverh120,iriverh300: "NAVI = Aseta" iriverh100,iriverh120,iriverh300: "NAVI = Aseta"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Aseta" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Aseta"
gogearsa9200: "PLAY = Aseta" gogearsa9200,samsungyh*: "PLAY = Aseta"
vibe500: "OK = Aseta" vibe500: "OK = Aseta"
mpiohd300: "ENTER = Aseta" mpiohd300: "ENTER = Aseta"
</dest> </dest>

View file

@ -277,7 +277,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -286,7 +286,7 @@
*: "PLAY = Oui" *: "PLAY = Oui"
cowond2*: "MENU = Oui" cowond2*: "MENU = Oui"
iriverh100,iriverh120,iriverh300: "NAVI = Oui" iriverh100,iriverh120,iriverh300: "NAVI = Oui"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oui" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oui"
mrobe500: "PLAY ou POWER = Oui" mrobe500: "PLAY ou POWER = Oui"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Oui" vibe500: "OK = Oui"
@ -2260,7 +2260,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2269,7 +2269,7 @@
*: "Création base de données... %d trouvés (OFF = retour)" *: "Création base de données... %d trouvés (OFF = retour)"
iriverh100,iriverh120,iriverh300: "Création base de données... %d trouvés (STOP = retour)" iriverh100,iriverh120,iriverh300: "Création base de données... %d trouvés (STOP = retour)"
ipod*: "Création base de données... %d trouvés (PREV = retour)" ipod*: "Création base de données... %d trouvés (PREV = retour)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Création base de données... %d trouvés (LEFT = retour)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Création base de données... %d trouvés (LEFT = retour)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Création base de données... %d trouvés (PREV = retour)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Création base de données... %d trouvés (PREV = retour)"
gogearsa9200: "Création base de données... %d trouvés (REW = retour)" gogearsa9200: "Création base de données... %d trouvés (REW = retour)"
archosplayer: "Création BD %d trouvés" archosplayer: "Création BD %d trouvés"
@ -3976,7 +3976,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3986,13 +3986,13 @@
mrobe500: "HEART = Valider" mrobe500: "HEART = Valider"
iriverh100,iriverh120,iriverh300: "NAVI = Valider" iriverh100,iriverh120,iriverh300: "NAVI = Valider"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Valider" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Valider"
gogearsa9200: "PLAY = Valider" gogearsa9200,samsungyh*: "PLAY = Valider"
vibe500: "OK = Valider" vibe500: "OK = Valider"
mpiohd300: "ENTER = Valider" mpiohd300: "ENTER = Valider"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -4013,6 +4013,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4028,6 +4029,7 @@
gigabeats: "BACK = Annuler" gigabeats: "BACK = Annuler"
gogearsa9200: "LEFT = Annuler" gogearsa9200: "LEFT = Annuler"
vibe500: "C = Annuler" vibe500: "C = Annuler"
samsungyh*: "REW = Annuler"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -8009,6 +8011,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -8016,6 +8019,7 @@
iriverh100,iriverh120,iriverh300: "Disque plein. Presser STOP pour continuer." iriverh100,iriverh120,iriverh300: "Disque plein. Presser STOP pour continuer."
iaudiom5,iaudiox5: "Disque plein. Presser POWER pour continuer." iaudiom5,iaudiox5: "Disque plein. Presser POWER pour continuer."
sansae200*,sansac200*,vibe500: "Disque plein. Presser PREV pour continuer." sansae200*,sansac200*,vibe500: "Disque plein. Presser PREV pour continuer."
samsungyh*: "Disque plein. Presser LEFT pour continuer."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -2959,6 +2959,7 @@ iriverifp7xx: "%d%% %dh %dm"
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -2974,6 +2975,7 @@ iriverifp7xx: "%d%% %dh %dm"
gigabeats: "BACK = desfacer" gigabeats: "BACK = desfacer"
gogearsa9200: "LEFT = desfacer" gogearsa9200: "LEFT = desfacer"
vibe500: "CANCEL = desfacer" vibe500: "CANCEL = desfacer"
samsungyh*: "REW = desfacer"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -2989,6 +2991,7 @@ iriverifp7xx: "%d%% %dh %dm"
gigabeats: "BACK = desfacer" gigabeats: "BACK = desfacer"
gogearsa9200: "LEFT = desfacer" gogearsa9200: "LEFT = desfacer"
vibe500: "CANCEL = desfacer" vibe500: "CANCEL = desfacer"
samsungyh*: "REW = desfacer"
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3052,6 +3055,7 @@ iriverifp7xx: "%d%% %dh %dm"
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -3059,6 +3063,7 @@ iriverifp7xx: "%d%% %dh %dm"
iriverh100,iriverh120,iriverh300: "O disco está cheo. Pulsa STOP para continuar." iriverh100,iriverh120,iriverh300: "O disco está cheo. Pulsa STOP para continuar."
iaudiom5,iaudiox5: "O disco está cheo. Pulsa POWER para continuar." iaudiom5,iaudiox5: "O disco está cheo. Pulsa POWER para continuar."
sansae200*,sansac200*,vibe500: "O disco está cheo. Pulsa PREV para continuar." sansae200*,sansac200*,vibe500: "O disco está cheo. Pulsa PREV para continuar."
samsungyh*: "O disco está cheo. Pulsa LEFT para continuar."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -3066,6 +3071,7 @@ iriverifp7xx: "%d%% %dh %dm"
iriverh100,iriverh120,iriverh300: "O disco está cheo. Pulsa STOP para continuar." iriverh100,iriverh120,iriverh300: "O disco está cheo. Pulsa STOP para continuar."
iaudiom5,iaudiox5: "O disco está cheo. Pulsa POWER para continuar." iaudiom5,iaudiox5: "O disco está cheo. Pulsa POWER para continuar."
sansae200*,sansac200*,vibe500: "O disco está cheo. Pulsa PREV para continuar." sansae200*,sansac200*,vibe500: "O disco está cheo. Pulsa PREV para continuar."
samsungyh*: "O disco está cheo. Pulsa LEFT para continuar."
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -6211,7 +6217,7 @@ iriverifp7xx: "%d%% %dh %dm"
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -6220,7 +6226,7 @@ iriverifp7xx: "%d%% %dh %dm"
*: "Construindo a base de datos... %d atopadas (OFF para volver)" *: "Construindo a base de datos... %d atopadas (OFF para volver)"
iriverh100,iriverh120,iriverh300: "Construindo a base de datos... %d atopadas (STOP para volver)" iriverh100,iriverh120,iriverh300: "Construindo a base de datos... %d atopadas (STOP para volver)"
ipod*: "Construindo a base de datos... %d atopadas (PREV para volver)" ipod*: "Construindo a base de datos... %d atopadas (PREV para volver)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Construindo a base de datos... %d atopadas (LEFT para volver)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Construindo a base de datos... %d atopadas (LEFT para volver)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construindo a base de datos... %d atopadas (PREV para volver)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construindo a base de datos... %d atopadas (PREV para volver)"
gogearsa9200: "Construindo a base de datos... %d atopadas (REW para volver)" gogearsa9200: "Construindo a base de datos... %d atopadas (REW para volver)"
archosplayer: "Construindo BD %d atop." archosplayer: "Construindo BD %d atop."
@ -7805,7 +7811,7 @@ iriverifp7xx: "%d%% %dh %dm"
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -7814,8 +7820,7 @@ iriverifp7xx: "%d%% %dh %dm"
*: "PLAY = Si" *: "PLAY = Si"
cowond2*: "MENU, ou arriba-dereita = Si" cowond2*: "MENU, ou arriba-dereita = Si"
iriverh100,iriverh120,iriverh300: "NAVI = Si" iriverh100,iriverh120,iriverh300: "NAVI = Si"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100 ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Si"
,sansaclip*,sansafuze*,sansaconnect: "SELECT = Si"
mrobe500: "PLAY, POWER, ou arriba-dereita = Si" mrobe500: "PLAY, POWER, ou arriba-dereita = Si"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Si" vibe500: "OK = Si"
@ -7851,7 +7856,7 @@ samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iri
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -7860,15 +7865,14 @@ samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iri
rtc: "ON = Aceptar" rtc: "ON = Aceptar"
mrobe500: "HEART = Aceptar" mrobe500: "HEART = Aceptar"
iriverh100,iriverh120,iriverh300: "NAVI = Aceptar" iriverh100,iriverh120,iriverh300: "NAVI = Aceptar"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip* ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Aceptar"
,sansafuze*,sansaconnect: "SELECT = Aceptar" gogearsa9200,samsungyh*: "PLAY = Aceptar"
gogearsa9200: "PLAY = Aceptar"
vibe500: "OK = Aceptar" vibe500: "OK = Aceptar"
mpiohd300: "ENTER = Aceptar" mpiohd300: "ENTER = Aceptar"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>

View file

@ -251,14 +251,14 @@
<source> <source>
*: "PLAY = Yes" *: "PLAY = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
</source> </source>
<dest> <dest>
*: "PLAY = Επικύρωση" *: "PLAY = Επικύρωση"
iriverh100,iriverh120,iriverh300: "NAVI = Επικύρωση" iriverh100,iriverh120,iriverh300: "NAVI = Επικύρωση"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Επικύρωση" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Επικύρωση"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Επικύρωση" vibe500: "OK = Επικύρωση"
</dest> </dest>
@ -2217,14 +2217,14 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)"
</source> </source>
<dest> <dest>
*: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (OFF για επιστροφή)" *: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (OFF για επιστροφή)"
iriverh100,iriverh120,iriverh300: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (STOP για επιστροφή)" iriverh100,iriverh120,iriverh300: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (STOP για επιστροφή)"
ipod*: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (PREV για επιστροφή)" ipod*: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (PREV για επιστροφή)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (LEFT για επιστροφή)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (LEFT για επιστροφή)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (PREV για επιστροφή)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Δημιουργία βάσεως δεδομένων... βρέθηκαν %d (PREV για επιστροφή)"
</dest> </dest>
<voice> <voice>
@ -3927,7 +3927,8 @@
*: none *: none
rtc: "ON = Set" rtc: "ON = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "SELECT = Set"
gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3935,7 +3936,8 @@
*: none *: none
rtc: "ON = Ρύθμιση" rtc: "ON = Ρύθμιση"
iriverh100,iriverh120,iriverh300: "NAVI = Ρύθμιση" iriverh100,iriverh120,iriverh300: "NAVI = Ρύθμιση"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "SELECT = Ρύθμιση" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "SELECT = Ρύθμιση"
gogearsa9200,samsungyh*: "PLAY = Ρύθμιση"
vibe500: "OK = Ρύθμιση" vibe500: "OK = Ρύθμιση"
mpiohd300: "ENTER = Ρύθμιση" mpiohd300: "ENTER = Ρύθμιση"
</dest> </dest>
@ -3959,6 +3961,7 @@
mrobe100: "DISPLAY = Revert" mrobe100: "DISPLAY = Revert"
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3972,6 +3975,7 @@
mrobe100: "DISPLAY = Ακύρωση" mrobe100: "DISPLAY = Ακύρωση"
gigabeats: "BACK = Ακύρωση" gigabeats: "BACK = Ακύρωση"
vibe500: "C = Ακύρωση" vibe500: "C = Ακύρωση"
samsungyh*: "REW = Ακύρωση"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7951,6 +7955,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7958,6 +7963,7 @@
iriverh100,iriverh120,iriverh300: "Ο δίσκος είναι γεμάτος. Πατήστε STOP για συνέχεια." iriverh100,iriverh120,iriverh300: "Ο δίσκος είναι γεμάτος. Πατήστε STOP για συνέχεια."
iaudiom5,iaudiox5: "Ο δίσκος είναι γεμάτος. Πατήστε POWER για συνέχεια.." iaudiom5,iaudiox5: "Ο δίσκος είναι γεμάτος. Πατήστε POWER για συνέχεια.."
sansae200*,sansac200*,vibe500: "Ο δίσκος είναι γεμάτος. Πατήστε PREV για συνέχεια." sansae200*,sansac200*,vibe500: "Ο δίσκος είναι γεμάτος. Πατήστε PREV για συνέχεια."
samsungyh*: "Ο δίσκος είναι γεμάτος. Πατήστε LEFT για συνέχεια."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -255,7 +255,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -264,7 +264,7 @@
*: "כן = PLAY" *: "כן = PLAY"
cowond2*: "או פינה ימנית-עליונה = כן MENU" cowond2*: "או פינה ימנית-עליונה = כן MENU"
iriverh100,iriverh120,iriverh300: "כן = NAVI" iriverh100,iriverh120,iriverh300: "כן = NAVI"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "כן = SELECT" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "כן = SELECT"
mrobe500: "או פינה ימנית-עליונה = כן Power, Play" mrobe500: "או פינה ימנית-עליונה = כן Power, Play"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "כן = OK" vibe500: "כן = OK"
@ -2241,7 +2241,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -2249,7 +2249,7 @@
*: "בונה מסד נתונים... %d נמצאו (OFF כדי לחזור)" *: "בונה מסד נתונים... %d נמצאו (OFF כדי לחזור)"
iriverh100,iriverh120,iriverh300: "בונה מסד נתונים... %d נמצאו (STOP כדי לחזור)" iriverh100,iriverh120,iriverh300: "בונה מסד נתונים... %d נמצאו (STOP כדי לחזור)"
ipod*: "בונה מסד נתונים... %d נמצאו (PREV כדי לחזור)" ipod*: "בונה מסד נתונים... %d נמצאו (PREV כדי לחזור)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "בונה מסד נתונים... %d נמצאו (LEFT כדי לחזור)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "בונה מסד נתונים... %d נמצאו (LEFT כדי לחזור)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "בונה מסד נתונים... %d נמצאו (PREV כדי לחזור)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "בונה מסד נתונים... %d נמצאו (PREV כדי לחזור)"
gogearsa9200: "בונה מסד נתונים... %d נמצאו (REW כדי לחזור)" gogearsa9200: "בונה מסד נתונים... %d נמצאו (REW כדי לחזור)"
</dest> </dest>
@ -3955,7 +3955,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3965,13 +3965,13 @@
mrobe500: "קבע = HEART" mrobe500: "קבע = HEART"
iriverh100,iriverh120,iriverh300: "קבע = NAVI" iriverh100,iriverh120,iriverh300: "קבע = NAVI"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "קבע = SELECT" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "קבע = SELECT"
gogearsa9200: "קבע = PLAY" gogearsa9200,samsungyh*: "קבע = PLAY"
vibe500: "קבע = OK" vibe500: "קבע = OK"
mpiohd300: "קבע = ENTER" mpiohd300: "קבע = ENTER"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3992,6 +3992,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4006,6 +4007,7 @@
gigabeats: "החזר = BACK" gigabeats: "החזר = BACK"
gogearsa9200: "החזר = LEFT" gogearsa9200: "החזר = LEFT"
vibe500: "החזר = C" vibe500: "החזר = C"
samsungyh*: "החזר = Revert"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7986,6 +7988,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7993,6 +7996,7 @@
iriverh100,iriverh120,iriverh300: "הכונן מלא. לחץ על STOP כדי להמשיך" iriverh100,iriverh120,iriverh300: "הכונן מלא. לחץ על STOP כדי להמשיך"
iaudiom5,iaudiox5: "הכונן מלא. לחץ על POWER כדי להמשיך" iaudiom5,iaudiox5: "הכונן מלא. לחץ על POWER כדי להמשיך"
sansae200*,sansac200*,vibe500: "הכונן מלא. לחץ על PREV כדי להמשיך" sansae200*,sansac200*,vibe500: "הכונן מלא. לחץ על PREV כדי להמשיך"
samsungyh*: "הכונן מלא. לחץ על LEFT כדי להמשיך"
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -1116,14 +1116,14 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
</source> </source>
<dest> <dest>
*: "डाटाबेस बन रहा है... %d मिले (OFF to बढ़)" *: "डाटाबेस बन रहा है... %d मिले (OFF to बढ़)"
iriverh100,iriverh120,iriverh300: "डाटाबेस बन रहा है... %d मिले (STOP to बढ़)" iriverh100,iriverh120,iriverh300: "डाटाबेस बन रहा है... %d मिले (STOP to बढ़)"
ipod*: "डाटाबेस बन रहा है... %d मिले (PREV to बढ़)" ipod*: "डाटाबेस बन रहा है... %d मिले (PREV to बढ़)"
iaudiox5,iaudiom5: "डाटाबेस बन रहा है... %d मिले (LEFT to बढ़)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "डाटाबेस बन रहा है... %d मिले (LEFT to बढ़)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "डाटाबेस बन रहा है... %d मिले (PREV to बढ़)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "डाटाबेस बन रहा है... %d मिले (PREV to बढ़)"
</dest> </dest>
<voice> <voice>
@ -3811,6 +3811,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -3818,6 +3819,7 @@
iriverh100,iriverh120,iriverh300: "दिसक भरी ह. Press STOP to continue." iriverh100,iriverh120,iriverh300: "दिसक भरी ह. Press STOP to continue."
iaudiom5,iaudiox5: "दिसक भरी ह. Press POWER to continue." iaudiom5,iaudiox5: "दिसक भरी ह. Press POWER to continue."
sansae200*,sansac200*,vibe500: "दिसक भरी ह. Press PREV to continue." sansae200*,sansac200*,vibe500: "दिसक भरी ह. Press PREV to continue."
samsungyh*: "दिसक भरी ह. Press LEFT to continue."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -257,7 +257,7 @@
*: "PLAY = Da" *: "PLAY = Da"
cowond2*: "MENU, ili gore desno = Da" cowond2*: "MENU, ili gore desno = Da"
iriverh100,iriverh120,iriverh300: "NAVI = Da" iriverh100,iriverh120,iriverh300: "NAVI = Da"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Da" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Da"
mrobe500: "PLAY, POWER, ili gore desno = Da" mrobe500: "PLAY, POWER, ili gore desno = Da"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = DA" vibe500: "OK = DA"
@ -2230,7 +2230,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2239,7 +2239,7 @@
*: "Izgrađivanje baze podataka... %d pronađeno (OFF za povratak)" *: "Izgrađivanje baze podataka... %d pronađeno (OFF za povratak)"
iriverh100,iriverh120,iriverh300: "Izgrađivanje baze podataka... %d pronađeno (STOP za povratak)" iriverh100,iriverh120,iriverh300: "Izgrađivanje baze podataka... %d pronađeno (STOP za povratak)"
ipod*: "Izgrađivanje baze podataka... %d pronađeno (PREV za povratak)" ipod*: "Izgrađivanje baze podataka... %d pronađeno (PREV za povratak)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Izgrađivanje baze podataka... %d pronađeno (LEFT za povratak)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Izgrađivanje baze podataka... %d pronađeno (LEFT za povratak)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Izgrađivanje baze podataka... %d pronađeno (PREV za povratak)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Izgrađivanje baze podataka... %d pronađeno (PREV za povratak)"
gogearsa9200: "Izgrađivanje baze podataka... %d pronađeno (REW za povratak)" gogearsa9200: "Izgrađivanje baze podataka... %d pronađeno (REW za povratak)"
archosplayer: "Izgrađivanje DB %d pronađeno" archosplayer: "Izgrađivanje DB %d pronađeno"
@ -3946,7 +3946,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3956,13 +3956,13 @@
mrobe500: "HEART = Postavi" mrobe500: "HEART = Postavi"
iriverh100,iriverh120,iriverh300: "NAVI = Postavi" iriverh100,iriverh120,iriverh300: "NAVI = Postavi"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Postavi" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Postavi"
gogearsa9200: "PLAY = Postavi" gogearsa9200,samsungyh*: "PLAY = Postavi"
vibe500: "OK = Postavi" vibe500: "OK = Postavi"
mpiohd300: "ENTER = Postavi" mpiohd300: "ENTER = Postavi"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3983,6 +3983,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3998,6 +3999,7 @@
gigabeats: "BACK = Povrati" gigabeats: "BACK = Povrati"
gogearsa9200: "LEFT = Povrati" gogearsa9200: "LEFT = Povrati"
vibe500: "CANCEL = Povrati" vibe500: "CANCEL = Povrati"
samsungyh*: "REW = Povrati"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7978,6 +7980,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7985,6 +7988,7 @@
iriverh100,iriverh120,iriverh300: "Disk je pun. Pritisnite STOP za nastavak." iriverh100,iriverh120,iriverh300: "Disk je pun. Pritisnite STOP za nastavak."
iaudiom5,iaudiox5: "Disk je pun. Pritisnite POWER za nastavak." iaudiom5,iaudiox5: "Disk je pun. Pritisnite POWER za nastavak."
sansae200*,sansac200*,vibe500: "Disk je pun. Pritisnite PREV za nastavak." sansae200*,sansac200*,vibe500: "Disk je pun. Pritisnite PREV za nastavak."
samsungyh*: "Disk je pun. Pritisnite LEFT za nastavak."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -3289,6 +3289,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3304,6 +3305,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -3371,6 +3373,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -3378,6 +3381,7 @@
iriverh100,iriverh120,iriverh300: "Harði diskurinn er fullur. Ýtið á STOP til að halda áfram." iriverh100,iriverh120,iriverh300: "Harði diskurinn er fullur. Ýtið á STOP til að halda áfram."
iaudiom5,iaudiox5: "Harði diskurinn er fullur. Ýtið á POWER til að halda áfram." iaudiom5,iaudiox5: "Harði diskurinn er fullur. Ýtið á POWER til að halda áfram."
sansae200*,sansac200*,vibe500: "Harði diskurinn er fullur. Ýtið á PREV til að halda áfram." sansae200*,sansac200*,vibe500: "Harði diskurinn er fullur. Ýtið á PREV til að halda áfram."
samsungyh*: "Harði diskurinn er fullur. Ýtið á LEFT til að halda áfram."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -250,7 +250,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -259,7 +259,7 @@
*: "PLAY = Sì" *: "PLAY = Sì"
cowond2*: "MENU, o alto-destra = Sì" cowond2*: "MENU, o alto-destra = Sì"
iriverh100,iriverh120,iriverh300: "NAVI = Sì" iriverh100,iriverh120,iriverh300: "NAVI = Sì"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sì" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sì"
mrobe500: "PLAY, POWER o alto-destra = Sì" mrobe500: "PLAY, POWER o alto-destra = Sì"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Sì" vibe500: "OK = Sì"
@ -2233,7 +2233,7 @@ desc: deprecated
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2242,7 +2242,7 @@ desc: deprecated
*: "Costruzione database... %d trovato (OFF per uscire)" *: "Costruzione database... %d trovato (OFF per uscire)"
iriverh100,iriverh120,iriverh300: "Costruzione database... %d trovato (STOP per uscire)" iriverh100,iriverh120,iriverh300: "Costruzione database... %d trovato (STOP per uscire)"
ipod*: "Costruzione database... %d trovato (PREV per uscire)" ipod*: "Costruzione database... %d trovato (PREV per uscire)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Costruzione database... %d trovato (LEFT per uscire)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Costruzione database... %d trovato (LEFT per uscire)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Costruzione database... %d trovato (PREV per uscire)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Costruzione database... %d trovato (PREV per uscire)"
gogearsa9200: "Costruzione database... %d trovato (REW per uscire)" gogearsa9200: "Costruzione database... %d trovato (REW per uscire)"
archosplayer: "Costruzione database... %d trovato" archosplayer: "Costruzione database... %d trovato"
@ -3949,7 +3949,7 @@ desc: deprecated
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3959,13 +3959,13 @@ desc: deprecated
mrobe500: "HEART = Imposta" mrobe500: "HEART = Imposta"
iriverh100,iriverh120,iriverh300: "NAVI = Imposta" iriverh100,iriverh120,iriverh300: "NAVI = Imposta"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Imposta" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Imposta"
gogearsa9200: "PLAY = Imposta" gogearsa9200,samsungyh*: "PLAY = Imposta"
vibe500: "OK = Imposta" vibe500: "OK = Imposta"
mpiohd300: "ENTER = Imposta" mpiohd300: "ENTER = Imposta"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3986,6 +3986,7 @@ desc: deprecated
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4001,6 +4002,7 @@ desc: deprecated
gigabeats: "BACK = Annulla" gigabeats: "BACK = Annulla"
gogearsa9200: "LEFT = Annulla" gogearsa9200: "LEFT = Annulla"
vibe500: "CANCEL = Annulla" vibe500: "CANCEL = Annulla"
samsungyh*: "REW = Annulla"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7984,6 +7986,7 @@ desc: deprecated
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7991,6 +7994,7 @@ desc: deprecated
iriverh100,iriverh120,iriverh300: "Disco pieno. Premi stop per continuare." iriverh100,iriverh120,iriverh300: "Disco pieno. Premi stop per continuare."
iaudiom5,iaudiox5: "Disco pieno. Premi POWER per continuare." iaudiom5,iaudiox5: "Disco pieno. Premi POWER per continuare."
sansae200*,sansac200*,vibe500: "Disco pieno. Premi PREV per continuare." sansae200*,sansac200*,vibe500: "Disco pieno. Premi PREV per continuare."
samsungyh*: "Disco pieno. Premi LEFT per continuare."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -254,7 +254,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -263,7 +263,7 @@
*: "PLAY = はい" *: "PLAY = はい"
cowond2*: "MENU または top-right = はい" cowond2*: "MENU または top-right = はい"
iriverh100,iriverh120,iriverh300: "NAVI = はい" iriverh100,iriverh120,iriverh300: "NAVI = はい"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = はい" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = はい"
mrobe500: "PLAY または POWER, top-right = はい" mrobe500: "PLAY または POWER, top-right = はい"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = はい" vibe500: "OK = はい"
@ -2237,7 +2237,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -2245,7 +2245,7 @@
*: "データベース構築中... %d 件 (OFFで戻る)" *: "データベース構築中... %d 件 (OFFで戻る)"
iriverh100,iriverh120,iriverh300: "データベース構築中... %d 件 (STOPで戻る)" iriverh100,iriverh120,iriverh300: "データベース構築中... %d 件 (STOPで戻る)"
ipod*: "データベース構築中... %d 件 (PLAY/PAUSEで戻る)" ipod*: "データベース構築中... %d 件 (PLAY/PAUSEで戻る)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "データベース構築中... %d 件 (左で戻る)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "データベース構築中... %d 件 (左で戻る)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "データベース構築中... %d 件 (PREVで戻る)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "データベース構築中... %d 件 (PREVで戻る)"
gogearsa9200: "データベース構築中... %d 件 (REWで戻る)" gogearsa9200: "データベース構築中... %d 件 (REWで戻る)"
</dest> </dest>
@ -3951,7 +3951,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3961,13 +3961,13 @@
mrobe500: "HEART = 設定" mrobe500: "HEART = 設定"
iriverh100,iriverh120,iriverh300: "NAVI = 設定" iriverh100,iriverh120,iriverh300: "NAVI = 設定"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = 設定" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = 設定"
gogearsa9200: "PLAY = 設定" gogearsa9200,samsungyh*: "PLAY = 設定"
vibe500: "OK = 設定" vibe500: "OK = 設定"
mpiohd300: "ENTER = 設定" mpiohd300: "ENTER = 設定"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3988,6 +3988,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4003,6 +4004,7 @@
gigabeats: "BACK = 元に戻す" gigabeats: "BACK = 元に戻す"
gogearsa9200: "LEFT = 元に戻す" gogearsa9200: "LEFT = 元に戻す"
vibe500: "CANCEL = 元に戻す" vibe500: "CANCEL = 元に戻す"
samsungyh*: "REW = 元に戻す"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7984,6 +7986,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7991,6 +7994,7 @@
iriverh100,iriverh120,iriverh300: "ディスクが一杯です. STOPボタンを押してください" iriverh100,iriverh120,iriverh300: "ディスクが一杯です. STOPボタンを押してください"
iaudiom5,iaudiox5: "ディスクが一杯です. POWERボタンを押してください" iaudiom5,iaudiox5: "ディスクが一杯です. POWERボタンを押してください"
sansae200*,sansac200*,vibe500: "ディスクが一杯です. PREVボタンを押してください" sansae200*,sansac200*,vibe500: "ディスクが一杯です. PREVボタンを押してください"
samsungyh*: "ディスクが一杯です. LEFTボタンを押してください"
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -4466,6 +4466,7 @@
mrobe100: "DISPLAY = Revert" mrobe100: "DISPLAY = Revert"
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4478,6 +4479,7 @@
mrobe100: "[화면]: 원상태 복구" mrobe100: "[화면]: 원상태 복구"
gigabeats: "[뒤]: 원상태 복구" gigabeats: "[뒤]: 원상태 복구"
vibe500: "C: 원상태 복구" vibe500: "C: 원상태 복구"
samsungyh*: "REW: 원상태 복구"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4544,6 +4546,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press UP to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press UP to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4551,6 +4554,7 @@
iriverh100,iriverh120,iriverh300: "디스크 공간이 부족합니다. [정지] 버튼을 누르세요." iriverh100,iriverh120,iriverh300: "디스크 공간이 부족합니다. [정지] 버튼을 누르세요."
iaudiom5,iaudiox5: "디스크 공간이 부족합니다. [전원] 버튼을 누르세요." iaudiom5,iaudiox5: "디스크 공간이 부족합니다. [전원] 버튼을 누르세요."
sansae200*,sansac200*,vibe500: "디스크 공간이 부족합니다. [위] 버튼을 누르세요." sansae200*,sansac200*,vibe500: "디스크 공간이 부족합니다. [위] 버튼을 누르세요."
samsungyh*: "디스크 공간이 부족합니다. LEFT 버튼을 누르세요."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -9054,14 +9058,14 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)"
</source> </source>
<dest> <dest>
*: "음악 DB 생성 중... %d개 완료 ([꺼짐]: 돌아가기)" *: "음악 DB 생성 중... %d개 완료 ([꺼짐]: 돌아가기)"
iriverh100,iriverh120,iriverh300: "음악 DB 생성 중... %d개 완료 ([정지]: 돌아가기)" iriverh100,iriverh120,iriverh300: "음악 DB 생성 중... %d개 완료 ([정지]: 돌아가기)"
ipod*: "음악 DB 생성 중... %d개 완료 ([이전]: 돌아가기)" ipod*: "음악 DB 생성 중... %d개 완료 ([이전]: 돌아가기)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "음악 DB 생성 중... %d개 완료 ([왼쪽]: 돌아가기)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "음악 DB 생성 중... %d개 완료 ([왼쪽]: 돌아가기)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "음악 DB 생성 중... %d개 완료 ([이전]: 돌아가기)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "음악 DB 생성 중... %d개 완료 ([이전]: 돌아가기)"
</dest> </dest>
<voice> <voice>
@ -9677,14 +9681,14 @@
<source> <source>
*: "PLAY = Yes" *: "PLAY = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
</source> </source>
<dest> <dest>
*: "[재생] = 예" *: "[재생] = 예"
iriverh100,iriverh120,iriverh300: "[네비] = 예" iriverh100,iriverh120,iriverh300: "[네비] = 예"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "[선택] = 예" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "[선택] = 예"
archosplayer: "(재생/정지)" archosplayer: "(재생/정지)"
vibe500: "OK = 예" vibe500: "OK = 예"
</dest> </dest>
@ -9700,7 +9704,8 @@
*: none *: none
rtc: "ON = Set" rtc: "ON = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "SELECT = Set"
gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -9708,7 +9713,8 @@
*: none *: none
rtc: "[켬] = 설정" rtc: "[켬] = 설정"
iriverh100,iriverh120,iriverh300: "[네비] = 설정" iriverh100,iriverh120,iriverh300: "[네비] = 설정"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "[선택] = 설정" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "[선택] = 설정"
gogearsa9200,samsungyh*: "PLAY = 설정"
vibe500: "OK = 설정" vibe500: "OK = 설정"
mpiohd300: "ENTER = 설정" mpiohd300: "ENTER = 설정"
</dest> </dest>

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -257,7 +257,7 @@
*: "PLAY = Jā" *: "PLAY = Jā"
cowond2*: "MENU, vai labā augšējā = Jā" cowond2*: "MENU, vai labā augšējā = Jā"
iriverh100,iriverh120,iriverh300: "NAVI = Jā" iriverh100,iriverh120,iriverh300: "NAVI = Jā"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Jā" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Jā"
mrobe500: "PLAY, POWER, vai labā augšējā = Jā" mrobe500: "PLAY, POWER, vai labā augšējā = Jā"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Jā" vibe500: "OK = Jā"
@ -2233,7 +2233,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2242,7 +2242,7 @@
*: "Veidoju datubāzi... %d atrastas (OFF lai turpinātu)" *: "Veidoju datubāzi... %d atrastas (OFF lai turpinātu)"
iriverh100,iriverh120,iriverh300: "Veidoju datubāzi... %d atrastas (STOP lai turpinātu)" iriverh100,iriverh120,iriverh300: "Veidoju datubāzi... %d atrastas (STOP lai turpinātu)"
ipod*: "Veidoju datubāzi... %d atrastas (PREV lai turpinātu)" ipod*: "Veidoju datubāzi... %d atrastas (PREV lai turpinātu)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Veidoju datubāzi... %d atrastas (LEFT lai turpinātu)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Veidoju datubāzi... %d atrastas (LEFT lai turpinātu)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Veidoju datubāzi... %d atrastas (PREV lai turpinātu)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Veidoju datubāzi... %d atrastas (PREV lai turpinātu)"
gogearsa9200: "Veidoju datubāzi... %d atrastas (REW lai turpinātu)" gogearsa9200: "Veidoju datubāzi... %d atrastas (REW lai turpinātu)"
archosplayer: "Veidoju DB atrasts %d" archosplayer: "Veidoju DB atrasts %d"
@ -3949,7 +3949,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3959,13 +3959,13 @@
mrobe500: "HEART = Uzstādīt" mrobe500: "HEART = Uzstādīt"
iriverh100,iriverh120,iriverh300: "NAVI = Uzstādīt" iriverh100,iriverh120,iriverh300: "NAVI = Uzstādīt"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Uzstādīt" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Uzstādīt"
gogearsa9200: "PLAY = Uzstādīt" gogearsa9200,samsungyh*: "PLAY = Uzstādīt"
vibe500: "OK = Uzstādīt" vibe500: "OK = Uzstādīt"
mpiohd300: "ENTER = Uzstādīt" mpiohd300: "ENTER = Uzstādīt"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3986,6 +3986,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4001,6 +4002,7 @@
gigabeats: "BACK = Atcelt" gigabeats: "BACK = Atcelt"
gogearsa9200: "LEFT = Atcelt" gogearsa9200: "LEFT = Atcelt"
vibe500: "CANCEL = Atcelt" vibe500: "CANCEL = Atcelt"
samsungyh*: "REW = Atcelt"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7984,6 +7986,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7991,6 +7994,7 @@
iriverh100,iriverh120,iriverh300: "Atmiņa pilna. Spied STOP lai turpinātu." iriverh100,iriverh120,iriverh300: "Atmiņa pilna. Spied STOP lai turpinātu."
iaudiom5,iaudiox5: "Atmiņa pilna. Spied POWER lai turpinātu." iaudiom5,iaudiox5: "Atmiņa pilna. Spied POWER lai turpinātu."
sansae200*,sansac200*,vibe500: "Atmiņa pilna. Spied PREV lai turpinātu." sansae200*,sansac200*,vibe500: "Atmiņa pilna. Spied PREV lai turpinātu."
samsungyh*: "Atmiņa pilna. Spied LEFT lai turpinātu."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -319,14 +319,14 @@
<source> <source>
*: "PLAY = Yes" *: "PLAY = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
</source> </source>
<dest> <dest>
*: "PLAY = Taip" *: "PLAY = Taip"
iriverh100,iriverh120,iriverh300: "NAVI = Taip" iriverh100,iriverh120,iriverh300: "NAVI = Taip"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Taip" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,gogearsa9200: "SELECT = Taip"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Taip" vibe500: "OK = Taip"
</dest> </dest>
@ -2302,14 +2302,14 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Building database... %d found (PREV to return)"
</source> </source>
<dest> <dest>
*: "Kuriama duomenų bazė... %d rasta (OFF grįžimui)" *: "Kuriama duomenų bazė... %d rasta (OFF grįžimui)"
iriverh100,iriverh120,iriverh300: "Kuriama duomenų bazė... %d rasta (STOP grįžimui)" iriverh100,iriverh120,iriverh300: "Kuriama duomenų bazė... %d rasta (STOP grįžimui)"
ipod*: "Kuriama duomenų bazė... %d rasta (PREV grįžimui)" ipod*: "Kuriama duomenų bazė... %d rasta (PREV grįžimui)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Kuriama duomenų bazė... %d rasta (LEFT grįžimui)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Kuriama duomenų bazė... %d rasta (LEFT grįžimui)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Kuriama duomenų bazė... %d rasta (PREV to grįžimui)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,gogearsa9200,vibe500: "Kuriama duomenų bazė... %d rasta (PREV to grįžimui)"
</dest> </dest>
<voice> <voice>
@ -4012,7 +4012,8 @@
*: none *: none
rtc: "ON = Set" rtc: "ON = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "SELECT = Set"
gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -4020,7 +4021,8 @@
*: none *: none
rtc: "ON = Nustatyti" rtc: "ON = Nustatyti"
iriverh100,iriverh120,iriverh300: "NAVI = Nustatyti" iriverh100,iriverh120,iriverh300: "NAVI = Nustatyti"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "SELECT = Nustatyti" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100: "SELECT = Nustatyti"
gogearsa9200,samsungyh*: "PLAY = Nustatyti"
vibe500: "OK = Nustatyti" vibe500: "OK = Nustatyti"
mpiohd300: "ENTER = Nustatyti" mpiohd300: "ENTER = Nustatyti"
</dest> </dest>
@ -4045,6 +4047,7 @@
mrobe100: "DISPLAY = Revert" mrobe100: "DISPLAY = Revert"
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4058,6 +4061,7 @@
mrobe100: "DISPLAY = Atstatyti" mrobe100: "DISPLAY = Atstatyti"
gigabeats: "BACK = Atstatyti" gigabeats: "BACK = Atstatyti"
vibe500: "CANCEL = Atstatyti" vibe500: "CANCEL = Atstatyti"
samsungyh*: "REW = Atstatyti"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -8038,6 +8042,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -8045,6 +8050,7 @@
iriverh100,iriverh120,iriverh300: "Diskas pilnas. Spauskite STOP." iriverh100,iriverh120,iriverh300: "Diskas pilnas. Spauskite STOP."
iaudiom5,iaudiox5: "Diskas pilnas. Spauskite POWER." iaudiom5,iaudiox5: "Diskas pilnas. Spauskite POWER."
sansae200*,sansac200*,vibe500: "Diskas pilnas. Spauskite PREV." sansae200*,sansac200*,vibe500: "Diskas pilnas. Spauskite PREV."
samsungyh*: "Diskas pilnas. Spauskite LEFT."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU = Yes" cowond2*: "MENU = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
</source> </source>
@ -256,7 +256,7 @@
*: "PLAY = Igen" *: "PLAY = Igen"
cowond2*: "MENU = Igen" cowond2*: "MENU = Igen"
iriverh100,iriverh120,iriverh300: "NAVI = Igen" iriverh100,iriverh120,iriverh300: "NAVI = Igen"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Igen" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Igen"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Igen" vibe500: "OK = Igen"
</dest> </dest>
@ -2214,7 +2214,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -2222,7 +2222,7 @@
*: "Készítem az adatbázist... %d-t találtam (OFF - vissza)" *: "Készítem az adatbázist... %d-t találtam (OFF - vissza)"
iriverh100,iriverh120,iriverh300: "Készítem az adatbázist... %d-t találtam (STOP - vissza)" iriverh100,iriverh120,iriverh300: "Készítem az adatbázist... %d-t találtam (STOP - vissza)"
ipod*: "Készítem az adatbázist... %d-t találtam (PREV - vissza)" ipod*: "Készítem az adatbázist... %d-t találtam (PREV - vissza)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Készítem az adatbázist... %d-t találtam (BAL - vissza)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Készítem az adatbázist... %d-t találtam (BAL - vissza)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Készítem az adatbázist... %d-t találtam (PREV - vissza)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Készítem az adatbázist... %d-t találtam (PREV - vissza)"
gogearsa9200: "Készítem az adatbázist... %d-t találtam (REW - vissza)" gogearsa9200: "Készítem az adatbázist... %d-t találtam (REW - vissza)"
</dest> </dest>
@ -3927,7 +3927,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3937,7 +3937,7 @@
mrobe500: "SZÍV = Beállít" mrobe500: "SZÍV = Beállít"
iriverh100,iriverh120,iriverh300: "NAVI = Beállít" iriverh100,iriverh120,iriverh300: "NAVI = Beállít"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Beállít" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Beállít"
gogearsa9200: "PLAY = Beállít" gogearsa9200,samsungyh*: "PLAY = Beállít"
vibe500: "OK = Beállít" vibe500: "OK = Beállít"
mpiohd300: "ENTER = Beállít" mpiohd300: "ENTER = Beállít"
</dest> </dest>
@ -3963,6 +3963,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3978,6 +3979,7 @@
gigabeats: "VISSZA = mégsem" gigabeats: "VISSZA = mégsem"
gogearsa9200: "BAL = mégsem" gogearsa9200: "BAL = mégsem"
vibe500: "C = mégsem" vibe500: "C = mégsem"
samsungyh*: "REW = mégsem"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7957,6 +7959,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7964,6 +7967,7 @@
iriverh100,iriverh120,iriverh300: "A merevlemez tele van. Folytatáshoz nyomj STOP-ot." iriverh100,iriverh120,iriverh300: "A merevlemez tele van. Folytatáshoz nyomj STOP-ot."
iaudiom5,iaudiox5: "A merevlemez tele van. Folytatáshoz nyomd meg a POWER gombot." iaudiom5,iaudiox5: "A merevlemez tele van. Folytatáshoz nyomd meg a POWER gombot."
sansae200*,sansac200*,vibe500: "A merevlemez tele van. Folytatáshoz nyomd meg a PREV gombot." sansae200*,sansac200*,vibe500: "A merevlemez tele van. Folytatáshoz nyomd meg a PREV gombot."
samsungyh*: "A merevlemez tele van. Folytatáshoz nyomd meg a LEFT gombot."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -4462,6 +4462,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4477,6 +4478,7 @@
gigabeats: "BACK = terugzetten" gigabeats: "BACK = terugzetten"
gogearsa9200: "LINKS = terugzetten" gogearsa9200: "LINKS = terugzetten"
vibe500: "C = terugzetten" vibe500: "C = terugzetten"
samsungyh*: "REW = terugzetten"
</dest> </dest>
<voice> <voice>
*: "" *: ""
@ -4526,6 +4528,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4533,6 +4536,7 @@
iriverh100,iriverh120,iriverh300: "De schijf is vol. Druk STOP om door te gaan." iriverh100,iriverh120,iriverh300: "De schijf is vol. Druk STOP om door te gaan."
iaudiom5,iaudiox5: "De schijf is vol. Druk POWER om door te gaan." iaudiom5,iaudiox5: "De schijf is vol. Druk POWER om door te gaan."
sansae200*,sansac200*,vibe500: "De schijf is vol. Druk PREV om door te gaan." sansae200*,sansac200*,vibe500: "De schijf is vol. Druk PREV om door te gaan."
samsungyh*: "De schijf is vol. Druk LEFT om door te gaan."
</dest> </dest>
<voice> <voice>
*: "" *: ""
@ -9039,7 +9043,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -9048,7 +9052,7 @@
*: "Aanmaken van database... %d gevonden (OFF = terug)" *: "Aanmaken van database... %d gevonden (OFF = terug)"
iriverh100,iriverh120,iriverh300: "Aanmaken van database... %d gevonden (STOP = terug)" iriverh100,iriverh120,iriverh300: "Aanmaken van database... %d gevonden (STOP = terug)"
ipod*: "Aanmaken van database... %d gevonden (PREV = terug)" ipod*: "Aanmaken van database... %d gevonden (PREV = terug)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Aanmaken van database... %d gevonden (LINKS = terug)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Aanmaken van database... %d gevonden (LINKS = terug)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Aanmaken van database... %d gevonden (PREV = terug)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Aanmaken van database... %d gevonden (PREV = terug)"
gogearsa9200: "Aanmaken van database... %d gevonden (REW = terug)" gogearsa9200: "Aanmaken van database... %d gevonden (REW = terug)"
archosplayer: "Aanmaken DB %d gev." archosplayer: "Aanmaken DB %d gev."
@ -9565,7 +9569,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -9574,7 +9578,7 @@
*: "PLAY = Ja" *: "PLAY = Ja"
cowond2*: "MENU of bovenaan rechts = Ja" cowond2*: "MENU of bovenaan rechts = Ja"
iriverh100,iriverh120,iriverh300: "NAVI = Ja" iriverh100,iriverh120,iriverh300: "NAVI = Ja"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja"
mrobe500: "PLAY, POWER, of bovenaan rechts = Ja" mrobe500: "PLAY, POWER, of bovenaan rechts = Ja"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Ja" vibe500: "OK = Ja"
@ -9593,7 +9597,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -9603,13 +9607,13 @@
mrobe500: "HEART = Instellen" mrobe500: "HEART = Instellen"
iriverh100,iriverh120,iriverh300: "NAVI = Instellen" iriverh100,iriverh120,iriverh300: "NAVI = Instellen"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Instellen" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Instellen"
gogearsa9200: "PLAY = Instellen" gogearsa9200,samsungyh*: "PLAY = Instellen"
vibe500: "OK = Instellen" vibe500: "OK = Instellen"
mpiohd300: "ENTER = Instellen" mpiohd300: "ENTER = Instellen"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,gigabeatfx: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,gigabeatfx,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>

View file

@ -4397,6 +4397,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4412,6 +4413,7 @@
gigabeats: "BACK = Tilbakestill" gigabeats: "BACK = Tilbakestill"
gogearsa9200: "LEFT = Tilbakestill" gogearsa9200: "LEFT = Tilbakestill"
vibe500: "CANCEL = Tilbakestill" vibe500: "CANCEL = Tilbakestill"
samsungyh*: "REW = Tilbakestill"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4459,6 +4461,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4466,6 +4469,7 @@
iriverh100,iriverh120,iriverh300: "Disken er full. Trykk STOP for å halde fram." iriverh100,iriverh120,iriverh300: "Disken er full. Trykk STOP for å halde fram."
iaudiom5,iaudiox5: "Disken er full. Trykk POWER for å halde fram." iaudiom5,iaudiox5: "Disken er full. Trykk POWER for å halde fram."
sansae200*,sansac200*,vibe500: "Disken er full. Trykk PREV for å halde fram." sansae200*,sansac200*,vibe500: "Disken er full. Trykk PREV for å halde fram."
samsungyh*: "Disken er full. Trykk LEFT for å halde fram."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -8782,7 +8786,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -8790,7 +8794,7 @@
*: "Byggjer database … Fann %d. (OFF for å gå tilbake.)" *: "Byggjer database … Fann %d. (OFF for å gå tilbake.)"
iriverh100,iriverh120,iriverh300: "Byggjer database … Fann %d. (STOP for å gå tilbake.)" iriverh100,iriverh120,iriverh300: "Byggjer database … Fann %d. (STOP for å gå tilbake.)"
ipod*: "Byggjer database … Fann %d. (PLAY/PAUSE for å gå tilbake.)" ipod*: "Byggjer database … Fann %d. (PLAY/PAUSE for å gå tilbake.)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Byggjer database … Fann %d. (LEFT for å gå tilbake.)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Byggjer database … Fann %d. (LEFT for å gå tilbake.)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Byggjer database ... fann %d. (PREV for å gå tilbake.)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Byggjer database ... fann %d. (PREV for å gå tilbake.)"
gogearsa9200: "Byggjer database ... Fann %d. (REW for å gå tilbake.)" gogearsa9200: "Byggjer database ... Fann %d. (REW for å gå tilbake.)"
</dest> </dest>
@ -9250,7 +9254,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -9259,7 +9263,7 @@
*: "PLAY = ja" *: "PLAY = ja"
cowond2*: "MENU eller topp høgre = ja" cowond2*: "MENU eller topp høgre = ja"
iriverh100,iriverh120,iriverh300: "NAVI = ja" iriverh100,iriverh120,iriverh300: "NAVI = ja"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ja" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ja"
mrobe500: "PLAY, POWER eller topp høgre = ja" mrobe500: "PLAY, POWER eller topp høgre = ja"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = ja" vibe500: "OK = ja"
@ -9278,7 +9282,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -9288,7 +9292,7 @@
mrobe500: "HEART = velg" mrobe500: "HEART = velg"
iriverh100,iriverh120,iriverh300: "NAVI = velg" iriverh100,iriverh120,iriverh300: "NAVI = velg"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = velg" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = velg"
gogearsa9200: "PLAY = velg" gogearsa9200,samsungyh*: "PLAY = velg"
vibe500: "OK = velg" vibe500: "OK = velg"
mpiohd300: "ENTER = velg" mpiohd300: "ENTER = velg"
</dest> </dest>

View file

@ -3758,6 +3758,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3773,6 +3774,7 @@
gigabeats: "BACK = Tilbakestill" gigabeats: "BACK = Tilbakestill"
gogearsa9200: "LEFT = Tilbakestill" gogearsa9200: "LEFT = Tilbakestill"
vibe500: "CANCEL = Tilbakestill" vibe500: "CANCEL = Tilbakestill"
samsungyh*: "REW = Tilbakestill"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -3822,6 +3824,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -3829,6 +3832,7 @@
iriverh100,iriverh120,iriverh300: "Disken er full. Trykk STOP for å fortsette." iriverh100,iriverh120,iriverh300: "Disken er full. Trykk STOP for å fortsette."
iaudiom5,iaudiox5: "Disken er full. Trykk POWER for å fortsette." iaudiom5,iaudiox5: "Disken er full. Trykk POWER for å fortsette."
sansae200*,sansac200*,vibe500: "Disken er full. Trykk PREV for å fortsette." sansae200*,sansac200*,vibe500: "Disken er full. Trykk PREV for å fortsette."
samsungyh*: "Disken er full. Trykk LEFT for å fortsette."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -8834,7 +8838,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -8843,7 +8847,7 @@
*: "Bygger database... %d funnet (OFF for å gå tilbake)" *: "Bygger database... %d funnet (OFF for å gå tilbake)"
iriverh100,iriverh120,iriverh300: "Bygger database... %d funnet (STOP for å gå tilbake)" iriverh100,iriverh120,iriverh300: "Bygger database... %d funnet (STOP for å gå tilbake)"
ipod*: "Bygger database... %d funnet (PREV for å gå tilbake)" ipod*: "Bygger database... %d funnet (PREV for å gå tilbake)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Bygger database... %d funnet (LEFT for å gå tilbake)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Bygger database... %d funnet (LEFT for å gå tilbake)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Bygger database... %d funnet (PREV for å gå tilbake)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Bygger database... %d funnet (PREV for å gå tilbake)"
gogearsa9200: "Bygger database... %d funnet (REW for å gå tilbake)" gogearsa9200: "Bygger database... %d funnet (REW for å gå tilbake)"
archosplayer: "Bygger database (%d funnet)" archosplayer: "Bygger database (%d funnet)"
@ -9519,7 +9523,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -9529,7 +9533,7 @@
*: "PLAY = Ja" *: "PLAY = Ja"
cowond2*: "MENU eller øvre høyre = Ja" cowond2*: "MENU eller øvre høyre = Ja"
iriverh100,iriverh120,iriverh300: "NAVI = Ja" iriverh100,iriverh120,iriverh300: "NAVI = Ja"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja"
mrobe500: "Play, POWER eller øvre høyre = Ja" mrobe500: "Play, POWER eller øvre høyre = Ja"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Ja" vibe500: "OK = Ja"
@ -9549,7 +9553,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -9559,7 +9563,7 @@
mrobe500: "HEART = Sett" mrobe500: "HEART = Sett"
iriverh100,iriverh120,iriverh300: "NAVI = Sett" iriverh100,iriverh120,iriverh300: "NAVI = Sett"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sett" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sett"
gogearsa9200: "PLAY = Sett" gogearsa9200,samsungyh*: "PLAY = Sett"
vibe500: "OK = Sett" vibe500: "OK = Sett"
mpiohd300: "ENTER = Sett" mpiohd300: "ENTER = Sett"
</dest> </dest>

View file

@ -256,7 +256,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -265,7 +265,7 @@
*: "PLAY = Tak" *: "PLAY = Tak"
cowond2*: "MENU lub lewo-góra = Tak" cowond2*: "MENU lub lewo-góra = Tak"
iriverh100,iriverh120,iriverh300: "NAVI = Tak" iriverh100,iriverh120,iriverh300: "NAVI = Tak"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Tak" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Tak"
mrobe500: "PLAY lub POWER = Tak" mrobe500: "PLAY lub POWER = Tak"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Tak" vibe500: "OK = Tak"
@ -2239,7 +2239,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2248,7 +2248,7 @@
*: "Budowanie biblioteki... %d znalezionych (OFF by wrócić)" *: "Budowanie biblioteki... %d znalezionych (OFF by wrócić)"
iriverh100,iriverh120,iriverh300: "Budowanie biblioteki... %d znalezionych (STOP by wrócić)" iriverh100,iriverh120,iriverh300: "Budowanie biblioteki... %d znalezionych (STOP by wrócić)"
ipod*: "Budowanie biblioteki... %d znalezionych (PREV by wrócić)" ipod*: "Budowanie biblioteki... %d znalezionych (PREV by wrócić)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Budowanie biblioteki... %d znalezionych (LEFT by wrócić)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Budowanie biblioteki... %d znalezionych (LEFT by wrócić)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Budowanie biblioteki... %d znalezionych (PREV by wrócić)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Budowanie biblioteki... %d znalezionych (PREV by wrócić)"
gogearsa9200: "Budowanie biblioteki... %d znalezionych (REW by wrócić)" gogearsa9200: "Budowanie biblioteki... %d znalezionych (REW by wrócić)"
archosplayer: "Budowanie biblioteki %d znalezionych" archosplayer: "Budowanie biblioteki %d znalezionych"
@ -3955,7 +3955,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3965,13 +3965,13 @@
mrobe500: "HEART = Ustaw" mrobe500: "HEART = Ustaw"
iriverh100,iriverh120,iriverh300: "NAVI = Ustaw" iriverh100,iriverh120,iriverh300: "NAVI = Ustaw"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ustaw" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ustaw"
gogearsa9200:"PLAY = Ustaw" gogearsa9200,samsungyh*:"PLAY = Ustaw"
vibe500: "OK = Ustaw" vibe500: "OK = Ustaw"
mpiohd300: "ENTER = Ustaw" mpiohd300: "ENTER = Ustaw"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3992,6 +3992,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4007,6 +4008,7 @@
gigabeats: "BACK = Przywróć" gigabeats: "BACK = Przywróć"
gogearsa9200: "LEFT = Przywróć" gogearsa9200: "LEFT = Przywróć"
vibe500: "C = Przywróć" vibe500: "C = Przywróć"
samsungyh*: "REW = Przywróć"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7991,6 +7993,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7998,6 +8001,7 @@
iriverh100,iriverh120,iriverh300: "Pamięć jest pełna. Wciśnij STOP żeby kontynuować." iriverh100,iriverh120,iriverh300: "Pamięć jest pełna. Wciśnij STOP żeby kontynuować."
iaudiom5,iaudiox5: "Pamięć jest pełna. Wciśnij POWER żeby kontynuować." iaudiom5,iaudiox5: "Pamięć jest pełna. Wciśnij POWER żeby kontynuować."
sansae200*,sansac200*,vibe500: "Pamięć jest pełna. Wciśnij PREV żeby kontynuować." sansae200*,sansac200*,vibe500: "Pamięć jest pełna. Wciśnij PREV żeby kontynuować."
samsungyh*: "Pamięć jest pełna. Wciśnij LEFT żeby kontynuować."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -249,7 +249,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -258,7 +258,7 @@
*: "PLAY = Sim" *: "PLAY = Sim"
cowond2*: "MENU, ou topo direito = Sim" cowond2*: "MENU, ou topo direito = Sim"
iriverh100,iriverh120,iriverh300: "NAVI = Sim" iriverh100,iriverh120,iriverh300: "NAVI = Sim"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sim" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sim"
mrobe500: "PLAY, POWER, ou topo direito = Sim" mrobe500: "PLAY, POWER, ou topo direito = Sim"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Sim" vibe500: "OK = Sim"
@ -2232,7 +2232,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2241,7 +2241,7 @@
*: "Construindo Base de Dados... %d encontrados (OFF para retornar)" *: "Construindo Base de Dados... %d encontrados (OFF para retornar)"
iriverh100,iriverh120,iriverh300: "Construindo Base de Dados... %d encontrados (STOP para retornar)" iriverh100,iriverh120,iriverh300: "Construindo Base de Dados... %d encontrados (STOP para retornar)"
ipod*: "Construindo Base de Dados... %d encontrados (PREV para retornar)" ipod*: "Construindo Base de Dados... %d encontrados (PREV para retornar)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Construindo Base de Dados... %d encontrados (LEFT para retornar)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Construindo Base de Dados... %d encontrados (LEFT para retornar)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construindo Base de Dados... %d encontrados (PREV para retornar)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construindo Base de Dados... %d encontrados (PREV para retornar)"
gogearsa9200: "Construindo Base de Dados... %d encontrados (REW para retornar)" gogearsa9200: "Construindo Base de Dados... %d encontrados (REW para retornar)"
archosplayer: "Construindo BD %d encontrado" archosplayer: "Construindo BD %d encontrado"
@ -3948,7 +3948,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3958,13 +3958,13 @@
mrobe500: "HEART = Ajustar" mrobe500: "HEART = Ajustar"
iriverh100,iriverh120,iriverh300: "NAVI = Ajustar" iriverh100,iriverh120,iriverh300: "NAVI = Ajustar"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ajustar" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ajustar"
gogearsa9200: "PLAY = Ajustar" gogearsa9200,samsungyh*: "PLAY = Ajustar"
vibe500: "OK = Ajustar" vibe500: "OK = Ajustar"
mpiohd300: "ENTER = Ajustar" mpiohd300: "ENTER = Ajustar"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3985,6 +3985,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4000,6 +4001,7 @@
gigabeats: "BACK = Reverter" gigabeats: "BACK = Reverter"
gogearsa9200: "LEFT = Reverter" gogearsa9200: "LEFT = Reverter"
vibe500: "CANCEL = Reverter" vibe500: "CANCEL = Reverter"
samsungyh*: "REW = Reverter"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7980,6 +7982,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7987,6 +7990,7 @@
iriverh100,iriverh120,iriverh300: "O disco está cheio. Pressione STOP para continuar." iriverh100,iriverh120,iriverh300: "O disco está cheio. Pressione STOP para continuar."
iaudiom5,iaudiox5: "O disco está cheio. Pressione POWER para continuar." iaudiom5,iaudiox5: "O disco está cheio. Pressione POWER para continuar."
sansae200*,sansac200*,vibe500: "O disco está cheio. Pressione PREV para continuar." sansae200*,sansac200*,vibe500: "O disco está cheio. Pressione PREV para continuar."
samsungyh*: "O disco está cheio. Pressione LEFT para continuar."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -4129,6 +4129,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4144,6 +4145,7 @@
gigabeats: "BACK = Reverter" gigabeats: "BACK = Reverter"
gogearsa9200: "LEFT = Reverter" gogearsa9200: "LEFT = Reverter"
vibe500: "C = Reverter" vibe500: "C = Reverter"
samsungyh*: "REW = Reverter"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4210,6 +4212,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4217,6 +4220,7 @@
iriverh100,iriverh120,iriverh300: "O Disco Está Cheio. Carregue STOP Para Continuar" iriverh100,iriverh120,iriverh300: "O Disco Está Cheio. Carregue STOP Para Continuar"
iaudiom5,iaudiox5: "O Disco Está Cheio. Carregue POWER Para Continuar" iaudiom5,iaudiox5: "O Disco Está Cheio. Carregue POWER Para Continuar"
sansae200*,sansac200*,vibe500: "O Disco Está Cheio. Carregue PREV Para Continuar" sansae200*,sansac200*,vibe500: "O Disco Está Cheio. Carregue PREV Para Continuar"
samsungyh*: "O Disco Está Cheio. Carregue LEFT Para Continuar"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7587,7 +7591,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -7597,7 +7601,7 @@
*: "PLAY = Sim" *: "PLAY = Sim"
cowond2*: "MENU, ou canto superior direito = Sim" cowond2*: "MENU, ou canto superior direito = Sim"
iriverh100,iriverh120,iriverh300: "NAVI = Sim" iriverh100,iriverh120,iriverh300: "NAVI = Sim"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECIONAR = Sim" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECIONAR = Sim"
mrobe500: "PLAY, POWER, ou canto superior direito = Sim" mrobe500: "PLAY, POWER, ou canto superior direito = Sim"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Sim" vibe500: "OK = Sim"
@ -7617,7 +7621,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -7627,7 +7631,7 @@
mrobe500: "HEART = Definir" mrobe500: "HEART = Definir"
iriverh100,iriverh120,iriverh300: "NAVI = Definir" iriverh100,iriverh120,iriverh300: "NAVI = Definir"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Definir" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Definir"
gogearsa9200: "PLAY = Definir" gogearsa9200,samsungyh*: "PLAY = Definir"
vibe500: "OK = Definir" vibe500: "OK = Definir"
mpiohd300: "ENTER = Definir" mpiohd300: "ENTER = Definir"
</dest> </dest>
@ -9675,7 +9679,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -9684,7 +9688,7 @@
*: "Construindo Base de Dados... %d encontrados (OFF para voltar)" *: "Construindo Base de Dados... %d encontrados (OFF para voltar)"
iriverh100,iriverh120,iriverh300: "Construindo Base de Dados... %d encontrados (STOP para voltar)" iriverh100,iriverh120,iriverh300: "Construindo Base de Dados... %d encontrados (STOP para voltar)"
ipod*: "Construindo Base de Dados... %d encontrado (PREV para voltar)" ipod*: "Construindo Base de Dados... %d encontrado (PREV para voltar)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Construindo Base de Dados... %d encontrados (LEFT para voltar)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Construindo Base de Dados... %d encontrados (LEFT para voltar)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construindo Base de Dados... %d encontrados (PREV para voltar)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Construindo Base de Dados... %d encontrados (PREV para voltar)"
gogearsa9200: "Construindo Base de Dados... %d encontrados (REW para voltar)" gogearsa9200: "Construindo Base de Dados... %d encontrados (REW para voltar)"
archosplayer: "Const. DB %d encontr." archosplayer: "Const. DB %d encontr."

View file

@ -1516,6 +1516,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -1531,6 +1532,7 @@
gigabeats: "BACK pentru anulare" gigabeats: "BACK pentru anulare"
gogearsa9200: "LEFT pentru anulare" gogearsa9200: "LEFT pentru anulare"
vibe500: "C pentru anulare" vibe500: "C pentru anulare"
samsungyh*: "REW pentru anulare"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -2813,7 +2815,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2822,7 +2824,7 @@
*: "Creare bază de date... %d găsite (STINGERE pentru revenire)" *: "Creare bază de date... %d găsite (STINGERE pentru revenire)"
iriverh100,iriverh120,iriverh300: "Creare bază de date... %d găsite (STOP pentru revenire)" iriverh100,iriverh120,iriverh300: "Creare bază de date... %d găsite (STOP pentru revenire)"
ipod*: "Creare bază de date... %d găsite (PREV pentru revenire)" ipod*: "Creare bază de date... %d găsite (PREV pentru revenire)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Creare bază de date... %d găsite (LEFT pentru revenire)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Creare bază de date... %d găsite (LEFT pentru revenire)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Creare bază de date... %d găsite (PREV pentru revenire)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Creare bază de date... %d găsite (PREV pentru revenire)"
gogearsa9200: "Creare bază de date... %d găsite (REW pentru revenire)" gogearsa9200: "Creare bază de date... %d găsite (REW pentru revenire)"
archosplayer: "Creare bază de date... %d găsite" archosplayer: "Creare bază de date... %d găsite"
@ -4370,6 +4372,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4377,6 +4380,7 @@
iriverh100,iriverh120,iriverh300: "Discul este plin. Apăsați STOP pentru a continua." iriverh100,iriverh120,iriverh300: "Discul este plin. Apăsați STOP pentru a continua."
iaudiom5,iaudiox5: "Discul este plin. Apăsați POWER pentru a continua." iaudiom5,iaudiox5: "Discul este plin. Apăsați POWER pentru a continua."
sansae200*,sansac200*,vibe500: "Discul este plin. Apăsați PREV pentru a continua." sansae200*,sansac200*,vibe500: "Discul este plin. Apăsați PREV pentru a continua."
samsungyh*: "Discul este plin. Apăsați LEFT pentru a continua."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4676,7 +4680,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -4685,7 +4689,7 @@
*: "PLAY = Da" *: "PLAY = Da"
cowond2*: "MENIU sau dreapta-sus = Da" cowond2*: "MENIU sau dreapta-sus = Da"
iriverh100,iriverh120,iriverh300: "NAVIGARE = Da" iriverh100,iriverh120,iriverh300: "NAVIGARE = Da"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECTARE = Da" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECTARE = Da"
mrobe500: "RULARE, PORNIRE sau dreapta-sus = Da" mrobe500: "RULARE, PORNIRE sau dreapta-sus = Da"
archosplayer: "(RULARE/STOP)" archosplayer: "(RULARE/STOP)"
vibe500: "OK = Da" vibe500: "OK = Da"
@ -4718,7 +4722,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -4728,13 +4732,13 @@
mrobe500: "INIMĂ = Setat" mrobe500: "INIMĂ = Setat"
iriverh100,iriverh120,iriverh300: "NAVI = Setat" iriverh100,iriverh120,iriverh300: "NAVI = Setat"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECTARE = Setat" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECTARE = Setat"
gogearsa9200: "RULARE = Setat" gogearsa9200,samsungyh*: "RULARE = Setat"
vibe500: "OK = Setat" vibe500: "OK = Setat"
mpiohd300: "ENTER = Setat" mpiohd300: "ENTER = Setat"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>

View file

@ -4180,6 +4180,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4194,6 +4195,7 @@
gigabeats: "НАЗАД = Отмена" gigabeats: "НАЗАД = Отмена"
gogearsa9200: "ЛЕВО = Отмена" gogearsa9200: "ЛЕВО = Отмена"
vibe500: "C = Отмена" vibe500: "C = Отмена"
samsungyh*: "REW = Отмена"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -4243,6 +4245,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -4250,6 +4253,7 @@
iriverh100,iriverh120,iriverh300: "Диск заполнен. Нажмите СТОП для продолжения." iriverh100,iriverh120,iriverh300: "Диск заполнен. Нажмите СТОП для продолжения."
iaudiom5,iaudiox5: "Диск заполнен. Нажмите ВЫКЛ. для продолжения." iaudiom5,iaudiox5: "Диск заполнен. Нажмите ВЫКЛ. для продолжения."
sansae200*,sansac200*,vibe500: "Диск заполнен. Нажмите ПРЕД. для продолжения." sansae200*,sansac200*,vibe500: "Диск заполнен. Нажмите ПРЕД. для продолжения."
samsungyh*: "Диск заполнен. Нажмите LEFT для продолжения."
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7472,7 +7476,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -7481,7 +7485,7 @@
*: "Построение базы... %d найдено (ВЫКЛ. для отмены)" *: "Построение базы... %d найдено (ВЫКЛ. для отмены)"
iriverh100,iriverh120,iriverh300: "Построение базы... %d найдено (СТОП для отмены)" iriverh100,iriverh120,iriverh300: "Построение базы... %d найдено (СТОП для отмены)"
ipod*: "Построение базы... %d найдено (ПРЕД. для отмены)" ipod*: "Построение базы... %d найдено (ПРЕД. для отмены)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Построение базы... %d найдено (ВЛЕВО для отмены)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Построение базы... %d найдено (ВЛЕВО для отмены)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Построение базы... %d найдено (ПРЕД. для отмены)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Построение базы... %d найдено (ПРЕД. для отмены)"
gogearsa9200: "Построение базы... %d найдено (РЕВЕРС. для отмены)" gogearsa9200: "Построение базы... %d найдено (РЕВЕРС. для отмены)"
archosplayer: "Построение БД... %d найдено" archosplayer: "Построение БД... %d найдено"
@ -8182,7 +8186,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -8191,7 +8195,7 @@
*: "ВОСПР. = Да" *: "ВОСПР. = Да"
cowond2*: "МЕНЮ или прав. верх. = Да" cowond2*: "МЕНЮ или прав. верх. = Да"
iriverh100,iriverh120,iriverh300: "НАВИГ. = Да" iriverh100,iriverh120,iriverh300: "НАВИГ. = Да"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "ВЫБОР = Да" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "ВЫБОР = Да"
mrobe500: "ВОСПР., ВЫКЛ или прав. верх. = Да" mrobe500: "ВОСПР., ВЫКЛ или прав. верх. = Да"
archosplayer: "(ВОСПР./СТОП)" archosplayer: "(ВОСПР./СТОП)"
vibe500: "OK = Да" vibe500: "OK = Да"
@ -8210,7 +8214,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -8220,7 +8224,7 @@
mrobe500: "СЕРДЦЕ = Установить" mrobe500: "СЕРДЦЕ = Установить"
iriverh100,iriverh120,iriverh300: "НАВИГ. = Установить" iriverh100,iriverh120,iriverh300: "НАВИГ. = Установить"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "ВЫБОР = Установить" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "ВЫБОР = Установить"
gogearsa9200: "ВОСПР. = Установить" gogearsa9200,samsungyh*: "ВОСПР. = Установить"
vibe500: "OK = Установить" vibe500: "OK = Установить"
mpiohd300: "ENTER = Установить" mpiohd300: "ENTER = Установить"
</dest> </dest>

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -257,7 +257,7 @@
*: "PLAY = Áno" *: "PLAY = Áno"
cowond2*: "MENU, alebo vpravo-hore = Áno" cowond2*: "MENU, alebo vpravo-hore = Áno"
iriverh100,iriverh120,iriverh300: "NAVI = Áno" iriverh100,iriverh120,iriverh300: "NAVI = Áno"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Áno" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Áno"
mrobe500: "PLAY, POWER, alebo Vpravo-hore = Áno" mrobe500: "PLAY, POWER, alebo Vpravo-hore = Áno"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Áno" vibe500: "OK = Áno"
@ -2231,7 +2231,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2240,7 +2240,7 @@
*: "Vytváram databázu... %d nájdených (OFF pre návrat)" *: "Vytváram databázu... %d nájdených (OFF pre návrat)"
iriverh100,iriverh120,iriverh300: "Vytváram databázu... %d nájdených (STOP pre návrat)" iriverh100,iriverh120,iriverh300: "Vytváram databázu... %d nájdených (STOP pre návrat)"
ipod*: "Vytváram databázu... %d nájdených (PREV pre návrat)" ipod*: "Vytváram databázu... %d nájdených (PREV pre návrat)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Vytváram databázu... %d nájdených (LEFT pre návrat)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Vytváram databázu... %d nájdených (LEFT pre návrat)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Vytváram databázu... %d nájdených (PREV pre návrat)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Vytváram databázu... %d nájdených (PREV pre návrat)"
gogearsa9200: "Vytváram databázu... %d nájdených (REW pre návrat)" gogearsa9200: "Vytváram databázu... %d nájdených (REW pre návrat)"
archosplayer: "Vytváram DB %d nájd." archosplayer: "Vytváram DB %d nájd."
@ -3947,7 +3947,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3957,13 +3957,13 @@
mrobe500: "HEART = Nastaviť" mrobe500: "HEART = Nastaviť"
iriverh100,iriverh120,iriverh300: "NAVI = Nastaviť" iriverh100,iriverh120,iriverh300: "NAVI = Nastaviť"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Nastaviť" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Nastaviť"
gogearsa9200: "PLAY = Nastaviť" gogearsa9200,samsungyh*: "PLAY = Nastaviť"
vibe500: "OK = Nastaviť" vibe500: "OK = Nastaviť"
mpiohd300: "ENTER = Nastaviť" mpiohd300: "ENTER = Nastaviť"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3984,6 +3984,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3999,6 +4000,7 @@
gigabeats: "BACK = Vrátiť" gigabeats: "BACK = Vrátiť"
gogearsa9200: "LEFT = Vrátiť" gogearsa9200: "LEFT = Vrátiť"
vibe500: "C = Vrátiť" vibe500: "C = Vrátiť"
samsungyh*: "REW = Vrátiť"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7980,6 +7982,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7987,6 +7990,7 @@
iriverh100,iriverh120,iriverh300: "Disk je plný. Stlačte STOP pre pokračovanie" iriverh100,iriverh120,iriverh300: "Disk je plný. Stlačte STOP pre pokračovanie"
iaudiom5,iaudiox5: "Disk je plný. Stlačte POWER pre pokračovanie" iaudiom5,iaudiox5: "Disk je plný. Stlačte POWER pre pokračovanie"
sansae200*,sansac200*,vibe500: "Disk je plný. Stlačte PREV pre pokračovanie" sansae200*,sansac200*,vibe500: "Disk je plný. Stlačte PREV pre pokračovanie"
samsungyh*: "Disk je plný. Stlačte LEFT pre pokračovanie"
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -1632,11 +1632,13 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: "OFF Preklici" *: "OFF Preklici"
vibe500: "C Preklici" vibe500: "C Preklici"
mpiohd300: "MENU Preklici" mpiohd300: "MENU Preklici"
samsungyh*: "REW Preklici"
</dest> </dest>
<voice> <voice>
*: "" *: ""
@ -1682,10 +1684,12 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: "Disk je poln. Pritisni OFF" *: "Disk je poln. Pritisni OFF"
vibe500: "Disk je poln. Pritisni PREV" vibe500: "Disk je poln. Pritisni PREV"
samsungyh*: "Disk je poln. Pritisni LEFT"
</dest> </dest>
<voice> <voice>
*: "" *: ""
@ -3198,7 +3202,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -3207,7 +3211,7 @@
*: "Ustvarjanje baze podatkov ... najdenih %d (OFF za nazaj)" *: "Ustvarjanje baze podatkov ... najdenih %d (OFF za nazaj)"
iriverh100,iriverh120,iriverh300: "Ustvarjanje baze podatkov ... najdenih %d (STOP za nazaj)" iriverh100,iriverh120,iriverh300: "Ustvarjanje baze podatkov ... najdenih %d (STOP za nazaj)"
ipod*: "Ustvarjanje baze podatkov ... najdenih %d (PREV za nazaj)" ipod*: "Ustvarjanje baze podatkov ... najdenih %d (PREV za nazaj)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Ustvarjanje baze podatkov ... najdenih %d (LEVO za nazaj)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Ustvarjanje baze podatkov ... najdenih %d (LEVO za nazaj)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Ustvarjanje baze podatkov ... najdenih %d (PREV za nazaj)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Ustvarjanje baze podatkov ... najdenih %d (PREV za nazaj)"
gogearsa9200: "Ustvarjanje baze podatkov ... najdenih %d (REW za nazaj)" gogearsa9200: "Ustvarjanje baze podatkov ... najdenih %d (REW za nazaj)"
archosplayer: "Ustvarjanje baze podatkov ... najdenih %d" archosplayer: "Ustvarjanje baze podatkov ... najdenih %d"
@ -5329,7 +5333,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -5338,7 +5342,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -5371,7 +5375,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -5381,13 +5385,13 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -257,7 +257,7 @@
*: "PLAY = Да" *: "PLAY = Да"
cowond2*: "MENU, или горе-десно = Да" cowond2*: "MENU, или горе-десно = Да"
iriverh100,iriverh120,iriverh300: "NAVI = Да" iriverh100,iriverh120,iriverh300: "NAVI = Да"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Да" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Да"
mrobe500: "PLAY, POWER, или горе-десно = Да" mrobe500: "PLAY, POWER, или горе-десно = Да"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Да" vibe500: "OK = Да"
@ -2214,7 +2214,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2223,7 +2223,7 @@
*: "Креирам базу података... %d пронађено (OFF за повратак)" *: "Креирам базу података... %d пронађено (OFF за повратак)"
iriverh100,iriverh120,iriverh300: "Креирам базу података... %d пронађено (STOP за повратак)" iriverh100,iriverh120,iriverh300: "Креирам базу података... %d пронађено (STOP за повратак)"
ipod*: "Креирам базу података... %d пронађено (PREV за повратак)" ipod*: "Креирам базу података... %d пронађено (PREV за повратак)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Креирам базу података... %d пронађено (LEFT за повратак)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Креирам базу података... %d пронађено (LEFT за повратак)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Креирам базу података... %d пронађено (PREV за повратак)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Креирам базу података... %d пронађено (PREV за повратак)"
gogearsa9200: "Креирам базу података... %d пронађено (REW за повратак)" gogearsa9200: "Креирам базу података... %d пронађено (REW за повратак)"
archosplayer: "Креирам БП %d пронађено" archosplayer: "Креирам БП %d пронађено"
@ -3930,7 +3930,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3940,13 +3940,13 @@
mrobe500: "HEART = Постави" mrobe500: "HEART = Постави"
iriverh100,iriverh120,iriverh300: "NAVI = Постави" iriverh100,iriverh120,iriverh300: "NAVI = Постави"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Постави" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Постави"
gogearsa9200: "PLAY = Постави" gogearsa9200,samsungyh*: "PLAY = Постави"
vibe500: "OK = Постави" vibe500: "OK = Постави"
mpiohd300: "ENTER = Постави" mpiohd300: "ENTER = Постави"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3967,6 +3967,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3982,6 +3983,7 @@
gigabeats: "BACK = Врати на старо" gigabeats: "BACK = Врати на старо"
gogearsa9200: "LEFT = Врати на старо" gogearsa9200: "LEFT = Врати на старо"
vibe500: "CANCEL = Врати на старо" vibe500: "CANCEL = Врати на старо"
samsungyh*: "REW = Врати на старо"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7963,6 +7965,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7970,6 +7973,7 @@
iriverh100,iriverh120,iriverh300: "Диск је пун. Притисните STOP за наставак." iriverh100,iriverh120,iriverh300: "Диск је пун. Притисните STOP за наставак."
iaudiom5,iaudiox5: "Диск је пун. Притисните POWER за наставак." iaudiom5,iaudiox5: "Диск је пун. Притисните POWER за наставак."
sansae200*,sansac200*,vibe500: "Диск је пун. Притисните PREV за наставак." sansae200*,sansac200*,vibe500: "Диск је пун. Притисните PREV за наставак."
samsungyh*: "Диск је пун. Притисните LEFT за наставак."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -254,7 +254,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -263,7 +263,7 @@
*: "SPELA = Ja" *: "SPELA = Ja"
cowond2*: "MENY, eller överst-höger = Ja" cowond2*: "MENY, eller överst-höger = Ja"
iriverh100,iriverh120,iriverh300: "NAVI = Ja" iriverh100,iriverh120,iriverh300: "NAVI = Ja"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "VÄLJ = Ja" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "VÄLJ = Ja"
mrobe500: "SPELA, PÅ/AV, eller överst-höger = Ja" mrobe500: "SPELA, PÅ/AV, eller överst-höger = Ja"
archosplayer: "SPELA/STOPP" archosplayer: "SPELA/STOPP"
vibe500: "OK = Ja" vibe500: "OK = Ja"
@ -2237,7 +2237,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2246,7 +2246,7 @@
*: "Skapar databas... %d hittade (AV = Återgå)" *: "Skapar databas... %d hittade (AV = Återgå)"
iriverh100,iriverh120,iriverh300: "Skapar databas... %d hittade (STOPP = Återgå)" iriverh100,iriverh120,iriverh300: "Skapar databas... %d hittade (STOPP = Återgå)"
ipod*: "Skapar databas... %d hittade (FÖREGÅENDE = Återgå)" ipod*: "Skapar databas... %d hittade (FÖREGÅENDE = Återgå)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Skapar databas... %d hittade (VÄNSTER = Återgå)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Skapar databas... %d hittade (VÄNSTER = Återgå)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Skapar databas... %d hittade (FÖREGÅENDE = Återgå)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Skapar databas... %d hittade (FÖREGÅENDE = Återgå)"
gogearsa9200: "Skapar databas... %d hittade (REW = Återgå)" gogearsa9200: "Skapar databas... %d hittade (REW = Återgå)"
archosplayer: "Skapar DB %d hittade" archosplayer: "Skapar DB %d hittade"
@ -3953,7 +3953,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3963,13 +3963,13 @@
mrobe500: "HJÄRTA = Ställ" mrobe500: "HJÄRTA = Ställ"
iriverh100,iriverh120,iriverh300: "NAVI = Ställ" iriverh100,iriverh120,iriverh300: "NAVI = Ställ"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "VÄLJ = Ställ" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "VÄLJ = Ställ"
gogearsa9200: "SPELA = Ställ" gogearsa9200,samsungyh*: "SPELA = Ställ"
vibe500: "OK = Ställ" vibe500: "OK = Ställ"
mpiohd300: "ENTER = Ställ" mpiohd300: "ENTER = Ställ"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3990,6 +3990,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4004,6 +4005,7 @@
gigabeats: "BAKÅT = Avbryt" gigabeats: "BAKÅT = Avbryt"
gogearsa9200: "VÄNSTER = Avbryt" gogearsa9200: "VÄNSTER = Avbryt"
vibe500: "C = Avbryt" vibe500: "C = Avbryt"
samsungyh*: "REW = Avbryt"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7985,6 +7987,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7992,6 +7995,7 @@
iriverh100,iriverh120,iriverh300: "Disken är full. Tryck STOPP för att fortsätta." iriverh100,iriverh120,iriverh300: "Disken är full. Tryck STOPP för att fortsätta."
iaudiom5,iaudiox5: "Disken är full. Tryck PÅ/AV för att fortsätta." iaudiom5,iaudiox5: "Disken är full. Tryck PÅ/AV för att fortsätta."
sansae200*,sansac200*,vibe500: "Disken är full. Tryck FÖREGÅENDE för att fortsätta." sansae200*,sansac200*,vibe500: "Disken är full. Tryck FÖREGÅENDE för att fortsätta."
samsungyh*: "Disken är full. Tryck LEFT för att fortsätta."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -257,7 +257,7 @@
*: "PLAY = Oo" *: "PLAY = Oo"
cowond2*: "MENU = Oo" cowond2*: "MENU = Oo"
iriverh100,iriverh120,iriverh300: "NAVI = Oo" iriverh100,iriverh120,iriverh300: "NAVI = Oo"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oo" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oo"
mrobe500: "PLAY, POWER, or top-right = Oo" mrobe500: "PLAY, POWER, or top-right = Oo"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Oo" vibe500: "OK = Oo"
@ -2217,7 +2217,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -2225,7 +2225,7 @@
*: "Gumawa database... %d found (OFF sa pagbalik)" *: "Gumawa database... %d found (OFF sa pagbalik)"
iriverh100,iriverh120,iriverh300: "Gumawa database... %d found (STOP sa pagbalik)" iriverh100,iriverh120,iriverh300: "Gumawa database... %d found (STOP sa pagbalik)"
ipod*: "Gumawa database... %d found (PLAY/PAUSE sa pagbalik)" ipod*: "Gumawa database... %d found (PLAY/PAUSE sa pagbalik)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Gumawa database... %d found (LEFT sa pagbalik)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Gumawa database... %d found (LEFT sa pagbalik)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Gumawa database... %d found (PREV sa pagbalik)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Gumawa database... %d found (PREV sa pagbalik)"
gogearsa9200: "Gumawa database... %d found (REW sa pagbalik)" gogearsa9200: "Gumawa database... %d found (REW sa pagbalik)"
</dest> </dest>
@ -3931,7 +3931,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3941,7 +3941,7 @@
mrobe500: "HEART =Ilagay" mrobe500: "HEART =Ilagay"
iriverh100,iriverh120,iriverh300: "NAVI = Ilagay" iriverh100,iriverh120,iriverh300: "NAVI = Ilagay"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ilagay" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ilagay"
gogearsa9200: "PLAY = Ilagay" gogearsa9200,samsungyh*: "PLAY = Ilagay"
vibe500: "OK = Ilagay" vibe500: "OK = Ilagay"
mpiohd300: "ENTER = Ilagay" mpiohd300: "ENTER = Ilagay"
</dest> </dest>
@ -3967,6 +3967,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3982,6 +3983,7 @@
gigabeats: "BACK = Mabalik" gigabeats: "BACK = Mabalik"
gogearsa9200: "LEFT = Mabalik" gogearsa9200: "LEFT = Mabalik"
vibe500: "C = Mabalik" vibe500: "C = Mabalik"
samsungyh*: "REW = Mabalik"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7162,6 +7164,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7169,6 +7172,7 @@
iriverh100,iriverh120,iriverh300: "Puno disk. Magpatuloy Pindutin STOP." iriverh100,iriverh120,iriverh300: "Puno disk. Magpatuloy Pindutin STOP."
iaudiom5,iaudiox5: "Puno disk. Magpatuloy Pindutin POWER." iaudiom5,iaudiox5: "Puno disk. Magpatuloy Pindutin POWER."
sansae200*,sansac200*,vibe500: "Puno disk. Magpatuloy Pindutin PREV." sansae200*,sansac200*,vibe500: "Puno disk. Magpatuloy Pindutin PREV."
samsungyh*: "Puno disk. Magpatuloy Pindutin LEFT."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -249,7 +249,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -258,7 +258,7 @@
*: "PLAY = ใช่" *: "PLAY = ใช่"
cowond2*: "MENU = ใช่" cowond2*: "MENU = ใช่"
iriverh100,iriverh120,iriverh300: "NAVI = ใช่" iriverh100,iriverh120,iriverh300: "NAVI = ใช่"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ใช่" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ใช่"
mrobe500: "PLAY, POWER, หรือ มุมบนขวา = ใช่" mrobe500: "PLAY, POWER, หรือ มุมบนขวา = ใช่"
archosplayer: "(เล่น/หยุด)" archosplayer: "(เล่น/หยุด)"
vibe500: "OK = ใช่" vibe500: "OK = ใช่"
@ -2218,7 +2218,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -2226,7 +2226,7 @@
*: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (OFF เพื่อย้อนกลับ)" *: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (OFF เพื่อย้อนกลับ)"
iriverh100,iriverh120,iriverh300: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (STOP เพื่อย้อนกลับ)" iriverh100,iriverh120,iriverh300: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (STOP เพื่อย้อนกลับ)"
ipod*: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (PREV เพื่อย้อนกลับ)" ipod*: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (PREV เพื่อย้อนกลับ)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (LEFT เพื่อย้อนกลับ)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (LEFT เพื่อย้อนกลับ)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (PREV เพื่อย้อนกลับ)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (PREV เพื่อย้อนกลับ)"
gogearsa9200: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (REW เพื่อย้อนกลับ)" gogearsa9200: "กำลังสร้างฐานข้อมูล...พบแล้ว %d (REW เพื่อย้อนกลับ)"
</dest> </dest>
@ -3915,7 +3915,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3925,7 +3925,7 @@
mrobe500: "HEART = ตั้งค่า" mrobe500: "HEART = ตั้งค่า"
iriverh100,iriverh120,iriverh300: "NAVI = ตั้งค่า" iriverh100,iriverh120,iriverh300: "NAVI = ตั้งค่า"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ตั้งค่า" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ตั้งค่า"
gogearsa9200: "PLAY = ตั้งค่า" gogearsa9200,samsungyh*: "PLAY = ตั้งค่า"
vibe500: "OK = ตั้งค่า" vibe500: "OK = ตั้งค่า"
mpiohd300: "ENTER = ตั้งค่า" mpiohd300: "ENTER = ตั้งค่า"
</dest> </dest>
@ -3951,6 +3951,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3966,6 +3967,7 @@
gigabeats: "BACK = ยกเลิก" gigabeats: "BACK = ยกเลิก"
gogearsa9200: "LEFT = ยกเลิก" gogearsa9200: "LEFT = ยกเลิก"
vibe500: "C = ยกเลิก" vibe500: "C = ยกเลิก"
samsungyh*: "REW = ยกเลิก"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7946,6 +7948,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7953,6 +7956,7 @@
iriverh100,iriverh120,iriverh300: "ดีสก์เต็ม กดปุ่ม STOP เพื่อทำงานต่อ" iriverh100,iriverh120,iriverh300: "ดีสก์เต็ม กดปุ่ม STOP เพื่อทำงานต่อ"
iaudiom5,iaudiox5: "ดีสก์เต็ม กดปุ่ม POWER เพื่อทำงานต่อ" iaudiom5,iaudiox5: "ดีสก์เต็ม กดปุ่ม POWER เพื่อทำงานต่อ"
sansae200*,sansac200*,vibe500: "ดีสก์เต็ม กดปุ่ม PREV เพื่อทำงานต่อ" sansae200*,sansac200*,vibe500: "ดีสก์เต็ม กดปุ่ม PREV เพื่อทำงานต่อ"
samsungyh*: "ดีสก์เต็ม กดปุ่ม LEFT เพื่อทำงานต่อ"
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -236,7 +236,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -245,7 +245,7 @@
*: "PLAY = Devam et" *: "PLAY = Devam et"
cowond2*: "MENU, veya üst-sağ = Evet" cowond2*: "MENU, veya üst-sağ = Evet"
iriverh100,iriverh120,iriverh300: "NAVI = Devam et" iriverh100,iriverh120,iriverh300: "NAVI = Devam et"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Evet" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Evet"
mrobe500: "PLAY, POWER, veya üst-sağ = Evet" mrobe500: "PLAY, POWER, veya üst-sağ = Evet"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Devam et" vibe500: "OK = Devam et"
@ -1406,7 +1406,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -1414,7 +1414,7 @@
*: "Veritabanı oluşturuluyor... %d bulundu (giriş için OFF)" *: "Veritabanı oluşturuluyor... %d bulundu (giriş için OFF)"
iriverh100,iriverh120,iriverh300: "Veritabanı oluşturuluyor... %d bulundu (giriş için STOP)" iriverh100,iriverh120,iriverh300: "Veritabanı oluşturuluyor... %d bulundu (giriş için STOP)"
ipod*: "Veritabanı oluşturuluyor... %d bulundu (giriş için PREV)" ipod*: "Veritabanı oluşturuluyor... %d bulundu (giriş için PREV)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Veritabanı oluşturuluyor... %d bulundu (giriş için LEFT)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Veritabanı oluşturuluyor... %d bulundu (giriş için LEFT)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Veritabanı oluşturuluyor... %d bulundu (giriş için PREV)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Veritabanı oluşturuluyor... %d bulundu (giriş için PREV)"
gogearsa9200: "Veritabanı oluşturuluyor... %d bulundu (giriş için REW)" gogearsa9200: "Veritabanı oluşturuluyor... %d bulundu (giriş için REW)"
</dest> </dest>
@ -1964,7 +1964,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -1974,7 +1974,7 @@
mrobe500: "HEART = Ayarlandı" mrobe500: "HEART = Ayarlandı"
iriverh100,iriverh120,iriverh300: "NAVI = Ayarlandı" iriverh100,iriverh120,iriverh300: "NAVI = Ayarlandı"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ayarlandı" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ayarlandı"
gogearsa9200: "PLAY = Ayarlandı" gogearsa9200,samsungyh*: "PLAY = Ayarlandı"
vibe500: "OK = Ayarlandı" vibe500: "OK = Ayarlandı"
mpiohd300: "ENTER = Ayarlandı" mpiohd300: "ENTER = Ayarlandı"
</dest> </dest>
@ -2000,6 +2000,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -2015,6 +2016,7 @@
gigabeats: "LEFT = Revert" gigabeats: "LEFT = Revert"
gogearsa9200: "LEFT = Geri Döndür" gogearsa9200: "LEFT = Geri Döndür"
vibe500: "C = Geri Döndür" vibe500: "C = Geri Döndür"
samsungyh*: "REW = Geri Döndür"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -2648,6 +2650,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -2655,10 +2658,10 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200,sansac200*,vibe500: "The disk is full. Press UP to continue." sansae200,sansac200*,vibe500: "The disk is full. Press UP to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</dest> </dest>
<voice> <voice>
*: none *: none
recording,iriverh100,iriverh120,iriverh300,iaudiom5,iaudiox5,sansae200,sansac200*: ""
recording,iriverh100,iriverh120,iriverh300,iaudiom5,iaudiox5,sansae200*,sansac200*: "" recording,iriverh100,iriverh120,iriverh300,iaudiom5,iaudiox5,sansae200*,sansac200*: ""
</voice> </voice>
</phrase> </phrase>

View file

@ -248,7 +248,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU, or top-right = Yes" cowond2*: "MENU, or top-right = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
mrobe500: "PLAY, POWER, or top-right = Yes" mrobe500: "PLAY, POWER, or top-right = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
@ -257,7 +257,7 @@
*: "ВТВОР. = Так" *: "ВТВОР. = Так"
cowond2*: "Меню або прав. верх. = Так" cowond2*: "Меню або прав. верх. = Так"
iriverh100,iriverh120,iriverh300: "НАВIГ. = Так" iriverh100,iriverh120,iriverh300: "НАВIГ. = Так"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "ВИБРАТИ = так" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "ВИБРАТИ = так"
mrobe500: "ВІДТВ, ВИМКН., або правю верх. = Так" mrobe500: "ВІДТВ, ВИМКН., або правю верх. = Так"
archosplayer: "(ВТВОР./СТОП)" archosplayer: "(ВТВОР./СТОП)"
vibe500: "OK = Так" vibe500: "OK = Так"
@ -2231,7 +2231,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
archosplayer: "Building DB %d found" archosplayer: "Building DB %d found"
@ -2240,7 +2240,7 @@
*: "Створення Бази Даних ... %d знайдено (ВИМК. для скасування)" *: "Створення Бази Даних ... %d знайдено (ВИМК. для скасування)"
iriverh100,iriverh120,iriverh300: "Створення Бази Даних... %d знайдено (СТОП для скасування)" iriverh100,iriverh120,iriverh300: "Створення Бази Даних... %d знайдено (СТОП для скасування)"
ipod*: "Створення Бази Даних... %d знайдено (ПОПЕРЕД. для скасування)" ipod*: "Створення Бази Даних... %d знайдено (ПОПЕРЕД. для скасування)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Створення Бази Даних... %d знайдено (ЛIВО для скасування)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Створення Бази Даних... %d знайдено (ЛIВО для скасування)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Створення Бази Даних... %d знайдено (ПОПЕРЕД. для скасування)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Створення Бази Даних... %d знайдено (ПОПЕРЕД. для скасування)"
gogearsa9200: "Створення Бази Даних... %d знайдено (ПЕРЕМ. для скасування)" gogearsa9200: "Створення Бази Даних... %d знайдено (ПЕРЕМ. для скасування)"
archosplayer: "Створення БД %d знайдено" archosplayer: "Створення БД %d знайдено"
@ -3947,7 +3947,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3957,7 +3957,7 @@
mrobe500: "СЕРЦЕ = Встановити" mrobe500: "СЕРЦЕ = Встановити"
iriverh100,iriverh120,iriverh300: "НАВIГ. = Встановити" iriverh100,iriverh120,iriverh300: "НАВIГ. = Встановити"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "ВИБРАТИ = Встановити" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "ВИБРАТИ = Встановити"
gogearsa9200: "ПРОГРАВ. = Встановити" gogearsa9200,samsungyh*: "ПРОГРАВ. = Встановити"
vibe500: "OK = Встановити" vibe500: "OK = Встановити"
mpiohd300: "ENTER = Встановити" mpiohd300: "ENTER = Встановити"
</dest> </dest>
@ -3983,6 +3983,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -3997,6 +3998,7 @@
gigabeats: "НАЗАД = Скасувати" gigabeats: "НАЗАД = Скасувати"
gogearsa9200: "ВЛIВО = Скасувати" gogearsa9200: "ВЛIВО = Скасувати"
vibe500: "C = Скасувати" vibe500: "C = Скасувати"
samsungyh*: "REW = Скасувати"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7977,6 +7979,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7984,6 +7987,7 @@
iriverh100,iriverh120,iriverh300: "Диск повний. Натичнiть STOP для продовження." iriverh100,iriverh120,iriverh300: "Диск повний. Натичнiть STOP для продовження."
iaudiom5,iaudiox5: "Диск повний. Натичнiть POWER для продовження." iaudiom5,iaudiox5: "Диск повний. Натичнiть POWER для продовження."
sansae200*,sansac200*,vibe500: "Диск повний. Натичнiть PREV для продовження." sansae200*,sansac200*,vibe500: "Диск повний. Натичнiть PREV для продовження."
samsungyh*: "Диск повний. Натичнiть LEFT для продовження."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -2557,10 +2557,12 @@
<source> <source>
*: "OFF To Revert" *: "OFF To Revert"
vibe500: "CANCEL To Revert" vibe500: "CANCEL To Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: "OFF = abbrächu" *: "OFF = abbrächu"
vibe500: "C = abbrächu" vibe500: "C = abbrächu"
samsungyh*: "REW = abbrächu"
</dest> </dest>
<voice> <voice>
*: "" *: ""
@ -2615,10 +2617,12 @@
<source> <source>
*: "The disk is full. Press OFF to continue." *: "The disk is full. Press OFF to continue."
vibe500: "The disk is full. Press PREV to continue." vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: "Feschtplatta isch voll. Drick OFF." *: "Feschtplatta isch voll. Drick OFF."
vibe500: "Feschtplatta isch voll. Drick PREV." vibe500: "Feschtplatta isch voll. Drick PREV."
samsungyh*: "Feschtplatta isch voll. Drick LEFT."
</dest> </dest>
<voice> <voice>
*: "" *: ""

View file

@ -253,7 +253,7 @@
*: "PLAY = Yes" *: "PLAY = Yes"
cowond2*: "MENU = Yes" cowond2*: "MENU = Yes"
iriverh100,iriverh120,iriverh300: "NAVI = Yes" iriverh100,iriverh120,iriverh300: "NAVI = Yes"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Yes" vibe500: "OK = Yes"
</source> </source>
@ -261,7 +261,7 @@
*: "PLAY = Oyi" *: "PLAY = Oyi"
cowond2*: "MENU = Oyi" cowond2*: "MENU = Oyi"
iriverh100,iriverh120,iriverh300: "NAVI = Oyi" iriverh100,iriverh120,iriverh300: "NAVI = Oyi"
samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oyi" ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oyi"
mrobe500: "PLAY or POWER = Oyi" mrobe500: "PLAY or POWER = Oyi"
archosplayer: "(PLAY/STOP)" archosplayer: "(PLAY/STOP)"
vibe500: "OK = Oyi" vibe500: "OK = Oyi"
@ -2238,7 +2238,7 @@
*: "Building database... %d found (OFF to return)" *: "Building database... %d found (OFF to return)"
iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)" iriverh100,iriverh120,iriverh300: "Building database... %d found (STOP to return)"
ipod*: "Building database... %d found (PREV to return)" ipod*: "Building database... %d found (PREV to return)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Building database... %d found (LEFT to return)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Building database... %d found (LEFT to return)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Building database... %d found (PREV to return)"
gogearsa9200: "Building database... %d found (REW to return)" gogearsa9200: "Building database... %d found (REW to return)"
</source> </source>
@ -2246,7 +2246,7 @@
*: "Bastixhaedje del båze di dnêyes... %d di trovés (OFF po-z eraler en erî)" *: "Bastixhaedje del båze di dnêyes... %d di trovés (OFF po-z eraler en erî)"
iriverh100,iriverh120,iriverh300: "Bastixhaedje del båze di dnêyes... %d di trovés (STOP po-z eraler en erî)" iriverh100,iriverh120,iriverh300: "Bastixhaedje del båze di dnêyes... %d di trovés (STOP po-z eraler en erî)"
ipod*: "Bastixhaedje del båze di dnêyes... %d di trovés (PREV po-z eraler en erî)" ipod*: "Bastixhaedje del båze di dnêyes... %d di trovés (PREV po-z eraler en erî)"
iaudiox5,iaudiom5,gigabeat*,mrobe100: "Bastixhaedje del båze di dnêyes... %d di trovés (LEFT po-z eraler en erî)" iaudiox5,iaudiom5,gigabeat*,mrobe100,samsungyh*: "Bastixhaedje del båze di dnêyes... %d di trovés (LEFT po-z eraler en erî)"
iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Bastixhaedje del båze di dnêyes... %d di trovés (PREV po-z eraler en erî)" iriverh10,iriverh10_5gb,sansae200*,sansac200*,sansafuze*,vibe500: "Bastixhaedje del båze di dnêyes... %d di trovés (PREV po-z eraler en erî)"
gogearsa9200: "Bastixhaedje del båze di dnêyes... %d di trovés (REW po-z eraler en erî)" gogearsa9200: "Bastixhaedje del båze di dnêyes... %d di trovés (REW po-z eraler en erî)"
</dest> </dest>
@ -3952,7 +3952,7 @@
mrobe500: "HEART = Set" mrobe500: "HEART = Set"
iriverh100,iriverh120,iriverh300: "NAVI = Set" iriverh100,iriverh120,iriverh300: "NAVI = Set"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
gogearsa9200: "PLAY = Set" gogearsa9200,samsungyh*: "PLAY = Set"
vibe500: "OK = Set" vibe500: "OK = Set"
mpiohd300: "ENTER = Set" mpiohd300: "ENTER = Set"
</source> </source>
@ -3962,13 +3962,13 @@
mrobe500: "HEART = Eployî" mrobe500: "HEART = Eployî"
iriverh100,iriverh120,iriverh300: "NAVI = Eployî" iriverh100,iriverh120,iriverh300: "NAVI = Eployî"
ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Eployî" ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Eployî"
gogearsa9200: "PLAY = Eployî" gogearsa9200,samsungyh*: "PLAY = Eployî"
vibe500: "OK = Eployî" vibe500: "OK = Eployî"
mpiohd300: "ENTER = Eployî" mpiohd300: "ENTER = Eployî"
</dest> </dest>
<voice> <voice>
*: none *: none
rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200: "" rtc,iriverh100,iriverh120,iriverh300,iriverh10,iriverh10_5gb,iaudiox5,iaudiom5,ipod*,sansae200*,sansac200*,gigabeat*,mrobe100,gogearsa9200,samsungyh*: ""
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -3989,6 +3989,7 @@
gigabeats: "BACK = Revert" gigabeats: "BACK = Revert"
gogearsa9200: "LEFT = Revert" gogearsa9200: "LEFT = Revert"
vibe500: "CANCEL = Revert" vibe500: "CANCEL = Revert"
samsungyh*: "REW = Revert"
</source> </source>
<dest> <dest>
*: none *: none
@ -4004,6 +4005,7 @@
gigabeats: "BACK = Rinoncî" gigabeats: "BACK = Rinoncî"
gogearsa9200: "LEFT = Rinoncî" gogearsa9200: "LEFT = Rinoncî"
vibe500: "C = Rinoncî" vibe500: "C = Rinoncî"
samsungyh*: "REW = Rinoncî"
</dest> </dest>
<voice> <voice>
*: none *: none
@ -7985,6 +7987,7 @@
iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue." iriverh100,iriverh120,iriverh300: "The disk is full. Press STOP to continue."
iaudiom5,iaudiox5: "The disk is full. Press POWER to continue." iaudiom5,iaudiox5: "The disk is full. Press POWER to continue."
sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue." sansae200*,sansac200*,vibe500: "The disk is full. Press PREV to continue."
samsungyh*: "Disk full. Press LEFT to continue."
</source> </source>
<dest> <dest>
*: none *: none
@ -7992,6 +7995,7 @@
iriverh100,iriverh120,iriverh300: "Li plake est plinne. Tchôkîz STOP et tcheryî pus lon." iriverh100,iriverh120,iriverh300: "Li plake est plinne. Tchôkîz STOP et tcheryî pus lon."
iaudiom5,iaudiox5: "Li plake est plinne. Tchôkîz POWER et tcheryî pus lon." iaudiom5,iaudiox5: "Li plake est plinne. Tchôkîz POWER et tcheryî pus lon."
sansae200*,sansac200*,vibe500: "Li plake est plinne. Tchôkîz PREV et tcheryî pus lon." sansae200*,sansac200*,vibe500: "Li plake est plinne. Tchôkîz PREV et tcheryî pus lon."
samsungyh*: "Li plake est plinne. Tchôkîz LEFT et tcheryî pus lon."
</dest> </dest>
<voice> <voice>
*: none *: none

View file

@ -396,13 +396,13 @@ enum {
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define BJACK_SELECT_NAME "PLAY" #define BJACK_SELECT_NAME "PLAY"
#define BJACK_STAY_NAME "RECORD" #define BJACK_STAY_NAME "FFWD"
#define BJACK_QUIT_NAME "REW" #define BJACK_QUIT_NAME "LONG REW"
#define BJACK_DOUBLE_NAME "FFWD" #define BJACK_DOUBLE_NAME "REW"
#define BJACK_SELECT BUTTON_PLAY #define BJACK_SELECT BUTTON_PLAY
#define BJACK_QUIT BUTTON_REW #define BJACK_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define BJACK_STAY BUTTON_REC #define BJACK_STAY BUTTON_FFWD
#define BJACK_DOUBLEDOWN BUTTON_FFWD #define BJACK_DOUBLEDOWN (BUTTON_REW|BUTTON_REL)
#define BJACK_UP BUTTON_UP #define BJACK_UP BUTTON_UP
#define BJACK_DOWN BUTTON_DOWN #define BJACK_DOWN BUTTON_DOWN
#define BJACK_RIGHT BUTTON_RIGHT #define BJACK_RIGHT BUTTON_RIGHT

View file

@ -245,7 +245,7 @@ CONFIG_KEYPAD == SANSA_CONNECT_PAD
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define QUIT BUTTON_FFWD #define QUIT BUTTON_REW
#define SELECT BUTTON_PLAY #define SELECT BUTTON_PLAY
#define LEFT BUTTON_LEFT #define LEFT BUTTON_LEFT
#define RIGHT BUTTON_RIGHT #define RIGHT BUTTON_RIGHT

View file

@ -380,17 +380,28 @@ F3: equal to "="
#elif CONFIG_KEYPAD == MROBE500_PAD #elif CONFIG_KEYPAD == MROBE500_PAD
#define CALCULATOR_QUIT BUTTON_POWER #define CALCULATOR_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define CALCULATOR_LEFT BUTTON_LEFT #define CALCULATOR_LEFT BUTTON_LEFT
#define CALCULATOR_RIGHT BUTTON_RIGHT #define CALCULATOR_RIGHT BUTTON_RIGHT
#define CALCULATOR_UP BUTTON_UP #define CALCULATOR_UP BUTTON_UP
#define CALCULATOR_DOWN BUTTON_DOWN #define CALCULATOR_DOWN BUTTON_DOWN
#define CALCULATOR_QUIT BUTTON_REC #define CALCULATOR_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define CALCULATOR_INPUT BUTTON_PLAY #define CALCULATOR_INPUT BUTTON_PLAY
#define CALCULATOR_CALC BUTTON_FFWD #define CALCULATOR_CALC BUTTON_FFWD
#define CALCULATOR_CLEAR BUTTON_REW #define CALCULATOR_CLEAR (BUTTON_REW|BUTTON_REL)
#define CALCULATOR_OPERATORS BUTTON_REC
#elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
#define CALCULATOR_LEFT BUTTON_LEFT
#define CALCULATOR_RIGHT BUTTON_RIGHT
#define CALCULATOR_UP BUTTON_UP
#define CALCULATOR_DOWN BUTTON_DOWN
#define CALCULATOR_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define CALCULATOR_INPUT BUTTON_PLAY
#define CALCULATOR_CALC BUTTON_FFWD
#define CALCULATOR_CLEAR (BUTTON_REW|BUTTON_REL)
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD

View file

@ -258,16 +258,25 @@
#elif CONFIG_KEYPAD == MROBE500_PAD #elif CONFIG_KEYPAD == MROBE500_PAD
#define CALENDAR_QUIT BUTTON_POWER #define CALENDAR_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) #define CALENDAR_QUIT BUTTON_REW
#define CALENDAR_QUIT BUTTON_REC
#define CALENDAR_SELECT BUTTON_PLAY #define CALENDAR_SELECT BUTTON_PLAY
#define CALENDAR_NEXT_WEEK BUTTON_DOWN #define CALENDAR_NEXT_WEEK BUTTON_DOWN
#define CALENDAR_PREV_WEEK BUTTON_UP #define CALENDAR_PREV_WEEK BUTTON_UP
#define CALENDAR_NEXT_DAY BUTTON_RIGHT #define CALENDAR_NEXT_DAY BUTTON_RIGHT
#define CALENDAR_PREV_DAY BUTTON_LEFT #define CALENDAR_PREV_DAY BUTTON_LEFT
#define CALENDAR_NEXT_MONTH BUTTON_FFWD #define CALENDAR_NEXT_MONTH (BUTTON_FFWD|BUTTON_DOWN)
#define CALENDAR_PREV_MONTH BUTTON_REW #define CALENDAR_PREV_MONTH (BUTTON_FFWD|BUTTON_UP)
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define CALENDAR_QUIT BUTTON_REW
#define CALENDAR_SELECT BUTTON_PLAY
#define CALENDAR_NEXT_WEEK BUTTON_DOWN
#define CALENDAR_PREV_WEEK BUTTON_UP
#define CALENDAR_NEXT_DAY BUTTON_RIGHT
#define CALENDAR_PREV_DAY BUTTON_LEFT
#define CALENDAR_NEXT_MONTH (BUTTON_REC|BUTTON_DOWN)
#define CALENDAR_PREV_MONTH (BUTTON_REC|BUTTON_UP)
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define CALENDAR_QUIT BUTTON_REC #define CALENDAR_QUIT BUTTON_REC

View file

@ -680,6 +680,10 @@ static struct cb_command cb_getcommand (void) {
#ifdef CB_PLAY_PRE #ifdef CB_PLAY_PRE
if (lastbutton != CB_PLAY_PRE) if (lastbutton != CB_PLAY_PRE)
break; break;
/* fallthrough */
#endif
#ifdef CB_PLAY_ALT
case CB_PLAY_ALT:
#endif #endif
result.type = COMMAND_PLAY; result.type = COMMAND_PLAY;
return result; return result;

View file

@ -357,16 +357,30 @@
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
#define CB_MENU BUTTON_POWER #define CB_MENU BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) #define CB_SELECT BUTTON_PLAY
#define CB_SELECT BUTTON_FFWD
#define CB_UP BUTTON_UP #define CB_UP BUTTON_UP
#define CB_DOWN BUTTON_DOWN #define CB_DOWN BUTTON_DOWN
#define CB_LEFT BUTTON_LEFT #define CB_LEFT BUTTON_LEFT
#define CB_RIGHT BUTTON_RIGHT #define CB_RIGHT BUTTON_RIGHT
#define CB_PLAY BUTTON_PLAY #define CB_PLAY BUTTON_REC
#define CB_LEVEL (BUTTON_REW|BUTTON_RIGHT) #define CB_LEVEL BUTTON_FFWD
#define CB_MENU (BUTTON_REW|BUTTON_LEFT) #define CB_MENU BUTTON_REW
#define CB_SCROLL_UP (BUTTON_UP|BUTTON_REPEAT)
#define CB_SCROLL_DOWN (BUTTON_DOWN|BUTTON_REPEAT)
#define CB_SCROLL_LEFT (BUTTON_LEFT|BUTTON_REPEAT)
#define CB_SCROLL_RIGHT (BUTTON_RIGHT|BUTTON_REPEAT)
#elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
#define CB_SELECT BUTTON_PLAY
#define CB_UP BUTTON_UP
#define CB_DOWN BUTTON_DOWN
#define CB_LEFT BUTTON_LEFT
#define CB_RIGHT BUTTON_RIGHT
#define CB_PLAY BUTTON_REC_SW_ON
#define CB_PLAY_ALT BUTTON_REC_SW_OFF
#define CB_LEVEL BUTTON_FFWD
#define CB_MENU BUTTON_REW
#define CB_SCROLL_UP (BUTTON_UP|BUTTON_REPEAT) #define CB_SCROLL_UP (BUTTON_UP|BUTTON_REPEAT)
#define CB_SCROLL_DOWN (BUTTON_DOWN|BUTTON_REPEAT) #define CB_SCROLL_DOWN (BUTTON_DOWN|BUTTON_REPEAT)
#define CB_SCROLL_LEFT (BUTTON_LEFT|BUTTON_REPEAT) #define CB_SCROLL_LEFT (BUTTON_LEFT|BUTTON_REPEAT)

View file

@ -278,14 +278,16 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define CHC_QUIT BUTTON_REC #define CHC_QUIT BUTTON_REW
#define CHC_STARTSTOP BUTTON_PLAY #define CHC_STARTSTOP BUTTON_PLAY
#define CHC_RESET BUTTON_FFWD #define CHC_RESET BUTTON_FFWD
#define CHC_MENU BUTTON_LEFT #define CHC_MENU BUTTON_LEFT
#define CHC_SETTINGS_INC BUTTON_UP #define CHC_SETTINGS_INC BUTTON_UP
#define CHC_SETTINGS_DEC BUTTON_DOWN #define CHC_SETTINGS_DEC BUTTON_DOWN
#define CHC_SETTINGS_OK BUTTON_PLAY #define CHC_SETTINGS_OK BUTTON_PLAY
#define CHC_SETTINGS_OK2 BUTTON_RIGHT
#define CHC_SETTINGS_CANCEL BUTTON_REW #define CHC_SETTINGS_CANCEL BUTTON_REW
#define CHC_SETTINGS_CANCEL2 BUTTON_LEFT
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define CHC_QUIT BUTTON_REC #define CHC_QUIT BUTTON_REC

View file

@ -1145,7 +1145,8 @@ CONFIG_KEYPAD == MROBE500_PAD
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define CHIP8_OFF BUTTON_REC #define CHIP8_OFF BUTTON_REW
#define CHIP8_KEY0 BUTTON_FFWD
#define CHIP8_KEY2 BUTTON_UP #define CHIP8_KEY2 BUTTON_UP
#define CHIP8_KEY4 BUTTON_LEFT #define CHIP8_KEY4 BUTTON_LEFT
#define CHIP8_KEY5 BUTTON_PLAY #define CHIP8_KEY5 BUTTON_PLAY

View file

@ -164,7 +164,8 @@ CONFIG_KEYPAD == MROBE500_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define QUIT BUTTON_LEFT #define QUIT BUTTON_LEFT
#define ACTION BUTTON_RIGHT #define ACTION BUTTON_RIGHT
#define ACTIONTEXT "RIGHT" #define ACTION2 BUTTON_UP
#define ACTIONTEXT "RIGHT or UP"
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define QUIT BUTTON_REC #define QUIT BUTTON_REC

View file

@ -183,7 +183,7 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define CLIX_BUTTON_QUIT BUTTON_REC #define CLIX_BUTTON_QUIT BUTTON_REW
#define CLIX_BUTTON_LEFT BUTTON_LEFT #define CLIX_BUTTON_LEFT BUTTON_LEFT
#define CLIX_BUTTON_RIGHT BUTTON_RIGHT #define CLIX_BUTTON_RIGHT BUTTON_RIGHT
#define CLIX_BUTTON_CLICK BUTTON_PLAY #define CLIX_BUTTON_CLICK BUTTON_PLAY

View file

@ -281,14 +281,16 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define CUBE_QUIT BUTTON_REC #define CUBE_QUIT BUTTON_REW
#define CUBE_NEXT BUTTON_RIGHT #define CUBE_NEXT BUTTON_RIGHT
#define CUBE_PREV BUTTON_LEFT #define CUBE_PREV BUTTON_LEFT
#define CUBE_INC BUTTON_UP #define CUBE_INC BUTTON_UP
#define CUBE_DEC BUTTON_DOWN #define CUBE_DEC BUTTON_DOWN
#define CUBE_MODE BUTTON_REW #define CUBE_MODE (BUTTON_FFWD|BUTTON_REL)
#define CUBE_MODE_PRE BUTTON_FFWD
#define CUBE_PAUSE BUTTON_PLAY #define CUBE_PAUSE BUTTON_PLAY
#define CUBE_HIGHSPEED BUTTON_FFWD #define CUBE_HIGHSPEED (BUTTON_FFWD|BUTTON_REPEAT)
#define CUBE_HIGHSPEED_PRE BUTTON_FFWD
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define CUBE_QUIT BUTTON_REC #define CUBE_QUIT BUTTON_REC

View file

@ -395,8 +395,19 @@ void I_ShutdownGraphics(void)
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
#define DOOMBUTTON_ESC BUTTON_POWER #define DOOMBUTTON_ESC BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) #define DOOMBUTTON_UP BUTTON_UP
#define DOOMBUTTON_DOWN BUTTON_DOWN
#define DOOMBUTTON_LEFT BUTTON_LEFT
#define DOOMBUTTON_RIGHT BUTTON_RIGHT
#define DOOMBUTTON_SHOOT BUTTON_PLAY
#define DOOMBUTTON_OPEN BUTTON_REW
#define DOOMBUTTON_ESC BUTTON_REC_SW_ON
#define DOOMBUTTON_ESC2 BUTTON_REC_SW_OFF
#define DOOMBUTTON_ENTER BUTTON_PLAY
#define DOOMBUTTON_WEAPON BUTTON_FFWD
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define DOOMBUTTON_UP BUTTON_UP #define DOOMBUTTON_UP BUTTON_UP
#define DOOMBUTTON_DOWN BUTTON_DOWN #define DOOMBUTTON_DOWN BUTTON_DOWN
#define DOOMBUTTON_LEFT BUTTON_LEFT #define DOOMBUTTON_LEFT BUTTON_LEFT
@ -404,7 +415,7 @@ void I_ShutdownGraphics(void)
#define DOOMBUTTON_SHOOT BUTTON_PLAY #define DOOMBUTTON_SHOOT BUTTON_PLAY
#define DOOMBUTTON_OPEN BUTTON_REW #define DOOMBUTTON_OPEN BUTTON_REW
#define DOOMBUTTON_ESC BUTTON_REC #define DOOMBUTTON_ESC BUTTON_REC
#define DOOMBUTTON_ENTER BUTTON_FFWD #define DOOMBUTTON_ENTER BUTTON_PLAY
#define DOOMBUTTON_WEAPON BUTTON_FFWD #define DOOMBUTTON_WEAPON BUTTON_FFWD
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
@ -685,7 +696,11 @@ static inline void getkey()
D_PostEvent(&event); D_PostEvent(&event);
} }
#ifdef DOOMBUTTON_ESC #ifdef DOOMBUTTON_ESC
if(released & DOOMBUTTON_ESC) if(released & DOOMBUTTON_ESC
#ifdef DOOMBUTTON_ESC2
|| released & DOOMBUTTON_ESC2
#endif
)
{ {
event.data1=KEY_ESCAPE; event.data1=KEY_ESCAPE;
D_PostEvent(&event); D_PostEvent(&event);
@ -747,7 +762,11 @@ static inline void getkey()
D_PostEvent(&event); D_PostEvent(&event);
} }
#ifdef DOOMBUTTON_ESC #ifdef DOOMBUTTON_ESC
if(pressed & DOOMBUTTON_ESC) if(pressed & DOOMBUTTON_ESC
#ifdef DOOMBUTTON_ESC2
|| pressed & DOOMBUTTON_ESC2
#endif
)
{ {
event.data1=KEY_ESCAPE; event.data1=KEY_ESCAPE;
D_PostEvent(&event); D_PostEvent(&event);

View file

@ -351,11 +351,11 @@
#define FLIPIT_RIGHT BUTTON_RIGHT #define FLIPIT_RIGHT BUTTON_RIGHT
#define FLIPIT_UP BUTTON_UP #define FLIPIT_UP BUTTON_UP
#define FLIPIT_DOWN BUTTON_DOWN #define FLIPIT_DOWN BUTTON_DOWN
#define FLIPIT_QUIT BUTTON_REC #define FLIPIT_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define FLIPIT_SHUFFLE BUTTON_PLAY #define FLIPIT_SHUFFLE (BUTTON_REW|BUTTON_REL)
#define FLIPIT_SOLVE BUTTON_FFWD #define FLIPIT_SOLVE (BUTTON_FFWD|BUTTON_REPEAT)
#define FLIPIT_STEP_BY_STEP (BUTTON_FFWD|BUTTON_UP) #define FLIPIT_STEP_BY_STEP (BUTTON_FFWD|BUTTON_REL)
#define FLIPIT_TOGGLE BUTTON_REW #define FLIPIT_TOGGLE BUTTON_PLAY
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
@ -941,6 +941,13 @@ enum plugin_status plugin_start(const void* parameter)
rb->lcd_putsxy(2, 28, "[VOL+] shuffle"); rb->lcd_putsxy(2, 28, "[VOL+] shuffle");
rb->lcd_putsxy(2, 38, "[PREV] solution"); rb->lcd_putsxy(2, 38, "[PREV] solution");
rb->lcd_putsxy(2, 48, "[NEXT] step by step"); rb->lcd_putsxy(2, 48, "[NEXT] step by step");
#elif (CONFIG_KEYPAD == SAMSUNG_YH920_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH820_PAD)
rb->lcd_putsxy(2, 8, "Long [REW] to stop");
rb->lcd_putsxy(2, 18, "[PLAY] toggle");
rb->lcd_putsxy(2, 28, "[REW] shuffle");
rb->lcd_putsxy(2, 38, "Long [FFWD] solution");
rb->lcd_putsxy(2, 48, "[FFWD] step by step");
#endif #endif
#ifdef HAVE_TOUCHSCREEN #ifdef HAVE_TOUCHSCREEN

View file

@ -318,15 +318,28 @@
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
#define FRACTAL_QUIT BUTTON_POWER #define FRACTAL_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) #define FRACTAL_QUIT (BUTTON_REW | BUTTON_REPEAT)
#define FRACTAL_QUIT BUTTON_REC
#define FRACTAL_UP BUTTON_UP #define FRACTAL_UP BUTTON_UP
#define FRACTAL_DOWN BUTTON_DOWN #define FRACTAL_DOWN BUTTON_DOWN
#define FRACTAL_LEFT BUTTON_LEFT #define FRACTAL_LEFT BUTTON_LEFT
#define FRACTAL_RIGHT BUTTON_RIGHT #define FRACTAL_RIGHT BUTTON_RIGHT
#define FRACTAL_ZOOM_IN BUTTON_FFWD #define FRACTAL_ZOOM_IN BUTTON_FFWD
#define FRACTAL_ZOOM_OUT BUTTON_REW #define FRACTAL_ZOOM_OUT_PRE BUTTON_REW
#define FRACTAL_ZOOM_OUT (BUTTON_REW | BUTTON_REL)
#define FRACTAL_PRECISION_INC (BUTTON_REC | BUTTON_UP)
#define FRACTAL_PRECISION_DEC (BUTTON_REC | BUTTON_DOWN)
#define FRACTAL_RESET BUTTON_PLAY
#elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
#define FRACTAL_QUIT (BUTTON_REW | BUTTON_REPEAT)
#define FRACTAL_UP BUTTON_UP
#define FRACTAL_DOWN BUTTON_DOWN
#define FRACTAL_LEFT BUTTON_LEFT
#define FRACTAL_RIGHT BUTTON_RIGHT
#define FRACTAL_ZOOM_IN BUTTON_FFWD
#define FRACTAL_ZOOM_OUT_PRE BUTTON_REW
#define FRACTAL_ZOOM_OUT (BUTTON_REW | BUTTON_REL)
#define FRACTAL_PRECISION_INC (BUTTON_PLAY | BUTTON_UP) #define FRACTAL_PRECISION_INC (BUTTON_PLAY | BUTTON_UP)
#define FRACTAL_PRECISION_DEC (BUTTON_PLAY | BUTTON_DOWN) #define FRACTAL_PRECISION_DEC (BUTTON_PLAY | BUTTON_DOWN)
#define FRACTAL_RESET (BUTTON_PLAY | BUTTON_RIGHT) #define FRACTAL_RESET (BUTTON_PLAY | BUTTON_RIGHT)

View file

@ -553,7 +553,8 @@ static int scroll_bmp(struct image_info *info)
static long ss_timeout = 0; static long ss_timeout = 0;
int button; int button;
#if defined(IMGVIEW_ZOOM_PRE) || defined(IMGVIEW_MENU_PRE) #if defined(IMGVIEW_ZOOM_PRE) || defined(IMGVIEW_MENU_PRE) \
|| defined(IMGVIEW_SLIDE_SHOW_PRE)
int lastbutton = BUTTON_NONE; int lastbutton = BUTTON_NONE;
#endif #endif
@ -642,6 +643,13 @@ static int scroll_bmp(struct image_info *info)
#ifdef IMGVIEW_SLIDE_SHOW #ifdef IMGVIEW_SLIDE_SHOW
case IMGVIEW_SLIDE_SHOW: case IMGVIEW_SLIDE_SHOW:
#ifdef IMGVIEW_SLIDE_SHOW_PRE
if (lastbutton != IMGVIEW_SLIDE_SHOW_PRE)
break;
#endif
#ifdef IMGVIEW_SLIDE_SHOW2
case IMGVIEW_SLIDE_SHOW2:
#endif
iv_api.slideshow_enabled = !iv_api.slideshow_enabled; iv_api.slideshow_enabled = !iv_api.slideshow_enabled;
break; break;
#endif #endif
@ -714,7 +722,7 @@ static int scroll_bmp(struct image_info *info)
break; break;
} /* switch */ } /* switch */
#if defined(IMGVIEW_ZOOM_PRE) || defined(IMGVIEW_MENU_PRE) #if defined(IMGVIEW_ZOOM_PRE) || defined(IMGVIEW_MENU_PRE) || defined(IMGVIEW_SLIDE_SHOW_PRE)
if (button != BUTTON_NONE) if (button != BUTTON_NONE)
lastbutton = button; lastbutton = button;
#endif #endif

View file

@ -314,8 +314,7 @@
#elif CONFIG_KEYPAD == ONDAVX747_PAD #elif CONFIG_KEYPAD == ONDAVX747_PAD
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define IMGVIEW_ZOOM_IN (BUTTON_PLAY|BUTTON_UP) #define IMGVIEW_ZOOM_IN (BUTTON_PLAY|BUTTON_UP)
#define IMGVIEW_ZOOM_OUT (BUTTON_PLAY|BUTTON_DOWN) #define IMGVIEW_ZOOM_OUT (BUTTON_PLAY|BUTTON_DOWN)
#define IMGVIEW_UP BUTTON_UP #define IMGVIEW_UP BUTTON_UP
@ -324,9 +323,29 @@
#define IMGVIEW_RIGHT BUTTON_RIGHT #define IMGVIEW_RIGHT BUTTON_RIGHT
#define IMGVIEW_NEXT BUTTON_FFWD #define IMGVIEW_NEXT BUTTON_FFWD
#define IMGVIEW_PREVIOUS BUTTON_REW #define IMGVIEW_PREVIOUS BUTTON_REW
#define IMGVIEW_NEXT_REPEAT (BUTTON_FFWD|BUTTON_REPEAT)
#define IMGVIEW_PREVIOUS_REPEAT (BUTTON_REW|BUTTON_REPEAT)
#define IMGVIEW_MENU_PRE BUTTON_PLAY #define IMGVIEW_MENU_PRE BUTTON_PLAY
#define IMGVIEW_MENU (BUTTON_PLAY|BUTTON_REL) #define IMGVIEW_MENU (BUTTON_PLAY|BUTTON_REL)
#define IMGVIEW_QUIT BUTTON_REC #define IMGVIEW_SLIDE_SHOW BUTTON_REC_SW_ON
#define IMGVIEW_SLIDE_SHOW2 BUTTON_REC_SW_OFF
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define IMGVIEW_ZOOM_IN (BUTTON_REC|BUTTON_UP)
#define IMGVIEW_ZOOM_OUT (BUTTON_REC|BUTTON_DOWN)
#define IMGVIEW_UP BUTTON_UP
#define IMGVIEW_DOWN BUTTON_DOWN
#define IMGVIEW_LEFT BUTTON_LEFT
#define IMGVIEW_RIGHT BUTTON_RIGHT
#define IMGVIEW_NEXT BUTTON_FFWD
#define IMGVIEW_PREVIOUS BUTTON_REW
#define IMGVIEW_NEXT_REPEAT (BUTTON_FFWD|BUTTON_REPEAT)
#define IMGVIEW_PREVIOUS_REPEAT (BUTTON_REW|BUTTON_REPEAT)
#define IMGVIEW_MENU_PRE BUTTON_PLAY
#define IMGVIEW_MENU (BUTTON_PLAY|BUTTON_REL)
#define IMGVIEW_SLIDE_SHOW (BUTTON_PLAY|BUTTON_REPEAT)
#define IMGVIEW_SLIDE_SHOW_PRE BUTTON_PLAY
#define IMGVIEW_QUIT (BUTTON_REC|BUTTON_PLAY)
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define IMGVIEW_ZOOM_IN (BUTTON_REC | BUTTON_UP) #define IMGVIEW_ZOOM_IN (BUTTON_REC | BUTTON_UP)

View file

@ -211,10 +211,11 @@ CONFIG_KEYPAD == MROBE500_PAD
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define QUIT BUTTON_REC #define QUIT BUTTON_REW
#define LEFT BUTTON_LEFT #define LEFT BUTTON_LEFT
#define RIGHT BUTTON_RIGHT #define RIGHT BUTTON_RIGHT
#define FIRE BUTTON_PLAY #define FIRE BUTTON_PLAY
#define FIRE2 BUTTON_UP
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
@ -304,7 +305,11 @@ CONFIG_KEYPAD == MROBE500_PAD
#define ACTION_QUIT (QUIT | RC_QUIT) #define ACTION_QUIT (QUIT | RC_QUIT)
#define ACTION_LEFT LEFT #define ACTION_LEFT LEFT
#define ACTION_RIGHT RIGHT #define ACTION_RIGHT RIGHT
#ifndef FIRE2
#define ACTION_FIRE FIRE #define ACTION_FIRE FIRE
#else
#define ACTION_FIRE (FIRE | FIRE2)
#endif
#endif #endif

View file

@ -385,10 +385,10 @@ const struct button_mapping pla_main_ctx[] =
{PLA_SELECT, BUTTON_VOL_UP, BUTTON_NONE}, {PLA_SELECT, BUTTON_VOL_UP, BUTTON_NONE},
{PLA_SELECT_REL, BUTTON_VOL_UP|BUTTON_REL, BUTTON_VOL_UP}, {PLA_SELECT_REL, BUTTON_VOL_UP|BUTTON_REL, BUTTON_VOL_UP},
{PLA_SELECT_REPEAT, BUTTON_VOL_UP|BUTTON_REPEAT, BUTTON_NONE}, {PLA_SELECT_REPEAT, BUTTON_VOL_UP|BUTTON_REPEAT, BUTTON_NONE},
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) \
|| (CONFIG_KEYPAD == SAMSUNG_YH920_PAD) || (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
{PLA_CANCEL, BUTTON_REW, BUTTON_NONE}, {PLA_CANCEL, BUTTON_REW|BUTTON_REL, BUTTON_REW},
{PLA_EXIT, BUTTON_FFWD, BUTTON_NONE}, {PLA_EXIT, BUTTON_REW|BUTTON_REPEAT, BUTTON_NONE},
{PLA_SELECT, BUTTON_PLAY, BUTTON_NONE}, {PLA_SELECT, BUTTON_PLAY, BUTTON_NONE},
{PLA_SELECT_REL, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY}, {PLA_SELECT_REL, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY},
{PLA_SELECT_REPEAT, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_NONE}, {PLA_SELECT_REPEAT, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_NONE},

View file

@ -78,8 +78,7 @@ enum metronome_errors
#define PART_MAX 10 /* maximum count of programmed parts */ #define PART_MAX 10 /* maximum count of programmed parts */
#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD) \ #if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD) \
|| (CONFIG_KEYPAD == SANSA_E200_PAD) || (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) \ || (CONFIG_KEYPAD == SANSA_E200_PAD) || (CONFIG_KEYPAD == SAMSUNG_YH820_PAD)
|| (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define MET_SYNC #define MET_SYNC
#endif #endif

View file

@ -195,7 +195,7 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define BTN_QUIT BUTTON_REC #define BTN_QUIT (BUTTON_PLAY|BUTTON_REPEAT)
#define BTN_RIGHT BUTTON_RIGHT #define BTN_RIGHT BUTTON_RIGHT
#define BTN_LEFT BUTTON_LEFT #define BTN_LEFT BUTTON_LEFT
#define BTN_UP BUTTON_UP #define BTN_UP BUTTON_UP

View file

@ -247,16 +247,27 @@ CONFIG_KEYPAD == ONDAVX777_PAD || \
CONFIG_KEYPAD == MROBE500_PAD CONFIG_KEYPAD == MROBE500_PAD
# define MINESWP_QUIT BUTTON_POWER # define MINESWP_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD)
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
# define MINESWP_LEFT BUTTON_LEFT # define MINESWP_LEFT BUTTON_LEFT
# define MINESWP_RIGHT BUTTON_RIGHT # define MINESWP_RIGHT BUTTON_RIGHT
# define MINESWP_UP BUTTON_UP # define MINESWP_UP BUTTON_UP
# define MINESWP_DOWN BUTTON_DOWN # define MINESWP_DOWN BUTTON_DOWN
# define MINESWP_QUIT BUTTON_REC # define MINESWP_QUIT (BUTTON_REW|BUTTON_REPEAT)
# define MINESWP_TOGGLE BUTTON_PLAY # define MINESWP_TOGGLE BUTTON_PLAY
# define MINESWP_DISCOVER BUTTON_REW # define MINESWP_DISCOVER BUTTON_FFWD
# define MINESWP_INFO BUTTON_FFWD # define MINESWP_INFO BUTTON_REC
#elif (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
# define MINESWP_LEFT BUTTON_LEFT
# define MINESWP_RIGHT BUTTON_RIGHT
# define MINESWP_UP BUTTON_UP
# define MINESWP_DOWN BUTTON_DOWN
# define MINESWP_QUIT (BUTTON_REW|BUTTON_REPEAT)
# define MINESWP_TOGGLE (BUTTON_PLAY|BUTTON_REL)
# define MINESWP_TOGGLE_PRE BUTTON_PLAY
# define MINESWP_DISCOVER BUTTON_FFWD
# define MINESWP_INFO (BUTTON_PLAY|BUTTON_REPEAT)
# define MINESWP_INFO_PRE BUTTON_PLAY
#elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD) #elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD)
# define MINESWP_LEFT BUTTON_PREV # define MINESWP_LEFT BUTTON_PREV
@ -788,7 +799,7 @@ static enum minesweeper_status minesweeper( void )
{ {
int i, j; int i, j;
int button; int button;
#if defined(HAVE_TOUCHSCREEN) || defined(MINESWP_TOGGLE_PRE) #if defined(HAVE_TOUCHSCREEN) || defined(MINESWP_TOGGLE_PRE) || defined(MINESWP_INFO_PRE)
int lastbutton = BUTTON_NONE; int lastbutton = BUTTON_NONE;
#endif #endif
@ -977,6 +988,10 @@ static enum minesweeper_status minesweeper( void )
/* show how many mines you think you have found and how many /* show how many mines you think you have found and how many
* there really are on the game */ * there really are on the game */
case MINESWP_INFO: case MINESWP_INFO:
#ifdef MINESWP_INFO_PRE
if( lastbutton != MINESWP_INFO_PRE )
break;
#endif
if( no_mines ) if( no_mines )
break; break;
int flags_used = count_flags(); int flags_used = count_flags();
@ -996,7 +1011,7 @@ static enum minesweeper_status minesweeper( void )
return MINESWEEPER_USB; return MINESWEEPER_USB;
break; break;
} }
#if defined(HAVE_TOUCHSCREEN) || defined(MINESWP_TOGGLE_PRE) #if defined(HAVE_TOUCHSCREEN) || defined(MINESWP_TOGGLE_PRE) || defined(MINESWP_INFO_PRE)
if( button != BUTTON_NONE ) if( button != BUTTON_NONE )
lastbutton = button; lastbutton = button;
#endif #endif

View file

@ -211,9 +211,7 @@ struct mpeg_settings settings;
#define MPEG_START_TIME_RIGHT BUTTON_RIGHT #define MPEG_START_TIME_RIGHT BUTTON_RIGHT
#define MPEG_START_TIME_UP BUTTON_UP #define MPEG_START_TIME_UP BUTTON_UP
#define MPEG_START_TIME_DOWN BUTTON_DOWN #define MPEG_START_TIME_DOWN BUTTON_DOWN
#define MPEG_START_TIME_LEFT2 BUTTON_REW #define MPEG_START_TIME_EXIT BUTTON_REW
#define MPEG_START_TIME_RIGHT2 BUTTON_FFWD
#define MPEG_START_TIME_EXIT BUTTON_REC
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define MPEG_START_TIME_SELECT BUTTON_PLAY #define MPEG_START_TIME_SELECT BUTTON_PLAY

View file

@ -319,13 +319,14 @@ CONFIG_KEYPAD == SANSA_M200_PAD
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define MPEG_MENU BUTTON_LEFT #define MPEG_MENU BUTTON_REW
#define MPEG_STOP BUTTON_RIGHT #define MPEG_STOP (BUTTON_PLAY | BUTTON_REPEAT)
#define MPEG_PAUSE BUTTON_PLAY #define MPEG_PAUSE (BUTTON_PLAY | BUTTON_REL)
#define MPEG_VOLDOWN BUTTON_DOWN #define MPEG_VOLDOWN BUTTON_DOWN
#define MPEG_VOLUP BUTTON_UP #define MPEG_VOLUP BUTTON_UP
#define MPEG_RW BUTTON_REW #define MPEG_RW BUTTON_LEFT
#define MPEG_FF BUTTON_FFWD #define MPEG_FF BUTTON_RIGHT
#define MPEG_SHOW_OSD BUTTON_FFWD
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define MPEG_MENU BUTTON_MENU #define MPEG_MENU BUTTON_MENU

View file

@ -349,18 +349,31 @@
#elif CONFIG_KEYPAD == MROBE500_PAD #elif CONFIG_KEYPAD == MROBE500_PAD
#define OSCILLOSCOPE_QUIT BUTTON_POWER #define OSCILLOSCOPE_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) #define OSCILLOSCOPE_QUIT BUTTON_REW
#define OSCILLOSCOPE_QUIT BUTTON_REC #define OSCILLOSCOPE_DRAWMODE BUTTON_FFWD
#define OSCILLOSCOPE_DRAWMODE (BUTTON_PLAY|BUTTON_LEFT)
#define OSCILLOSCOPE_ADVMODE (BUTTON_PLAY|BUTTON_RIGHT) #define OSCILLOSCOPE_ADVMODE (BUTTON_PLAY|BUTTON_RIGHT)
#define OSCILLOSCOPE_ORIENTATION (BUTTON_PLAY|BUTTON_UP) #define OSCILLOSCOPE_ORIENTATION (BUTTON_PLAY|BUTTON_UP)
#define OSCILLOSCOPE_PAUSE (BUTTON_PLAY|BUTTON_DOWN) #define OSCILLOSCOPE_GRAPHMODE (BUTTON_PLAY|BUTTON_LEFT)
#define OSCILLOSCOPE_PAUSE_PRE BUTTON_PLAY
#define OSCILLOSCOPE_PAUSE (BUTTON_PLAY|BUTTON_REL)
#define OSCILLOSCOPE_SPEED_UP BUTTON_RIGHT
#define OSCILLOSCOPE_SPEED_DOWN BUTTON_LEFT
#define OSCILLOSCOPE_VOL_UP BUTTON_UP
#define OSCILLOSCOPE_VOL_DOWN BUTTON_DOWN
#define NEED_LASTBUTTON
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define OSCILLOSCOPE_QUIT BUTTON_REW
#define OSCILLOSCOPE_DRAWMODE BUTTON_FFWD
#define OSCILLOSCOPE_ADVMODE (BUTTON_REC|BUTTON_RIGHT)
#define OSCILLOSCOPE_ORIENTATION (BUTTON_REC|BUTTON_UP)
#define OSCILLOSCOPE_GRAPHMODE (BUTTON_REC|BUTTON_LEFT)
#define OSCILLOSCOPE_PAUSE BUTTON_PLAY
#define OSCILLOSCOPE_SPEED_UP BUTTON_RIGHT #define OSCILLOSCOPE_SPEED_UP BUTTON_RIGHT
#define OSCILLOSCOPE_SPEED_DOWN BUTTON_LEFT #define OSCILLOSCOPE_SPEED_DOWN BUTTON_LEFT
#define OSCILLOSCOPE_VOL_UP BUTTON_UP #define OSCILLOSCOPE_VOL_UP BUTTON_UP
#define OSCILLOSCOPE_VOL_DOWN BUTTON_DOWN #define OSCILLOSCOPE_VOL_DOWN BUTTON_DOWN
/* Need GRAPHMODE */
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define OSCILLOSCOPE_QUIT BUTTON_REC #define OSCILLOSCOPE_QUIT BUTTON_REC

View file

@ -390,6 +390,9 @@ static int gameProc( void )
if ((status & PACMAN_MENU) == PACMAN_MENU if ((status & PACMAN_MENU) == PACMAN_MENU
#ifdef PACMAN_RC_MENU #ifdef PACMAN_RC_MENU
|| status == PACMAN_RC_MENU || status == PACMAN_RC_MENU
#endif
#ifdef PACMAN_MENU2
|| status == PACMAN_MENU2
#endif #endif
) { ) {
bool menu_res; bool menu_res;

View file

@ -232,8 +232,19 @@
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
#define PACMAN_MENU BUTTON_POWER #define PACMAN_MENU BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define PACMAN_UP BUTTON_UP
#define PACMAN_DOWN BUTTON_DOWN
#define PACMAN_LEFT BUTTON_LEFT
#define PACMAN_RIGHT BUTTON_RIGHT
#define PACMAN_1UP BUTTON_FFWD
#define PACMAN_2UP BUTTON_REW
#define PACMAN_COIN BUTTON_PLAY
#define PACMAN_MENU BUTTON_REC_SW_ON
#define PACMAN_MENU2 BUTTON_REC_SW_OFF
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define PACMAN_UP BUTTON_UP #define PACMAN_UP BUTTON_UP
#define PACMAN_DOWN BUTTON_DOWN #define PACMAN_DOWN BUTTON_DOWN

View file

@ -414,23 +414,39 @@ CONFIG_KEYPAD == MROBE500_PAD
#define QUIT_TEXT "POWER" #define QUIT_TEXT "POWER"
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
CONFIG_KEYPAD == SAMSUNG_YH920_PAD #define PEGBOX_QUIT BUTTON_REW
#define PEGBOX_QUIT BUTTON_REC #define PEGBOX_RESTART BUTTON_FFWD
#define PEGBOX_RESTART BUTTON_REW #define PEGBOX_LVL_UP (BUTTON_PLAY|BUTTON_UP)
#define PEGBOX_LVL_UP (BUTTON_PLAY|BUTTON_FFWD) #define PEGBOX_LVL_DOWN (BUTTON_PLAY|BUTTON_DOWN)
#define PEGBOX_LVL_DOWN (BUTTON_PLAY|BUTTON_REW)
#define PEGBOX_UP BUTTON_UP #define PEGBOX_UP BUTTON_UP
#define PEGBOX_DOWN BUTTON_DOWN #define PEGBOX_DOWN BUTTON_DOWN
#define PEGBOX_RIGHT BUTTON_RIGHT #define PEGBOX_RIGHT BUTTON_RIGHT
#define PEGBOX_LEFT BUTTON_LEFT #define PEGBOX_LEFT BUTTON_LEFT
#define PEGBOX_SELECT BUTTON_PLAY #define PEGBOX_SELECT BUTTON_PLAY
#define QUIT_TEXT "REC" #define QUIT_TEXT "REW"
#define RESTART_TEXT "REW" #define RESTART_TEXT "FFWD"
#define LVL_UP_TEXT "PLAY+FFWD" #define LVL_UP_TEXT "PLAY+UP"
#define LVL_DOWN_TEXT "PLAY+REW" #define LVL_DOWN_TEXT "PLAY+DOWN"
#define SELECT_TEXT "PLAY" #define SELECT_TEXT "PLAY"
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define PEGBOX_QUIT BUTTON_REW
#define PEGBOX_RESTART BUTTON_FFWD
#define PEGBOX_LVL_UP (BUTTON_REC|BUTTON_UP)
#define PEGBOX_LVL_DOWN (BUTTON_REC|BUTTON_DOWN)
#define PEGBOX_UP BUTTON_UP
#define PEGBOX_DOWN BUTTON_DOWN
#define PEGBOX_RIGHT BUTTON_RIGHT
#define PEGBOX_LEFT BUTTON_LEFT
#define PEGBOX_SELECT BUTTON_PLAY
#define QUIT_TEXT "REW"
#define RESTART_TEXT "FFWD"
#define LVL_UP_TEXT "REC+UP"
#define LVL_DOWN_TEXT "REC+DOWN"
#define SELECT_TEXT "PLAY"
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define PEGBOX_QUIT BUTTON_REC #define PEGBOX_QUIT BUTTON_REC

View file

@ -61,7 +61,6 @@
#define PF_TRACKLIST (LAST_ACTION_PLACEHOLDER + 2) #define PF_TRACKLIST (LAST_ACTION_PLACEHOLDER + 2)
#if defined(HAVE_SCROLLWHEEL) || CONFIG_KEYPAD == IRIVER_H10_PAD || \ #if defined(HAVE_SCROLLWHEEL) || CONFIG_KEYPAD == IRIVER_H10_PAD || \
CONFIG_KEYPAD == SAMSUNG_YH820_PAD || CONFIG_KEYPAD == SAMSUNG_YH920_PAD || \
CONFIG_KEYPAD == MPIO_HD300_PAD CONFIG_KEYPAD == MPIO_HD300_PAD
#define USE_CORE_PREVNEXT #define USE_CORE_PREVNEXT
#endif #endif
@ -154,9 +153,15 @@ const struct button_mapping pf_context_buttons[] =
#elif CONFIG_KEYPAD == IRIVER_H100_PAD || CONFIG_KEYPAD == IRIVER_H300_PAD || \ #elif CONFIG_KEYPAD == IRIVER_H100_PAD || CONFIG_KEYPAD == IRIVER_H300_PAD || \
CONFIG_KEYPAD == RECORDER_PAD || CONFIG_KEYPAD == ONDIO_PAD CONFIG_KEYPAD == RECORDER_PAD || CONFIG_KEYPAD == ONDIO_PAD
{PF_QUIT, BUTTON_OFF, BUTTON_NONE}, {PF_QUIT, BUTTON_OFF, BUTTON_NONE},
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD || CONFIG_KEYPAD == SAMSUNG_YH820_PAD || \ #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
CONFIG_KEYPAD == SAMSUNG_YH920_PAD
{PF_QUIT, BUTTON_REC, BUTTON_NONE}, {PF_QUIT, BUTTON_REC, BUTTON_NONE},
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD || CONFIG_KEYPAD == SAMSUNG_YH920_PAD
{PF_QUIT, BUTTON_REW|BUTTON_REPEAT, BUTTON_REW},
{PF_MENU, BUTTON_REW|BUTTON_REL, BUTTON_REW},
{PF_SELECT, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY},
{PF_CONTEXT, BUTTON_FFWD|BUTTON_REPEAT, BUTTON_FFWD},
{PF_TRACKLIST, BUTTON_FFWD|BUTTON_REL, BUTTON_FFWD},
{PF_WPS, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_PLAY},
#endif #endif
#if CONFIG_KEYPAD == IAUDIO_M3_PAD #if CONFIG_KEYPAD == IAUDIO_M3_PAD
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD|CONTEXT_REMOTE) LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD|CONTEXT_REMOTE)

View file

@ -215,15 +215,22 @@ CONFIG_KEYPAD == ONDAVX777_PAD || \
CONFIG_KEYPAD == MROBE500_PAD CONFIG_KEYPAD == MROBE500_PAD
#define PONG_QUIT BUTTON_POWER #define PONG_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) #define PONG_QUIT (BUTTON_PLAY|BUTTON_REPEAT)
#define PONG_QUIT BUTTON_REC #define PONG_PAUSE (BUTTON_PLAY|BUTTON_REL)
#define PONG_PAUSE BUTTON_PLAY
#define PONG_LEFT_UP BUTTON_UP #define PONG_LEFT_UP BUTTON_UP
#define PONG_LEFT_DOWN BUTTON_DOWN #define PONG_LEFT_DOWN BUTTON_DOWN
#define PONG_RIGHT_UP BUTTON_FFWD #define PONG_RIGHT_UP BUTTON_FFWD
#define PONG_RIGHT_DOWN BUTTON_REW #define PONG_RIGHT_DOWN BUTTON_REW
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define PONG_QUIT BUTTON_REW
#define PONG_PAUSE BUTTON_PLAY
#define PONG_LEFT_UP BUTTON_UP
#define PONG_LEFT_DOWN BUTTON_DOWN
#define PONG_RIGHT_UP BUTTON_REC
#define PONG_RIGHT_DOWN BUTTON_FFWD
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define PONG_QUIT BUTTON_REC #define PONG_QUIT BUTTON_REC
#define PONG_PAUSE BUTTON_OK #define PONG_PAUSE BUTTON_OK

View file

@ -232,13 +232,13 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define REVERSI_BUTTON_QUIT BUTTON_REC #define REVERSI_BUTTON_QUIT BUTTON_REW
#define REVERSI_BUTTON_UP BUTTON_UP #define REVERSI_BUTTON_UP BUTTON_UP
#define REVERSI_BUTTON_DOWN BUTTON_DOWN #define REVERSI_BUTTON_DOWN BUTTON_DOWN
#define REVERSI_BUTTON_LEFT BUTTON_LEFT #define REVERSI_BUTTON_LEFT BUTTON_LEFT
#define REVERSI_BUTTON_RIGHT BUTTON_RIGHT #define REVERSI_BUTTON_RIGHT BUTTON_RIGHT
#define REVERSI_BUTTON_MAKE_MOVE BUTTON_FFWD #define REVERSI_BUTTON_MAKE_MOVE BUTTON_PLAY
#define REVERSI_BUTTON_MENU BUTTON_PLAY #define REVERSI_BUTTON_MENU BUTTON_FFWD
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define REVERSI_BUTTON_QUIT BUTTON_REC #define REVERSI_BUTTON_QUIT BUTTON_REC

View file

@ -328,17 +328,26 @@
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
#define ROCKBLOX_OFF BUTTON_POWER #define ROCKBLOX_OFF BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define ROCKBLOX_OFF BUTTON_REC #define ROCKBLOX_OFF BUTTON_FFWD
#define ROCKBLOX_ROTATE_CCW BUTTON_UP #define ROCKBLOX_ROTATE_CCW BUTTON_UP
#define ROCKBLOX_ROTATE_CW BUTTON_DOWN #define ROCKBLOX_ROTATE_CW BUTTON_DOWN
#define ROCKBLOX_DOWN BUTTON_REW #define ROCKBLOX_DOWN BUTTON_REW
#define ROCKBLOX_LEFT BUTTON_LEFT #define ROCKBLOX_LEFT BUTTON_LEFT
#define ROCKBLOX_RIGHT BUTTON_RIGHT #define ROCKBLOX_RIGHT BUTTON_RIGHT
#define ROCKBLOX_DROP BUTTON_PLAY #define ROCKBLOX_DROP BUTTON_PLAY
#define ROCKBLOX_RESTART BUTTON_FFWD
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define ROCKBLOX_OFF BUTTON_REW
#define ROCKBLOX_ROTATE_CCW BUTTON_UP
#define ROCKBLOX_ROTATE_CW BUTTON_DOWN
#define ROCKBLOX_DOWN BUTTON_FFWD
#define ROCKBLOX_LEFT BUTTON_LEFT
#define ROCKBLOX_RIGHT BUTTON_RIGHT
#define ROCKBLOX_DROP BUTTON_PLAY
#define ROCKBLOX_RESTART BUTTON_REC
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD

View file

@ -285,8 +285,17 @@ static void setoptions (void)
#elif CONFIG_KEYPAD == ONDAVX777_PAD #elif CONFIG_KEYPAD == ONDAVX777_PAD
options.MENU = BUTTON_POWER; options.MENU = BUTTON_POWER;
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) options.UP = BUTTON_UP;
options.DOWN = BUTTON_DOWN;
options.A = BUTTON_PLAY;
options.B = BUTTON_FFWD;
options.START = BUTTON_REW;
options.SELECT = BUTTON_NONE;
options.MENU = BUTTON_REC_SW_ON;
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
options.UP = BUTTON_UP; options.UP = BUTTON_UP;
options.DOWN = BUTTON_DOWN; options.DOWN = BUTTON_DOWN;

View file

@ -199,13 +199,23 @@
#elif CONFIG_KEYPAD == MROBE500_PAD #elif CONFIG_KEYPAD == MROBE500_PAD
#define ROCKPAINT_QUIT BUTTON_POWER #define ROCKPAINT_QUIT BUTTON_POWER
#elif ( CONFIG_KEYPAD == SAMSUNG_YH820_PAD ) || \ #elif ( CONFIG_KEYPAD == SAMSUNG_YH920_PAD )
( CONFIG_KEYPAD == SAMSUNG_YH920_PAD ) #define ROCKPAINT_QUIT ( BUTTON_REW | BUTTON_REPEAT )
#define ROCKPAINT_QUIT BUTTON_REC
#define ROCKPAINT_DRAW BUTTON_PLAY #define ROCKPAINT_DRAW BUTTON_PLAY
#define ROCKPAINT_MENU BUTTON_FFWD #define ROCKPAINT_MENU ( BUTTON_REW | BUTTON_REL )
#define ROCKPAINT_TOOLBAR BUTTON_REW #define ROCKPAINT_TOOLBAR BUTTON_FFWD
#define ROCKPAINT_TOOLBAR2 ( BUTTON_REW | BUTTON_LEFT ) #define ROCKPAINT_TOOLBAR2 ( BUTTON_FFWD | BUTTON_LEFT )
#define ROCKPAINT_UP BUTTON_UP
#define ROCKPAINT_DOWN BUTTON_DOWN
#define ROCKPAINT_LEFT BUTTON_LEFT
#define ROCKPAINT_RIGHT BUTTON_RIGHT
#elif ( CONFIG_KEYPAD == SAMSUNG_YH820_PAD )
#define ROCKPAINT_QUIT ( BUTTON_REW | BUTTON_REPEAT )
#define ROCKPAINT_DRAW BUTTON_PLAY
#define ROCKPAINT_MENU ( BUTTON_REW | BUTTON_REL )
#define ROCKPAINT_TOOLBAR BUTTON_FFWD
#define ROCKPAINT_TOOLBAR2 BUTTON_REC
#define ROCKPAINT_UP BUTTON_UP #define ROCKPAINT_UP BUTTON_UP
#define ROCKPAINT_DOWN BUTTON_DOWN #define ROCKPAINT_DOWN BUTTON_DOWN
#define ROCKPAINT_LEFT BUTTON_LEFT #define ROCKPAINT_LEFT BUTTON_LEFT

View file

@ -221,12 +221,12 @@ CONFIG_KEYPAD == MROBE500_PAD
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define PUZZLE_QUIT BUTTON_REC #define PUZZLE_QUIT BUTTON_REW
#define PUZZLE_LEFT BUTTON_LEFT #define PUZZLE_LEFT BUTTON_LEFT
#define PUZZLE_RIGHT BUTTON_RIGHT #define PUZZLE_RIGHT BUTTON_RIGHT
#define PUZZLE_UP BUTTON_UP #define PUZZLE_UP BUTTON_UP
#define PUZZLE_DOWN BUTTON_DOWN #define PUZZLE_DOWN BUTTON_DOWN
#define PUZZLE_SHUFFLE BUTTON_REW #define PUZZLE_SHUFFLE BUTTON_FFWD
#define PUZZLE_PICTURE BUTTON_PLAY #define PUZZLE_PICTURE BUTTON_PLAY
#elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD) #elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD)

View file

@ -192,7 +192,7 @@ dir is the current direction of the snake - 0=up, 1=right, 2=down, 3=left;
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define SNAKE_QUIT BUTTON_REC #define SNAKE_QUIT BUTTON_REW
#define SNAKE_LEFT BUTTON_LEFT #define SNAKE_LEFT BUTTON_LEFT
#define SNAKE_RIGHT BUTTON_RIGHT #define SNAKE_RIGHT BUTTON_RIGHT
#define SNAKE_UP BUTTON_UP #define SNAKE_UP BUTTON_UP

View file

@ -328,7 +328,7 @@ CONFIG_KEYPAD == MROBE500_PAD
#define SNAKE2_RIGHT BUTTON_RIGHT #define SNAKE2_RIGHT BUTTON_RIGHT
#define SNAKE2_UP BUTTON_UP #define SNAKE2_UP BUTTON_UP
#define SNAKE2_DOWN BUTTON_DOWN #define SNAKE2_DOWN BUTTON_DOWN
#define SNAKE2_QUIT BUTTON_REC #define SNAKE2_QUIT BUTTON_REW
#define SNAKE2_PLAYPAUSE BUTTON_PLAY #define SNAKE2_PLAYPAUSE BUTTON_PLAY
#define SNAKE2_PLAYPAUSE_TEXT "Play" #define SNAKE2_PLAYPAUSE_TEXT "Play"

View file

@ -474,19 +474,34 @@
#define SOKOBAN_MENU BUTTON_POWER #define SOKOBAN_MENU BUTTON_POWER
#define SOKOBAN_MENU_NAME "[POWER]" #define SOKOBAN_MENU_NAME "[POWER]"
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define SOKOBAN_LEFT BUTTON_LEFT #define SOKOBAN_LEFT BUTTON_LEFT
#define SOKOBAN_RIGHT BUTTON_RIGHT #define SOKOBAN_RIGHT BUTTON_RIGHT
#define SOKOBAN_UP BUTTON_UP #define SOKOBAN_UP BUTTON_UP
#define SOKOBAN_DOWN BUTTON_DOWN #define SOKOBAN_DOWN BUTTON_DOWN
#define SOKOBAN_MENU BUTTON_REC #define SOKOBAN_MENU BUTTON_PLAY
#define SOKOBAN_UNDO BUTTON_REW
#define SOKOBAN_REDO BUTTON_FFWD
#define SOKOBAN_LEVEL_DOWN (BUTTON_REC | BUTTON_DOWN)
#define SOKOBAN_LEVEL_REPEAT (BUTTON_REC | BUTTON_RIGHT)
#define SOKOBAN_LEVEL_UP (BUTTON_REC | BUTTON_UP)
#define SOKOBAN_QUIT_REPLAY BUTTON_REW
#define SOKOBAN_PAUSE BUTTON_PLAY
#define BUTTON_SAVE BUTTON_PLAY
#define BUTTON_SAVE_NAME "PLAY"
#elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
#define SOKOBAN_LEFT BUTTON_LEFT
#define SOKOBAN_RIGHT BUTTON_RIGHT
#define SOKOBAN_UP BUTTON_UP
#define SOKOBAN_DOWN BUTTON_DOWN
#define SOKOBAN_MENU BUTTON_PLAY
#define SOKOBAN_UNDO BUTTON_REW #define SOKOBAN_UNDO BUTTON_REW
#define SOKOBAN_UNDO_PRE (BUTTON_REW | BUTTON_LEFT)
#define SOKOBAN_REDO BUTTON_FFWD #define SOKOBAN_REDO BUTTON_FFWD
#define SOKOBAN_LEVEL_DOWN (BUTTON_PLAY | BUTTON_DOWN) #define SOKOBAN_LEVEL_DOWN (BUTTON_PLAY | BUTTON_DOWN)
#define SOKOBAN_LEVEL_REPEAT (BUTTON_PLAY | BUTTON_RIGHT) #define SOKOBAN_LEVEL_REPEAT (BUTTON_PLAY | BUTTON_RIGHT)
#define SOKOBAN_LEVEL_UP (BUTTON_PLAY | BUTTON_UP) #define SOKOBAN_LEVEL_UP (BUTTON_PLAY | BUTTON_UP)
#define SOKOBAN_QUIT_REPLAY BUTTON_REW
#define SOKOBAN_PAUSE BUTTON_PLAY #define SOKOBAN_PAUSE BUTTON_PLAY
#define BUTTON_SAVE BUTTON_PLAY #define BUTTON_SAVE BUTTON_PLAY
#define BUTTON_SAVE_NAME "PLAY" #define BUTTON_SAVE_NAME "PLAY"
@ -662,6 +677,10 @@
#endif #endif
#endif #endif
#ifndef SOKOBAN_QUIT_REPLAY
#define SOKOBAN_QUIT_REPLAY SOKOBAN_MENU
#endif
#define SOKOBAN_FONT FONT_SYSFIXED #define SOKOBAN_FONT FONT_SYSFIXED
@ -1413,7 +1432,7 @@ static bool load(char *filename, bool silent)
while ((button = rb->button_get(false)) || paused) { while ((button = rb->button_get(false)) || paused) {
switch (button) { switch (button) {
case SOKOBAN_MENU: case SOKOBAN_QUIT_REPLAY:
/* Pretend the level is complete so we'll quit */ /* Pretend the level is complete so we'll quit */
current_info.level.boxes_to_go = 0; current_info.level.boxes_to_go = 0;
return true; return true;
@ -1602,6 +1621,20 @@ static int sokoban_menu(void)
rb->lcd_putsxy(3, 36, "[VOL-] Previous Level"); rb->lcd_putsxy(3, 36, "[VOL-] Previous Level");
rb->lcd_putsxy(3, 46, "[NEXT+PREV] Restart Level"); rb->lcd_putsxy(3, 46, "[NEXT+PREV] Restart Level");
rb->lcd_putsxy(3, 56, "[VOL+] Next Level"); rb->lcd_putsxy(3, 56, "[VOL+] Next Level");
#elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
rb->lcd_putsxy(3, 6, "[PLAY] Menu");
rb->lcd_putsxy(3, 16, "[REW] Undo");
rb->lcd_putsxy(3, 26, "[FFWD] Redo");
rb->lcd_putsxy(3, 36, "[PLAY+DOWN] Previous Level");
rb->lcd_putsxy(3, 46, "[PLAY+RIGHT] Restart Level");
rb->lcd_putsxy(3, 56, "[PLAY+UP] Next Level");
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
rb->lcd_putsxy(3, 6, "[PLAY] Menu");
rb->lcd_putsxy(3, 16, "[REW] Undo");
rb->lcd_putsxy(3, 26, "[FFWD] Redo");
rb->lcd_putsxy(3, 36, "[REC+DOWN] Prev. Lvl");
rb->lcd_putsxy(3, 46, "[REC+RIGHT] Rest. Lvl");
rb->lcd_putsxy(3, 56, "[REC+UP] Next Level");
#endif #endif
#ifdef HAVE_TOUCHSCREEN #ifdef HAVE_TOUCHSCREEN

View file

@ -452,23 +452,40 @@
CONFIG_KEYPAD == MROBE500_PAD CONFIG_KEYPAD == MROBE500_PAD
# define SOL_QUIT BUTTON_POWER # define SOL_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) # define SOL_QUIT BUTTON_REW
# define SOL_QUIT BUTTON_REC
# define SOL_UP BUTTON_UP # define SOL_UP BUTTON_UP
# define SOL_DOWN BUTTON_DOWN # define SOL_DOWN BUTTON_DOWN
# define SOL_LEFT BUTTON_LEFT # define SOL_LEFT BUTTON_LEFT
# define SOL_RIGHT BUTTON_RIGHT # define SOL_RIGHT BUTTON_RIGHT
# define SOL_MOVE BUTTON_PLAY # define SOL_MOVE BUTTON_PLAY
# define SOL_DRAW BUTTON_FFWD # define SOL_DRAW BUTTON_FFWD
# define SOL_REM2CUR (BUTTON_FFWD | BUTTON_LEFT) # define SOL_REM2CUR (BUTTON_REC | BUTTON_DOWN)
# define SOL_CUR2STACK BUTTON_REW # define SOL_CUR2STACK (BUTTON_REC | BUTTON_UP)
# define SOL_REM2STACK (BUTTON_REW | BUTTON_LEFT) # define SOL_REM2STACK (BUTTON_REC | BUTTON_RIGHT)
# define HK_MOVE "PLAY" # define HK_MOVE "PLAY"
# define HK_DRAW "REW.." # define HK_DRAW "FFWD"
# define HK_REM2CUR "FFWD" # define HK_REM2CUR "REC+DOWN"
# define HK_CUR2STACK "REW" # define HK_CUR2STACK "REC+UP"
# define HK_REM2STACK "FFWD.." # define HK_REM2STACK "REC+RIGHT"
#elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
# define SOL_QUIT BUTTON_REW
# define SOL_UP BUTTON_UP
# define SOL_DOWN BUTTON_DOWN
# define SOL_LEFT BUTTON_LEFT
# define SOL_RIGHT BUTTON_RIGHT
# define SOL_MOVE_PRE BUTTON_PLAY
# define SOL_MOVE (BUTTON_PLAY | BUTTON_REL)
# define SOL_DRAW BUTTON_FFWD
# define SOL_REM2CUR (BUTTON_PLAY | BUTTON_DOWN)
# define SOL_CUR2STACK (BUTTON_PLAY | BUTTON_UP)
# define SOL_REM2STACK (BUTTON_PLAY | BUTTON_RIGHT)
# define HK_MOVE "PLAY"
# define HK_DRAW "FFWD"
# define HK_REM2CUR "PLAY+DOWN"
# define HK_CUR2STACK "PLAY+UP"
# define HK_REM2STACK "PLAY+RIGHT"
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
# define SOL_QUIT BUTTON_REC # define SOL_QUIT BUTTON_REC

View file

@ -231,8 +231,9 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define AST_PAUSE BUTTON_FFWD #define AST_PAUSE BUTTON_FFWD
#define AST_QUIT BUTTON_REC #define AST_QUIT BUTTON_REW
#define AST_THRUST BUTTON_UP #define AST_THRUST BUTTON_UP
#define AST_HYPERSPACE BUTTON_DOWN #define AST_HYPERSPACE BUTTON_DOWN
#define AST_LEFT BUTTON_LEFT #define AST_LEFT BUTTON_LEFT
@ -240,6 +241,7 @@
#define AST_FIRE BUTTON_PLAY #define AST_FIRE BUTTON_PLAY
#elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD) #elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD)
#define AST_PAUSE BUTTON_PLAY #define AST_PAUSE BUTTON_PLAY
#define AST_QUIT BUTTON_REC #define AST_QUIT BUTTON_REC
#define AST_THRUST BUTTON_UP #define AST_THRUST BUTTON_UP

View file

@ -391,23 +391,41 @@
#define STAR_QUIT BUTTON_POWER #define STAR_QUIT BUTTON_POWER
#define STAR_QUIT_NAME "POWER" #define STAR_QUIT_NAME "POWER"
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define STAR_QUIT BUTTON_REC #define STAR_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define STAR_LEFT BUTTON_LEFT #define STAR_LEFT BUTTON_LEFT
#define STAR_RIGHT BUTTON_RIGHT #define STAR_RIGHT BUTTON_RIGHT
#define STAR_UP BUTTON_UP #define STAR_UP BUTTON_UP
#define STAR_DOWN BUTTON_DOWN #define STAR_DOWN BUTTON_DOWN
#define STAR_LEVEL_UP BUTTON_FFWD #define STAR_LEVEL_UP (BUTTON_REC|BUTTON_UP)
#define STAR_LEVEL_DOWN BUTTON_REW #define STAR_LEVEL_DOWN (BUTTON_REC|BUTTON_DOWN)
#define STAR_TOGGLE_CONTROL BUTTON_PLAY #define STAR_TOGGLE_CONTROL BUTTON_PLAY
#define STAR_LEVEL_REPEAT (BUTTON_REW|BUTTON_FFWD) #define STAR_LEVEL_REPEAT_PRE BUTTON_FFWD
#define STAR_LEVEL_REPEAT (BUTTON_FFWD|BUTTON_REPEAT)
#define STAR_TOGGLE_CONTROL_NAME "PLAY" #define STAR_TOGGLE_CONTROL_NAME "PLAY"
#define STAR_QUIT_NAME "REC" #define STAR_QUIT_NAME "LONG REW"
#define STAR_LEVEL_UP_NAME "FF" #define STAR_LEVEL_UP_NAME "REC+UP"
#define STAR_LEVEL_DOWN_NAME "REW" #define STAR_LEVEL_DOWN_NAME "REC+DOWN"
#define STAR_LEVEL_REPEAT_NAME "REW+FF" #define STAR_LEVEL_REPEAT_NAME "LONG FFWD"
#elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
#define STAR_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define STAR_LEFT BUTTON_LEFT
#define STAR_RIGHT BUTTON_RIGHT
#define STAR_UP BUTTON_UP
#define STAR_DOWN BUTTON_DOWN
#define STAR_LEVEL_UP (BUTTON_FFWD|BUTTON_UP)
#define STAR_LEVEL_DOWN (BUTTON_FFWD|BUTTON_DOWN)
#define STAR_TOGGLE_CONTROL (BUTTON_PLAY|BUTTON_REL)
#define STAR_LEVEL_REPEAT_PRE (BUTTON_FFWD|BUTTON_REPEAT)
#define STAR_LEVEL_REPEAT (BUTTON_FFWD|BUTTON_REL)
#define STAR_TOGGLE_CONTROL_NAME "PLAY"
#define STAR_QUIT_NAME "LONG REW"
#define STAR_LEVEL_UP_NAME "FFWD+UP"
#define STAR_LEVEL_DOWN_NAME "FFWD+DOWN"
#define STAR_LEVEL_REPEAT_NAME "LONG FFWD"
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD

View file

@ -225,7 +225,7 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define STOPWATCH_QUIT BUTTON_REC #define STOPWATCH_QUIT BUTTON_REW
#define STOPWATCH_START_STOP BUTTON_PLAY #define STOPWATCH_START_STOP BUTTON_PLAY
#define STOPWATCH_RESET_TIMER BUTTON_LEFT #define STOPWATCH_RESET_TIMER BUTTON_LEFT
#define STOPWATCH_LAP_TIMER BUTTON_RIGHT #define STOPWATCH_LAP_TIMER BUTTON_RIGHT

View file

@ -282,16 +282,25 @@
#elif (CONFIG_KEYPAD == ONDAVX777_PAD) #elif (CONFIG_KEYPAD == ONDAVX777_PAD)
#define SUDOKU_BUTTON_QUIT BUTTON_POWER #define SUDOKU_BUTTON_QUIT BUTTON_POWER
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define SUDOKU_BUTTON_QUIT BUTTON_REC
#define SUDOKU_BUTTON_UP BUTTON_UP #define SUDOKU_BUTTON_UP BUTTON_UP
#define SUDOKU_BUTTON_DOWN BUTTON_DOWN #define SUDOKU_BUTTON_DOWN BUTTON_DOWN
#define SUDOKU_BUTTON_LEFT BUTTON_LEFT #define SUDOKU_BUTTON_LEFT BUTTON_LEFT
#define SUDOKU_BUTTON_RIGHT BUTTON_RIGHT #define SUDOKU_BUTTON_RIGHT BUTTON_RIGHT
#define SUDOKU_BUTTON_TOGGLE BUTTON_FFWD #define SUDOKU_BUTTON_TOGGLE BUTTON_FFWD
#define SUDOKU_BUTTON_MENU BUTTON_PLAY #define SUDOKU_BUTTON_TOGGLEBACK BUTTON_REW
#define SUDOKU_BUTTON_POSSIBLE BUTTON_REW #define SUDOKU_BUTTON_MENU (BUTTON_PLAY|BUTTON_REPEAT)
#define SUDOKU_BUTTON_POSSIBLE (BUTTON_PLAY|BUTTON_REL)
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD)
#define SUDOKU_BUTTON_UP BUTTON_UP
#define SUDOKU_BUTTON_DOWN BUTTON_DOWN
#define SUDOKU_BUTTON_LEFT BUTTON_LEFT
#define SUDOKU_BUTTON_RIGHT BUTTON_RIGHT
#define SUDOKU_BUTTON_TOGGLE BUTTON_FFWD
#define SUDOKU_BUTTON_TOGGLEBACK BUTTON_REW
#define SUDOKU_BUTTON_MENU BUTTON_REC
#define SUDOKU_BUTTON_POSSIBLE BUTTON_PLAY
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
#define SUDOKU_BUTTON_QUIT BUTTON_REC #define SUDOKU_BUTTON_QUIT BUTTON_REC

View file

@ -97,6 +97,10 @@ enum plugin_status plugin_start(const void* file)
#ifdef TV_AUTOSCROLL_PRE #ifdef TV_AUTOSCROLL_PRE
if (lastbutton != TV_AUTOSCROLL_PRE) if (lastbutton != TV_AUTOSCROLL_PRE)
break; break;
#endif
#ifdef TV_AUTOSCROLL2
/* fallthrough */
case TV_AUTOSCROLL2:
#endif #endif
autoscroll = !autoscroll; autoscroll = !autoscroll;
break; break;

View file

@ -380,17 +380,36 @@
#define TV_QUIT BUTTON_POWER #define TV_QUIT BUTTON_POWER
#define TV_BOOKMARK (BUTTON_RIGHT|BUTTON_POWER) #define TV_BOOKMARK (BUTTON_RIGHT|BUTTON_POWER)
/* SAMSUNG YH-820 / YH-920 / YH-925 keys */ /* SAMSUNG YH-920 / YH-925 keys */
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif CONFIG_KEYPAD == SAMSUNG_YH920_PAD
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) #define TV_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define TV_QUIT BUTTON_REC
#define TV_SCROLL_UP BUTTON_UP #define TV_SCROLL_UP BUTTON_UP
#define TV_SCROLL_DOWN BUTTON_DOWN #define TV_SCROLL_DOWN BUTTON_DOWN
#define TV_SCREEN_LEFT BUTTON_LEFT #define TV_SCREEN_LEFT BUTTON_LEFT
#define TV_SCREEN_RIGHT BUTTON_RIGHT #define TV_SCREEN_RIGHT BUTTON_RIGHT
#define TV_MENU BUTTON_PLAY #define TV_MENU BUTTON_REW
#define TV_AUTOSCROLL BUTTON_REW #define TV_AUTOSCROLL BUTTON_REC_SW_ON
#define TV_BOOKMARK BUTTON_FFWD #define TV_AUTOSCROLL2 BUTTON_REC_SW_OFF
#define TV_BOOKMARK BUTTON_PLAY
#define TV_LINE_UP (BUTTON_FFWD|BUTTON_UP)
#define TV_LINE_DOWN (BUTTON_FFWD|BUTTON_DOWN)
#define TV_COLUMN_LEFT (BUTTON_FFWD|BUTTON_LEFT)
#define TV_COLUMN_RIGHT (BUTTON_FFWD|BUTTON_RIGHT)
/* SAMSUNG YH-820 keys */
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD
#define TV_QUIT (BUTTON_REW|BUTTON_REPEAT)
#define TV_SCROLL_UP BUTTON_UP
#define TV_SCROLL_DOWN BUTTON_DOWN
#define TV_SCREEN_LEFT BUTTON_LEFT
#define TV_SCREEN_RIGHT BUTTON_RIGHT
#define TV_MENU BUTTON_REW
#define TV_AUTOSCROLL BUTTON_FFWD
#define TV_BOOKMARK BUTTON_PLAY
#define TV_LINE_UP (BUTTON_REC|BUTTON_UP)
#define TV_LINE_DOWN (BUTTON_REC|BUTTON_DOWN)
#define TV_COLUMN_LEFT (BUTTON_REC|BUTTON_LEFT)
#define TV_COLUMN_RIGHT (BUTTON_REC|BUTTON_RIGHT)
/* Packard Bell Vibe 500 keys */ /* Packard Bell Vibe 500 keys */
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD

View file

@ -285,13 +285,13 @@
#elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \ #elif (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) || \
(CONFIG_KEYPAD == SAMSUNG_YH920_PAD) (CONFIG_KEYPAD == SAMSUNG_YH920_PAD)
#define VUMETER_QUIT BUTTON_REC #define VUMETER_QUIT BUTTON_REW
#define VUMETER_HELP BUTTON_PLAY #define VUMETER_HELP BUTTON_PLAY
#define VUMETER_MENU BUTTON_REW #define VUMETER_MENU BUTTON_LEFT
#define VUMETER_UP BUTTON_UP #define VUMETER_UP BUTTON_UP
#define VUMETER_DOWN BUTTON_DOWN #define VUMETER_DOWN BUTTON_DOWN
#define LABEL_HELP "PLAY" #define LABEL_HELP "PLAY"
#define LABEL_QUIT "REC" #define LABEL_QUIT "REW"
#define LABEL_MENU "LEFT" #define LABEL_MENU "LEFT"
#define LABEL_VOLUME "UP/DOWN" #define LABEL_VOLUME "UP/DOWN"

View file

@ -279,8 +279,8 @@ CONFIG_KEYPAD == MROBE500_PAD
#define BTN_DIR_LEFT BUTTON_LEFT #define BTN_DIR_LEFT BUTTON_LEFT
#define BTN_DIR_RIGHT BUTTON_RIGHT #define BTN_DIR_RIGHT BUTTON_RIGHT
#define BTN_STARTPAUSE BUTTON_PLAY #define BTN_STARTPAUSE BUTTON_PLAY
#define BTN_QUIT BUTTON_REC #define BTN_QUIT BUTTON_REW
#define BTN_STOPRESET BUTTON_REW #define BTN_STOPRESET BUTTON_FFWD
#elif CONFIG_KEYPAD == PBELL_VIBE500_PAD #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD

View file

@ -235,7 +235,7 @@ CONFIG_KEYPAD == MROBE500_PAD
#elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD || \ #elif CONFIG_KEYPAD == SAMSUNG_YH820_PAD || \
CONFIG_KEYPAD == SAMSUNG_YH920_PAD CONFIG_KEYPAD == SAMSUNG_YH920_PAD
#define QUIT BUTTON_REC #define QUIT BUTTON_REW
#define LEFT BUTTON_LEFT #define LEFT BUTTON_LEFT
#define RIGHT BUTTON_RIGHT #define RIGHT BUTTON_RIGHT
#define UP BUTTON_UP #define UP BUTTON_UP

View file

@ -39,9 +39,22 @@ void remote_int(void);
#define BUTTON_PLAY 0x00000010 #define BUTTON_PLAY 0x00000010
#define BUTTON_REW 0x00000020 #define BUTTON_REW 0x00000020
#define BUTTON_FFWD 0x00000040 #define BUTTON_FFWD 0x00000040
#if defined(SAMSUNG_YH820) /* YH820 has record button */
#define BUTTON_REC 0x00000080 #define BUTTON_REC 0x00000080
#else /* virtual buttons for record switch state change on YH92x */
#define BUTTON_REC_SW_ON 0x00000080
#define BUTTON_REC_SW_OFF 0x00000100
/* TODO: most of the plugin keymaps rely on the REC button,
so I kept the following line to prevent compile errors.
This line has to be removed as soon as all plugin keymaps are fixed! */
#define BUTTON_REC 0x00000200
#endif
#if defined(SAMSUNG_YH820)
#define BUTTON_MAIN 0x000000ff #define BUTTON_MAIN 0x000000ff
#else
#define BUTTON_MAIN 0x000001ff
#endif
#define BUTTON_RC_PLUS BUTTON_UP #define BUTTON_RC_PLUS BUTTON_UP
#define BUTTON_RC_MINUS BUTTON_DOWN #define BUTTON_RC_MINUS BUTTON_DOWN

View file

@ -20,12 +20,15 @@
****************************************************************************/ ****************************************************************************/
#include "system.h" #include "system.h"
#include "kernel.h"
#include "button.h" #include "button.h"
#include "backlight.h" #include "backlight.h"
#if defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925) #if defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925)
#include "powermgmt.h"
#include "adc.h" #include "adc.h"
static int int_btn = BUTTON_NONE; static int int_btn = BUTTON_NONE;
static unsigned int rec_switch;
void button_init_device(void) void button_init_device(void)
{ {
@ -44,6 +47,9 @@ void button_init_device(void)
/* remote PLAY */ /* remote PLAY */
GPIOD_ENABLE |= 0x02; GPIOD_ENABLE |= 0x02;
GPIOD_OUTPUT_EN &= ~0x02; GPIOD_OUTPUT_EN &= ~0x02;
/* current record switch state */
rec_switch = ~GPIOA_INPUT_VAL & 0x40;
} }
/* Remote buttons */ /* Remote buttons */
@ -117,7 +123,24 @@ int button_read_device(void)
if (~GPIOA_INPUT_VAL & 0x08) btn |= BUTTON_DOWN; if (~GPIOA_INPUT_VAL & 0x08) btn |= BUTTON_DOWN;
if (~GPIOA_INPUT_VAL & 0x02) btn |= BUTTON_FFWD; if (~GPIOA_INPUT_VAL & 0x02) btn |= BUTTON_FFWD;
if (~GPIOA_INPUT_VAL & 0x80) btn |= BUTTON_REW; if (~GPIOA_INPUT_VAL & 0x80) btn |= BUTTON_REW;
#if defined(SAMSUNG_YH820)
if (~GPIOA_INPUT_VAL & 0x40) btn |= BUTTON_REC; if (~GPIOA_INPUT_VAL & 0x40) btn |= BUTTON_REC;
#else
if ((~GPIOA_INPUT_VAL & 0x40) != rec_switch)
{
if (rec_switch) {
queue_post(&button_queue,BUTTON_REC_SW_OFF,0);
queue_post(&button_queue,BUTTON_REC_SW_OFF|BUTTON_REL,0);
}
else {
queue_post(&button_queue,BUTTON_REC_SW_ON,0);
queue_post(&button_queue,BUTTON_REC_SW_ON|BUTTON_REL,0);
}
rec_switch = ~GPIOA_INPUT_VAL & 0x40;
backlight_on();
reset_poweroff_timer();
}
#endif
#if defined(SAMSUNG_YH820) #if defined(SAMSUNG_YH820)
if ( GPIOB_INPUT_VAL & 0x80) btn |= BUTTON_PLAY; if ( GPIOB_INPUT_VAL & 0x80) btn |= BUTTON_PLAY;
#elif defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925) #elif defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925)

View file

@ -502,7 +502,7 @@ change to customise your listening experience.
\opt{GIGABEAT_PAD,GIGABEAT_S_PAD,SANSA_C200_PAD,MROBE100_PAD,SANSA_CLIP_PAD}{\ButtonPower} \opt{GIGABEAT_PAD,GIGABEAT_S_PAD,SANSA_C200_PAD,MROBE100_PAD,SANSA_CLIP_PAD}{\ButtonPower}
\opt{PBELL_VIBE500_PAD}{\ButtonCancel} \opt{PBELL_VIBE500_PAD}{\ButtonCancel}
\opt{SANSA_FUZEPLUS_PAD}{\ButtonBack} \opt{SANSA_FUZEPLUS_PAD}{\ButtonBack}
\opt{SAMSUNG_YH92X_PAD,SAMSUNG_YH820_PAD}{\ButtonRew} \opt{SAMSUNG_YH92X_PAD,SAMSUNG_YH820_PAD}{\ButtonPlay}
\opt{touchscreen}{\TouchTopLeft \opt{touchscreen}{\TouchTopLeft
\opt{COWON_D2_PAD}{/ \ButtonPower}} \opt{COWON_D2_PAD}{/ \ButtonPower}}
& &

View file

@ -20,7 +20,7 @@
\newcommand{\ActionStdMenu}{Long \ButtonLeft{}+Long \ButtonUp} \newcommand{\ActionStdMenu}{Long \ButtonLeft{}+Long \ButtonUp}
\newcommand{\ActionStdContext}{Long \ButtonRight} \newcommand{\ActionStdContext}{Long \ButtonRight}
\newcommand{\ActionStdQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown} \newcommand{\ActionStdQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown}
\newcommand{\ActionQuickScreenExit}{\ButtonPlay{} or \ButtonFF} \newcommand{\ActionQuickScreenExit}{\ButtonPlay{} or \ButtonRew}
\newcommand{\ActionStdRec}{Long \ButtonRec} \newcommand{\ActionStdRec}{Long \ButtonRec}
%a button without harmful side effects for USB charging %a button without harmful side effects for USB charging
\newcommand{\ActionStdUsbCharge}{\ButtonRew} \newcommand{\ActionStdUsbCharge}{\ButtonRew}
@ -40,9 +40,9 @@
\newcommand{\ActionWpsPlaylist}{Long \ButtonLeft} \newcommand{\ActionWpsPlaylist}{Long \ButtonLeft}
\newcommand{\ActionWpsMenu}{\ButtonLeft} \newcommand{\ActionWpsMenu}{\ButtonLeft}
\newcommand{\ActionWpsQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown} \newcommand{\ActionWpsQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown}
\newcommand{\ActionWpsAbSetBNextDir}{\ButtonPlay{} + \ButtonRight} \newcommand{\ActionWpsAbSetBNextDir}{\ButtonRec{}+\ButtonFF}
\newcommand{\ActionWpsAbSetAPrevDir}{\ButtonPlay{} + \ButtonLeft} \newcommand{\ActionWpsAbSetAPrevDir}{\ButtonRec{}+\ButtonRew}
\newcommand{\ActionWpsAbReset}{\ButtonPlay{} + \ButtonUp} \newcommand{\ActionWpsAbReset}{\ButtonRec{}+\ButtonPlay}
%Button actions, tree context %Button actions, tree context
\newcommand{\ActionTreeWps}{\ButtonPlay} \newcommand{\ActionTreeWps}{\ButtonPlay}
@ -52,7 +52,7 @@
\newcommand{\ActionTreeHotkey}{\ButtonRec} \newcommand{\ActionTreeHotkey}{\ButtonRec}
%Button actions, YesNo context %Button actions, YesNo context
\newcommand{\ActionYesNoAccept}{\ButtonRight} \newcommand{\ActionYesNoAccept}{\ButtonPlay}
%Button actions, Setting context %Button actions, Setting context
\newcommand{\ActionSettingInc}{\ButtonUp} \newcommand{\ActionSettingInc}{\ButtonUp}
@ -68,14 +68,14 @@
\newcommand{\ActionKbdLeft}{\ButtonLeft} \newcommand{\ActionKbdLeft}{\ButtonLeft}
\newcommand{\ActionKbdRight}{\ButtonRight} \newcommand{\ActionKbdRight}{\ButtonRight}
\newcommand{\ActionKbdSelect}{\ButtonPlay} \newcommand{\ActionKbdSelect}{\ButtonPlay}
\newcommand{\ActionKbdDone}{\ButtonFF} \newcommand{\ActionKbdDone}{Long \ButtonFF}
\newcommand{\ActionKbdAbort}{\ButtonFF{}+\ButtonRew{} or \ButtonRec} \newcommand{\ActionKbdAbort}{Long \ButtonRew}
\newcommand{\ActionKbdUp}{\ButtonUp} \newcommand{\ActionKbdUp}{\ButtonUp}
\newcommand{\ActionKbdDown}{\ButtonDown} \newcommand{\ActionKbdDown}{\ButtonDown}
\newcommand{\ActionKbdCursorLeft}{\ButtonFF{}+\ButtonLeft} \newcommand{\ActionKbdCursorLeft}{\ButtonRec{}+\ButtonLeft}
\newcommand{\ActionKbdCursorRight}{\ButtonFF{}+\ButtonRight} \newcommand{\ActionKbdCursorRight}{\ButtonRec{}+\ButtonRight}
\newcommand{\ActionKbdBackSpace}{\ButtonRew} \newcommand{\ActionKbdBackSpace}{\ButtonRew{} or \ButtonRec{}+\ButtonRew}
\newcommand{\ActionKbdMorseInput}{Long \ButtonFF} \newcommand{\ActionKbdMorseInput}{\ButtonRec{}+\ButtonFF}
\newcommand{\ActionKbdMorseSelect}{\ButtonPlay} \newcommand{\ActionKbdMorseSelect}{\ButtonPlay}
%Button actions, Pitch Screen context %Button actions, Pitch Screen context
@ -91,9 +91,9 @@
%Button actions, Recording screen context %Button actions, Recording screen context
\newcommand{\ActionRecNewfile}{\ButtonFF} \newcommand{\ActionRecNewfile}{\ButtonFF}
\newcommand{\ActionRecMenu}{\ButtonRew} \newcommand{\ActionRecMenu}{Long \ButtonRew}
\newcommand{\ActionRecPause}{\ButtonPlay} \newcommand{\ActionRecPause}{\ButtonPlay}
\newcommand{\ActionRecExit}{Long \ButtonRew{} or \ButtonRec} \newcommand{\ActionRecExit}{\ButtonRew{} or \ButtonRec}
\newcommand{\ActionRecSettingsInc}{\ButtonRight} \newcommand{\ActionRecSettingsInc}{\ButtonRight}
\newcommand{\ActionRecSettingsDec}{\ButtonLeft} \newcommand{\ActionRecSettingsDec}{\ButtonLeft}
\newcommand{\ActionRecPrev}{\ButtonUp} \newcommand{\ActionRecPrev}{\ButtonUp}

View file

@ -7,7 +7,10 @@
\newcommand{\ButtonDown}{\btnfnt{Down}} \newcommand{\ButtonDown}{\btnfnt{Down}}
\newcommand{\ButtonRew}{\btnfnt{Rewind}} \newcommand{\ButtonRew}{\btnfnt{Rewind}}
\newcommand{\ButtonFF}{\btnfnt{Forward}} \newcommand{\ButtonFF}{\btnfnt{Forward}}
% this is still needed for the QuickStart/Player's Controls section
\newcommand{\ButtonRec}{\btnfnt{Rec}} \newcommand{\ButtonRec}{\btnfnt{Rec}}
\newcommand{\ButtonRecOn}{\btnfnt{\btnfnt{Rec}$\rightarrow$on}}
\newcommand{\ButtonRecOff}{\btnfnt{\btnfnt{Rec}$\rightarrow$off}}
\newcommand{\ButtonHold}{\btnfnt{Hold}} \newcommand{\ButtonHold}{\btnfnt{Hold}}
%Button actions, standard context %Button actions, standard context
@ -20,8 +23,8 @@
\newcommand{\ActionStdMenu}{Long \ButtonLeft{}+Long \ButtonUp} \newcommand{\ActionStdMenu}{Long \ButtonLeft{}+Long \ButtonUp}
\newcommand{\ActionStdContext}{Long \ButtonRight} \newcommand{\ActionStdContext}{Long \ButtonRight}
\newcommand{\ActionStdQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown} \newcommand{\ActionStdQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown}
\newcommand{\ActionQuickScreenExit}{\ButtonPlay{} or \ButtonFF} \newcommand{\ActionQuickScreenExit}{\ButtonPlay{} or \ButtonRew}
\newcommand{\ActionStdRec}{Long \ButtonRec} \newcommand{\ActionStdRec}{\ButtonRecOn}
%a button without harmful side effects for USB charging %a button without harmful side effects for USB charging
\newcommand{\ActionStdUsbCharge}{\ButtonRew} \newcommand{\ActionStdUsbCharge}{\ButtonRew}
@ -36,23 +39,23 @@
\newcommand{\ActionWpsVolUp}{\ButtonUp} \newcommand{\ActionWpsVolUp}{\ButtonUp}
\newcommand{\ActionWpsBrowse}{\ButtonRight} \newcommand{\ActionWpsBrowse}{\ButtonRight}
\newcommand{\ActionWpsContext}{Long \ButtonRight} \newcommand{\ActionWpsContext}{Long \ButtonRight}
\newcommand{\ActionWpsHotkey}{\ButtonRec} \newcommand{\ActionWpsHotkey}{Long \ButtonRight{}+Long \ButtonDown}
\newcommand{\ActionWpsPlaylist}{Long \ButtonLeft} \newcommand{\ActionWpsPlaylist}{Long \ButtonLeft}
\newcommand{\ActionWpsMenu}{\ButtonLeft} \newcommand{\ActionWpsMenu}{\ButtonLeft}
\newcommand{\ActionWpsQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown} \newcommand{\ActionWpsQuickScreen}{Long \ButtonLeft{}+Long \ButtonDown}
\newcommand{\ActionWpsAbSetBNextDir}{\ButtonPlay{} + \ButtonRight} \newcommand{\ActionWpsAbSetBNextDir}{\ButtonPlay{}+\ButtonRight}
\newcommand{\ActionWpsAbSetAPrevDir}{\ButtonPlay{} + \ButtonLeft} \newcommand{\ActionWpsAbSetAPrevDir}{\ButtonPlay{}+\ButtonLeft}
\newcommand{\ActionWpsAbReset}{\ButtonPlay{} + \ButtonUp} \newcommand{\ActionWpsAbReset}{\ButtonPlay{}+\ButtonUp{} or \ButtonPlay{}+\ButtonDown}
%Button actions, tree context %Button actions, tree context
\newcommand{\ActionTreeWps}{\ButtonPlay} \newcommand{\ActionTreeWps}{\ButtonPlay}
\newcommand{\ActionTreeStop}{Long \ButtonPlay} \newcommand{\ActionTreeStop}{Long \ButtonPlay}
\newcommand{\ActionTreeEnter}{\ButtonRight} \newcommand{\ActionTreeEnter}{\ButtonRight}
\newcommand{\ActionTreeParentDirectory}{\ButtonLeft} \newcommand{\ActionTreeParentDirectory}{\ButtonLeft}
\newcommand{\ActionTreeHotkey}{\ButtonRec} \newcommand{\ActionTreeHotkey}{Long \ButtonRight{}+Long \ButtonDown}
%Button actions, YesNo context %Button actions, YesNo context
\newcommand{\ActionYesNoAccept}{\ButtonRight} \newcommand{\ActionYesNoAccept}{\ButtonPlay}
%Button actions, Setting context %Button actions, Setting context
\newcommand{\ActionSettingInc}{\ButtonUp} \newcommand{\ActionSettingInc}{\ButtonUp}
@ -60,7 +63,7 @@
%Button actions, Alarm screen %Button actions, Alarm screen
\newcommand{\ActionAlarmSet}{\ButtonPlay} \newcommand{\ActionAlarmSet}{\ButtonPlay}
\newcommand{\ActionAlarmCancel}{Long \Buttonplay} \newcommand{\ActionAlarmCancel}{\ButtonRew}
\newcommand{\ActionAlarmHoursDec}{\ButtonDown} \newcommand{\ActionAlarmHoursDec}{\ButtonDown}
\newcommand{\ActionAlarmHoursInc}{\ButtonUp} \newcommand{\ActionAlarmHoursInc}{\ButtonUp}
@ -68,14 +71,12 @@
\newcommand{\ActionKbdLeft}{\ButtonLeft} \newcommand{\ActionKbdLeft}{\ButtonLeft}
\newcommand{\ActionKbdRight}{\ButtonRight} \newcommand{\ActionKbdRight}{\ButtonRight}
\newcommand{\ActionKbdSelect}{\ButtonPlay} \newcommand{\ActionKbdSelect}{\ButtonPlay}
\newcommand{\ActionKbdDone}{\ButtonFF} \newcommand{\ActionKbdDone}{Long \ButtonFF}
\newcommand{\ActionKbdAbort}{\ButtonFF{}+\ButtonRew{} or \ButtonRec} \newcommand{\ActionKbdAbort}{Long \ButtonRew}
\newcommand{\ActionKbdUp}{\ButtonUp} \newcommand{\ActionKbdUp}{\ButtonUp}
\newcommand{\ActionKbdDown}{\ButtonDown} \newcommand{\ActionKbdDown}{\ButtonDown}
\newcommand{\ActionKbdCursorLeft}{\ButtonFF{}+\ButtonLeft}
\newcommand{\ActionKbdCursorRight}{\ButtonFF{}+\ButtonRight}
\newcommand{\ActionKbdBackSpace}{\ButtonRew} \newcommand{\ActionKbdBackSpace}{\ButtonRew}
\newcommand{\ActionKbdMorseInput}{Long \ButtonFF} \newcommand{\ActionKbdMorseInput}{\ButtonRecOn{} or \ButtonRecOff}
\newcommand{\ActionKbdMorseSelect}{\ButtonPlay} \newcommand{\ActionKbdMorseSelect}{\ButtonPlay}
%Button actions, Pitch Screen context %Button actions, Pitch Screen context
@ -91,9 +92,9 @@
%Button actions, Recording screen context %Button actions, Recording screen context
\newcommand{\ActionRecNewfile}{\ButtonFF} \newcommand{\ActionRecNewfile}{\ButtonFF}
\newcommand{\ActionRecMenu}{\ButtonRew} \newcommand{\ActionRecMenu}{Long \ButtonRew}
\newcommand{\ActionRecPause}{\ButtonPlay} \newcommand{\ActionRecPause}{\ButtonPlay}
\newcommand{\ActionRecExit}{Long \ButtonRew{} or \ButtonRec} \newcommand{\ActionRecExit}{\ButtonRew{} or \ButtonRecOff}
\newcommand{\ActionRecSettingsInc}{\ButtonRight} \newcommand{\ActionRecSettingsInc}{\ButtonRight}
\newcommand{\ActionRecSettingsDec}{\ButtonLeft} \newcommand{\ActionRecSettingsDec}{\ButtonLeft}
\newcommand{\ActionRecPrev}{\ButtonUp} \newcommand{\ActionRecPrev}{\ButtonUp}
@ -124,6 +125,6 @@
\newcommand{\PluginLeftRepeat}{Long \ButtonLeft} \newcommand{\PluginLeftRepeat}{Long \ButtonLeft}
\newcommand{\PluginRightRepeat}{Long \ButtonRight} \newcommand{\PluginRightRepeat}{Long \ButtonRight}
\newcommand{\PluginCancel}{\ButtonRew} \newcommand{\PluginCancel}{\ButtonRew}
\newcommand{\PluginExit}{\ButtonFF} \newcommand{\PluginExit}{Long \ButtonRew}
\newcommand{\PluginSelect}{\ButtonPlay} \newcommand{\PluginSelect}{\ButtonPlay}
\newcommand{\PluginSelectRepeat}{Long \ButtonPlay} \newcommand{\PluginSelectRepeat}{Long \ButtonPlay}

View file

@ -39,9 +39,8 @@ visit\\
\opt{HAVEREMOTEKEYMAP}{& } \opt{HAVEREMOTEKEYMAP}{& }
& Hit (Draw new card) / Select\\ & Hit (Draw new card) / Select\\
\opt{RECORDER_PAD}{\ButtonFOne} \opt{RECORDER_PAD}{\ButtonFOne}
\opt{IRIVER_H100_PAD,IRIVER_H300_PAD,IAUDIO_X5_PAD,SAMSUNG_YH92X_PAD% \opt{IRIVER_H100_PAD,IRIVER_H300_PAD,IAUDIO_X5_PAD}{\ButtonRec}
,SAMSUNG_YH820_PAD}{\ButtonRec} \opt{IRIVER_H10_PAD,SAMSUNG_YH92X_PAD,SAMSUNG_YH820_PAD}{\ButtonFF}
\opt{IRIVER_H10_PAD}{\ButtonFF}
\opt{ONDIO_PAD,IPOD_4G_PAD,IPOD_3G_PAD,SANSA_E200_PAD,SANSA_C200_PAD,SANSA_CLIP_PAD,SANSA_FUZE_PAD}{\ButtonRight} \opt{ONDIO_PAD,IPOD_4G_PAD,IPOD_3G_PAD,SANSA_E200_PAD,SANSA_C200_PAD,SANSA_CLIP_PAD,SANSA_FUZE_PAD}{\ButtonRight}
\opt{GIGABEAT_PAD,GIGABEAT_S_PAD}{\ButtonVolDown} \opt{GIGABEAT_PAD,GIGABEAT_S_PAD}{\ButtonVolDown}
\opt{MROBE100_PAD}{\ButtonDisplay} \opt{MROBE100_PAD}{\ButtonDisplay}
@ -54,7 +53,7 @@ visit\\
\opt{RECORDER_PAD}{\ButtonFTwo} \opt{RECORDER_PAD}{\ButtonFTwo}
\opt{IRIVER_H100_PAD,IRIVER_H300_PAD,GIGABEAT_S_PAD}{\ButtonSelect} \opt{IRIVER_H100_PAD,IRIVER_H300_PAD,GIGABEAT_S_PAD}{\ButtonSelect}
\opt{IAUDIO_X5_PAD,SANSA_FUZEPLUS_PAD}{\ButtonPlay} \opt{IAUDIO_X5_PAD,SANSA_FUZEPLUS_PAD}{\ButtonPlay}
\opt{IRIVER_H10_PAD}{\ButtonRew} \opt{IRIVER_H10_PAD,SAMSUNG_YH92X_PAD,SAMSUNG_YH820_PAD}{\ButtonRew}
\opt{GIGABEAT_PAD}{\ButtonA} \opt{GIGABEAT_PAD}{\ButtonA}
\opt{ONDIO_PAD}{\ButtonUp} \opt{ONDIO_PAD}{\ButtonUp}
\opt{MROBE100_PAD}{\ButtonDown} \opt{MROBE100_PAD}{\ButtonDown}
@ -62,7 +61,6 @@ visit\\
\opt{COWON_D2_PAD}{\ButtonMinus} \opt{COWON_D2_PAD}{\ButtonMinus}
\opt{PBELL_VIBE500_PAD}{\ButtonMenu} \opt{PBELL_VIBE500_PAD}{\ButtonMenu}
\opt{MPIO_HD300_PAD}{\ButtonRec} \opt{MPIO_HD300_PAD}{\ButtonRec}
\opt{SAMSUNG_YH92X_PAD,SAMSUNG_YH820_PAD}{\ButtonFF}
\opt{HAVEREMOTEKEYMAP}{& } \opt{HAVEREMOTEKEYMAP}{& }
& Double down\\ & Double down\\
\opt{RECORDER_PAD,ONDIO_PAD,IRIVER_H100_PAD,IRIVER_H300_PAD}{\ButtonOff} \opt{RECORDER_PAD,ONDIO_PAD,IRIVER_H100_PAD,IRIVER_H300_PAD}{\ButtonOff}
@ -73,7 +71,7 @@ visit\\
\opt{SANSA_FUZE_PAD}{Long \ButtonHome} \opt{SANSA_FUZE_PAD}{Long \ButtonHome}
\opt{PBELL_VIBE500_PAD}{\ButtonRec} \opt{PBELL_VIBE500_PAD}{\ButtonRec}
\opt{MPIO_HD300_PAD}{\ButtonMenu} \opt{MPIO_HD300_PAD}{\ButtonMenu}
\opt{SAMSUNG_YH92X_PAD,SAMSUNG_YH820_PAD}{\ButtonRew} \opt{SAMSUNG_YH92X_PAD,SAMSUNG_YH820_PAD}{Long \ButtonRew}
\opt{HAVEREMOTEKEYMAP}{& } \opt{HAVEREMOTEKEYMAP}{& }
& Pause game and go to menu / Cancel\\ & Pause game and go to menu / Cancel\\
\end{btnmap} \end{btnmap}

Some files were not shown because too many files have changed in this diff Show more