summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Moń <desowin@gmail.com>2011-11-29 11:18:59 +0000
committerTomasz Moń <desowin@gmail.com>2011-11-29 11:18:59 +0000
commitc40f5202a478de14730bff3722733e7483cd4703 (patch)
tree72c0953f86fe32764ef04873332482d036d4100f
parenta23dd7fd52af1f370bc53adf81605ec9f4476ec2 (diff)
downloadrockbox-c40f5202a478de14730bff3722733e7483cd4703.tar.gz
rockbox-c40f5202a478de14730bff3722733e7483cd4703.zip
Sansa Connect: Add keymap for YesNo dialog and keyboard
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31090 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/keymaps/keymap-sansa-connect.c38
-rw-r--r--apps/lang/basque.lang8
-rw-r--r--apps/lang/bulgarian.lang8
-rw-r--r--apps/lang/catala.lang6
-rw-r--r--apps/lang/chinese-simp.lang8
-rw-r--r--apps/lang/czech.lang8
-rw-r--r--apps/lang/dansk.lang4
-rw-r--r--apps/lang/deutsch.lang8
-rw-r--r--apps/lang/english-us.lang8
-rw-r--r--apps/lang/english.lang8
-rw-r--r--apps/lang/espanol.lang8
-rw-r--r--apps/lang/finnish.lang8
-rw-r--r--apps/lang/francais.lang8
-rw-r--r--apps/lang/galego.lang8
-rw-r--r--apps/lang/hebrew.lang4
-rw-r--r--apps/lang/hrvatski.lang8
-rw-r--r--apps/lang/italiano.lang8
-rw-r--r--apps/lang/japanese.lang8
-rw-r--r--apps/lang/latviesu.lang8
-rw-r--r--apps/lang/magyar.lang8
-rw-r--r--apps/lang/nederlands.lang8
-rw-r--r--apps/lang/norsk-nynorsk.lang8
-rw-r--r--apps/lang/norsk.lang8
-rw-r--r--apps/lang/polski.lang8
-rw-r--r--apps/lang/portugues-brasileiro.lang8
-rw-r--r--apps/lang/portugues.lang8
-rw-r--r--apps/lang/romaneste.lang8
-rw-r--r--apps/lang/russian.lang4
-rw-r--r--apps/lang/slovak.lang8
-rw-r--r--apps/lang/slovenscina.lang8
-rw-r--r--apps/lang/srpski.lang8
-rw-r--r--apps/lang/svenska.lang4
-rw-r--r--apps/lang/tagalog.lang8
-rw-r--r--apps/lang/thai.lang8
-rw-r--r--apps/lang/turkce.lang8
-rw-r--r--apps/lang/ukrainian.lang4
-rw-r--r--apps/lang/walon.lang8
-rw-r--r--apps/recorder/keyboard.c3
38 files changed, 171 insertions, 136 deletions
diff --git a/apps/keymaps/keymap-sansa-connect.c b/apps/keymaps/keymap-sansa-connect.c
index 6f8a58496b..27790d2bfd 100644
--- a/apps/keymaps/keymap-sansa-connect.c
+++ b/apps/keymaps/keymap-sansa-connect.c
@@ -65,10 +65,39 @@ static const struct button_mapping button_context_wps[] = {
65 {ACTION_WPS_ABSETB_NEXTDIR, BUTTON_POWER|BUTTON_LEFT, BUTTON_POWER}, 65 {ACTION_WPS_ABSETB_NEXTDIR, BUTTON_POWER|BUTTON_LEFT, BUTTON_POWER},
66 {ACTION_WPS_ABRESET, BUTTON_POWER|BUTTON_UP, BUTTON_POWER}, 66 {ACTION_WPS_ABRESET, BUTTON_POWER|BUTTON_UP, BUTTON_POWER},
67 {ACTION_WPS_HOTKEY, BUTTON_UP|BUTTON_REL, BUTTON_UP}, 67 {ACTION_WPS_HOTKEY, BUTTON_UP|BUTTON_REL, BUTTON_UP},
68 LAST_ITEM_IN_LIST 68 LAST_ITEM_IN_LIST
69}; /* button_context_wps */ 69}; /* button_context_wps */
70 70
71static const struct button_mapping button_context_yesno[] = {
72 {ACTION_YESNO_ACCEPT, BUTTON_SELECT, BUTTON_NONE},
73 LAST_ITEM_IN_LIST
74}; /* button_context_yesno */
75
76static const struct button_mapping button_context_keyboard[] = {
77 {ACTION_KBD_LEFT, BUTTON_LEFT, BUTTON_NONE},
78 {ACTION_KBD_LEFT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE},
79 {ACTION_KBD_RIGHT, BUTTON_RIGHT, BUTTON_NONE},
80 {ACTION_KBD_RIGHT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE},
71 81
82 {ACTION_KBD_CURSOR_LEFT,BUTTON_VOL_DOWN, BUTTON_NONE},
83 {ACTION_KBD_CURSOR_LEFT,BUTTON_VOL_DOWN|BUTTON_REPEAT, BUTTON_NONE},
84 {ACTION_KBD_CURSOR_RIGHT,BUTTON_VOL_UP, BUTTON_NONE},
85 {ACTION_KBD_CURSOR_RIGHT,BUTTON_VOL_UP|BUTTON_REPEAT, BUTTON_NONE},
86
87 {ACTION_KBD_UP, BUTTON_SCROLL_BACK, BUTTON_NONE},
88 {ACTION_KBD_UP, BUTTON_SCROLL_BACK|BUTTON_REPEAT, BUTTON_NONE},
89 {ACTION_KBD_DOWN, BUTTON_SCROLL_FWD, BUTTON_NONE},
90 {ACTION_KBD_DOWN, BUTTON_SCROLL_FWD|BUTTON_REPEAT, BUTTON_NONE},
91 {ACTION_KBD_PAGE_FLIP, BUTTON_NEXT, BUTTON_NONE},
92 {ACTION_KBD_BACKSPACE, BUTTON_PREV, BUTTON_NONE},
93 {ACTION_KBD_BACKSPACE, BUTTON_PREV|BUTTON_REPEAT, BUTTON_NONE},
94 {ACTION_KBD_SELECT, BUTTON_SELECT, BUTTON_NONE},
95 {ACTION_KBD_DONE, BUTTON_UP, BUTTON_NONE},
96 {ACTION_KBD_ABORT, BUTTON_POWER, BUTTON_NONE},
97 {ACTION_KBD_MORSE_INPUT,BUTTON_DOWN|BUTTON_REL, BUTTON_NONE},
98 {ACTION_KBD_MORSE_SELECT,BUTTON_SELECT|BUTTON_REL, BUTTON_NONE},
99 LAST_ITEM_IN_LIST
100}; /* button_context_keyboard */
72 101
73/* get_context_mapping returns a pointer to one of the above defined arrays depending on the context */ 102/* get_context_mapping returns a pointer to one of the above defined arrays depending on the context */
74const struct button_mapping* get_context_mapping(int context) 103const struct button_mapping* get_context_mapping(int context)
@@ -79,6 +108,11 @@ const struct button_mapping* get_context_mapping(int context)
79 return button_context_standard; 108 return button_context_standard;
80 case CONTEXT_WPS: 109 case CONTEXT_WPS:
81 return button_context_wps; 110 return button_context_wps;
111 case CONTEXT_YESNOSCREEN:
112 return button_context_yesno;
113 case CONTEXT_KEYBOARD:
114 case CONTEXT_MORSE_INPUT:
115 return button_context_keyboard;
82 116
83 case CONTEXT_TREE: 117 case CONTEXT_TREE:
84 case CONTEXT_LIST: 118 case CONTEXT_LIST:
@@ -88,6 +122,6 @@ const struct button_mapping* get_context_mapping(int context)
88 case CONTEXT_SETTINGS|CONTEXT_REMOTE: 122 case CONTEXT_SETTINGS|CONTEXT_REMOTE:
89 default: 123 default:
90 return button_context_standard; 124 return button_context_standard;
91 } 125 }
92 return button_context_standard; 126 return button_context_standard;
93} 127}
diff --git a/apps/lang/basque.lang b/apps/lang/basque.lang
index 8a9de4b385..8fd31c57fe 100644
--- a/apps/lang/basque.lang
+++ b/apps/lang/basque.lang
@@ -248,7 +248,7 @@
248 *: "PLAY = Yes" 248 *: "PLAY = Yes"
249 cowond2*: "MENU, or top-right = Yes" 249 cowond2*: "MENU, or top-right = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 mrobe500: "PLAY, POWER, or top-right = Yes" 252 mrobe500: "PLAY, POWER, or top-right = Yes"
253 archosplayer: "(PLAY/STOP)" 253 archosplayer: "(PLAY/STOP)"
254 vibe500: "OK = Yes" 254 vibe500: "OK = Yes"
@@ -257,7 +257,7 @@
257 *: "PLAY = Bai" 257 *: "PLAY = Bai"
258 cowond2*: "MENU, edo goi-eskuin = Bai" 258 cowond2*: "MENU, edo goi-eskuin = Bai"
259 iriverh100,iriverh120,iriverh300: "NAVI = Bai" 259 iriverh100,iriverh120,iriverh300: "NAVI = Bai"
260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Bai" 260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Bai"
261 mrobe500: "PLAY, POWER, or top-right = Bai" 261 mrobe500: "PLAY, POWER, or top-right = Bai"
262 archosplayer: "(PLAY/STOP)" 262 archosplayer: "(PLAY/STOP)"
263 vibe500: "OK = Bai" 263 vibe500: "OK = Bai"
@@ -3946,7 +3946,7 @@
3946 rtc: "ON = Set" 3946 rtc: "ON = Set"
3947 mrobe500: "HEART = Set" 3947 mrobe500: "HEART = Set"
3948 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3948 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3949 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3949 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3950 gogearsa9200: "PLAY = Set" 3950 gogearsa9200: "PLAY = Set"
3951 vibe500: "OK = Set" 3951 vibe500: "OK = Set"
3952 mpiohd300: "ENTER = Set" 3952 mpiohd300: "ENTER = Set"
@@ -3956,7 +3956,7 @@
3956 rtc: "ON = Ezarri" 3956 rtc: "ON = Ezarri"
3957 mrobe500: "HEART = Ezarri" 3957 mrobe500: "HEART = Ezarri"
3958 iriverh100,iriverh120,iriverh300: "NAVI = Ezarri" 3958 iriverh100,iriverh120,iriverh300: "NAVI = Ezarri"
3959 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Ezarri" 3959 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ezarri"
3960 gogearsa9200: "PLAY = Ezarri" 3960 gogearsa9200: "PLAY = Ezarri"
3961 vibe500: "OK = Ezarri" 3961 vibe500: "OK = Ezarri"
3962 mpiohd300: "ENTER = Ezarri" 3962 mpiohd300: "ENTER = Ezarri"
diff --git a/apps/lang/bulgarian.lang b/apps/lang/bulgarian.lang
index 5638971da3..1fd40d2e03 100644
--- a/apps/lang/bulgarian.lang
+++ b/apps/lang/bulgarian.lang
@@ -4409,7 +4409,7 @@
4409 *: "PLAY = Yes" 4409 *: "PLAY = Yes"
4410 cowond2*: "MENU, or top-right = Yes" 4410 cowond2*: "MENU, or top-right = Yes"
4411 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 4411 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
4412 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 4412 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
4413 mrobe500: "PLAY, POWER, or top-right = Yes" 4413 mrobe500: "PLAY, POWER, or top-right = Yes"
4414 archosplayer: "(PLAY/STOP)" 4414 archosplayer: "(PLAY/STOP)"
4415 vibe500: "OK = Yes" 4415 vibe500: "OK = Yes"
@@ -4418,7 +4418,7 @@
4418 *: "PLAY = Да" 4418 *: "PLAY = Да"
4419 cowond2*: "MENU или горе ляво = Да" 4419 cowond2*: "MENU или горе ляво = Да"
4420 iriverh100,iriverh120,iriverh300: "NAVI = Да" 4420 iriverh100,iriverh120,iriverh300: "NAVI = Да"
4421 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Да" 4421 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Да"
4422 mrobe500: "PLAY, POWER или горе дясно = Да" 4422 mrobe500: "PLAY, POWER или горе дясно = Да"
4423 archosplayer: "(PLAY/STOP)" 4423 archosplayer: "(PLAY/STOP)"
4424 vibe500: "OK = Да" 4424 vibe500: "OK = Да"
@@ -4450,7 +4450,7 @@
4450 rtc: "ON = Set" 4450 rtc: "ON = Set"
4451 mrobe500: "HEART = Set" 4451 mrobe500: "HEART = Set"
4452 iriverh100,iriverh120,iriverh300: "NAVI = Set" 4452 iriverh100,iriverh120,iriverh300: "NAVI = Set"
4453 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 4453 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
4454 gogearsa9200: "PLAY = Set" 4454 gogearsa9200: "PLAY = Set"
4455 vibe500: "OK = Set" 4455 vibe500: "OK = Set"
4456 mpiohd300: "ENTER = Set" 4456 mpiohd300: "ENTER = Set"
@@ -4460,7 +4460,7 @@
4460 rtc: "ON = Запази" 4460 rtc: "ON = Запази"
4461 mrobe500: "HEART = Запази" 4461 mrobe500: "HEART = Запази"
4462 iriverh100,iriverh120,iriverh300: "NAVI = Запази" 4462 iriverh100,iriverh120,iriverh300: "NAVI = Запази"
4463 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Запази" 4463 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Запази"
4464 gogearsa9200: "PLAY = Запази" 4464 gogearsa9200: "PLAY = Запази"
4465 vibe500: "OK = Запази" 4465 vibe500: "OK = Запази"
4466 mpiohd300: "ENTER = Запази" 4466 mpiohd300: "ENTER = Запази"
diff --git a/apps/lang/catala.lang b/apps/lang/catala.lang
index aabcb931ff..87d6f7a358 100644
--- a/apps/lang/catala.lang
+++ b/apps/lang/catala.lang
@@ -250,7 +250,7 @@
250 *: "PLAY = Yes" 250 *: "PLAY = Yes"
251 cowond2*: "MENU, or top-right = Yes" 251 cowond2*: "MENU, or top-right = Yes"
252 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 252 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
253 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 253 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
254 mrobe500: "PLAY, POWER, or top-right = Yes" 254 mrobe500: "PLAY, POWER, or top-right = Yes"
255 archosplayer: "(PLAY/STOP)" 255 archosplayer: "(PLAY/STOP)"
256 vibe500: "OK = Yes" 256 vibe500: "OK = Yes"
@@ -259,7 +259,7 @@
259 *: "PLAY = Sí" 259 *: "PLAY = Sí"
260 cowond2*: "MENU, o a dalt a la dreta = Sí" 260 cowond2*: "MENU, o a dalt a la dreta = Sí"
261 iriverh100,iriverh120,iriverh300: "NAVI = Sí" 261 iriverh100,iriverh120,iriverh300: "NAVI = Sí"
262 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Sí" 262 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sí"
263 mrobe500: "PLAY, POWER, o a dalt a la dreta = Sí" 263 mrobe500: "PLAY, POWER, o a dalt a la dreta = Sí"
264 archosplayer: "(PLAY/STOP)" 264 archosplayer: "(PLAY/STOP)"
265 vibe500: "OK = Sí" 265 vibe500: "OK = Sí"
@@ -3944,7 +3944,7 @@
3944 rtc: "ON = Set" 3944 rtc: "ON = Set"
3945 mrobe500: "HEART = Set" 3945 mrobe500: "HEART = Set"
3946 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3946 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3947 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3947 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3948 gogearsa9200: "PLAY = Set" 3948 gogearsa9200: "PLAY = Set"
3949 vibe500: "OK = Set" 3949 vibe500: "OK = Set"
3950 mpiohd300: "ENTER = Set" 3950 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/chinese-simp.lang b/apps/lang/chinese-simp.lang
index 7319071903..261c32a7fc 100644
--- a/apps/lang/chinese-simp.lang
+++ b/apps/lang/chinese-simp.lang
@@ -8511,7 +8511,7 @@
8511 *: "PLAY = Yes" 8511 *: "PLAY = Yes"
8512 cowond2*: "MENU, or top-right = Yes" 8512 cowond2*: "MENU, or top-right = Yes"
8513 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 8513 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
8514 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 8514 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
8515 mrobe500: "PLAY, POWER, or top-right = Yes" 8515 mrobe500: "PLAY, POWER, or top-right = Yes"
8516 archosplayer: "(PLAY/STOP)" 8516 archosplayer: "(PLAY/STOP)"
8517 vibe500: "OK = Yes" 8517 vibe500: "OK = Yes"
@@ -8520,7 +8520,7 @@
8520 *: "PLAY:是" 8520 *: "PLAY:是"
8521 cowond2*: "MENU或TOP-RIGHT:是" 8521 cowond2*: "MENU或TOP-RIGHT:是"
8522 iriverh100,iriverh120,iriverh300: "NAVI=是" 8522 iriverh100,iriverh120,iriverh300: "NAVI=是"
8523 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT:是" 8523 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT:是"
8524 mrobe500: "PLAY,POWER或TOP-RIGHT:是" 8524 mrobe500: "PLAY,POWER或TOP-RIGHT:是"
8525 archosplayer: "(PLAY/STOP)" 8525 archosplayer: "(PLAY/STOP)"
8526 vibe500: "OK:是" 8526 vibe500: "OK:是"
@@ -8538,7 +8538,7 @@
8538 rtc: "ON = Set" 8538 rtc: "ON = Set"
8539 mrobe500: "HEART = Set" 8539 mrobe500: "HEART = Set"
8540 iriverh100,iriverh120,iriverh300: "NAVI = Set" 8540 iriverh100,iriverh120,iriverh300: "NAVI = Set"
8541 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 8541 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
8542 gogearsa9200: "PLAY = Set" 8542 gogearsa9200: "PLAY = Set"
8543 vibe500: "OK = Set" 8543 vibe500: "OK = Set"
8544 mpiohd300: "ENTER = Set" 8544 mpiohd300: "ENTER = Set"
@@ -8548,7 +8548,7 @@
8548 rtc: "ON:设置" 8548 rtc: "ON:设置"
8549 mrobe500: "HEART:设置" 8549 mrobe500: "HEART:设置"
8550 iriverh100,iriverh120,iriverh300: "NAVI=设置" 8550 iriverh100,iriverh120,iriverh300: "NAVI=设置"
8551 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT:设置" 8551 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT:设置"
8552 gogearsa9200: "PLAY:设置" 8552 gogearsa9200: "PLAY:设置"
8553 vibe500: "OK:设置" 8553 vibe500: "OK:设置"
8554 mpiohd300: "ENTER:设置" 8554 mpiohd300: "ENTER:设置"
diff --git a/apps/lang/czech.lang b/apps/lang/czech.lang
index 462f4144a0..97ffc33143 100644
--- a/apps/lang/czech.lang
+++ b/apps/lang/czech.lang
@@ -252,7 +252,7 @@
252 *: "PLAY = Yes" 252 *: "PLAY = Yes"
253 cowond2*: "MENU, or top-right = Yes" 253 cowond2*: "MENU, or top-right = Yes"
254 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 254 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
255 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 255 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
256 mrobe500: "PLAY, POWER, or top-right = Yes" 256 mrobe500: "PLAY, POWER, or top-right = Yes"
257 archosplayer: "(PLAY/STOP)" 257 archosplayer: "(PLAY/STOP)"
258 vibe500: "OK = Yes" 258 vibe500: "OK = Yes"
@@ -261,7 +261,7 @@
261 *: "PLAY = Ano" 261 *: "PLAY = Ano"
262 cowond2*: "MENU, or top-right = Ano" 262 cowond2*: "MENU, or top-right = Ano"
263 iriverh100,iriverh120,iriverh300: "NAVI = Ano" 263 iriverh100,iriverh120,iriverh300: "NAVI = Ano"
264 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Ano" 264 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ano"
265 mrobe500: "PLAY, POWER, or top-right = Ano" 265 mrobe500: "PLAY, POWER, or top-right = Ano"
266 archosplayer: "(PLAY/STOP)" 266 archosplayer: "(PLAY/STOP)"
267 vibe500: "OK = Ano" 267 vibe500: "OK = Ano"
@@ -3950,7 +3950,7 @@
3950 rtc: "ON = Set" 3950 rtc: "ON = Set"
3951 mrobe500: "HEART = Set" 3951 mrobe500: "HEART = Set"
3952 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3952 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3953 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3953 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3954 gogearsa9200: "PLAY = Set" 3954 gogearsa9200: "PLAY = Set"
3955 vibe500: "OK = Set" 3955 vibe500: "OK = Set"
3956 mpiohd300: "ENTER = Set" 3956 mpiohd300: "ENTER = Set"
@@ -3960,7 +3960,7 @@
3960 rtc: "ON = Nastavit" 3960 rtc: "ON = Nastavit"
3961 mrobe500: "HEART = Nastavit" 3961 mrobe500: "HEART = Nastavit"
3962 iriverh100,iriverh120,iriverh300: "NAVI = Nastavit" 3962 iriverh100,iriverh120,iriverh300: "NAVI = Nastavit"
3963 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Nastavit" 3963 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Nastavit"
3964 gogearsa9200: "PLAY = Nastavit" 3964 gogearsa9200: "PLAY = Nastavit"
3965 vibe500: "OK = Nastavit" 3965 vibe500: "OK = Nastavit"
3966 mpiohd300: "ENTER = Nastavit" 3966 mpiohd300: "ENTER = Nastavit"
diff --git a/apps/lang/dansk.lang b/apps/lang/dansk.lang
index d99cbc9003..0105da4317 100644
--- a/apps/lang/dansk.lang
+++ b/apps/lang/dansk.lang
@@ -9574,7 +9574,7 @@
9574 *: "PLAY = Yes" 9574 *: "PLAY = Yes"
9575 cowond2*: "MENU, or top-right = Yes" 9575 cowond2*: "MENU, or top-right = Yes"
9576 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 9576 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
9577 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 9577 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
9578 mrobe500: "PLAY, POWER, or top-right = Yes" 9578 mrobe500: "PLAY, POWER, or top-right = Yes"
9579 archosplayer: "(PLAY/STOP)" 9579 archosplayer: "(PLAY/STOP)"
9580 vibe500: "OK = Yes" 9580 vibe500: "OK = Yes"
@@ -9601,7 +9601,7 @@
9601 rtc: "ON = Set" 9601 rtc: "ON = Set"
9602 mrobe500: "HEART = Set" 9602 mrobe500: "HEART = Set"
9603 iriverh100,iriverh120,iriverh300: "NAVI = Set" 9603 iriverh100,iriverh120,iriverh300: "NAVI = Set"
9604 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 9604 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
9605 gogearsa9200: "PLAY = Set" 9605 gogearsa9200: "PLAY = Set"
9606 vibe500: "OK = Set" 9606 vibe500: "OK = Set"
9607 mpiohd300: "ENTER = Set" 9607 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/deutsch.lang b/apps/lang/deutsch.lang
index d565effb03..99e6ac9ee4 100644
--- a/apps/lang/deutsch.lang
+++ b/apps/lang/deutsch.lang
@@ -267,7 +267,7 @@
267 *: "PLAY = Yes" 267 *: "PLAY = Yes"
268 cowond2*: "MENU, or top-right = Yes" 268 cowond2*: "MENU, or top-right = Yes"
269 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 269 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
270 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 270 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
271 mrobe500: "PLAY, POWER, or top-right = Yes" 271 mrobe500: "PLAY, POWER, or top-right = Yes"
272 archosplayer: "(PLAY/STOP)" 272 archosplayer: "(PLAY/STOP)"
273 vibe500: "OK = Yes" 273 vibe500: "OK = Yes"
@@ -276,7 +276,7 @@
276 *: "PLAY = Ja" 276 *: "PLAY = Ja"
277 cowond2*: "MENU oder rechts oben= Ja" 277 cowond2*: "MENU oder rechts oben= Ja"
278 iriverh100,iriverh120,iriverh300: "NAVI = Ja" 278 iriverh100,iriverh120,iriverh300: "NAVI = Ja"
279 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Ja" 279 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja"
280 mrobe500: "PLAY, POWER oder rechts oben = Ja" 280 mrobe500: "PLAY, POWER oder rechts oben = Ja"
281 archosplayer: "(PLAY/STOP)" 281 archosplayer: "(PLAY/STOP)"
282 vibe500: "OK = Ja" 282 vibe500: "OK = Ja"
@@ -3950,7 +3950,7 @@
3950 rtc: "ON = Set" 3950 rtc: "ON = Set"
3951 mrobe500: "HEART = Set" 3951 mrobe500: "HEART = Set"
3952 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3952 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3953 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3953 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3954 gogearsa9200: "PLAY = Set" 3954 gogearsa9200: "PLAY = Set"
3955 vibe500: "OK = Set" 3955 vibe500: "OK = Set"
3956 mpiohd300: "ENTER = Set" 3956 mpiohd300: "ENTER = Set"
@@ -3960,7 +3960,7 @@
3960 rtc: "ON = Speichern" 3960 rtc: "ON = Speichern"
3961 mrobe500: "HEART = Speichern" 3961 mrobe500: "HEART = Speichern"
3962 iriverh100,iriverh120,iriverh300: "NAVI = Speichern" 3962 iriverh100,iriverh120,iriverh300: "NAVI = Speichern"
3963 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Speichern" 3963 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Speichern"
3964 gogearsa9200: "PLAY = Speichern" 3964 gogearsa9200: "PLAY = Speichern"
3965 vibe500: "OK = Speichern" 3965 vibe500: "OK = Speichern"
3966 mpiohd300: "ENTER = Speichern" 3966 mpiohd300: "ENTER = Speichern"
diff --git a/apps/lang/english-us.lang b/apps/lang/english-us.lang
index 16af129376..489f9f4dbb 100644
--- a/apps/lang/english-us.lang
+++ b/apps/lang/english-us.lang
@@ -248,7 +248,7 @@
248 *: "PLAY = Yes" 248 *: "PLAY = Yes"
249 cowond2*: "MENU, or top-right = Yes" 249 cowond2*: "MENU, or top-right = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 mrobe500: "PLAY, POWER, or top-right = Yes" 252 mrobe500: "PLAY, POWER, or top-right = Yes"
253 archosplayer: "(PLAY/STOP)" 253 archosplayer: "(PLAY/STOP)"
254 vibe500: "OK = Yes" 254 vibe500: "OK = Yes"
@@ -257,7 +257,7 @@
257 *: "PLAY = Yes" 257 *: "PLAY = Yes"
258 cowond2*: "MENU, or top-right = Yes" 258 cowond2*: "MENU, or top-right = Yes"
259 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 259 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
261 mrobe500: "PLAY, POWER, or top-right = Yes" 261 mrobe500: "PLAY, POWER, or top-right = Yes"
262 archosplayer: "(PLAY/STOP)" 262 archosplayer: "(PLAY/STOP)"
263 vibe500: "OK = Yes" 263 vibe500: "OK = Yes"
@@ -3946,7 +3946,7 @@
3946 rtc: "ON = Set" 3946 rtc: "ON = Set"
3947 mrobe500: "HEART = Set" 3947 mrobe500: "HEART = Set"
3948 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3948 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3949 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3949 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3950 gogearsa9200: "PLAY = Set" 3950 gogearsa9200: "PLAY = Set"
3951 vibe500: "OK = Set" 3951 vibe500: "OK = Set"
3952 mpiohd300: "ENTER = Set" 3952 mpiohd300: "ENTER = Set"
@@ -3956,7 +3956,7 @@
3956 rtc: "ON = Set" 3956 rtc: "ON = Set"
3957 mrobe500: "HEART = Set" 3957 mrobe500: "HEART = Set"
3958 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3958 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3959 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3959 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3960 gogearsa9200: "PLAY = Set" 3960 gogearsa9200: "PLAY = Set"
3961 vibe500: "OK = Set" 3961 vibe500: "OK = Set"
3962 mpiohd300: "ENTER = Set" 3962 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 29e6205729..d955c46324 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -333,7 +333,7 @@
333 *: "PLAY = Yes" 333 *: "PLAY = Yes"
334 cowond2*: "MENU, or top-right = Yes" 334 cowond2*: "MENU, or top-right = Yes"
335 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 335 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
336 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 336 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
337 mrobe500: "PLAY, POWER, or top-right = Yes" 337 mrobe500: "PLAY, POWER, or top-right = Yes"
338 archosplayer: "(PLAY/STOP)" 338 archosplayer: "(PLAY/STOP)"
339 vibe500: "OK = Yes" 339 vibe500: "OK = Yes"
@@ -342,7 +342,7 @@
342 *: "PLAY = Yes" 342 *: "PLAY = Yes"
343 cowond2*: "MENU, or top-right = Yes" 343 cowond2*: "MENU, or top-right = Yes"
344 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 344 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
345 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 345 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
346 mrobe500: "PLAY, POWER, or top-right = Yes" 346 mrobe500: "PLAY, POWER, or top-right = Yes"
347 archosplayer: "(PLAY/STOP)" 347 archosplayer: "(PLAY/STOP)"
348 vibe500: "OK = Yes" 348 vibe500: "OK = Yes"
@@ -4031,7 +4031,7 @@
4031 rtc: "ON = Set" 4031 rtc: "ON = Set"
4032 mrobe500: "HEART = Set" 4032 mrobe500: "HEART = Set"
4033 iriverh100,iriverh120,iriverh300: "NAVI = Set" 4033 iriverh100,iriverh120,iriverh300: "NAVI = Set"
4034 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 4034 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
4035 gogearsa9200: "PLAY = Set" 4035 gogearsa9200: "PLAY = Set"
4036 vibe500: "OK = Set" 4036 vibe500: "OK = Set"
4037 mpiohd300: "ENTER = Set" 4037 mpiohd300: "ENTER = Set"
@@ -4041,7 +4041,7 @@
4041 rtc: "ON = Set" 4041 rtc: "ON = Set"
4042 mrobe500: "HEART = Set" 4042 mrobe500: "HEART = Set"
4043 iriverh100,iriverh120,iriverh300: "NAVI = Set" 4043 iriverh100,iriverh120,iriverh300: "NAVI = Set"
4044 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 4044 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
4045 gogearsa9200: "PLAY = Set" 4045 gogearsa9200: "PLAY = Set"
4046 vibe500: "OK = Set" 4046 vibe500: "OK = Set"
4047 mpiohd300: "ENTER = Set" 4047 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/espanol.lang b/apps/lang/espanol.lang
index f12fb2ec70..6ca6471403 100644
--- a/apps/lang/espanol.lang
+++ b/apps/lang/espanol.lang
@@ -9067,7 +9067,7 @@
9067 *: "PLAY = Yes" 9067 *: "PLAY = Yes"
9068 cowond2*: "MENU, or top-right = Yes" 9068 cowond2*: "MENU, or top-right = Yes"
9069 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 9069 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
9070 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 9070 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
9071 mrobe500: "PLAY, POWER, or top-right = Yes" 9071 mrobe500: "PLAY, POWER, or top-right = Yes"
9072 archosplayer: "(PLAY/STOP)" 9072 archosplayer: "(PLAY/STOP)"
9073 vibe500: "OK = Yes" 9073 vibe500: "OK = Yes"
@@ -9076,7 +9076,7 @@
9076 *: "PLAY = Sí" 9076 *: "PLAY = Sí"
9077 cowond2*: "MENÚ o arriba-derecha = Sí" 9077 cowond2*: "MENÚ o arriba-derecha = Sí"
9078 iriverh100,iriverh120,iriverh300: "NAVI = Sí" 9078 iriverh100,iriverh120,iriverh300: "NAVI = Sí"
9079 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Sí" 9079 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sí"
9080 mrobe500: "PLAY, POWER o arriba-derecha = Sí" 9080 mrobe500: "PLAY, POWER o arriba-derecha = Sí"
9081 archosplayer: "(PLAY/STOP)" 9081 archosplayer: "(PLAY/STOP)"
9082 vibe500: "OK = Sí" 9082 vibe500: "OK = Sí"
@@ -9094,7 +9094,7 @@
9094 rtc: "ON = Set" 9094 rtc: "ON = Set"
9095 mrobe500: "HEART = Set" 9095 mrobe500: "HEART = Set"
9096 iriverh100,iriverh120,iriverh300: "NAVI = Set" 9096 iriverh100,iriverh120,iriverh300: "NAVI = Set"
9097 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 9097 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
9098 gogearsa9200: "PLAY = Set" 9098 gogearsa9200: "PLAY = Set"
9099 vibe500: "OK = Set" 9099 vibe500: "OK = Set"
9100 mpiohd300: "ENTER = Set" 9100 mpiohd300: "ENTER = Set"
@@ -9104,7 +9104,7 @@
9104 rtc: "ON = Fijar" 9104 rtc: "ON = Fijar"
9105 mrobe500: "HEART = Fijar" 9105 mrobe500: "HEART = Fijar"
9106 iriverh100,iriverh120,iriverh300: "NAVI = Fijar" 9106 iriverh100,iriverh120,iriverh300: "NAVI = Fijar"
9107 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Fijar" 9107 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Fijar"
9108 gogearsa9200: "PLAY = Fijar" 9108 gogearsa9200: "PLAY = Fijar"
9109 vibe500: "OK = Fijar" 9109 vibe500: "OK = Fijar"
9110 mpiohd300: "ENTER = Fijar" 9110 mpiohd300: "ENTER = Fijar"
diff --git a/apps/lang/finnish.lang b/apps/lang/finnish.lang
index 0855a5f04c..4318f40d25 100644
--- a/apps/lang/finnish.lang
+++ b/apps/lang/finnish.lang
@@ -9546,7 +9546,7 @@
9546 *: "PLAY = Yes" 9546 *: "PLAY = Yes"
9547 cowond2*: "MENU = Yes" 9547 cowond2*: "MENU = Yes"
9548 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 9548 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
9549 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 9549 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
9550 archosplayer: "(PLAY/STOP)" 9550 archosplayer: "(PLAY/STOP)"
9551 vibe500: "OK = Yes" 9551 vibe500: "OK = Yes"
9552 </source> 9552 </source>
@@ -9554,7 +9554,7 @@
9554 *: "PLAY = Kyllä" 9554 *: "PLAY = Kyllä"
9555 cowond2*: "MENU = Kyllä" 9555 cowond2*: "MENU = Kyllä"
9556 iriverh100,iriverh120,iriverh300: "NAVI = Kyllä" 9556 iriverh100,iriverh120,iriverh300: "NAVI = Kyllä"
9557 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Kyllä" 9557 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Kyllä"
9558 archosplayer: "(PLAY/STOP)" 9558 archosplayer: "(PLAY/STOP)"
9559 vibe500: "OK = Kyllä" 9559 vibe500: "OK = Kyllä"
9560 </dest> 9560 </dest>
@@ -9571,7 +9571,7 @@
9571 rtc: "ON = Set" 9571 rtc: "ON = Set"
9572 mrobe500: "HEART = Set" 9572 mrobe500: "HEART = Set"
9573 iriverh100,iriverh120,iriverh300: "NAVI = Set" 9573 iriverh100,iriverh120,iriverh300: "NAVI = Set"
9574 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 9574 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
9575 gogearsa9200: "PLAY = Set" 9575 gogearsa9200: "PLAY = Set"
9576 vibe500: "OK = Set" 9576 vibe500: "OK = Set"
9577 mpiohd300: "ENTER = Set" 9577 mpiohd300: "ENTER = Set"
@@ -9581,7 +9581,7 @@
9581 rtc: "ON = Aseta" 9581 rtc: "ON = Aseta"
9582 mrobe500: "HEART = Aseta" 9582 mrobe500: "HEART = Aseta"
9583 iriverh100,iriverh120,iriverh300: "NAVI = Aseta" 9583 iriverh100,iriverh120,iriverh300: "NAVI = Aseta"
9584 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Aseta" 9584 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Aseta"
9585 gogearsa9200: "PLAY = Aseta" 9585 gogearsa9200: "PLAY = Aseta"
9586 vibe500: "OK = Aseta" 9586 vibe500: "OK = Aseta"
9587 mpiohd300: "ENTER = Aseta" 9587 mpiohd300: "ENTER = Aseta"
diff --git a/apps/lang/francais.lang b/apps/lang/francais.lang
index bf2f1db331..a53aeeb24f 100644
--- a/apps/lang/francais.lang
+++ b/apps/lang/francais.lang
@@ -277,7 +277,7 @@
277 *: "PLAY = Yes" 277 *: "PLAY = Yes"
278 cowond2*: "MENU, or top-right = Yes" 278 cowond2*: "MENU, or top-right = Yes"
279 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 279 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
280 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 280 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
281 mrobe500: "PLAY, POWER, or top-right = Yes" 281 mrobe500: "PLAY, POWER, or top-right = Yes"
282 archosplayer: "(PLAY/STOP)" 282 archosplayer: "(PLAY/STOP)"
283 vibe500: "OK = Yes" 283 vibe500: "OK = Yes"
@@ -286,7 +286,7 @@
286 *: "PLAY = Oui" 286 *: "PLAY = Oui"
287 cowond2*: "MENU = Oui" 287 cowond2*: "MENU = Oui"
288 iriverh100,iriverh120,iriverh300: "NAVI = Oui" 288 iriverh100,iriverh120,iriverh300: "NAVI = Oui"
289 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Oui" 289 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oui"
290 mrobe500: "PLAY ou POWER = Oui" 290 mrobe500: "PLAY ou POWER = Oui"
291 archosplayer: "(PLAY/STOP)" 291 archosplayer: "(PLAY/STOP)"
292 vibe500: "OK = Oui" 292 vibe500: "OK = Oui"
@@ -3975,7 +3975,7 @@
3975 rtc: "ON = Set" 3975 rtc: "ON = Set"
3976 mrobe500: "HEART = Set" 3976 mrobe500: "HEART = Set"
3977 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3977 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3978 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3978 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3979 gogearsa9200: "PLAY = Set" 3979 gogearsa9200: "PLAY = Set"
3980 vibe500: "OK = Set" 3980 vibe500: "OK = Set"
3981 mpiohd300: "ENTER = Set" 3981 mpiohd300: "ENTER = Set"
@@ -3985,7 +3985,7 @@
3985 rtc: "ON = Valider" 3985 rtc: "ON = Valider"
3986 mrobe500: "HEART = Valider" 3986 mrobe500: "HEART = Valider"
3987 iriverh100,iriverh120,iriverh300: "NAVI = Valider" 3987 iriverh100,iriverh120,iriverh300: "NAVI = Valider"
3988 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Valider" 3988 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Valider"
3989 gogearsa9200: "PLAY = Valider" 3989 gogearsa9200: "PLAY = Valider"
3990 vibe500: "OK = Valider" 3990 vibe500: "OK = Valider"
3991 mpiohd300: "ENTER = Valider" 3991 mpiohd300: "ENTER = Valider"
diff --git a/apps/lang/galego.lang b/apps/lang/galego.lang
index a137f6888f..4d4dd063d7 100644
--- a/apps/lang/galego.lang
+++ b/apps/lang/galego.lang
@@ -7797,7 +7797,7 @@ datos... %d atopadas (PREV para volver)"
7797 *: "PLAY = Yes" 7797 *: "PLAY = Yes"
7798 cowond2*: "MENU, or top-right = Yes" 7798 cowond2*: "MENU, or top-right = Yes"
7799 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 7799 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
7800 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 7800 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
7801 mrobe500: "PLAY, POWER, or top-right = Yes" 7801 mrobe500: "PLAY, POWER, or top-right = Yes"
7802 archosplayer: "(PLAY/STOP)" 7802 archosplayer: "(PLAY/STOP)"
7803 vibe500: "OK = Yes" 7803 vibe500: "OK = Yes"
@@ -7807,7 +7807,7 @@ datos... %d atopadas (PREV para volver)"
7807 cowond2*: "MENU, ou arriba-dereita = Si" 7807 cowond2*: "MENU, ou arriba-dereita = Si"
7808 iriverh100,iriverh120,iriverh300: "NAVI = Si" 7808 iriverh100,iriverh120,iriverh300: "NAVI = Si"
7809samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100 7809samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100
7810,sansaclip*,sansafuze*: "SELECT = Si" 7810,sansaclip*,sansafuze*,sansaconnect: "SELECT = Si"
7811 mrobe500: "PLAY, POWER, ou arriba-dereita = Si" 7811 mrobe500: "PLAY, POWER, ou arriba-dereita = Si"
7812 archosplayer: "(PLAY/STOP)" 7812 archosplayer: "(PLAY/STOP)"
7813 vibe500: "OK = Si" 7813 vibe500: "OK = Si"
@@ -7842,7 +7842,7 @@ samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iri
7842 rtc: "ON = Set" 7842 rtc: "ON = Set"
7843 mrobe500: "HEART = Set" 7843 mrobe500: "HEART = Set"
7844 iriverh100,iriverh120,iriverh300: "NAVI = Set" 7844 iriverh100,iriverh120,iriverh300: "NAVI = Set"
7845 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 7845 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
7846 gogearsa9200: "PLAY = Set" 7846 gogearsa9200: "PLAY = Set"
7847 vibe500: "OK = Set" 7847 vibe500: "OK = Set"
7848 mpiohd300: "ENTER = Set" 7848 mpiohd300: "ENTER = Set"
@@ -7853,7 +7853,7 @@ samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iri
7853 mrobe500: "HEART = Aceptar" 7853 mrobe500: "HEART = Aceptar"
7854 iriverh100,iriverh120,iriverh300: "NAVI = Aceptar" 7854 iriverh100,iriverh120,iriverh300: "NAVI = Aceptar"
7855ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip* 7855ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*
7856,sansafuze*: "SELECT = Aceptar" 7856,sansafuze*,sansaconnect: "SELECT = Aceptar"
7857 gogearsa9200: "PLAY = Aceptar" 7857 gogearsa9200: "PLAY = Aceptar"
7858 vibe500: "OK = Aceptar" 7858 vibe500: "OK = Aceptar"
7859 mpiohd300: "ENTER = Aceptar" 7859 mpiohd300: "ENTER = Aceptar"
diff --git a/apps/lang/hebrew.lang b/apps/lang/hebrew.lang
index 100a5f66ac..5022f449c2 100644
--- a/apps/lang/hebrew.lang
+++ b/apps/lang/hebrew.lang
@@ -256,7 +256,7 @@
256 *: "PLAY = Yes" 256 *: "PLAY = Yes"
257 cowond2*: "MENU, or top-right = Yes" 257 cowond2*: "MENU, or top-right = Yes"
258 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 258 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
259 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 259 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
260 mrobe500: "PLAY, POWER, or top-right = Yes" 260 mrobe500: "PLAY, POWER, or top-right = Yes"
261 archosplayer: "(PLAY/STOP)" 261 archosplayer: "(PLAY/STOP)"
262 vibe500: "OK = Yes" 262 vibe500: "OK = Yes"
@@ -3955,7 +3955,7 @@
3955 rtc: "ON = Set" 3955 rtc: "ON = Set"
3956 mrobe500: "HEART = Set" 3956 mrobe500: "HEART = Set"
3957 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3957 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3958 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3958 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3959 gogearsa9200: "PLAY = Set" 3959 gogearsa9200: "PLAY = Set"
3960 vibe500: "OK = Set" 3960 vibe500: "OK = Set"
3961 mpiohd300: "ENTER = Set" 3961 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/hrvatski.lang b/apps/lang/hrvatski.lang
index 666c0194f5..95cca4d0dd 100644
--- a/apps/lang/hrvatski.lang
+++ b/apps/lang/hrvatski.lang
@@ -248,7 +248,7 @@
248 *: "PLAY = Yes" 248 *: "PLAY = Yes"
249 cowond2*: "MENU, or top-right = Yes" 249 cowond2*: "MENU, or top-right = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 mrobe500: "PLAY, POWER, or top-right = Yes" 252 mrobe500: "PLAY, POWER, or top-right = Yes"
253 archosplayer: "(PLAY/STOP)" 253 archosplayer: "(PLAY/STOP)"
254 vibe500: "OK = Yes" 254 vibe500: "OK = Yes"
@@ -257,7 +257,7 @@
257 *: "PLAY = Da" 257 *: "PLAY = Da"
258 cowond2*: "MENU, ili gore desno = Da" 258 cowond2*: "MENU, ili gore desno = Da"
259 iriverh100,iriverh120,iriverh300: "NAVI = Da" 259 iriverh100,iriverh120,iriverh300: "NAVI = Da"
260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Da" 260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Da"
261 mrobe500: "PLAY, POWER, ili gore desno = Da" 261 mrobe500: "PLAY, POWER, ili gore desno = Da"
262 archosplayer: "(PLAY/STOP)" 262 archosplayer: "(PLAY/STOP)"
263 vibe500: "OK = DA" 263 vibe500: "OK = DA"
@@ -3944,7 +3944,7 @@
3944 rtc: "ON = Set" 3944 rtc: "ON = Set"
3945 mrobe500: "HEART = Set" 3945 mrobe500: "HEART = Set"
3946 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3946 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3947 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3947 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3948 gogearsa9200: "PLAY = Set" 3948 gogearsa9200: "PLAY = Set"
3949 vibe500: "OK = Set" 3949 vibe500: "OK = Set"
3950 mpiohd300: "ENTER = Set" 3950 mpiohd300: "ENTER = Set"
@@ -3954,7 +3954,7 @@
3954 rtc: "ON = Postavi" 3954 rtc: "ON = Postavi"
3955 mrobe500: "HEART = Postavi" 3955 mrobe500: "HEART = Postavi"
3956 iriverh100,iriverh120,iriverh300: "NAVI = Postavi" 3956 iriverh100,iriverh120,iriverh300: "NAVI = Postavi"
3957 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Postavi" 3957 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Postavi"
3958 gogearsa9200: "PLAY = Postavi" 3958 gogearsa9200: "PLAY = Postavi"
3959 vibe500: "OK = Postavi" 3959 vibe500: "OK = Postavi"
3960 mpiohd300: "ENTER = Postavi" 3960 mpiohd300: "ENTER = Postavi"
diff --git a/apps/lang/italiano.lang b/apps/lang/italiano.lang
index 315b4f5938..0c279b9b84 100644
--- a/apps/lang/italiano.lang
+++ b/apps/lang/italiano.lang
@@ -250,7 +250,7 @@
250 *: "PLAY = Yes" 250 *: "PLAY = Yes"
251 cowond2*: "MENU, or top-right = Yes" 251 cowond2*: "MENU, or top-right = Yes"
252 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 252 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
253 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 253 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
254 mrobe500: "PLAY, POWER, or top-right = Yes" 254 mrobe500: "PLAY, POWER, or top-right = Yes"
255 archosplayer: "(PLAY/STOP)" 255 archosplayer: "(PLAY/STOP)"
256 vibe500: "OK = Yes" 256 vibe500: "OK = Yes"
@@ -259,7 +259,7 @@
259 *: "PLAY = Sì" 259 *: "PLAY = Sì"
260 cowond2*: "MENU, o alto-destra = Sì" 260 cowond2*: "MENU, o alto-destra = Sì"
261 iriverh100,iriverh120,iriverh300: "NAVI = Sì" 261 iriverh100,iriverh120,iriverh300: "NAVI = Sì"
262 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Sì" 262 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sì"
263 mrobe500: "PLAY, POWER o alto-destra = Sì" 263 mrobe500: "PLAY, POWER o alto-destra = Sì"
264 archosplayer: "(PLAY/STOP)" 264 archosplayer: "(PLAY/STOP)"
265 vibe500: "OK = Sì" 265 vibe500: "OK = Sì"
@@ -3948,7 +3948,7 @@ desc: deprecated
3948 rtc: "ON = Set" 3948 rtc: "ON = Set"
3949 mrobe500: "HEART = Set" 3949 mrobe500: "HEART = Set"
3950 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3950 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3951 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3951 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3952 gogearsa9200: "PLAY = Set" 3952 gogearsa9200: "PLAY = Set"
3953 vibe500: "OK = Set" 3953 vibe500: "OK = Set"
3954 mpiohd300: "ENTER = Set" 3954 mpiohd300: "ENTER = Set"
@@ -3958,7 +3958,7 @@ desc: deprecated
3958 rtc: "ON = Imposta" 3958 rtc: "ON = Imposta"
3959 mrobe500: "HEART = Imposta" 3959 mrobe500: "HEART = Imposta"
3960 iriverh100,iriverh120,iriverh300: "NAVI = Imposta" 3960 iriverh100,iriverh120,iriverh300: "NAVI = Imposta"
3961 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Imposta" 3961 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Imposta"
3962 gogearsa9200: "PLAY = Imposta" 3962 gogearsa9200: "PLAY = Imposta"
3963 vibe500: "OK = Imposta" 3963 vibe500: "OK = Imposta"
3964 mpiohd300: "ENTER = Imposta" 3964 mpiohd300: "ENTER = Imposta"
diff --git a/apps/lang/japanese.lang b/apps/lang/japanese.lang
index 3a62826d28..f88adf81b8 100644
--- a/apps/lang/japanese.lang
+++ b/apps/lang/japanese.lang
@@ -254,7 +254,7 @@
254 *: "PLAY = Yes" 254 *: "PLAY = Yes"
255 cowond2*: "MENU, or top-right = Yes" 255 cowond2*: "MENU, or top-right = Yes"
256 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 256 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
257 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 257 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
258 mrobe500: "PLAY, POWER, or top-right = Yes" 258 mrobe500: "PLAY, POWER, or top-right = Yes"
259 archosplayer: "(PLAY/STOP)" 259 archosplayer: "(PLAY/STOP)"
260 vibe500: "OK = Yes" 260 vibe500: "OK = Yes"
@@ -263,7 +263,7 @@
263 *: "PLAY = はい" 263 *: "PLAY = はい"
264 cowond2*: "MENU または top-right = はい" 264 cowond2*: "MENU または top-right = はい"
265 iriverh100,iriverh120,iriverh300: "NAVI = はい" 265 iriverh100,iriverh120,iriverh300: "NAVI = はい"
266 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = はい" 266 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = はい"
267 mrobe500: "PLAY または POWER, top-right = はい" 267 mrobe500: "PLAY または POWER, top-right = はい"
268 archosplayer: "(PLAY/STOP)" 268 archosplayer: "(PLAY/STOP)"
269 vibe500: "OK = はい" 269 vibe500: "OK = はい"
@@ -3953,7 +3953,7 @@
3953 rtc: "ON = Set" 3953 rtc: "ON = Set"
3954 mrobe500: "HEART = Set" 3954 mrobe500: "HEART = Set"
3955 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3955 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3956 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3956 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3957 gogearsa9200: "PLAY = Set" 3957 gogearsa9200: "PLAY = Set"
3958 vibe500: "OK = Set" 3958 vibe500: "OK = Set"
3959 mpiohd300: "ENTER = Set" 3959 mpiohd300: "ENTER = Set"
@@ -3963,7 +3963,7 @@
3963 rtc: "ON = 設定" 3963 rtc: "ON = 設定"
3964 mrobe500: "HEART = 設定" 3964 mrobe500: "HEART = 設定"
3965 iriverh100,iriverh120,iriverh300: "NAVI = 設定" 3965 iriverh100,iriverh120,iriverh300: "NAVI = 設定"
3966 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = 設定" 3966 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = 設定"
3967 gogearsa9200: "PLAY = 設定" 3967 gogearsa9200: "PLAY = 設定"
3968 vibe500: "OK = 設定" 3968 vibe500: "OK = 設定"
3969 mpiohd300: "ENTER = 設定" 3969 mpiohd300: "ENTER = 設定"
diff --git a/apps/lang/latviesu.lang b/apps/lang/latviesu.lang
index 0a46088444..98b887a378 100644
--- a/apps/lang/latviesu.lang
+++ b/apps/lang/latviesu.lang
@@ -249,7 +249,7 @@
249 *: "PLAY = Yes" 249 *: "PLAY = Yes"
250 cowond2*: "MENU, or top-right = Yes" 250 cowond2*: "MENU, or top-right = Yes"
251 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 251 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
252 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 252 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
253 mrobe500: "PLAY, POWER, or top-right = Yes" 253 mrobe500: "PLAY, POWER, or top-right = Yes"
254 archosplayer: "(PLAY/STOP)" 254 archosplayer: "(PLAY/STOP)"
255 vibe500: "OK = Yes" 255 vibe500: "OK = Yes"
@@ -258,7 +258,7 @@
258 *: "PLAY = Jā" 258 *: "PLAY = Jā"
259 cowond2*: "MENU, vai labā augšējā = Jā" 259 cowond2*: "MENU, vai labā augšējā = Jā"
260 iriverh100,iriverh120,iriverh300: "NAVI = Jā" 260 iriverh100,iriverh120,iriverh300: "NAVI = Jā"
261 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Jā" 261 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Jā"
262 mrobe500: "PLAY, POWER, vai labā augšējā = Jā" 262 mrobe500: "PLAY, POWER, vai labā augšējā = Jā"
263 archosplayer: "(PLAY/STOP)" 263 archosplayer: "(PLAY/STOP)"
264 vibe500: "OK = Jā" 264 vibe500: "OK = Jā"
@@ -3949,7 +3949,7 @@
3949 rtc: "ON = Set" 3949 rtc: "ON = Set"
3950 mrobe500: "HEART = Set" 3950 mrobe500: "HEART = Set"
3951 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3951 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3952 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3952 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3953 gogearsa9200: "PLAY = Set" 3953 gogearsa9200: "PLAY = Set"
3954 vibe500: "OK = Set" 3954 vibe500: "OK = Set"
3955 mpiohd300: "ENTER = Set" 3955 mpiohd300: "ENTER = Set"
@@ -3959,7 +3959,7 @@
3959 rtc: "ON = Uzstādīt" 3959 rtc: "ON = Uzstādīt"
3960 mrobe500: "HEART = Uzstādīt" 3960 mrobe500: "HEART = Uzstādīt"
3961 iriverh100,iriverh120,iriverh300: "NAVI = Uzstādīt" 3961 iriverh100,iriverh120,iriverh300: "NAVI = Uzstādīt"
3962 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Uzstādīt" 3962 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Uzstādīt"
3963 gogearsa9200: "PLAY = Uzstādīt" 3963 gogearsa9200: "PLAY = Uzstādīt"
3964 vibe500: "OK = Uzstādīt" 3964 vibe500: "OK = Uzstādīt"
3965 mpiohd300: "ENTER = Uzstādīt" 3965 mpiohd300: "ENTER = Uzstādīt"
diff --git a/apps/lang/magyar.lang b/apps/lang/magyar.lang
index a12de094ad..5eb136d6e0 100644
--- a/apps/lang/magyar.lang
+++ b/apps/lang/magyar.lang
@@ -248,7 +248,7 @@
248 *: "PLAY = Yes" 248 *: "PLAY = Yes"
249 cowond2*: "MENU = Yes" 249 cowond2*: "MENU = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 archosplayer: "(PLAY/STOP)" 252 archosplayer: "(PLAY/STOP)"
253 vibe500: "OK = Yes" 253 vibe500: "OK = Yes"
254 </source> 254 </source>
@@ -256,7 +256,7 @@
256 *: "PLAY = Igen" 256 *: "PLAY = Igen"
257 cowond2*: "MENU = Igen" 257 cowond2*: "MENU = Igen"
258 iriverh100,iriverh120,iriverh300: "NAVI = Igen" 258 iriverh100,iriverh120,iriverh300: "NAVI = Igen"
259 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Igen" 259 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Igen"
260 archosplayer: "(PLAY/STOP)" 260 archosplayer: "(PLAY/STOP)"
261 vibe500: "OK = Igen" 261 vibe500: "OK = Igen"
262 </dest> 262 </dest>
@@ -3926,7 +3926,7 @@
3926 rtc: "ON = Set" 3926 rtc: "ON = Set"
3927 mrobe500: "HEART = Set" 3927 mrobe500: "HEART = Set"
3928 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3928 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3929 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3929 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3930 gogearsa9200: "PLAY = Set" 3930 gogearsa9200: "PLAY = Set"
3931 vibe500: "OK = Set" 3931 vibe500: "OK = Set"
3932 mpiohd300: "ENTER = Set" 3932 mpiohd300: "ENTER = Set"
@@ -3936,7 +3936,7 @@
3936 rtc: "ON = Beállít" 3936 rtc: "ON = Beállít"
3937 mrobe500: "SZÍV = Beállít" 3937 mrobe500: "SZÍV = Beállít"
3938 iriverh100,iriverh120,iriverh300: "NAVI = Beállít" 3938 iriverh100,iriverh120,iriverh300: "NAVI = Beállít"
3939 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Beállít" 3939 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Beállít"
3940 gogearsa9200: "PLAY = Beállít" 3940 gogearsa9200: "PLAY = Beállít"
3941 vibe500: "OK = Beállít" 3941 vibe500: "OK = Beállít"
3942 mpiohd300: "ENTER = Beállít" 3942 mpiohd300: "ENTER = Beállít"
diff --git a/apps/lang/nederlands.lang b/apps/lang/nederlands.lang
index 689b410a96..bf376be817 100644
--- a/apps/lang/nederlands.lang
+++ b/apps/lang/nederlands.lang
@@ -9558,7 +9558,7 @@
9558 *: "PLAY = Yes" 9558 *: "PLAY = Yes"
9559 cowond2*: "MENU, or top-right = Yes" 9559 cowond2*: "MENU, or top-right = Yes"
9560 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 9560 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
9561 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 9561 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
9562 mrobe500: "PLAY, POWER, or top-right = Yes" 9562 mrobe500: "PLAY, POWER, or top-right = Yes"
9563 archosplayer: "(PLAY/STOP)" 9563 archosplayer: "(PLAY/STOP)"
9564 vibe500: "OK = Yes" 9564 vibe500: "OK = Yes"
@@ -9567,7 +9567,7 @@
9567 *: "PLAY = Ja" 9567 *: "PLAY = Ja"
9568 cowond2*: "MENU of bovenaan rechts = Ja" 9568 cowond2*: "MENU of bovenaan rechts = Ja"
9569 iriverh100,iriverh120,iriverh300: "NAVI = Ja" 9569 iriverh100,iriverh120,iriverh300: "NAVI = Ja"
9570 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Ja" 9570 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja"
9571 mrobe500: "PLAY, POWER, of bovenaan rechts = Ja" 9571 mrobe500: "PLAY, POWER, of bovenaan rechts = Ja"
9572 archosplayer: "(PLAY/STOP)" 9572 archosplayer: "(PLAY/STOP)"
9573 vibe500: "OK = Ja" 9573 vibe500: "OK = Ja"
@@ -9585,7 +9585,7 @@
9585 rtc: "ON = Set" 9585 rtc: "ON = Set"
9586 mrobe500: "HEART = Set" 9586 mrobe500: "HEART = Set"
9587 iriverh100,iriverh120,iriverh300: "NAVI = Set" 9587 iriverh100,iriverh120,iriverh300: "NAVI = Set"
9588 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 9588 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
9589 gogearsa9200: "PLAY = Set" 9589 gogearsa9200: "PLAY = Set"
9590 vibe500: "OK = Set" 9590 vibe500: "OK = Set"
9591 mpiohd300: "ENTER = Set" 9591 mpiohd300: "ENTER = Set"
@@ -9595,7 +9595,7 @@
9595 rtc: "ON = Instellen" 9595 rtc: "ON = Instellen"
9596 mrobe500: "HEART = Instellen" 9596 mrobe500: "HEART = Instellen"
9597 iriverh100,iriverh120,iriverh300: "NAVI = Instellen" 9597 iriverh100,iriverh120,iriverh300: "NAVI = Instellen"
9598 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Instellen" 9598 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Instellen"
9599 gogearsa9200: "PLAY = Instellen" 9599 gogearsa9200: "PLAY = Instellen"
9600 vibe500: "OK = Instellen" 9600 vibe500: "OK = Instellen"
9601 mpiohd300: "ENTER = Instellen" 9601 mpiohd300: "ENTER = Instellen"
diff --git a/apps/lang/norsk-nynorsk.lang b/apps/lang/norsk-nynorsk.lang
index 432b21186d..6717f563b3 100644
--- a/apps/lang/norsk-nynorsk.lang
+++ b/apps/lang/norsk-nynorsk.lang
@@ -9245,7 +9245,7 @@
9245 *: "PLAY = Yes" 9245 *: "PLAY = Yes"
9246 cowond2*: "MENU, or top-right = Yes" 9246 cowond2*: "MENU, or top-right = Yes"
9247 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 9247 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
9248 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 9248 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
9249 mrobe500: "PLAY, POWER, or top-right = Yes" 9249 mrobe500: "PLAY, POWER, or top-right = Yes"
9250 archosplayer: "(PLAY/STOP)" 9250 archosplayer: "(PLAY/STOP)"
9251 vibe500: "OK = Yes" 9251 vibe500: "OK = Yes"
@@ -9254,7 +9254,7 @@
9254 *: "PLAY = ja" 9254 *: "PLAY = ja"
9255 cowond2*: "MENU eller topp høgre = ja" 9255 cowond2*: "MENU eller topp høgre = ja"
9256 iriverh100,iriverh120,iriverh300: "NAVI = ja" 9256 iriverh100,iriverh120,iriverh300: "NAVI = ja"
9257 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = ja" 9257 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ja"
9258 mrobe500: "PLAY, POWER eller topp høgre = ja" 9258 mrobe500: "PLAY, POWER eller topp høgre = ja"
9259 archosplayer: "(PLAY/STOP)" 9259 archosplayer: "(PLAY/STOP)"
9260 vibe500: "OK = ja" 9260 vibe500: "OK = ja"
@@ -9272,7 +9272,7 @@
9272 rtc: "ON = Set" 9272 rtc: "ON = Set"
9273 mrobe500: "HEART = Set" 9273 mrobe500: "HEART = Set"
9274 iriverh100,iriverh120,iriverh300: "NAVI = Set" 9274 iriverh100,iriverh120,iriverh300: "NAVI = Set"
9275 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 9275 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
9276 gogearsa9200: "PLAY = Set" 9276 gogearsa9200: "PLAY = Set"
9277 vibe500: "OK = Set" 9277 vibe500: "OK = Set"
9278 mpiohd300: "ENTER = Set" 9278 mpiohd300: "ENTER = Set"
@@ -9282,7 +9282,7 @@
9282 rtc: "PÅ = velg" 9282 rtc: "PÅ = velg"
9283 mrobe500: "HEART = velg" 9283 mrobe500: "HEART = velg"
9284 iriverh100,iriverh120,iriverh300: "NAVI = velg" 9284 iriverh100,iriverh120,iriverh300: "NAVI = velg"
9285 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = velg" 9285 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = velg"
9286 gogearsa9200: "PLAY = velg" 9286 gogearsa9200: "PLAY = velg"
9287 vibe500: "OK = velg" 9287 vibe500: "OK = velg"
9288 mpiohd300: "ENTER = velg" 9288 mpiohd300: "ENTER = velg"
diff --git a/apps/lang/norsk.lang b/apps/lang/norsk.lang
index aa2f92dd61..d4c99e6b53 100644
--- a/apps/lang/norsk.lang
+++ b/apps/lang/norsk.lang
@@ -9511,7 +9511,7 @@
9511 *: "PLAY = Yes" 9511 *: "PLAY = Yes"
9512 cowond2*: "MENU, or top-right = Yes" 9512 cowond2*: "MENU, or top-right = Yes"
9513 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 9513 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
9514 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 9514 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
9515 mrobe500: "PLAY, POWER, or top-right = Yes" 9515 mrobe500: "PLAY, POWER, or top-right = Yes"
9516 archosplayer: "(PLAY/STOP)" 9516 archosplayer: "(PLAY/STOP)"
9517 vibe500: "OK = Yes" 9517 vibe500: "OK = Yes"
@@ -9520,7 +9520,7 @@
9520 *: "PLAY = Ja" 9520 *: "PLAY = Ja"
9521 cowond2*: "MENU eller topp høyre = Ja" 9521 cowond2*: "MENU eller topp høyre = Ja"
9522 iriverh100,iriverh120,iriverh300: "NAVI = Ja" 9522 iriverh100,iriverh120,iriverh300: "NAVI = Ja"
9523 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Ja" 9523 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ja"
9524 mrobe500: "Play, POWER eller topp høyre = Ja" 9524 mrobe500: "Play, POWER eller topp høyre = Ja"
9525 archosplayer: "(PLAY/STOP)" 9525 archosplayer: "(PLAY/STOP)"
9526 vibe500: "OK = Ja" 9526 vibe500: "OK = Ja"
@@ -9538,7 +9538,7 @@
9538 rtc: "ON = Set" 9538 rtc: "ON = Set"
9539 mrobe500: "HEART = Set" 9539 mrobe500: "HEART = Set"
9540 iriverh100,iriverh120,iriverh300: "NAVI = Set" 9540 iriverh100,iriverh120,iriverh300: "NAVI = Set"
9541 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 9541 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
9542 gogearsa9200: "PLAY = Set" 9542 gogearsa9200: "PLAY = Set"
9543 vibe500: "OK = Set" 9543 vibe500: "OK = Set"
9544 mpiohd300: "ENTER = Set" 9544 mpiohd300: "ENTER = Set"
@@ -9548,7 +9548,7 @@
9548 rtc: "ON = Sett" 9548 rtc: "ON = Sett"
9549 mrobe500: "HEART = Sett" 9549 mrobe500: "HEART = Sett"
9550 iriverh100,iriverh120,iriverh300: "NAVI = Sett" 9550 iriverh100,iriverh120,iriverh300: "NAVI = Sett"
9551 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Sett" 9551 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sett"
9552 gogearsa9200: "PLAY = Sett" 9552 gogearsa9200: "PLAY = Sett"
9553 vibe500: "OK = Sett" 9553 vibe500: "OK = Sett"
9554 mpiohd300: "ENTER = Sett" 9554 mpiohd300: "ENTER = Sett"
diff --git a/apps/lang/polski.lang b/apps/lang/polski.lang
index 8baa93d774..53d6af3b0d 100644
--- a/apps/lang/polski.lang
+++ b/apps/lang/polski.lang
@@ -256,7 +256,7 @@
256 *: "PLAY = Yes" 256 *: "PLAY = Yes"
257 cowond2*: "MENU, or top-right = Yes" 257 cowond2*: "MENU, or top-right = Yes"
258 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 258 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
259 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 259 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
260 mrobe500: "PLAY, POWER, or top-right = Yes" 260 mrobe500: "PLAY, POWER, or top-right = Yes"
261 archosplayer: "(PLAY/STOP)" 261 archosplayer: "(PLAY/STOP)"
262 vibe500: "OK = Yes" 262 vibe500: "OK = Yes"
@@ -265,7 +265,7 @@
265 *: "PLAY = Tak" 265 *: "PLAY = Tak"
266 covond2*: "MENU lub lewo-góra = Tak" 266 covond2*: "MENU lub lewo-góra = Tak"
267 iriverh100,iriverh120,iriverh300: "NAVI = Tak" 267 iriverh100,iriverh120,iriverh300: "NAVI = Tak"
268 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Tak" 268 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Tak"
269 mrobe500: "PLAY lub POWER = Tak" 269 mrobe500: "PLAY lub POWER = Tak"
270 archosplayer: "(PLAY/STOP)" 270 archosplayer: "(PLAY/STOP)"
271 vibe500: "OK = Tak" 271 vibe500: "OK = Tak"
@@ -3954,7 +3954,7 @@
3954 rtc: "ON = Set" 3954 rtc: "ON = Set"
3955 mrobe500: "HEART = Set" 3955 mrobe500: "HEART = Set"
3956 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3956 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3957 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3957 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3958 gogearsa9200: "PLAY = Set" 3958 gogearsa9200: "PLAY = Set"
3959 vibe500: "OK = Set" 3959 vibe500: "OK = Set"
3960 mpiohd300: "ENTER = Set" 3960 mpiohd300: "ENTER = Set"
@@ -3964,7 +3964,7 @@
3964 rtc: "ON = Ustaw" 3964 rtc: "ON = Ustaw"
3965 mrobe500: "HEART = Ustaw" 3965 mrobe500: "HEART = Ustaw"
3966 iriverh100,iriverh120,iriverh300: "NAVI = Ustaw" 3966 iriverh100,iriverh120,iriverh300: "NAVI = Ustaw"
3967 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Ustaw" 3967 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ustaw"
3968 gogearsa9200:"PLAY = Ustaw" 3968 gogearsa9200:"PLAY = Ustaw"
3969 vibe500: "OK = Ustaw" 3969 vibe500: "OK = Ustaw"
3970 mpiohd300: "ENTER = Ustaw" 3970 mpiohd300: "ENTER = Ustaw"
diff --git a/apps/lang/portugues-brasileiro.lang b/apps/lang/portugues-brasileiro.lang
index 2fd14399b1..e0467ac235 100644
--- a/apps/lang/portugues-brasileiro.lang
+++ b/apps/lang/portugues-brasileiro.lang
@@ -250,7 +250,7 @@
250 *: "PLAY = Yes" 250 *: "PLAY = Yes"
251 cowond2*: "MENU, or top-right = Yes" 251 cowond2*: "MENU, or top-right = Yes"
252 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 252 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
253 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 253 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
254 mrobe500: "PLAY, POWER, or top-right = Yes" 254 mrobe500: "PLAY, POWER, or top-right = Yes"
255 archosplayer: "(PLAY/STOP)" 255 archosplayer: "(PLAY/STOP)"
256 vibe500: "OK = Yes" 256 vibe500: "OK = Yes"
@@ -259,7 +259,7 @@
259 *: "PLAY = Sim" 259 *: "PLAY = Sim"
260 cowond2*: "MENU, ou topo direito = Sim" 260 cowond2*: "MENU, ou topo direito = Sim"
261 iriverh100,iriverh120,iriverh300: "NAVI = Sim" 261 iriverh100,iriverh120,iriverh300: "NAVI = Sim"
262 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Sim" 262 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sim"
263 mrobe500: "PLAY, POWER, ou topo direito = Sim" 263 mrobe500: "PLAY, POWER, ou topo direito = Sim"
264 archosplayer: "(PLAY/STOP)" 264 archosplayer: "(PLAY/STOP)"
265 vibe500: "OK = Sim" 265 vibe500: "OK = Sim"
@@ -3948,7 +3948,7 @@
3948 rtc: "ON = Set" 3948 rtc: "ON = Set"
3949 mrobe500: "HEART = Set" 3949 mrobe500: "HEART = Set"
3950 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3950 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3951 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3951 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3952 gogearsa9200: "PLAY = Set" 3952 gogearsa9200: "PLAY = Set"
3953 vibe500: "OK = Set" 3953 vibe500: "OK = Set"
3954 mpiohd300: "ENTER = Set" 3954 mpiohd300: "ENTER = Set"
@@ -3958,7 +3958,7 @@
3958 rtc: "ON = Ajustar" 3958 rtc: "ON = Ajustar"
3959 mrobe500: "HEART = Ajustar" 3959 mrobe500: "HEART = Ajustar"
3960 iriverh100,iriverh120,iriverh300: "NAVI = Ajustar" 3960 iriverh100,iriverh120,iriverh300: "NAVI = Ajustar"
3961 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Ajustar" 3961 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ajustar"
3962 gogearsa9200: "PLAY = Ajustar" 3962 gogearsa9200: "PLAY = Ajustar"
3963 vibe500: "OK = Ajustar" 3963 vibe500: "OK = Ajustar"
3964 mpiohd300: "ENTER = Ajustar" 3964 mpiohd300: "ENTER = Ajustar"
diff --git a/apps/lang/portugues.lang b/apps/lang/portugues.lang
index fde14e89b4..f13d17ea5e 100644
--- a/apps/lang/portugues.lang
+++ b/apps/lang/portugues.lang
@@ -7582,7 +7582,7 @@
7582 *: "PLAY = Yes" 7582 *: "PLAY = Yes"
7583 cowond2*: "MENU, or top-right = Yes" 7583 cowond2*: "MENU, or top-right = Yes"
7584 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 7584 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
7585 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 7585 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
7586 mrobe500: "PLAY, POWER, or top-right = Yes" 7586 mrobe500: "PLAY, POWER, or top-right = Yes"
7587 archosplayer: "(PLAY/STOP)" 7587 archosplayer: "(PLAY/STOP)"
7588 vibe500: "OK = Yes" 7588 vibe500: "OK = Yes"
@@ -7591,7 +7591,7 @@
7591 *: "PLAY = Sim" 7591 *: "PLAY = Sim"
7592 cowond2*: "MENU, ou canto superior direito = Sim" 7592 cowond2*: "MENU, ou canto superior direito = Sim"
7593 iriverh100,iriverh120,iriverh300: "NAVI = Sim" 7593 iriverh100,iriverh120,iriverh300: "NAVI = Sim"
7594 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Sim" 7594 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Sim"
7595 mrobe500: "PLAY, POWER, ou canto superior direito = Sim" 7595 mrobe500: "PLAY, POWER, ou canto superior direito = Sim"
7596 archosplayer: "(PLAY/STOP)" 7596 archosplayer: "(PLAY/STOP)"
7597 vibe500: "OK = Sim" 7597 vibe500: "OK = Sim"
@@ -7609,7 +7609,7 @@
7609 rtc: "ON = Set" 7609 rtc: "ON = Set"
7610 mrobe500: "HEART = Set" 7610 mrobe500: "HEART = Set"
7611 iriverh100,iriverh120,iriverh300: "NAVI = Set" 7611 iriverh100,iriverh120,iriverh300: "NAVI = Set"
7612 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 7612 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
7613 gogearsa9200: "PLAY = Set" 7613 gogearsa9200: "PLAY = Set"
7614 vibe500: "OK = Set" 7614 vibe500: "OK = Set"
7615 mpiohd300: "ENTER = Set" 7615 mpiohd300: "ENTER = Set"
@@ -7619,7 +7619,7 @@
7619 rtc: "ON = Definir" 7619 rtc: "ON = Definir"
7620 mrobe500: "HEART = Definir" 7620 mrobe500: "HEART = Definir"
7621 iriverh100,iriverh120,iriverh300: "NAVI = Definir" 7621 iriverh100,iriverh120,iriverh300: "NAVI = Definir"
7622 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Definir" 7622 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Definir"
7623 gogearsa9200: "PLAY = Definir" 7623 gogearsa9200: "PLAY = Definir"
7624 vibe500: "OK = Definir" 7624 vibe500: "OK = Definir"
7625 mpiohd300: "ENTER = Definir" 7625 mpiohd300: "ENTER = Definir"
diff --git a/apps/lang/romaneste.lang b/apps/lang/romaneste.lang
index 8fcb4f8b99..6b9b23e942 100644
--- a/apps/lang/romaneste.lang
+++ b/apps/lang/romaneste.lang
@@ -4672,7 +4672,7 @@
4672 *: "PLAY = Yes" 4672 *: "PLAY = Yes"
4673 cowond2*: "MENU, or top-right = Yes" 4673 cowond2*: "MENU, or top-right = Yes"
4674 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 4674 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
4675 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 4675 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
4676 mrobe500: "PLAY, POWER, or top-right = Yes" 4676 mrobe500: "PLAY, POWER, or top-right = Yes"
4677 archosplayer: "(PLAY/STOP)" 4677 archosplayer: "(PLAY/STOP)"
4678 vibe500: "OK = Yes" 4678 vibe500: "OK = Yes"
@@ -4681,7 +4681,7 @@
4681 *: "PLAY = Da" 4681 *: "PLAY = Da"
4682 cowond2*: "MENIU sau dreapta-sus = Da" 4682 cowond2*: "MENIU sau dreapta-sus = Da"
4683 iriverh100,iriverh120,iriverh300: "NAVIGARE = Da" 4683 iriverh100,iriverh120,iriverh300: "NAVIGARE = Da"
4684 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECTARE = Da" 4684 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECTARE = Da"
4685 mrobe500: "RULARE, PORNIRE sau dreapta-sus = Da" 4685 mrobe500: "RULARE, PORNIRE sau dreapta-sus = Da"
4686 archosplayer: "(RULARE/STOP)" 4686 archosplayer: "(RULARE/STOP)"
4687 vibe500: "OK = Da" 4687 vibe500: "OK = Da"
@@ -4713,7 +4713,7 @@
4713 rtc: "ON = Set" 4713 rtc: "ON = Set"
4714 mrobe500: "HEART = Set" 4714 mrobe500: "HEART = Set"
4715 iriverh100,iriverh120,iriverh300: "NAVI = Set" 4715 iriverh100,iriverh120,iriverh300: "NAVI = Set"
4716 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 4716 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
4717 gogearsa9200: "PLAY = Set" 4717 gogearsa9200: "PLAY = Set"
4718 vibe500: "OK = Set" 4718 vibe500: "OK = Set"
4719 mpiohd300: "ENTER = Set" 4719 mpiohd300: "ENTER = Set"
@@ -4723,7 +4723,7 @@
4723 rtc: "ON = Setat" 4723 rtc: "ON = Setat"
4724 mrobe500: "INIMĂ = Setat" 4724 mrobe500: "INIMĂ = Setat"
4725 iriverh100,iriverh120,iriverh300: "NAVI = Setat" 4725 iriverh100,iriverh120,iriverh300: "NAVI = Setat"
4726 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECTARE = Setat" 4726 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECTARE = Setat"
4727 gogearsa9200: "RULARE = Setat" 4727 gogearsa9200: "RULARE = Setat"
4728 vibe500: "OK = Setat" 4728 vibe500: "OK = Setat"
4729 mpiohd300: "ENTER = Setat" 4729 mpiohd300: "ENTER = Setat"
diff --git a/apps/lang/russian.lang b/apps/lang/russian.lang
index 2e2993c765..1dd1d812ca 100644
--- a/apps/lang/russian.lang
+++ b/apps/lang/russian.lang
@@ -8176,7 +8176,7 @@
8176 *: "PLAY = Yes" 8176 *: "PLAY = Yes"
8177 cowond2*: "MENU, or top-right = Yes" 8177 cowond2*: "MENU, or top-right = Yes"
8178 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 8178 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
8179 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 8179 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
8180 mrobe500: "PLAY, POWER, or top-right = Yes" 8180 mrobe500: "PLAY, POWER, or top-right = Yes"
8181 archosplayer: "(PLAY/STOP)" 8181 archosplayer: "(PLAY/STOP)"
8182 vibe500: "OK = Yes" 8182 vibe500: "OK = Yes"
@@ -8203,7 +8203,7 @@
8203 rtc: "ON = Set" 8203 rtc: "ON = Set"
8204 mrobe500: "HEART = Set" 8204 mrobe500: "HEART = Set"
8205 iriverh100,iriverh120,iriverh300: "NAVI = Set" 8205 iriverh100,iriverh120,iriverh300: "NAVI = Set"
8206 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 8206 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
8207 gogearsa9200: "PLAY = Set" 8207 gogearsa9200: "PLAY = Set"
8208 vibe500: "OK = Set" 8208 vibe500: "OK = Set"
8209 mpiohd300: "ENTER = Set" 8209 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/slovak.lang b/apps/lang/slovak.lang
index a3e417f1d0..89743ad8a9 100644
--- a/apps/lang/slovak.lang
+++ b/apps/lang/slovak.lang
@@ -248,7 +248,7 @@
248 *: "PLAY = Yes" 248 *: "PLAY = Yes"
249 cowond2*: "MENU, or top-right = Yes" 249 cowond2*: "MENU, or top-right = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 mrobe500: "PLAY, POWER, or top-right = Yes" 252 mrobe500: "PLAY, POWER, or top-right = Yes"
253 archosplayer: "(PLAY/STOP)" 253 archosplayer: "(PLAY/STOP)"
254 vibe500: "OK = Yes" 254 vibe500: "OK = Yes"
@@ -257,7 +257,7 @@
257 *: "PLAY = Áno" 257 *: "PLAY = Áno"
258 cowond2*: "MENU, alebo vpravo-hore = Áno" 258 cowond2*: "MENU, alebo vpravo-hore = Áno"
259 iriverh100,iriverh120,iriverh300: "NAVI = Áno" 259 iriverh100,iriverh120,iriverh300: "NAVI = Áno"
260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Áno" 260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Áno"
261 mrobe500: "PLAY, POWER, alebo Vpravo-hore = Áno" 261 mrobe500: "PLAY, POWER, alebo Vpravo-hore = Áno"
262 archosplayer: "(PLAY/STOP)" 262 archosplayer: "(PLAY/STOP)"
263 vibe500: "OK = Áno" 263 vibe500: "OK = Áno"
@@ -3946,7 +3946,7 @@
3946 rtc: "ON = Set" 3946 rtc: "ON = Set"
3947 mrobe500: "HEART = Set" 3947 mrobe500: "HEART = Set"
3948 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3948 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3949 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3949 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3950 gogearsa9200: "PLAY = Set" 3950 gogearsa9200: "PLAY = Set"
3951 vibe500: "OK = Set" 3951 vibe500: "OK = Set"
3952 mpiohd300: "ENTER = Set" 3952 mpiohd300: "ENTER = Set"
@@ -3956,7 +3956,7 @@
3956 rtc: "ON = Nastaviť" 3956 rtc: "ON = Nastaviť"
3957 mrobe500: "HEART = Nastaviť" 3957 mrobe500: "HEART = Nastaviť"
3958 iriverh100,iriverh120,iriverh300: "NAVI = Nastaviť" 3958 iriverh100,iriverh120,iriverh300: "NAVI = Nastaviť"
3959 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Nastaviť" 3959 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Nastaviť"
3960 gogearsa9200: "PLAY = Nastaviť" 3960 gogearsa9200: "PLAY = Nastaviť"
3961 vibe500: "OK = Nastaviť" 3961 vibe500: "OK = Nastaviť"
3962 mpiohd300: "ENTER = Nastaviť" 3962 mpiohd300: "ENTER = Nastaviť"
diff --git a/apps/lang/slovenscina.lang b/apps/lang/slovenscina.lang
index 546eb86b5e..aa92dab533 100644
--- a/apps/lang/slovenscina.lang
+++ b/apps/lang/slovenscina.lang
@@ -5323,7 +5323,7 @@
5323 *: "PLAY = Yes" 5323 *: "PLAY = Yes"
5324 cowond2*: "MENU, or top-right = Yes" 5324 cowond2*: "MENU, or top-right = Yes"
5325 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 5325 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
5326 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 5326 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
5327 mrobe500: "PLAY, POWER, or top-right = Yes" 5327 mrobe500: "PLAY, POWER, or top-right = Yes"
5328 archosplayer: "(PLAY/STOP)" 5328 archosplayer: "(PLAY/STOP)"
5329 vibe500: "OK = Yes" 5329 vibe500: "OK = Yes"
@@ -5332,7 +5332,7 @@
5332 *: "PLAY = Yes" 5332 *: "PLAY = Yes"
5333 cowond2*: "MENU, or top-right = Yes" 5333 cowond2*: "MENU, or top-right = Yes"
5334 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 5334 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
5335 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 5335 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
5336 mrobe500: "PLAY, POWER, or top-right = Yes" 5336 mrobe500: "PLAY, POWER, or top-right = Yes"
5337 archosplayer: "(PLAY/STOP)" 5337 archosplayer: "(PLAY/STOP)"
5338 vibe500: "OK = Yes" 5338 vibe500: "OK = Yes"
@@ -5364,7 +5364,7 @@
5364 rtc: "ON = Set" 5364 rtc: "ON = Set"
5365 mrobe500: "HEART = Set" 5365 mrobe500: "HEART = Set"
5366 iriverh100,iriverh120,iriverh300: "NAVI = Set" 5366 iriverh100,iriverh120,iriverh300: "NAVI = Set"
5367 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 5367 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
5368 gogearsa9200: "PLAY = Set" 5368 gogearsa9200: "PLAY = Set"
5369 vibe500: "OK = Set" 5369 vibe500: "OK = Set"
5370 mpiohd300: "ENTER = Set" 5370 mpiohd300: "ENTER = Set"
@@ -5374,7 +5374,7 @@
5374 rtc: "ON = Set" 5374 rtc: "ON = Set"
5375 mrobe500: "HEART = Set" 5375 mrobe500: "HEART = Set"
5376 iriverh100,iriverh120,iriverh300: "NAVI = Set" 5376 iriverh100,iriverh120,iriverh300: "NAVI = Set"
5377 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 5377 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
5378 gogearsa9200: "PLAY = Set" 5378 gogearsa9200: "PLAY = Set"
5379 vibe500: "OK = Set" 5379 vibe500: "OK = Set"
5380 mpiohd300: "ENTER = Set" 5380 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/srpski.lang b/apps/lang/srpski.lang
index 8d5b311c4b..0a144548d3 100644
--- a/apps/lang/srpski.lang
+++ b/apps/lang/srpski.lang
@@ -248,7 +248,7 @@
248 *: "PLAY = Yes" 248 *: "PLAY = Yes"
249 cowond2*: "MENU, or top-right = Yes" 249 cowond2*: "MENU, or top-right = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 mrobe500: "PLAY, POWER, or top-right = Yes" 252 mrobe500: "PLAY, POWER, or top-right = Yes"
253 archosplayer: "(PLAY/STOP)" 253 archosplayer: "(PLAY/STOP)"
254 vibe500: "OK = Yes" 254 vibe500: "OK = Yes"
@@ -257,7 +257,7 @@
257 *: "PLAY = Да" 257 *: "PLAY = Да"
258 cowond2*: "MENU, или горе-десно = Да" 258 cowond2*: "MENU, или горе-десно = Да"
259 iriverh100,iriverh120,iriverh300: "NAVI = Да" 259 iriverh100,iriverh120,iriverh300: "NAVI = Да"
260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Да" 260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Да"
261 mrobe500: "PLAY, POWER, или горе-десно = Да" 261 mrobe500: "PLAY, POWER, или горе-десно = Да"
262 archosplayer: "(PLAY/STOP)" 262 archosplayer: "(PLAY/STOP)"
263 vibe500: "OK = Да" 263 vibe500: "OK = Да"
@@ -3929,7 +3929,7 @@
3929 rtc: "ON = Set" 3929 rtc: "ON = Set"
3930 mrobe500: "HEART = Set" 3930 mrobe500: "HEART = Set"
3931 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3931 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3932 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3932 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3933 gogearsa9200: "PLAY = Set" 3933 gogearsa9200: "PLAY = Set"
3934 vibe500: "OK = Set" 3934 vibe500: "OK = Set"
3935 mpiohd300: "ENTER = Set" 3935 mpiohd300: "ENTER = Set"
@@ -3939,7 +3939,7 @@
3939 rtc: "ON = Постави" 3939 rtc: "ON = Постави"
3940 mrobe500: "HEART = Постави" 3940 mrobe500: "HEART = Постави"
3941 iriverh100,iriverh120,iriverh300: "NAVI = Постави" 3941 iriverh100,iriverh120,iriverh300: "NAVI = Постави"
3942 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Постави" 3942 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Постави"
3943 gogearsa9200: "PLAY = Постави" 3943 gogearsa9200: "PLAY = Постави"
3944 vibe500: "OK = Постави" 3944 vibe500: "OK = Постави"
3945 mpiohd300: "ENTER = Постави" 3945 mpiohd300: "ENTER = Постави"
diff --git a/apps/lang/svenska.lang b/apps/lang/svenska.lang
index c0b1b048cf..68de1413cd 100644
--- a/apps/lang/svenska.lang
+++ b/apps/lang/svenska.lang
@@ -254,7 +254,7 @@
254 *: "PLAY = Yes" 254 *: "PLAY = Yes"
255 cowond2*: "MENU, or top-right = Yes" 255 cowond2*: "MENU, or top-right = Yes"
256 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 256 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
257 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 257 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
258 mrobe500: "PLAY, POWER, or top-right = Yes" 258 mrobe500: "PLAY, POWER, or top-right = Yes"
259 archosplayer: "(PLAY/STOP)" 259 archosplayer: "(PLAY/STOP)"
260 vibe500: "OK = Yes" 260 vibe500: "OK = Yes"
@@ -3952,7 +3952,7 @@
3952 rtc: "ON = Set" 3952 rtc: "ON = Set"
3953 mrobe500: "HEART = Set" 3953 mrobe500: "HEART = Set"
3954 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3954 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3955 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3955 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3956 gogearsa9200: "PLAY = Set" 3956 gogearsa9200: "PLAY = Set"
3957 vibe500: "OK = Set" 3957 vibe500: "OK = Set"
3958 mpiohd300: "ENTER = Set" 3958 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/tagalog.lang b/apps/lang/tagalog.lang
index 51d8e912df..e1d8844a7c 100644
--- a/apps/lang/tagalog.lang
+++ b/apps/lang/tagalog.lang
@@ -248,7 +248,7 @@
248 *: "PLAY = Yes" 248 *: "PLAY = Yes"
249 cowond2*: "MENU, or top-right = Yes" 249 cowond2*: "MENU, or top-right = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 mrobe500: "PLAY, POWER, or top-right = Yes" 252 mrobe500: "PLAY, POWER, or top-right = Yes"
253 archosplayer: "(PLAY/STOP)" 253 archosplayer: "(PLAY/STOP)"
254 vibe500: "OK = Yes" 254 vibe500: "OK = Yes"
@@ -257,7 +257,7 @@
257 *: "PLAY = Oo" 257 *: "PLAY = Oo"
258 cowond2*: "MENU = Oo" 258 cowond2*: "MENU = Oo"
259 iriverh100,iriverh120,iriverh300: "NAVI = Oo" 259 iriverh100,iriverh120,iriverh300: "NAVI = Oo"
260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Oo" 260 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oo"
261 mrobe500: "PLAY, POWER, or top-right = Oo" 261 mrobe500: "PLAY, POWER, or top-right = Oo"
262 archosplayer: "(PLAY/STOP)" 262 archosplayer: "(PLAY/STOP)"
263 vibe500: "OK = Oo" 263 vibe500: "OK = Oo"
@@ -3930,7 +3930,7 @@
3930 rtc: "ON = Set" 3930 rtc: "ON = Set"
3931 mrobe500: "HEART = Set" 3931 mrobe500: "HEART = Set"
3932 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3932 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3933 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3933 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3934 gogearsa9200: "PLAY = Set" 3934 gogearsa9200: "PLAY = Set"
3935 vibe500: "OK = Set" 3935 vibe500: "OK = Set"
3936 mpiohd300: "ENTER = Set" 3936 mpiohd300: "ENTER = Set"
@@ -3940,7 +3940,7 @@
3940 rtc: "ON = Ilagay" 3940 rtc: "ON = Ilagay"
3941 mrobe500: "HEART =Ilagay" 3941 mrobe500: "HEART =Ilagay"
3942 iriverh100,iriverh120,iriverh300: "NAVI = Ilagay" 3942 iriverh100,iriverh120,iriverh300: "NAVI = Ilagay"
3943 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Ilagay" 3943 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ilagay"
3944 gogearsa9200: "PLAY = Ilagay" 3944 gogearsa9200: "PLAY = Ilagay"
3945 vibe500: "OK = Ilagay" 3945 vibe500: "OK = Ilagay"
3946 mpiohd300: "ENTER = Ilagay" 3946 mpiohd300: "ENTER = Ilagay"
diff --git a/apps/lang/thai.lang b/apps/lang/thai.lang
index e0079ac408..015c332f10 100644
--- a/apps/lang/thai.lang
+++ b/apps/lang/thai.lang
@@ -249,7 +249,7 @@
249 *: "PLAY = Yes" 249 *: "PLAY = Yes"
250 cowond2*: "MENU, or top-right = Yes" 250 cowond2*: "MENU, or top-right = Yes"
251 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 251 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
252 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 252 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
253 mrobe500: "PLAY, POWER, or top-right = Yes" 253 mrobe500: "PLAY, POWER, or top-right = Yes"
254 archosplayer: "(PLAY/STOP)" 254 archosplayer: "(PLAY/STOP)"
255 vibe500: "OK = Yes" 255 vibe500: "OK = Yes"
@@ -258,7 +258,7 @@
258 *: "PLAY = ใช่" 258 *: "PLAY = ใช่"
259 cowond2*: "MENU = ใช่" 259 cowond2*: "MENU = ใช่"
260 iriverh100,iriverh120,iriverh300: "NAVI = ใช่" 260 iriverh100,iriverh120,iriverh300: "NAVI = ใช่"
261 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = ใช่" 261 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ใช่"
262 mrobe500: "PLAY, POWER, หรือ มุมบนขวา = ใช่" 262 mrobe500: "PLAY, POWER, หรือ มุมบนขวา = ใช่"
263 archosplayer: "(เล่น/หยุด)" 263 archosplayer: "(เล่น/หยุด)"
264 vibe500: "OK = ใช่" 264 vibe500: "OK = ใช่"
@@ -3914,7 +3914,7 @@
3914 rtc: "ON = Set" 3914 rtc: "ON = Set"
3915 mrobe500: "HEART = Set" 3915 mrobe500: "HEART = Set"
3916 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3916 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3917 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3917 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3918 gogearsa9200: "PLAY = Set" 3918 gogearsa9200: "PLAY = Set"
3919 vibe500: "OK = Set" 3919 vibe500: "OK = Set"
3920 mpiohd300: "ENTER = Set" 3920 mpiohd300: "ENTER = Set"
@@ -3924,7 +3924,7 @@
3924 rtc: "ON = ตั้งค่า" 3924 rtc: "ON = ตั้งค่า"
3925 mrobe500: "HEART = ตั้งค่า" 3925 mrobe500: "HEART = ตั้งค่า"
3926 iriverh100,iriverh120,iriverh300: "NAVI = ตั้งค่า" 3926 iriverh100,iriverh120,iriverh300: "NAVI = ตั้งค่า"
3927 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = ตั้งค่า" 3927 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = ตั้งค่า"
3928 gogearsa9200: "PLAY = ตั้งค่า" 3928 gogearsa9200: "PLAY = ตั้งค่า"
3929 vibe500: "OK = ตั้งค่า" 3929 vibe500: "OK = ตั้งค่า"
3930 mpiohd300: "ENTER = ตั้งค่า" 3930 mpiohd300: "ENTER = ตั้งค่า"
diff --git a/apps/lang/turkce.lang b/apps/lang/turkce.lang
index 99fa82a86c..ced9159662 100644
--- a/apps/lang/turkce.lang
+++ b/apps/lang/turkce.lang
@@ -236,7 +236,7 @@
236 *: "PLAY = Yes" 236 *: "PLAY = Yes"
237 cowond2*: "MENU, or top-right = Yes" 237 cowond2*: "MENU, or top-right = Yes"
238 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 238 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
239 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 239 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
240 mrobe500: "PLAY, POWER, or top-right = Yes" 240 mrobe500: "PLAY, POWER, or top-right = Yes"
241 archosplayer: "(PLAY/STOP)" 241 archosplayer: "(PLAY/STOP)"
242 vibe500: "OK = Yes" 242 vibe500: "OK = Yes"
@@ -245,7 +245,7 @@
245 *: "PLAY = Devam et" 245 *: "PLAY = Devam et"
246 cowond2*: "MENU, veya üst-sağ = Evet" 246 cowond2*: "MENU, veya üst-sağ = Evet"
247 iriverh100,iriverh120,iriverh300: "NAVI = Devam et" 247 iriverh100,iriverh120,iriverh300: "NAVI = Devam et"
248 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Evet" 248 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Evet"
249 mrobe500: "PLAY, POWER, veya üst-sağ = Evet" 249 mrobe500: "PLAY, POWER, veya üst-sağ = Evet"
250 archosplayer: "(PLAY/STOP)" 250 archosplayer: "(PLAY/STOP)"
251 vibe500: "OK = Devam et" 251 vibe500: "OK = Devam et"
@@ -1963,7 +1963,7 @@
1963 rtc: "ON = Set" 1963 rtc: "ON = Set"
1964 mrobe500: "HEART = Set" 1964 mrobe500: "HEART = Set"
1965 iriverh100,iriverh120,iriverh300: "NAVI = Set" 1965 iriverh100,iriverh120,iriverh300: "NAVI = Set"
1966 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 1966 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
1967 gogearsa9200: "PLAY = Set" 1967 gogearsa9200: "PLAY = Set"
1968 vibe500: "OK = Set" 1968 vibe500: "OK = Set"
1969 mpiohd300: "ENTER = Set" 1969 mpiohd300: "ENTER = Set"
@@ -1973,7 +1973,7 @@
1973 rtc: "ON = Set" 1973 rtc: "ON = Set"
1974 mrobe500: "HEART = Ayarlandı" 1974 mrobe500: "HEART = Ayarlandı"
1975 iriverh100,iriverh120,iriverh300: "NAVI = Ayarlandı" 1975 iriverh100,iriverh120,iriverh300: "NAVI = Ayarlandı"
1976 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Ayarlandı" 1976 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Ayarlandı"
1977 gogearsa9200: "PLAY = Ayarlandı" 1977 gogearsa9200: "PLAY = Ayarlandı"
1978 vibe500: "OK = Ayarlandı" 1978 vibe500: "OK = Ayarlandı"
1979 mpiohd300: "ENTER = Ayarlandı" 1979 mpiohd300: "ENTER = Ayarlandı"
diff --git a/apps/lang/ukrainian.lang b/apps/lang/ukrainian.lang
index 530b12c02c..5a5f83e4ec 100644
--- a/apps/lang/ukrainian.lang
+++ b/apps/lang/ukrainian.lang
@@ -248,7 +248,7 @@
248 <source> 248 <source>
249 *: "PLAY = Yes" 249 *: "PLAY = Yes"
250 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 250 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 251 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
252 archosplayer: "(PLAY/STOP)" 252 archosplayer: "(PLAY/STOP)"
253 vibe500: "OK = Yes" 253 vibe500: "OK = Yes"
254 </source> 254 </source>
@@ -3943,7 +3943,7 @@
3943 *: none 3943 *: none
3944 rtc: "ON = Set" 3944 rtc: "ON = Set"
3945 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3945 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3946 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3946 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3947 gogearsa9200: "PLAY = Set" 3947 gogearsa9200: "PLAY = Set"
3948 vibe500: "OK = Set" 3948 vibe500: "OK = Set"
3949 mpiohd300: "ENTER = Set" 3949 mpiohd300: "ENTER = Set"
diff --git a/apps/lang/walon.lang b/apps/lang/walon.lang
index ab3c8427a3..30c65cf79f 100644
--- a/apps/lang/walon.lang
+++ b/apps/lang/walon.lang
@@ -253,7 +253,7 @@
253 *: "PLAY = Yes" 253 *: "PLAY = Yes"
254 cowond2*: "MENU = Yes" 254 cowond2*: "MENU = Yes"
255 iriverh100,iriverh120,iriverh300: "NAVI = Yes" 255 iriverh100,iriverh120,iriverh300: "NAVI = Yes"
256 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Yes" 256 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Yes"
257 archosplayer: "(PLAY/STOP)" 257 archosplayer: "(PLAY/STOP)"
258 vibe500: "OK = Yes" 258 vibe500: "OK = Yes"
259 </source> 259 </source>
@@ -261,7 +261,7 @@
261 *: "PLAY = Oyi" 261 *: "PLAY = Oyi"
262 cowond2*: "MENU = Oyi" 262 cowond2*: "MENU = Oyi"
263 iriverh100,iriverh120,iriverh300: "NAVI = Oyi" 263 iriverh100,iriverh120,iriverh300: "NAVI = Oyi"
264 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*: "SELECT = Oyi" 264 samsungyh*,ipod*,iaudiox5,iaudiom5,gigabeat*,sansae200*,sansac200*,iriverh10,iriverh10_5gb,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Oyi"
265 mrobe500: "PLAY or POWER = Oyi" 265 mrobe500: "PLAY or POWER = Oyi"
266 archosplayer: "(PLAY/STOP)" 266 archosplayer: "(PLAY/STOP)"
267 vibe500: "OK = Oyi" 267 vibe500: "OK = Oyi"
@@ -3951,7 +3951,7 @@
3951 rtc: "ON = Set" 3951 rtc: "ON = Set"
3952 mrobe500: "HEART = Set" 3952 mrobe500: "HEART = Set"
3953 iriverh100,iriverh120,iriverh300: "NAVI = Set" 3953 iriverh100,iriverh120,iriverh300: "NAVI = Set"
3954 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Set" 3954 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Set"
3955 gogearsa9200: "PLAY = Set" 3955 gogearsa9200: "PLAY = Set"
3956 vibe500: "OK = Set" 3956 vibe500: "OK = Set"
3957 mpiohd300: "ENTER = Set" 3957 mpiohd300: "ENTER = Set"
@@ -3961,7 +3961,7 @@
3961 rtc: "ON = Eployî" 3961 rtc: "ON = Eployî"
3962 mrobe500: "HEART = Eployî" 3962 mrobe500: "HEART = Eployî"
3963 iriverh100,iriverh120,iriverh300: "NAVI = Eployî" 3963 iriverh100,iriverh120,iriverh300: "NAVI = Eployî"
3964 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*: "SELECT = Eployî" 3964 ipod*,iaudiox5,iaudiom5,iriverh10,iriverh10_5gb,sansae200*,sansac200*,gigabeat*,mrobe100,sansaclip*,sansafuze*,sansaconnect: "SELECT = Eployî"
3965 gogearsa9200: "PLAY = Eployî" 3965 gogearsa9200: "PLAY = Eployî"
3966 vibe500: "OK = Eployî" 3966 vibe500: "OK = Eployî"
3967 mpiohd300: "ENTER = Eployî" 3967 mpiohd300: "ENTER = Eployî"
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index 4910c74877..d6fd847f08 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -66,7 +66,8 @@
66 || (CONFIG_KEYPAD == PHILIPS_HDD1630_PAD) \ 66 || (CONFIG_KEYPAD == PHILIPS_HDD1630_PAD) \
67 || (CONFIG_KEYPAD == PHILIPS_HDD6330_PAD) \ 67 || (CONFIG_KEYPAD == PHILIPS_HDD6330_PAD) \
68 || (CONFIG_KEYPAD == PHILIPS_SA9200_PAD) \ 68 || (CONFIG_KEYPAD == PHILIPS_SA9200_PAD) \
69 || (CONFIG_KEYPAD == PBELL_VIBE500_PAD) 69 || (CONFIG_KEYPAD == PBELL_VIBE500_PAD) \
70 || (CONFIG_KEYPAD == SANSA_CONNECT_PAD)
70/* certain key combos toggle input mode between keyboard input and Morse input */ 71/* certain key combos toggle input mode between keyboard input and Morse input */
71#define KBD_TOGGLE_INPUT 72#define KBD_TOGGLE_INPUT
72#endif 73#endif