summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-08-05 19:19:39 +0000
committerNils Wallménius <nils@rockbox.org>2007-08-05 19:19:39 +0000
commitb3113674819cd8daf44750d129c5d8298e830df0 (patch)
treeebc7ec9e096e309ef79834802eed28ff9c22fd41 /apps
parente70f7f4ca857e9e88a6e076360b6c9c235d7739b (diff)
downloadrockbox-b3113674819cd8daf44750d129c5d8298e830df0.tar.gz
rockbox-b3113674819cd8daf44750d129c5d8298e830df0.zip
*** Lang v2 cleanup (FS#6574) ***
1) Introduces apps/features.txt that controls which strings are included for each target based on defines. 2) .lng and .voice files are now target specific and the format versions of both these file types have been bumped, which means that new voice files are needed. 3) Use the 'features' mechanism to exclude strings for targets that didn't use them. 4) Delete unused and deprecated and duplicated strings, sort strings in english.lang Some string IDs were changed so translations will be slightly worse than before. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14198 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile21
-rw-r--r--apps/action.c6
-rw-r--r--apps/bookmark.c4
-rw-r--r--apps/features.txt159
-rw-r--r--apps/filetypes.c2
-rw-r--r--apps/gui/gwps-common.c13
-rw-r--r--apps/gui/option_select.c2
-rw-r--r--apps/gui/yesno.c6
-rw-r--r--apps/lang/english.lang8854
-rw-r--r--apps/language.c7
-rw-r--r--apps/language.h2
-rw-r--r--apps/main.c4
-rw-r--r--apps/menus/eq_menu.c8
-rw-r--r--apps/menus/main_menu.c26
-rw-r--r--apps/menus/playback_menu.c2
-rw-r--r--apps/menus/playlist_menu.c4
-rw-r--r--apps/menus/recording_menu.c20
-rw-r--r--apps/menus/settings_menu.c4
-rw-r--r--apps/onplay.c7
-rw-r--r--apps/playlist.c17
-rw-r--r--apps/playlist_catalog.c7
-rw-r--r--apps/playlist_viewer.c17
-rw-r--r--apps/recorder/radio.c22
-rw-r--r--apps/recorder/recording.c12
-rw-r--r--apps/root_menu.c4
-rw-r--r--apps/screens.c18
-rw-r--r--apps/settings.c10
-rw-r--r--apps/settings_list.c92
-rw-r--r--apps/tagtree.c9
-rw-r--r--apps/talk.c6
-rw-r--r--apps/tree.c4
31 files changed, 4698 insertions, 4671 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 69de3a0f78..0b8f0ad304 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -90,6 +90,8 @@ $(DEPFILE): $(BITMAPLIBS)
90 90
91dep: $(DEPFILE) 91dep: $(DEPFILE)
92 92
93features: $(OBJDIR)/features
94
93build-codecs: 95build-codecs:
94 $(SILENT)$(MAKE) -C codecs/lib OBJDIR=$(OBJDIR)/codecs/lib 96 $(SILENT)$(MAKE) -C codecs/lib OBJDIR=$(OBJDIR)/codecs/lib
95 $(SILENT)$(MAKE) -C codecs OBJDIR=$(OBJDIR)/codecs 97 $(SILENT)$(MAKE) -C codecs OBJDIR=$(OBJDIR)/codecs
@@ -195,9 +197,22 @@ $(BUILDDIR)/rombox.iriver: $(OBJDIR)/rombox.bin
195 197
196include $(TOOLSDIR)/make.inc 198include $(TOOLSDIR)/make.inc
197 199
198$(OBJDIR)/lang.o: lang/$(LANGUAGE).lang 200# apps/features.txt is a file that (is preprocessed and) lists named features
199 @mkdir -p $(dir $@) 201# based on defines in the config-*.h files. The named features will be passed
200 $(call PRINTS,GENLANG)perl -s $(TOOLSDIR)/genlang -p=$(BUILDDIR)/lang -t=$(ARCHOS) $< 202# to genlang and thus (translated) phrases can be used based on those names.
203# button.h is included for the HAS_BUTTON_HOLD define.
204#
205
206$(OBJDIR)/features: features.txt
207 $(SILENT)cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
208 $(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -imacros "config.h" -imacros "button.h" - | \
209 grep -v "^\#" | grep -v "^$$" > $@; \
210 echo "" >/dev/null
211
212$(OBJDIR)/lang.o: lang/$(LANGUAGE).lang $(OBJDIR)/features
213 $(SILENT)mkdir -p `dirname $@`
214 $(SILENT)for f in `cat $(OBJDIR)/features`; do feat="$$feat:$$f" ; done; \
215 perl -s $(TOOLSDIR)/genlang -p=$(BUILDDIR)/lang -t=$(ARCHOS):$$feat $<
201 $(call PRINTS,CC lang.c)$(CC) $(CFLAGS) -c $(BUILDDIR)/lang.c -o $@ 216 $(call PRINTS,CC lang.c)$(CC) $(CFLAGS) -c $(BUILDDIR)/lang.c -o $@
202 217
203clean: 218clean:
diff --git a/apps/action.c b/apps/action.c
index 9afdf37af6..5aeab25e1d 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -141,7 +141,7 @@ static int get_action_worker(int context, int timeout,
141 { 141 {
142 last_button = BUTTON_NONE; 142 last_button = BUTTON_NONE;
143 keys_locked = false; 143 keys_locked = false;
144 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_OFF_PLAYER)); 144 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_OFF));
145 return ACTION_REDRAW; 145 return ACTION_REDRAW;
146 } 146 }
147 else 147 else
@@ -150,7 +150,7 @@ static int get_action_worker(int context, int timeout,
150#endif 150#endif
151 { 151 {
152 if ((button&BUTTON_REL)) 152 if ((button&BUTTON_REL))
153 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON_PLAYER)); 153 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON));
154 return ACTION_REDRAW; 154 return ACTION_REDRAW;
155 } 155 }
156 } 156 }
@@ -189,7 +189,7 @@ static int get_action_worker(int context, int timeout,
189 { 189 {
190 unlock_combo = button; 190 unlock_combo = button;
191 keys_locked = true; 191 keys_locked = true;
192 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON_PLAYER)); 192 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON));
193 193
194 button_clear_queue(); 194 button_clear_queue();
195 return ACTION_REDRAW; 195 return ACTION_REDRAW;
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 2f4f696dd9..512fb009ec 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -190,7 +190,7 @@ bool bookmark_autobookmark(void)
190 struct text_message message={(char **)lines, 1}; 190 struct text_message message={(char **)lines, 1};
191#else 191#else
192 unsigned char *lines[]={str(LANG_AUTO_BOOKMARK_QUERY), 192 unsigned char *lines[]={str(LANG_AUTO_BOOKMARK_QUERY),
193 str(LANG_RESUME_CONFIRM_PLAYER)}; 193 str(LANG_CONFIRM_WITH_BUTTON)};
194 struct text_message message={(char **)lines, 2}; 194 struct text_message message={(char **)lines, 2};
195#endif 195#endif
196#if LCD_DEPTH > 1 196#if LCD_DEPTH > 1
@@ -819,7 +819,7 @@ static void say_bookmark(const char* bookmark,
819 talk_number(bookmark_id + 1, true); 819 talk_number(bookmark_id + 1, true);
820 talk_id(VOICE_BOOKMARK_SELECT_INDEX_TEXT, true); 820 talk_id(VOICE_BOOKMARK_SELECT_INDEX_TEXT, true);
821 talk_number(resume_index + 1, true); 821 talk_number(resume_index + 1, true);
822 talk_id(VOICE_BOOKMARK_SELECT_TIME_TEXT, true); 822 talk_id(LANG_TIME, true);
823 if (ms / 60000) 823 if (ms / 60000)
824 talk_value(ms / 60000, UNIT_MIN, true); 824 talk_value(ms / 60000, UNIT_MIN, true);
825 talk_value((ms % 60000) / 1000, UNIT_SEC, true); 825 talk_value((ms % 60000) / 1000, UNIT_SEC, true);
diff --git a/apps/features.txt b/apps/features.txt
new file mode 100644
index 0000000000..59d24be13d
--- /dev/null
+++ b/apps/features.txt
@@ -0,0 +1,159 @@
1/* This file controls which strings are included when rockbox is built and
2 when the .lng and .voice files are built. That means that a change in this
3 file will break compatiblity with older .lng and .voice files and that those
4 version numbers should be updated. It also means that changing defines in
5 the various config*.h files could also break back compatiblity */
6
7#if defined(HAVE_AGC)
8agc
9#endif
10
11#if defined(HAVE_RTC_ALARM)
12alarm
13#endif
14
15#if defined(HAVE_BACKLIGHT_BRIGHTNESS)
16backlight_brightness
17#endif
18
19#if defined(HAVE_BACKLIGHT_PWM_FADING)
20backlight_fade
21#endif
22
23#if BATTERY_TYPES_COUNT > 1
24battery_types
25#endif
26
27#if defined(HAVE_DIRCACHE)
28dircache
29#endif
30
31#if defined(HAVE_FLASH_STORAGE)
32flash_storage
33#endif
34
35#if defined(HAVE_HEADPHONE_DETECTION)
36headphone_detection
37#endif
38
39#if defined(HAS_BUTTON_HOLD)
40hold_button
41#endif
42
43#if defined(HAVE_LCD_BITMAP)
44lcd_bitmap
45#endif
46
47#if defined(HAVE_LCD_CHARCELLS)
48lcd_charcell
49#endif
50
51#if LCD_DEPTH > 1
52lcd_non-mono
53#endif
54
55#if defined(HAVE_LCD_COLOR)
56lcd_color
57#endif
58
59#if defined(HAVE_LCD_FLIP)
60lcd_flip
61#endif
62
63#if defined(HAVE_LCD_INVERT) || defined(HAVE_REMOTE_LCD)
64lcd_invert
65#endif
66
67#if defined(HAVE_LCD_SLEEP)
68lcd_sleep
69#endif
70
71#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
72masf
73#endif
74
75#if (CONFIG_CODEC == MAS3507D)
76masd
77#endif
78
79#if defined(HAVE_PITCHSCREEN)
80pitchscreen
81#endif
82
83#if defined(HAVE_MULTIVOLUME)
84multivolume
85#endif
86
87#if defined(HAVE_QUICKSCREEN)
88quickscreen
89#endif
90
91#if defined(CONFIG_TUNER)
92radio
93#endif
94
95#if (CONFIG_KEYPAD == RECORDER_PAD)
96recorder_pad
97#if defined(CONFIG_TUNER)
98radio_screen_button_bar
99#endif
100#endif
101
102#if defined(HAVE_RECORDING)
103recording
104#if CONFIG_CODEC == SWCODEC
105recording_swcodec
106#else
107recording_hwcodec
108#endif
109#endif
110
111#if defined(HAVE_REMOTE_LCD)
112remote
113#endif
114
115#if defined(HAVE_REMOTE_LCD_TICKING)
116remote_ticking
117#endif
118
119#if CONFIG_RTC
120rtc
121#endif
122
123#if defined(HAVE_SCROLLWHEEL)
124scrollwheel
125#endif
126
127#if defined(SIMULATOR)
128sim
129#endif
130
131#if defined(ARCHOS_RECORDER) || defined(ARCHOS_PLAYER)
132soft_shutdown
133#endif
134
135#if defined(HAVE_SPDIF_POWER)
136spdif_power
137#endif
138
139#if CONFIG_CODEC == SWCODEC
140swcodec
141#else
142hwcodec
143#endif
144
145#if defined(HAVE_TAGCACHE)
146tagcache
147#endif
148
149#if defined(HAVE_TC_RAMCACHE)
150tc_ramcache
151#endif
152
153#if CONFIG_CHARGING || defined(SIMULATOR)
154charging
155#if defined(HAVE_USB_POWER) || defined(SIMULATOR)
156usb_charging
157#endif
158#endif
159
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 6bbc897ce4..059589db89 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -101,7 +101,7 @@ const struct filetype inbuilt_filetypes[] = {
101 { "kbd", FILE_ATTR_KBD, Icon_Keyboard, VOICE_EXT_KBD }, 101 { "kbd", FILE_ATTR_KBD, Icon_Keyboard, VOICE_EXT_KBD },
102#endif 102#endif
103 { "bmark",FILE_ATTR_BMARK, Icon_Bookmark, VOICE_EXT_BMARK }, 103 { "bmark",FILE_ATTR_BMARK, Icon_Bookmark, VOICE_EXT_BMARK },
104 { "cue", FILE_ATTR_CUE, Icon_Bookmark, LANG_CUESHEET }, 104 { "cue", FILE_ATTR_CUE, Icon_Bookmark, VOICE_EXT_CUESHEET },
105#ifdef BOOTFILE_EXT 105#ifdef BOOTFILE_EXT
106 { BOOTFILE_EXT, FILE_ATTR_MOD, Icon_Firmware, VOICE_EXT_AJZ }, 106 { BOOTFILE_EXT, FILE_ATTR_MOD, Icon_Firmware, VOICE_EXT_AJZ },
107#endif /* #ifndef SIMULATOR */ 107#endif /* #ifndef SIMULATOR */
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c
index 9dddff3ea2..5f437824b8 100644
--- a/apps/gui/gwps-common.c
+++ b/apps/gui/gwps-common.c
@@ -294,7 +294,7 @@ bool gui_wps_display(void)
294#ifdef HAVE_LCD_BITMAP 294#ifdef HAVE_LCD_BITMAP
295 gui_syncstatusbar_draw(&statusbars, true); 295 gui_syncstatusbar_draw(&statusbars, true);
296#endif 296#endif
297 gui_syncsplash(HZ, str(LANG_END_PLAYLIST_RECORDER)); 297 gui_syncsplash(HZ, str(LANG_END_PLAYLIST));
298 return true; 298 return true;
299 } 299 }
300 else 300 else
@@ -440,17 +440,10 @@ void display_keylock_text(bool locked)
440 FOR_NB_SCREENS(i) 440 FOR_NB_SCREENS(i)
441 gui_wps[i].display->stop_scroll(); 441 gui_wps[i].display->stop_scroll();
442 442
443#ifdef HAVE_LCD_CHARCELLS
444 if(locked) 443 if(locked)
445 s = str(LANG_KEYLOCK_ON_PLAYER); 444 s = str(LANG_KEYLOCK_ON);
446 else 445 else
447 s = str(LANG_KEYLOCK_OFF_PLAYER); 446 s = str(LANG_KEYLOCK_OFF);
448#else
449 if(locked)
450 s = str(LANG_KEYLOCK_ON_RECORDER);
451 else
452 s = str(LANG_KEYLOCK_OFF_RECORDER);
453#endif
454 gui_syncsplash(HZ, s); 447 gui_syncsplash(HZ, s);
455} 448}
456 449
diff --git a/apps/gui/option_select.c b/apps/gui/option_select.c
index 6bb69c21bb..ba4e54a616 100644
--- a/apps/gui/option_select.c
+++ b/apps/gui/option_select.c
@@ -409,7 +409,7 @@ bool option_screen(struct settings_list *setting,
409 } 409 }
410 } 410 }
411 if (show_cancel) 411 if (show_cancel)
412 gui_syncsplash(HZ/2, str(LANG_MENU_SETTING_CANCEL)); 412 gui_syncsplash(HZ/2, str(LANG_CANCEL));
413 done = true; 413 done = true;
414 } 414 }
415 else if (action == ACTION_STD_OK) 415 else if (action == ACTION_STD_OK)
diff --git a/apps/gui/yesno.c b/apps/gui/yesno.c
index 4f874df325..b689ad923b 100644
--- a/apps/gui/yesno.c
+++ b/apps/gui/yesno.c
@@ -74,8 +74,10 @@ static void gui_yesno_draw(struct gui_yesno * yn)
74 { 74 {
75 if(nb_lines+line_shift+3<=display->nb_lines) 75 if(nb_lines+line_shift+3<=display->nb_lines)
76 nb_lines++; 76 nb_lines++;
77 display->puts(0, nb_lines+line_shift, str(LANG_CONFIRM_WITH_PLAY_RECORDER)); 77 display->puts(0, nb_lines+line_shift, str(LANG_CONFIRM_WITH_BUTTON));
78 display->puts(0, nb_lines+line_shift+1, str(LANG_CANCEL_WITH_ANY_RECORDER)); 78#ifdef HAVE_LCD_BITMAP
79 display->puts(0, nb_lines+line_shift+1, str(LANG_CANCEL_WITH_ANY));
80#endif
79 } 81 }
80 gui_textarea_update(display); 82 gui_textarea_update(display);
81} 83}
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index b66b7f8362..b13b57ad06 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -29,6 +29,51 @@
29# when doing updates etc, while the <dest> ones are used when this file is 29# when doing updates etc, while the <dest> ones are used when this file is
30# used to simply get the full set of english strings for a particular target. 30# used to simply get the full set of english strings for a particular target.
31# 31#
32# All phrases have a default string like: *: "default" that will be used if no
33# other string matches for the particular model you build the language for. If
34# you want a particular string for the iriver h300 series you'd write it like:
35# h300: "h300-specific string" (below the default line). If your string isn't
36# used for all targets set the default to none like: *: none (no qoutes!) this
37# will not include the string for target that will not need it, see
38# apps/features.txt for available categories that can be used instead of the
39# target name, for example: swcodec: "swcodec-specific string".
40#
41#
42# The target names used are picked from the configure script and are set in the
43# ARCHOS variable in the root makefile. Currently, they are:
44# Target Target string
45# Archos
46# Player/Studio player
47# Recorder recorder
48# FM Recorder fmrecorder
49# Recorder V2 recorderv2
50# Ondio SP ondiosp
51# Ondio FM ondiofm
52# iriver
53# H100/H110/H115 h100
54# H120/H140 h120
55# H320/H340 h300
56# H10 h10
57# IFP 7XX ifp7xx
58# iaudio
59# X5 x5
60# M5 m5
61# ipod
62# All iPods ipod*
63# 4G Color/Photo ipodcolor
64# Nano ipodnano
65# Video (5G) ipodvideo
66# 3G ipod3g
67# 4G gray ipod4g
68# mini ipodmini
69# mini 2G ipodmini2g
70# Toshiba
71# Gigabeat Fxx gigabeatf
72#
73# Sandisk
74# Sansa E200 e200
75#
76
32<phrase> 77<phrase>
33 id: LANG_SET_BOOL_YES 78 id: LANG_SET_BOOL_YES
34 desc: bool true representation 79 desc: bool true representation
@@ -86,7 +131,7 @@
86 </voice> 131 </voice>
87</phrase> 132</phrase>
88<phrase> 133<phrase>
89 id: LANG_RESUME_SETTING_ASK 134 id: LANG_ASK
90 desc: in settings_menu 135 desc: in settings_menu
91 user: 136 user:
92 <source> 137 <source>
@@ -114,1275 +159,1340 @@
114 </voice> 159 </voice>
115</phrase> 160</phrase>
116<phrase> 161<phrase>
117 id: LANG_WAIT 162 id: LANG_NORMAL
118 desc: general please wait splash 163 desc: in settings_menu
119 user: 164 user:
120 <source> 165 <source>
121 *: "Loading..." 166 *: "Normal"
122 </source> 167 </source>
123 <dest> 168 <dest>
124 *: "Loading..." 169 *: "Normal"
125 </dest> 170 </dest>
126 <voice> 171 <voice>
127 *: "" 172 *: "Normal"
128 </voice> 173 </voice>
129</phrase> 174</phrase>
130<phrase> 175<phrase>
131 id: LANG_CONFIRM_SHUTDOWN 176 id: LANG_GAIN
132 desc: in shutdown screen 177 desc: Generic string for gain used in EQ menu and recording screen
133 user: 178 user:
134 <source> 179 <source>
135 *: "Press OFF to shut down" 180 *: "Gain"
136 </source> 181 </source>
137 <dest> 182 <dest>
138 *: "Press OFF to shut down" 183 *: "Gain"
139 </dest> 184 </dest>
140 <voice> 185 <voice>
141 *: "" 186 *: "Gain"
142 </voice> 187 </voice>
143</phrase> 188</phrase>
144<phrase> 189<phrase>
145 id: LANG_SHUTTINGDOWN 190 id: LANG_WAIT
146 desc: in main menu 191 desc: general please wait splash
147 user: 192 user:
148 <source> 193 <source>
149 *: "Shutting down..." 194 *: "Loading..."
150 </source> 195 </source>
151 <dest> 196 <dest>
152 *: "Shutting down..." 197 *: "Loading..."
153 </dest> 198 </dest>
154 <voice> 199 <voice>
155 *: "" 200 *: ""
156 </voice> 201 </voice>
157</phrase> 202</phrase>
158<phrase> 203<phrase>
159 id: LANG_RESTARTING_PLAYBACK 204 id: LANG_LOADING_PERCENT
160 desc: splash screen displayed when pcm buffer size is changed 205 desc: splash number of percents loaded
161 user: 206 user:
162 <source> 207 <source>
163 *: "Restarting playback..." 208 *: "Loading... %d%% done (%s)"
164 </source> 209 </source>
165 <dest> 210 <dest>
166 *: "Restarting playback..." 211 *: "Loading... %d%% done (%s)"
167 </dest> 212 </dest>
168 <voice> 213 <voice>
169 *: "" 214 *: ""
170 </voice> 215 </voice>
171</phrase> 216</phrase>
172<phrase> 217<phrase>
173 id: LANG_REMOVE_MMC 218 id: LANG_SCANNING_DISK
174 desc: before acknowledging usb in case an MMC is inserted (Ondio) 219 desc: when booting up and rebuilding the cache and calculating free space
175 user:
176 <source>
177 *: "Please remove inserted MMC"
178 </source>
179 <dest>
180 *: "Please remove inserted MMC"
181 </dest>
182 <voice>
183 *: "Please remove multimedia card"
184 </voice>
185</phrase>
186<phrase>
187 id: LANG_MENU_SETTING_CANCEL
188 desc: Visual confirmation of canceling a changed setting
189 user: 220 user:
190 <source> 221 <source>
191 *: "Canceled" 222 *: "Scanning disk..."
192 </source> 223 </source>
193 <dest> 224 <dest>
194 *: "Cancelled" 225 *: "Scanning disk..."
195 </dest> 226 </dest>
196 <voice> 227 <voice>
197 *: "" 228 *: ""
198 </voice> 229 </voice>
199</phrase> 230</phrase>
200<phrase> 231<phrase>
201 id: LANG_FAILED 232 id: LANG_SHUTTINGDOWN
202 desc: Something failed. To be appended after actions 233 desc: in main menu
203 user: 234 user:
204 <source> 235 <source>
205 *: "Failed" 236 *: "Shutting down..."
206 </source> 237 </source>
207 <dest> 238 <dest>
208 *: "Failed" 239 *: "Shutting down..."
209 </dest> 240 </dest>
210 <voice> 241 <voice>
211 *: "" 242 *: ""
212 </voice> 243 </voice>
213</phrase> 244</phrase>
214<phrase> 245<phrase>
215 id: LANG_BOOKMARK_MENU_RECENT_BOOKMARKS 246 id: LANG_PLAYLIST_SHUFFLE
216 desc: in the main menu 247 desc: displayed on screen while shuffling a playlist
217 user: 248 user:
218 <source> 249 <source>
219 *: "Recent Bookmarks" 250 *: "Shuffling..."
220 </source> 251 </source>
221 <dest> 252 <dest>
222 *: "Recent Bookmarks" 253 *: "Shuffling..."
223 </dest> 254 </dest>
224 <voice> 255 <voice>
225 *: "Recent Bookmarks" 256 *: ""
226 </voice> 257 </voice>
227</phrase> 258</phrase>
228<phrase> 259<phrase>
229 id: LANG_SOUND_SETTINGS 260 id: LANG_CANCEL
230 desc: in the main menu 261 desc: Visual confirmation of canceling a changed setting
231 user: 262 user:
232 <source> 263 <source>
233 *: "Sound Settings" 264 *: "Cancelled"
234 </source> 265 </source>
235 <dest> 266 <dest>
236 *: "Sound Settings" 267 *: "Cancelled"
237 </dest> 268 </dest>
238 <voice> 269 <voice>
239 *: "Sound Settings" 270 *: ""
240 </voice> 271 </voice>
241</phrase> 272</phrase>
242<phrase> 273<phrase>
243 id: LANG_GENERAL_SETTINGS 274 id: LANG_FAILED
244 desc: in the main menu 275 desc: Something failed. To be appended after actions
245 user: 276 user:
246 <source> 277 <source>
247 *: "General Settings" 278 *: "Failed"
248 </source> 279 </source>
249 <dest> 280 <dest>
250 *: "General Settings" 281 *: "Failed"
251 </dest> 282 </dest>
252 <voice> 283 <voice>
253 *: "General Settings" 284 *: ""
254 </voice> 285 </voice>
255</phrase> 286</phrase>
256<phrase> 287<phrase>
257 id: LANG_MANAGE_MENU 288 id: LANG_CHANNELS
258 desc: in the main menu 289 desc: in sound_settings
259 user: 290 user:
260 <source> 291 <source>
261 *: "Manage Settings" 292 *: "Channels"
262 </source> 293 </source>
263 <dest> 294 <dest>
264 *: "Manage Settings" 295 *: "Channels"
265 </dest> 296 </dest>
266 <voice> 297 <voice>
267 *: "Manage Settings" 298 *: "Channels"
268 </voice> 299 </voice>
269</phrase> 300</phrase>
270<phrase> 301<phrase>
271 id: LANG_CUSTOM_THEME 302 id: LANG_RESET_ASK
272 desc: in the main menu 303 desc: confirm to reset settings
273 user: 304 user:
274 <source> 305 <source>
275 *: "Browse Themes" 306 *: "Are You Sure?"
276 </source> 307 </source>
277 <dest> 308 <dest>
278 *: "Browse Themes" 309 *: "Are You Sure?"
279 </dest> 310 </dest>
280 <voice> 311 <voice>
281 *: "Browse Themes" 312 *: ""
282 </voice> 313 </voice>
283</phrase> 314</phrase>
284<phrase> 315<phrase>
285 id: LANG_FM_RADIO 316 id: LANG_CONFIRM_WITH_BUTTON
286 desc: in the main menu 317 desc: Generic string to use to confirm
287 user: 318 user:
288 <source> 319 <source>
289 *: "FM Radio" 320 *: "PLAY = Yes"
321 h100,h120,h300: "NAVI = Yes"
322 ipod*,x5,m5,gigabeatf,e200,h10,h10_5gb: "SELECT = Yes"
323 player: "(PLAY/STOP)"
290 </source> 324 </source>
291 <dest> 325 <dest>
292 *: "FM Radio" 326 *: "PLAY = Yes"
327 h100,h120,h300: "NAVI = Yes"
328 ipod*,x5,m5,gigabeatf,e200,h10,h10_5gb: "SELECT = Yes"
329 player: "(PLAY/STOP)"
293 </dest> 330 </dest>
294 <voice> 331 <voice>
295 *: "FM Radio" 332 *: ""
296 </voice> 333 </voice>
297</phrase> 334</phrase>
298<phrase> 335<phrase>
299 id: LANG_RECORDING 336 id: LANG_CANCEL_WITH_ANY
300 desc: in the main menu 337 desc: Generic string to use to cancel
301 user: 338 user:
302 <source> 339 <source>
303 *: "Recording" 340 *: "Any Other = No"
341 player: none
304 </source> 342 </source>
305 <dest> 343 <dest>
306 *: "Recording" 344 *: "Any Other = No"
345 player: none
307 </dest> 346 </dest>
308 <voice> 347 <voice>
309 *: "Recording" 348 *: ""
349 player: none
310 </voice> 350 </voice>
311</phrase> 351</phrase>
312<phrase> 352<phrase>
313 id: LANG_PLAYLIST_MENU 353 id: LANG_ROCKBOX_TITLE
314 desc: in the main menu 354 desc: main menu title
315 user: 355 user:
316 <source> 356 <source>
317 *: "Playlist" 357 *: "Rockbox"
318 </source> 358 </source>
319 <dest> 359 <dest>
320 *: "Playlist" 360 *: "Rockbox"
321 </dest> 361 </dest>
322 <voice> 362 <voice>
323 *: "Playlist" 363 *: "Rockbox"
324 </voice> 364 </voice>
325</phrase> 365</phrase>
326<phrase> 366<phrase>
327 id: LANG_PLUGINS 367 id: LANG_BOOKMARK_MENU_RECENT_BOOKMARKS
328 desc: in the main menu 368 desc: in the main menu
329 user: 369 user:
330 <source> 370 <source>
331 *: "Plugins" 371 *: "Recent Bookmarks"
332 </source> 372 </source>
333 <dest> 373 <dest>
334 *: "Plugins" 374 *: "Recent Bookmarks"
335 </dest> 375 </dest>
336 <voice> 376 <voice>
337 *: "Plugins" 377 *: "Recent Bookmarks"
338 </voice> 378 </voice>
339</phrase> 379</phrase>
340<phrase> 380<phrase>
341 id: LANG_INFO 381 id: LANG_DIR_BROWSER
342 desc: in the main menu 382 desc: main menu title
343 user: 383 user:
344 <source> 384 <source>
345 *: "System" 385 *: "Files"
346 </source> 386 </source>
347 <dest> 387 <dest>
348 *: "System" 388 *: "Files"
349 </dest> 389 </dest>
350 <voice> 390 <voice>
351 *: "System" 391 *: "Files"
352 </voice> 392 </voice>
353</phrase> 393</phrase>
354<phrase> 394<phrase>
355 id: LANG_SHUTDOWN 395 id: LANG_TAGCACHE
356 desc: in main menu 396 desc: in the main menu and the settings menu
357 user: 397 user:
358 <source> 398 <source>
359 *: "Shut down" 399 *: "Database"
360 </source> 400 </source>
361 <dest> 401 <dest>
362 *: "Shut down" 402 *: "Database"
363 </dest> 403 </dest>
364 <voice> 404 <voice>
365 *: "Shut down" 405 *: "Database"
366 </voice> 406 </voice>
367</phrase> 407</phrase>
368<phrase> 408<phrase>
369 id: LANG_VOLUME 409 id: LANG_NOW_PLAYING
370 desc: in sound_settings 410 desc: in the main menu
371 user: 411 user:
372 <source> 412 <source>
373 *: "Volume" 413 *: "Now Playing"
374 </source> 414 </source>
375 <dest> 415 <dest>
376 *: "Volume" 416 *: "Now Playing"
377 </dest> 417 </dest>
378 <voice> 418 <voice>
379 *: "Volume" 419 *: "Now Playing"
380 </voice> 420 </voice>
381</phrase> 421</phrase>
382<phrase> 422<phrase>
383 id: LANG_BASS 423 id: LANG_RESUME_PLAYBACK
384 desc: in sound_settings 424 desc: in the main menu
385 user: 425 user:
386 <source> 426 <source>
387 *: "Bass" 427 *: "Resume Playback"
388 </source> 428 </source>
389 <dest> 429 <dest>
390 *: "Bass" 430 *: "Resume Playback"
391 </dest> 431 </dest>
392 <voice> 432 <voice>
393 *: "Bass" 433 *: "Resume Playback"
394 </voice> 434 </voice>
395</phrase> 435</phrase>
396<phrase> 436<phrase>
397 id: LANG_TREBLE 437 id: LANG_SETTINGS
398 desc: in sound_settings 438 desc: in main menu and visual confirmation after settings reset
399 user: 439 user:
400 <source> 440 <source>
401 *: "Treble" 441 *: "Settings"
402 </source> 442 </source>
403 <dest> 443 <dest>
404 *: "Treble" 444 *: "Settings"
405 </dest> 445 </dest>
406 <voice> 446 <voice>
407 *: "Treble" 447 *: "Settings"
408 </voice> 448 </voice>
409</phrase> 449</phrase>
410<phrase> 450<phrase>
411 id: LANG_BALANCE 451 id: LANG_RECORDING
412 desc: in sound_settings 452 desc: in the main menu
413 user: 453 user:
414 <source> 454 <source>
415 *: "Balance" 455 *: none
456 recording: "Recording"
416 </source> 457 </source>
417 <dest> 458 <dest>
418 *: "Balance" 459 *: none
460 recording: "Recording"
419 </dest> 461 </dest>
420 <voice> 462 <voice>
421 *: "Balance" 463 *: none
464 recording: "Recording"
422 </voice> 465 </voice>
423</phrase> 466</phrase>
424<phrase> 467<phrase>
425 id: LANG_CHANNEL_MENU 468 id: LANG_FM_RADIO
426 desc: in sound_settings 469 desc: in the main menu
427 user: 470 user:
428 <source> 471 <source>
429 *: "Channels" 472 *: none
473 radio: "FM Radio"
430 </source> 474 </source>
431 <dest> 475 <dest>
432 *: "Channels" 476 *: none
477 radio: "FM Radio"
433 </dest> 478 </dest>
434 <voice> 479 <voice>
435 *: "Channels" 480 *: none
481 radio: "FM Radio"
436 </voice> 482 </voice>
437</phrase> 483</phrase>
438<phrase> 484<phrase>
439 id: LANG_CHANNEL 485 id: LANG_PLAYLISTS
440 desc: in sound_settings 486 desc: in the main menu and file vew setting
441 user: 487 user:
442 <source> 488 <source>
443 *: "Channel Configuration" 489 *: "Playlists"
444 </source> 490 </source>
445 <dest> 491 <dest>
446 *: "Channel Configuration" 492 *: "Playlists"
447 </dest> 493 </dest>
448 <voice> 494 <voice>
449 *: "Channel Configuration" 495 *: "Playlists"
450 </voice> 496 </voice>
451</phrase> 497</phrase>
452<phrase> 498<phrase>
453 id: LANG_CHANNEL_STEREO 499 id: LANG_PLUGINS
454 desc: in sound_settings 500 desc: in the main menu
455 user: 501 user:
456 <source> 502 <source>
457 *: "Stereo" 503 *: "Plugins"
458 </source> 504 </source>
459 <dest> 505 <dest>
460 *: "Stereo" 506 *: "Plugins"
461 </dest> 507 </dest>
462 <voice> 508 <voice>
463 *: "Stereo" 509 *: "Plugins"
464 </voice> 510 </voice>
465</phrase> 511</phrase>
466<phrase> 512<phrase>
467 id: LANG_CHANNEL_MONO 513 id: LANG_SYSTEM
468 desc: in sound_settings 514 desc: in the main menu ang settings menu
469 user: 515 user:
470 <source> 516 <source>
471 *: "Mono" 517 *: "System"
472 </source> 518 </source>
473 <dest> 519 <dest>
474 *: "Mono" 520 *: "System"
475 </dest> 521 </dest>
476 <voice> 522 <voice>
477 *: "Mono" 523 *: "System"
478 </voice> 524 </voice>
479</phrase> 525</phrase>
480<phrase> 526<phrase>
481 id: LANG_CHANNEL_CUSTOM 527 id: LANG_BOOKMARK_SELECT_BOOKMARK
482 desc: in sound_settings 528 desc: bookmark selection list title
483 user: 529 user:
484 <source> 530 <source>
485 *: "Custom" 531 *: "Select Bookmark"
486 </source> 532 </source>
487 <dest> 533 <dest>
488 *: "Custom" 534 *: "Select Bookmark"
489 </dest> 535 </dest>
490 <voice> 536 <voice>
491 *: "Custom" 537 *: "Select Bookmark"
492 </voice> 538 </voice>
493</phrase> 539</phrase>
494<phrase> 540<phrase>
495 id: LANG_CHANNEL_LEFT 541 id: LANG_BOOKMARK_DONT_RESUME
496 desc: in sound_settings 542 desc: top item in the list when asking user about bookmark auto load
497 user: 543 user:
498 <source> 544 <source>
499 *: "Mono Left" 545 *: "<Don't Resume>"
500 </source> 546 </source>
501 <dest> 547 <dest>
502 *: "Mono Left" 548 *: "<Don't Resume>"
503 </dest> 549 </dest>
504 <voice> 550 <voice>
505 *: "Mono Left" 551 *: "Do not resume"
506 </voice> 552 </voice>
507</phrase> 553</phrase>
508<phrase> 554<phrase>
509 id: LANG_CHANNEL_RIGHT 555 id: LANG_BOOKMARK_SHUFFLE
510 desc: in sound_settings 556 desc: bookmark selection list, bookmark enables shuffle
511 user: 557 user:
512 <source> 558 <source>
513 *: "Mono Right" 559 *: ", Shuffle"
514 </source> 560 </source>
515 <dest> 561 <dest>
516 *: "Mono Right" 562 *: ", Shuffle"
517 </dest> 563 </dest>
518 <voice> 564 <voice>
519 *: "Mono Right" 565 *: ""
520 </voice> 566 </voice>
521</phrase> 567</phrase>
522<phrase> 568<phrase>
523 id: LANG_CHANNEL_KARAOKE 569 id: LANG_BOOKMARK_INVALID
524 desc: in sound_settings 570 desc: bookmark selection list, bookmark couldn't be parsed
525 user: 571 user:
526 <source> 572 <source>
527 *: "Karaoke" 573 *: "<Invalid Bookmark>"
528 </source> 574 </source>
529 <dest> 575 <dest>
530 *: "Karaoke" 576 *: "<Invalid Bookmark>"
531 </dest> 577 </dest>
532 <voice> 578 <voice>
533 *: "Karaoke" 579 *: "Invalid Bookmark"
534 </voice> 580 </voice>
535</phrase> 581</phrase>
536<phrase> 582<phrase>
537 id: LANG_STEREO_WIDTH 583 id: LANG_BOOKMARK_CONTEXT_MENU
538 desc: in sound_settings 584 desc: bookmark selection list context menu
539 user: 585 user:
540 <source> 586 <source>
541 *: "Stereo Width" 587 *: "Bookmark Actions"
542 </source> 588 </source>
543 <dest> 589 <dest>
544 *: "Stereo Width" 590 *: "Bookmark Actions"
545 </dest> 591 </dest>
546 <voice> 592 <voice>
547 *: "Stereo Width" 593 *: "Bookmark Actions"
548 </voice> 594 </voice>
549</phrase> 595</phrase>
550<phrase> 596<phrase>
551 id: LANG_LOUDNESS 597 id: LANG_BOOKMARK_CONTEXT_RESUME
552 desc: in sound_settings 598 desc: bookmark context menu, resume this bookmark
553 user: 599 user:
554 <source> 600 <source>
555 *: "Loudness" 601 *: "Resume"
556 </source> 602 </source>
557 <dest> 603 <dest>
558 *: "Loudness" 604 *: "Resume"
559 </dest> 605 </dest>
560 <voice> 606 <voice>
561 *: "Loudness" 607 *: "Resume"
562 </voice> 608 </voice>
563</phrase> 609</phrase>
564<phrase> 610<phrase>
565 id: LANG_AUTOVOL 611 id: LANG_BOOKMARK_CONTEXT_DELETE
566 desc: in sound_settings 612 desc: bookmark context menu, delete this bookmark
567 user: 613 user:
568 <source> 614 <source>
569 *: "Auto Volume" 615 *: "Delete"
570 </source> 616 </source>
571 <dest> 617 <dest>
572 *: "Auto Volume" 618 *: "Delete"
573 </dest> 619 </dest>
574 <voice> 620 <voice>
575 *: "Auto Volume" 621 *: "Delete"
576 </voice> 622 </voice>
577</phrase> 623</phrase>
578<phrase> 624<phrase>
579 id: LANG_DECAY 625 id: LANG_AUTO_BOOKMARK_QUERY
580 desc: in sound_settings 626 desc: prompt for user to decide to create an bookmark
581 user: 627 user:
582 <source> 628 <source>
583 *: "AV Decay Time" 629 *: "Create a Bookmark?"
584 </source> 630 </source>
585 <dest> 631 <dest>
586 *: "AV Decay Time" 632 *: "Create a Bookmark?"
587 </dest> 633 </dest>
588 <voice> 634 <voice>
589 *: "" 635 *: ""
590 </voice> 636 </voice>
591</phrase> 637</phrase>
592<phrase> 638<phrase>
593 id: LANG_SUPERBASS 639 id: LANG_BOOKMARK_CREATE_SUCCESS
594 desc: in sound settings 640 desc: Indicates bookmark was successfully created
595 user:
596 <source>
597 *: "Super Bass"
598 </source>
599 <dest>
600 *: "Super Bass"
601 </dest>
602 <voice>
603 *: "Super Bass"
604 </voice>
605</phrase>
606<phrase>
607 id: LANG_MDB_ENABLE
608 desc: in sound settings
609 user:
610 <source>
611 *: "MDB Enable"
612 </source>
613 <dest>
614 *: "MDB Enable"
615 </dest>
616 <voice>
617 *: "MDB Enable"
618 </voice>
619</phrase>
620<phrase>
621 id: LANG_MDB_STRENGTH
622 desc: in sound settings
623 user: 641 user:
624 <source> 642 <source>
625 *: "MDB Strength" 643 *: "Bookmark Created"
626 </source> 644 </source>
627 <dest> 645 <dest>
628 *: "MDB Strength" 646 *: "Bookmark Created"
629 </dest> 647 </dest>
630 <voice> 648 <voice>
631 *: "MDB Strength" 649 *: ""
632 </voice> 650 </voice>
633</phrase> 651</phrase>
634<phrase> 652<phrase>
635 id: LANG_MDB_HARMONICS 653 id: LANG_BOOKMARK_CREATE_FAILURE
636 desc: in sound settings 654 desc: Indicates bookmark was not created
637 user: 655 user:
638 <source> 656 <source>
639 *: "MDB Harmonics" 657 *: "Bookmark Failed!"
640 </source> 658 </source>
641 <dest> 659 <dest>
642 *: "MDB Harmonics" 660 *: "Bookmark Failed!"
643 </dest> 661 </dest>
644 <voice> 662 <voice>
645 *: "MDB Harmonics" 663 *: ""
646 </voice> 664 </voice>
647</phrase> 665</phrase>
648<phrase> 666<phrase>
649 id: LANG_MDB_CENTER 667 id: LANG_BOOKMARK_LOAD_EMPTY
650 desc: in sound settings 668 desc: Indicates bookmark was empty
651 user: 669 user:
652 <source> 670 <source>
653 *: "MDB Center Frequency" 671 *: "Bookmark Empty"
654 </source> 672 </source>
655 <dest> 673 <dest>
656 *: "MDB Center Frequency" 674 *: "Bookmark Empty"
657 </dest> 675 </dest>
658 <voice> 676 <voice>
659 *: "MDB Center Frequency" 677 *: ""
660 </voice> 678 </voice>
661</phrase> 679</phrase>
662<phrase> 680<phrase>
663 id: LANG_MDB_SHAPE 681 id: LANG_SOUND_SETTINGS
664 desc: in sound settings 682 desc: in the main menu
665 user: 683 user:
666 <source> 684 <source>
667 *: "MDB Shape" 685 *: "Sound Settings"
668 </source> 686 </source>
669 <dest> 687 <dest>
670 *: "MDB Shape" 688 *: "Sound Settings"
671 </dest> 689 </dest>
672 <voice> 690 <voice>
673 *: "MDB Shape" 691 *: "Sound Settings"
674 </voice> 692 </voice>
675</phrase> 693</phrase>
676<phrase> 694<phrase>
677 id: LANG_CROSSFEED 695 id: LANG_VOLUME
678 desc: in sound settings 696 desc: in sound_settings
679 user: 697 user:
680 <source> 698 <source>
681 *: "Crossfeed" 699 *: "Volume"
682 </source> 700 </source>
683 <dest> 701 <dest>
684 *: "Crossfeed" 702 *: "Volume"
685 </dest> 703 </dest>
686 <voice> 704 <voice>
687 *: "Crossfeed" 705 *: "Volume"
688 </voice> 706 </voice>
689</phrase> 707</phrase>
690<phrase> 708<phrase>
691 id: LANG_EQUALIZER 709 id: LANG_BASS
692 desc: in the sound settings menu 710 desc: in sound_settings
693 user: 711 user:
694 <source> 712 <source>
695 *: "Equalizer" 713 *: "Bass"
696 </source> 714 </source>
697 <dest> 715 <dest>
698 *: "Equalizer" 716 *: "Bass"
699 </dest> 717 </dest>
700 <voice> 718 <voice>
701 *: "Equalizer" 719 *: "Bass"
702 </voice> 720 </voice>
703</phrase> 721</phrase>
704<phrase> 722<phrase>
705 id: LANG_PLAYBACK 723 id: LANG_TREBLE
706 desc: in settings_menu() 724 desc: in sound_settings
707 user: 725 user:
708 <source> 726 <source>
709 *: "Playback" 727 *: "Treble"
710 </source> 728 </source>
711 <dest> 729 <dest>
712 *: "Playback" 730 *: "Treble"
713 </dest> 731 </dest>
714 <voice> 732 <voice>
715 *: "Playback" 733 *: "Treble"
716 </voice> 734 </voice>
717</phrase> 735</phrase>
718<phrase> 736<phrase>
719 id: LANG_FILE 737 id: LANG_BALANCE
720 desc: in settings_menu() 738 desc: in sound_settings
721 user: 739 user:
722 <source> 740 <source>
723 *: "File View" 741 *: "Balance"
724 </source> 742 </source>
725 <dest> 743 <dest>
726 *: "File View" 744 *: "Balance"
727 </dest> 745 </dest>
728 <voice> 746 <voice>
729 *: "File View" 747 *: "Balance"
730 </voice> 748 </voice>
731</phrase> 749</phrase>
732<phrase> 750<phrase>
733 id: LANG_DISPLAY 751 id: LANG_CHANNEL_CONFIGURATION
734 desc: in settings_menu() 752 desc: in sound_settings
735 user: 753 user:
736 <source> 754 <source>
737 *: "Display" 755 *: "Channel Configuration"
738 </source> 756 </source>
739 <dest> 757 <dest>
740 *: "Display" 758 *: "Channel Configuration"
741 </dest> 759 </dest>
742 <voice> 760 <voice>
743 *: "Display" 761 *: "Channel Configuration"
744 </voice> 762 </voice>
745</phrase> 763</phrase>
746<phrase> 764<phrase>
747 id: LANG_SYSTEM 765 id: LANG_CHANNEL_STEREO
748 desc: in settings_menu() 766 desc: in sound_settings
749 user: 767 user:
750 <source> 768 <source>
751 *: "System" 769 *: "Stereo"
752 </source> 770 </source>
753 <dest> 771 <dest>
754 *: "System" 772 *: "Stereo"
755 </dest> 773 </dest>
756 <voice> 774 <voice>
757 *: "System" 775 *: "Stereo"
758 </voice> 776 </voice>
759</phrase> 777</phrase>
760<phrase> 778<phrase>
761 id: LANG_BOOKMARK_SETTINGS 779 id: LANG_CHANNEL_MONO
762 desc: in general settings 780 desc: in sound_settings
763 user: 781 user:
764 <source> 782 <source>
765 *: "Bookmarking" 783 *: "Mono"
766 </source> 784 </source>
767 <dest> 785 <dest>
768 *: "Bookmarking" 786 *: "Mono"
769 </dest> 787 </dest>
770 <voice> 788 <voice>
771 *: "Bookmarking" 789 *: "Mono"
772 </voice> 790 </voice>
773</phrase> 791</phrase>
774<phrase> 792<phrase>
775 id: LANG_LANGUAGE 793 id: LANG_CHANNEL_CUSTOM
776 desc: in settings_menu 794 desc: in sound_settings
777 user: 795 user:
778 <source> 796 <source>
779 *: "Language" 797 *: "Custom"
780 </source> 798 </source>
781 <dest> 799 <dest>
782 *: "Language" 800 *: "Custom"
783 </dest> 801 </dest>
784 <voice> 802 <voice>
785 *: "Language" 803 *: "Custom"
786 </voice> 804 </voice>
787</phrase> 805</phrase>
788<phrase> 806<phrase>
789 id: LANG_VOICE 807 id: LANG_CHANNEL_LEFT
790 desc: root of voice menu 808 desc: in sound_settings
791 user: 809 user:
792 <source> 810 <source>
793 *: "Voice" 811 *: "Mono Left"
794 </source> 812 </source>
795 <dest> 813 <dest>
796 *: "Voice" 814 *: "Mono Left"
797 </dest> 815 </dest>
798 <voice> 816 <voice>
799 *: "Voice" 817 *: "Mono Left"
800 </voice> 818 </voice>
801</phrase> 819</phrase>
802<phrase> 820<phrase>
803 id: LANG_CUSTOM_CFG 821 id: LANG_CHANNEL_RIGHT
804 desc: in setting_menu() 822 desc: in sound_settings
805 user: 823 user:
806 <source> 824 <source>
807 *: "Browse .cfg files" 825 *: "Mono Right"
808 </source> 826 </source>
809 <dest> 827 <dest>
810 *: "Browse .cfg files" 828 *: "Mono Right"
811 </dest> 829 </dest>
812 <voice> 830 <voice>
813 *: "Browse configuration files" 831 *: "Mono Right"
814 </voice> 832 </voice>
815</phrase> 833</phrase>
816<phrase> 834<phrase>
817 id: LANG_FIRMWARE 835 id: LANG_CHANNEL_KARAOKE
818 desc: DEPRECATED 836 desc: in sound_settings
819 user: 837 user:
820 <source> 838 <source>
821 *: "" 839 *: "Karaoke"
822 </source> 840 </source>
823 <dest> 841 <dest>
824 *: deprecated 842 *: "Karaoke"
825 </dest> 843 </dest>
826 <voice> 844 <voice>
827 *: "" 845 *: "Karaoke"
828 </voice> 846 </voice>
829</phrase> 847</phrase>
830<phrase> 848<phrase>
831 id: LANG_RESET 849 id: LANG_STEREO_WIDTH
832 desc: in system_settings_menu() 850 desc: in sound_settings
833 user: 851 user:
834 <source> 852 <source>
835 *: "Reset Settings" 853 *: "Stereo Width"
836 </source> 854 </source>
837 <dest> 855 <dest>
838 *: "Reset Settings" 856 *: "Stereo Width"
839 </dest> 857 </dest>
840 <voice> 858 <voice>
841 *: "Reset Settings" 859 *: "Stereo Width"
842 </voice> 860 </voice>
843</phrase> 861</phrase>
844<phrase> 862<phrase>
845 id: LANG_RESET_ASK_RECORDER 863 id: LANG_CROSSFEED
846 desc: confirm to reset settings 864 desc: in sound settings
847 user: 865 user:
848 <source> 866 <source>
849 *: "Are You Sure?" 867 *: none
868 swcodec: "Crossfeed"
850 </source> 869 </source>
851 <dest> 870 <dest>
852 *: "Are You Sure?" 871 *: none
872 swcodec: "Crossfeed"
853 </dest> 873 </dest>
854 <voice> 874 <voice>
855 *: "" 875 *: none
876 swcodec: "Crossfeed"
856 </voice> 877 </voice>
857</phrase> 878</phrase>
858<phrase> 879<phrase>
859 id: LANG_CONFIRM_WITH_PLAY_RECORDER 880 id: LANG_CROSSFEED_DIRECT_GAIN
860 desc: Generic recorder string to use to confirm 881 desc: in crossfeed settings
861 user: 882 user:
862 <source> 883 <source>
863 *: "PLAY = Yes" 884 *: none
864 h100,h120,h300: "NAVI = Yes" 885 swcodec: "Direct Gain"
865 ipod*: "SELECT = Yes"
866 x5: "SELECT = Yes"
867 h10,h10_5gb: "SELECT = Yes"
868 gigabeatf: "SELECT = Yes"
869 e200: "SELECT = Yes"
870 </source> 886 </source>
871 <dest> 887 <dest>
872 *: "PLAY = Yes" 888 *: none
873 h100,h120,h300: "NAVI = Yes" 889 swcodec: "Direct Gain"
874 ipod*: "SELECT = Yes"
875 x5: "SELECT = Yes"
876 h10,h10_5gb: "SELECT = Yes"
877 gigabeatf: "SELECT = Yes"
878 e200: "SELECT = Yes"
879 </dest> 890 </dest>
880 <voice> 891 <voice>
881 *: "" 892 *: none
893 swcodec: "Direct gain"
882 </voice> 894 </voice>
883</phrase> 895</phrase>
884<phrase> 896<phrase>
885 id: LANG_CANCEL_WITH_ANY_RECORDER 897 id: LANG_CROSSFEED_CROSS_GAIN
886 desc: Generic recorder string to use to cancel 898 desc: in crossfeed settings
887 user:
888 <source> 899 <source>
889 *: "Any Other = No" 900 *: none
901 swcodec: "Cross Gain"
890 </source> 902 </source>
891 <dest> 903 <dest>
892 *: "Any Other = No" 904 *: none
905 swcodec: "Cross Gain"
893 </dest> 906 </dest>
894 <voice> 907 <voice>
895 *: "" 908 *: none
909 swcodec: "Cross gain"
896 </voice> 910 </voice>
897</phrase> 911</phrase>
898<phrase> 912<phrase>
899 id: LANG_RESET_DONE_SETTING 913 id: LANG_CROSSFEED_HF_ATTENUATION
900 desc: visual confirmation after settings reset 914 desc: in crossfeed settings
901 user:
902 <source> 915 <source>
903 *: "Settings" 916 *: none
917 swcodec: "High-Frequency Attenuation"
904 </source> 918 </source>
905 <dest> 919 <dest>
906 *: "Settings" 920 *: none
921 swcodec: "High-Frequency Attenuation"
907 </dest> 922 </dest>
908 <voice> 923 <voice>
909 *: "" 924 *: none
925 swcodec: "High-frequency attenuation"
910 </voice> 926 </voice>
911</phrase> 927</phrase>
912<phrase> 928<phrase>
913 id: LANG_RESET_DONE_CLEAR 929 id: LANG_CROSSFEED_HF_CUTOFF
914 desc: visual confirmation after settings reset 930 desc: in crossfeed settings
915 user:
916 <source> 931 <source>
917 *: "Cleared" 932 *: none
933 swcodec: "High-Frequency Cutoff"
918 </source> 934 </source>
919 <dest> 935 <dest>
920 *: "Cleared" 936 *: none
937 swcodec: "High-Frequency Cutoff"
921 </dest> 938 </dest>
922 <voice> 939 <voice>
923 *: "" 940 *: none
941 swcodec: "High-frequency cutoff"
924 </voice> 942 </voice>
925</phrase> 943</phrase>
926<phrase> 944<phrase>
927 id: LANG_RESET_DONE_CANCEL 945 id: LANG_EQUALIZER
928 desc: Visual confirmation of cancelation 946 desc: in the sound settings menu
929 user: 947 user:
930 <source> 948 <source>
931 *: "Canceled" 949 *: none
950 swcodec: "Equalizer"
932 </source> 951 </source>
933 <dest> 952 <dest>
934 *: "Cancelled" 953 *: none
954 swcodec: "Equalizer"
935 </dest> 955 </dest>
936 <voice> 956 <voice>
937 *: "" 957 *: none
958 swcodec: "Equalizer"
938 </voice> 959 </voice>
939</phrase> 960</phrase>
940<phrase> 961<phrase>
941 id: LANG_SAVE_SETTINGS 962 id: LANG_EQUALIZER_ENABLED
942 desc: in system_settings_menu() 963 desc: in the equalizer settings menu
943 user: 964 user:
944 <source> 965 <source>
945 *: "Write .cfg file" 966 *: none
967 swcodec: "Enable EQ"
946 </source> 968 </source>
947 <dest> 969 <dest>
948 *: "Write .cfg file" 970 *: none
971 swcodec: "Enable EQ"
949 </dest> 972 </dest>
950 <voice> 973 <voice>
951 *: "Write configuration file" 974 *: none
975 swcodec: "Enable equalizer"
952 </voice> 976 </voice>
953</phrase> 977</phrase>
954<phrase> 978<phrase>
955 id: LANG_SETTINGS_SAVE_PLAYER 979 id: LANG_EQUALIZER_GRAPHICAL
956 desc: displayed if save settings has failed 980 desc: in the equalizer settings menu
957 user: 981 user:
958 <source> 982 <source>
959 *: "Save Failed" 983 *: none
984 swcodec: "Graphical EQ"
960 </source> 985 </source>
961 <dest> 986 <dest>
962 *: "Save Failed" 987 *: none
988 swcodec: "Graphical EQ"
963 </dest> 989 </dest>
964 <voice> 990 <voice>
965 *: "" 991 *: none
992 swcodec: "Graphical equalizer"
966 </voice> 993 </voice>
967</phrase> 994</phrase>
968<phrase> 995<phrase>
969 id: LANG_SETTINGS_BATTERY_PLAYER 996 id: LANG_EQUALIZER_PRECUT
970 desc: if save settings has failed 997 desc: in eq settings
971 user: 998 user:
972 <source> 999 <source>
973 *: "Partition?" 1000 *: none
1001 swcodec: "Precut"
974 </source> 1002 </source>
975 <dest> 1003 <dest>
976 *: "Partition?" 1004 *: none
1005 swcodec: "Precut"
977 </dest> 1006 </dest>
978 <voice> 1007 <voice>
979 *: "" 1008 *: none
1009 swcodec: "Pre-cut"
980 </voice> 1010 </voice>
981</phrase> 1011</phrase>
982<phrase> 1012<phrase>
983 id: LANG_SETTINGS_SAVE_RECORDER 1013 id: LANG_EQUALIZER_GAIN
984 desc: displayed if save settings has failed 1014 desc: in the equalizer settings menu
985 user: 1015 user:
986 <source> 1016 <source>
987 *: "Save Failed" 1017 *: none
1018 swcodec: "Simple EQ Settings"
988 </source> 1019 </source>
989 <dest> 1020 <dest>
990 *: "Save Failed" 1021 *: none
1022 swcodec: "Simple EQ Settings"
991 </dest> 1023 </dest>
992 <voice> 1024 <voice>
993 *: "" 1025 *: none
1026 swcodec: "Simple equalizer settings"
994 </voice> 1027 </voice>
995</phrase> 1028</phrase>
996<phrase> 1029<phrase>
997 id: LANG_SETTINGS_BATTERY_RECORDER 1030 id: LANG_EQUALIZER_ADVANCED
998 desc: if save settings has failed 1031 desc: in the equalizer settings menu
999 user: 1032 user:
1000 <source> 1033 <source>
1001 *: "No partition?" 1034 *: none
1035 swcodec: "Advanced EQ Settings"
1002 </source> 1036 </source>
1003 <dest> 1037 <dest>
1004 *: "No partition?" 1038 *: none
1039 swcodec: "Advanced EQ Settings"
1005 </dest> 1040 </dest>
1006 <voice> 1041 <voice>
1007 *: "" 1042 *: none
1043 swcodec: "Advanced equalizer settings"
1008 </voice> 1044 </voice>
1009</phrase> 1045</phrase>
1010<phrase> 1046<phrase>
1011 id: LANG_RECORDING_MENU 1047 id: LANG_EQUALIZER_SAVE
1012 desc: in the recording sub menu 1048 desc: in the equalizer settings menu
1013 user: 1049 user:
1014 <source> 1050 <source>
1015 *: "Recording" 1051 *: none
1052 swcodec: "Save EQ Preset"
1016 </source> 1053 </source>
1017 <dest> 1054 <dest>
1018 *: "Recording" 1055 *: none
1056 swcodec: "Save EQ Preset"
1019 </dest> 1057 </dest>
1020 <voice> 1058 <voice>
1021 *: "Recording" 1059 *: none
1060 swcodec: "Save equalizer preset"
1022 </voice> 1061 </voice>
1023</phrase> 1062</phrase>
1024<phrase> 1063<phrase>
1025 id: LANG_RECORDING_SETTINGS 1064 id: LANG_EQUALIZER_BROWSE
1026 desc: in the main menu 1065 desc: in the equalizer settings menu
1027 user: 1066 user:
1028 <source> 1067 <source>
1029 *: "Recording Settings" 1068 *: none
1069 swcodec: "Browse EQ Presets"
1030 </source> 1070 </source>
1031 <dest> 1071 <dest>
1032 *: "Recording Settings" 1072 *: none
1073 swcodec: "Browse EQ Presets"
1033 </dest> 1074 </dest>
1034 <voice> 1075 <voice>
1035 *: "Recording Settings" 1076 *: none
1077 swcodec: "Browse equalizer presets"
1036 </voice> 1078 </voice>
1037</phrase> 1079</phrase>
1038<phrase> 1080<phrase>
1039 id: LANG_EQUALIZER_ENABLED 1081 id: LANG_EQUALIZER_EDIT_MODE
1040 desc: in the equalizer settings menu 1082 desc: in the equalizer settings menu
1041 user: 1083 user:
1042 <source> 1084 <source>
1043 *: "Enable EQ" 1085 *: none
1086 swcodec: "Edit mode: %s"
1044 </source> 1087 </source>
1045 <dest> 1088 <dest>
1046 *: "Enable EQ" 1089 *: none
1090 swcodec: "Edit mode: %s"
1047 </dest> 1091 </dest>
1048 <voice> 1092 <voice>
1049 *: "Enable equalizer" 1093 *: none
1094 swcodec: ""
1050 </voice> 1095 </voice>
1051</phrase> 1096</phrase>
1052<phrase> 1097<phrase>
1053 id: LANG_EQUALIZER_GRAPHICAL 1098 id: LANG_EQUALIZER_GAIN_ITEM
1054 desc: in the equalizer settings menu 1099 desc: in the equalizer settings menu
1055 user: 1100 user:
1056 <source> 1101 <source>
1057 *: "Graphical EQ" 1102 *: none
1103 swcodec: "%d Hz Band Gain"
1058 </source> 1104 </source>
1059 <dest> 1105 <dest>
1060 *: "Graphical EQ" 1106 *: none
1107 swcodec: "%d Hz Band Gain"
1061 </dest> 1108 </dest>
1062 <voice> 1109 <voice>
1063 *: "Graphical equalizer" 1110 *: none
1111 swcodec: ""
1064 </voice> 1112 </voice>
1065</phrase> 1113</phrase>
1066<phrase> 1114<phrase>
1067 id: LANG_EQUALIZER_PRECUT 1115 id: LANG_EQUALIZER_BAND_LOW_SHELF
1068 desc: in eq settings 1116 desc: in the equalizer settings menu
1069 user: 1117 user:
1070 <source> 1118 <source>
1071 *: "Precut" 1119 *: none
1120 swcodec: "Low Shelf Filter"
1072 </source> 1121 </source>
1073 <dest> 1122 <dest>
1074 *: "Precut" 1123 *: none
1124 swcodec: "Low Shelf Filter"
1075 </dest> 1125 </dest>
1076 <voice> 1126 <voice>
1077 *: "Pre-cut" 1127 *: none
1128 swcodec: "Low shelf filter"
1078 </voice> 1129 </voice>
1079</phrase> 1130</phrase>
1080<phrase> 1131<phrase>
1081 id: LANG_EQUALIZER_GAIN 1132 id: LANG_EQUALIZER_BAND_PEAK
1082 desc: in the equalizer settings menu 1133 desc: in the equalizer settings menu
1083 user: 1134 user:
1084 <source> 1135 <source>
1085 *: "Simple EQ Settings" 1136 *: none
1137 swcodec: "Peak Filter %d"
1086 </source> 1138 </source>
1087 <dest> 1139 <dest>
1088 *: "Simple EQ Settings" 1140 *: none
1141 swcodec: "Peak Filter %d"
1089 </dest> 1142 </dest>
1090 <voice> 1143 <voice>
1091 *: "Simple equalizer settings" 1144 *: none
1145 swcodec: "Peak filter"
1092 </voice> 1146 </voice>
1093</phrase> 1147</phrase>
1094<phrase> 1148<phrase>
1095 id: LANG_EQUALIZER_ADVANCED 1149 id: LANG_EQUALIZER_BAND_HIGH_SHELF
1096 desc: in the equalizer settings menu 1150 desc: in the equalizer settings menu
1097 user: 1151 user:
1098 <source> 1152 <source>
1099 *: "Advanced EQ Settings" 1153 *: none
1154 swcodec: "High Shelf Filter"
1100 </source> 1155 </source>
1101 <dest> 1156 <dest>
1102 *: "Advanced EQ Settings" 1157 *: none
1158 swcodec: "High Shelf Filter"
1103 </dest> 1159 </dest>
1104 <voice> 1160 <voice>
1105 *: "Advanced equalizer settings" 1161 *: none
1162 swcodec: "High shelf filter"
1106 </voice> 1163 </voice>
1107</phrase> 1164</phrase>
1108<phrase> 1165<phrase>
1109 id: LANG_EQUALIZER_SAVE 1166 id: LANG_EQUALIZER_BAND_CUTOFF
1110 desc: in the equalizer settings menu 1167 desc: in the equalizer settings menu
1111 user: 1168 user:
1112 <source> 1169 <source>
1113 *: "Save EQ Preset" 1170 *: none
1171 swcodec: "Cutoff Frequency"
1114 </source> 1172 </source>
1115 <dest> 1173 <dest>
1116 *: "Save EQ Preset" 1174 *: none
1175 swcodec: "Cutoff Frequency"
1117 </dest> 1176 </dest>
1118 <voice> 1177 <voice>
1119 *: "Save equalizer preset" 1178 *: none
1179 swcodec: "Cutoff Frequency"
1120 </voice> 1180 </voice>
1121</phrase> 1181</phrase>
1122<phrase> 1182<phrase>
1123 id: LANG_EQUALIZER_BROWSE 1183 id: LANG_EQUALIZER_BAND_CENTER
1124 desc: in the equalizer settings menu 1184 desc: in the equalizer settings menu
1125 user: 1185 user:
1126 <source> 1186 <source>
1127 *: "Browse EQ Presets" 1187 *: none
1188 swcodec: "Center Frequency"
1128 </source> 1189 </source>
1129 <dest> 1190 <dest>
1130 *: "Browse EQ Presets" 1191 *: none
1192 swcodec: "Center Frequency"
1131 </dest> 1193 </dest>
1132 <voice> 1194 <voice>
1133 *: "Browse equalizer presets" 1195 *: none
1196 swcodec: "Center frequency"
1134 </voice> 1197 </voice>
1135</phrase> 1198</phrase>
1136<phrase> 1199<phrase>
1137 id: LANG_EQUALIZER_EDIT_MODE 1200 id: LANG_EQUALIZER_BAND_Q
1138 desc: in the equalizer settings menu 1201 desc: in the equalizer settings menu
1139 user: 1202 user:
1140 <source> 1203 <source>
1141 *: "Edit mode: %s" 1204 *: none
1205 swcodec: "Q"
1142 </source> 1206 </source>
1143 <dest> 1207 <dest>
1144 *: "Edit mode: %s" 1208 *: none
1209 swcodec: "Q"
1145 </dest> 1210 </dest>
1146 <voice> 1211 <voice>
1147 *: "" 1212 *: none
1213 swcodec: "Q"
1148 </voice> 1214 </voice>
1149</phrase> 1215</phrase>
1150<phrase> 1216<phrase>
1151 id: LANG_EQUALIZER_GAIN_ITEM 1217 id: LANG_EQUALIZER_HARDWARE
1152 desc: in the equalizer settings menu 1218 desc: in the sound settings menu
1153 user: 1219 user:
1154 <source> 1220 <source>
1155 *: "%d Hz Band Gain" 1221 *: none
1222 ipodvideo: "Hardware Equalizer"
1156 </source> 1223 </source>
1157 <dest> 1224 <dest>
1158 *: "%d Hz Band Gain" 1225 *: none
1226 ipodvideo: "Hardware Equalizer"
1159 </dest> 1227 </dest>
1160 <voice> 1228 <voice>
1161 *: "" 1229 *: none
1230 ipodvideo: "Hardware equalizer"
1162 </voice> 1231 </voice>
1163</phrase> 1232</phrase>
1164<phrase> 1233<phrase>
1165 id: LANG_EQUALIZER_BAND_LOW_SHELF 1234 id: LANG_EQUALIZER_HARDWARE_ENABLED
1166 desc: in the equalizer settings menu 1235 desc: in the equalizer settings menu
1167 user: 1236 user:
1168 <source> 1237 <source>
1169 *: "Low Shelf Filter" 1238 *: none
1239 ipodvideo: "Enable Hardware EQ"
1170 </source> 1240 </source>
1171 <dest> 1241 <dest>
1172 *: "Low Shelf Filter" 1242 *: none
1243 ipodvideo: "Enable Hardware EQ"
1173 </dest> 1244 </dest>
1174 <voice> 1245 <voice>
1175 *: "Low shelf filter" 1246 *: none
1247 ipodvideo: "Enable hardware equalizer"
1176 </voice> 1248 </voice>
1177</phrase> 1249</phrase>
1178<phrase> 1250<phrase>
1179 id: LANG_EQUALIZER_BAND_PEAK 1251 id: LANG_EQUALIZER_BANDWIDTH
1180 desc: in the equalizer settings menu 1252 desc: in the equalizer settings menu
1181 user: 1253 user:
1182 <source> 1254 <source>
1183 *: "Peak Filter %d" 1255 *: none
1256 ipodvideo: "Bandwidth"
1184 </source> 1257 </source>
1185 <dest> 1258 <dest>
1186 *: "Peak Filter %d" 1259 *: none
1260 ipodvideo: "Bandwidth"
1187 </dest> 1261 </dest>
1188 <voice> 1262 <voice>
1189 *: "Peak filter" 1263 *: none
1264 ipodvideo: "Bandwidth"
1190 </voice> 1265 </voice>
1191</phrase> 1266</phrase>
1192<phrase> 1267<phrase>
1193 id: LANG_EQUALIZER_BAND_HIGH_SHELF 1268 id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW
1194 desc: in the equalizer settings menu 1269 desc: in the equalizer settings menu
1195 user: 1270 user:
1196 <source> 1271 <source>
1197 *: "High Shelf Filter" 1272 *: none
1273 ipodvideo: "Narrow"
1198 </source> 1274 </source>
1199 <dest> 1275 <dest>
1200 *: "High Shelf Filter" 1276 *: none
1277 ipodvideo: "Narrow"
1201 </dest> 1278 </dest>
1202 <voice> 1279 <voice>
1203 *: "High shelf filter" 1280 *: none
1281 ipodvideo: "Narrow"
1204 </voice> 1282 </voice>
1205</phrase> 1283</phrase>
1206<phrase> 1284<phrase>
1207 id: LANG_EQUALIZER_BAND_CUTOFF 1285 id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE
1208 desc: in the equalizer settings menu 1286 desc: in the equalizer settings menu
1209 user: 1287 user:
1210 <source> 1288 <source>
1211 *: "Cutoff Frequency" 1289 *: none
1290 ipodvideo: "Wide"
1212 </source> 1291 </source>
1213 <dest> 1292 <dest>
1214 *: "Cutoff Frequency" 1293 *: none
1294 ipodvideo: "Wide"
1215 </dest> 1295 </dest>
1216 <voice> 1296 <voice>
1217 *: "Cutoff Frequency" 1297 *: none
1298 ipodvideo: "Wide"
1218 </voice> 1299 </voice>
1219</phrase> 1300</phrase>
1220<phrase> 1301<phrase>
1221 id: LANG_EQUALIZER_BAND_CENTER 1302 id: LANG_DITHERING
1222 desc: in the equalizer settings menu 1303 desc: in the sound settings menu
1223 user: 1304 user:
1224 <source> 1305 <source>
1225 *: "Center Frequency" 1306 *: none
1307 swcodec: "Dithering"
1226 </source> 1308 </source>
1227 <dest> 1309 <dest>
1228 *: "Center Frequency" 1310 *: none
1311 swcodec: "Dithering"
1229 </dest> 1312 </dest>
1230 <voice> 1313 <voice>
1231 *: "Center frequency" 1314 *: none
1315 swcodec: "Dithering"
1232 </voice> 1316 </voice>
1233</phrase> 1317</phrase>
1234<phrase> 1318<phrase>
1235 id: LANG_EQUALIZER_BAND_Q 1319 id: LANG_LOUDNESS
1236 desc: in the equalizer settings menu 1320 desc: in sound_settings
1237 user: 1321 user:
1238 <source> 1322 <source>
1239 *: "Q" 1323 *: none
1324 masf: "Loudness"
1240 </source> 1325 </source>
1241 <dest> 1326 <dest>
1242 *: "Q" 1327 *: none
1328 masf: "Loudness"
1243 </dest> 1329 </dest>
1244 <voice> 1330 <voice>
1245 *: "Q" 1331 *: none
1332 masf: "Loudness"
1246 </voice> 1333 </voice>
1247</phrase> 1334</phrase>
1248<phrase> 1335<phrase>
1249 id: LANG_EQUALIZER_BAND_GAIN 1336 id: LANG_AUTOVOL
1250 desc: in the equalizer settings menu 1337 desc: in sound_settings
1251 user: 1338 user:
1252 <source> 1339 <source>
1253 *: "Gain" 1340 *: none
1341 masf: "Auto Volume"
1254 </source> 1342 </source>
1255 <dest> 1343 <dest>
1256 *: "Gain" 1344 *: none
1345 masf: "Auto Volume"
1257 </dest> 1346 </dest>
1258 <voice> 1347 <voice>
1259 *: "Gain" 1348 *: none
1349 masf: "Auto Volume"
1260 </voice> 1350 </voice>
1261</phrase> 1351</phrase>
1262<phrase> 1352<phrase>
1263 id: LANG_CREATE_PLAYLIST 1353 id: LANG_DECAY
1264 desc: Menu option for creating a playlist 1354 desc: in sound_settings
1265 user: 1355 user:
1266 <source> 1356 <source>
1267 *: "Create Playlist" 1357 *: none
1358 masf: "AV Decay Time"
1268 </source> 1359 </source>
1269 <dest> 1360 <dest>
1270 *: "Create Playlist" 1361 *: none
1362 masf: "AV Decay Time"
1271 </dest> 1363 </dest>
1272 <voice> 1364 <voice>
1273 *: "Create Playlist" 1365 *: none
1366 masf: ""
1274 </voice> 1367 </voice>
1275</phrase> 1368</phrase>
1276<phrase> 1369<phrase>
1277 id: LANG_VIEW_DYNAMIC_PLAYLIST 1370 id: LANG_SUPERBASS
1278 desc: in playlist menu. 1371 desc: in sound settings
1279 user: 1372 user:
1280 <source> 1373 <source>
1281 *: "View Current Playlist" 1374 *: none
1375 masf: "Super Bass"
1282 </source> 1376 </source>
1283 <dest> 1377 <dest>
1284 *: "View Current Playlist" 1378 *: none
1379 masf: "Super Bass"
1285 </dest> 1380 </dest>
1286 <voice> 1381 <voice>
1287 *: "View Current Playlist" 1382 masf: "Super Bass"
1288 </voice> 1383 </voice>
1289</phrase> 1384</phrase>
1290<phrase> 1385<phrase>
1291 id: LANG_SAVE_DYNAMIC_PLAYLIST 1386 id: LANG_MDB_ENABLE
1292 desc: in playlist menu. 1387 desc: in sound settings
1293 user: 1388 user:
1294 <source> 1389 <source>
1295 *: "Save Current Playlist" 1390 *: none
1391 masf: "MDB Enable"
1296 </source> 1392 </source>
1297 <dest> 1393 <dest>
1298 *: "Save Current Playlist" 1394 *: none
1395 masf: "MDB Enable"
1299 </dest> 1396 </dest>
1300 <voice> 1397 <voice>
1301 *: "Save Current Playlist" 1398 *: none
1399 masf: "MDB Enable"
1302 </voice> 1400 </voice>
1303</phrase> 1401</phrase>
1304<phrase> 1402<phrase>
1305 id: LANG_RECURSE_DIRECTORY 1403 id: LANG_MDB_STRENGTH
1306 desc: In playlist menu 1404 desc: in sound settings
1307 user: 1405 user:
1308 <source> 1406 <source>
1309 *: "Recursively Insert Directories" 1407 *: none
1408 masf: "MDB Strength"
1310 </source> 1409 </source>
1311 <dest> 1410 <dest>
1312 *: "Recursively Insert Directories" 1411 *: none
1412 masf: "MDB Strength"
1313 </dest> 1413 </dest>
1314 <voice> 1414 <voice>
1315 *: "Recursively Insert Directories" 1415 *: none
1416 masf: "MDB Strength"
1316 </voice> 1417 </voice>
1317</phrase> 1418</phrase>
1318<phrase> 1419<phrase>
1319 id: LANG_WARN_ERASEDYNPLAYLIST_MENU 1420 id: LANG_MDB_HARMONICS
1320 desc: in playlist options menu, option to warn when erasing dynamic playlist 1421 desc: in sound settings
1321 user: 1422 user:
1322 <source> 1423 <source>
1323 *: "Warn When Erasing Dynamic Playlist" 1424 *: none
1425 masf: "MDB Harmonics"
1324 </source> 1426 </source>
1325 <dest> 1427 <dest>
1326 *: "Warn When Erasing Dynamic Playlist" 1428 *: none
1429 masf: "MDB Harmonics"
1327 </dest> 1430 </dest>
1328 <voice> 1431 <voice>
1329 *: "Warn When Erasing Dynamic Playlist" 1432 *: none
1433 masf: "MDB Harmonics"
1330 </voice> 1434 </voice>
1331</phrase> 1435</phrase>
1332<phrase> 1436<phrase>
1333 id: LANG_INFO_MENU 1437 id: LANG_MDB_CENTER
1334 desc: in the info menu 1438 desc: in sound settings
1335 user: 1439 user:
1336 <source> 1440 <source>
1337 *: "Rockbox Info" 1441 *: none
1442 masf: "MDB Center Frequency"
1338 </source> 1443 </source>
1339 <dest> 1444 <dest>
1340 *: "Rockbox Info" 1445 *: none
1446 masf: "MDB Center Frequency"
1341 </dest> 1447 </dest>
1342 <voice> 1448 <voice>
1343 *: "Rockbox Info" 1449 *: none
1450 masf: "MDB Center Frequency"
1344 </voice> 1451 </voice>
1345</phrase> 1452</phrase>
1346<phrase> 1453<phrase>
1347 id: LANG_VERSION 1454 id: LANG_MDB_SHAPE
1348 desc: in the info menu 1455 desc: in sound settings
1349 user: 1456 user:
1350 <source> 1457 <source>
1351 *: "Version" 1458 *: none
1459 masf: "MDB Shape"
1352 </source> 1460 </source>
1353 <dest> 1461 <dest>
1354 *: "Version" 1462 *: none
1463 masf: "MDB Shape"
1355 </dest> 1464 </dest>
1356 <voice> 1465 <voice>
1357 *: "Version" 1466 *: none
1467 masf: "MDB Shape"
1358 </voice> 1468 </voice>
1359</phrase> 1469</phrase>
1360<phrase> 1470<phrase>
1361 id: LANG_DEBUG 1471 id: LANG_GENERAL_SETTINGS
1362 desc: in the info menu 1472 desc: in the main menu
1363 user: 1473 user:
1364 <source> 1474 <source>
1365 *: "Debug (Keep Out!)" 1475 *: "General Settings"
1366 </source> 1476 </source>
1367 <dest> 1477 <dest>
1368 *: "Debug (Keep Out!)" 1478 *: "General Settings"
1369 </dest> 1479 </dest>
1370 <voice> 1480 <voice>
1371 *: "Debug, keep out!" 1481 *: "General Settings"
1372 </voice> 1482 </voice>
1373</phrase> 1483</phrase>
1374<phrase> 1484<phrase>
1375 id: LANG_USB 1485 id: LANG_PLAYBACK
1376 desc: in the info menu 1486 desc: in settings_menu()
1377 user: 1487 user:
1378 <source> 1488 <source>
1379 *: "USB (Sim)" 1489 *: "Playback"
1380 </source> 1490 </source>
1381 <dest> 1491 <dest>
1382 *: "USB (Sim)" 1492 *: "Playback"
1383 </dest> 1493 </dest>
1384 <voice> 1494 <voice>
1385 *: "" 1495 *: "Playback"
1386 </voice> 1496 </voice>
1387</phrase> 1497</phrase>
1388<phrase> 1498<phrase>
@@ -1414,8 +1524,8 @@
1414 </voice> 1524 </voice>
1415</phrase> 1525</phrase>
1416<phrase> 1526<phrase>
1417 id: LANG_REPEAT_ALL 1527 id: LANG_ALL
1418 desc: repeat playlist once all songs have completed 1528 desc: generic string used both in dir file filter and repeat mode selection
1419 user: 1529 user:
1420 <source> 1530 <source>
1421 *: "All" 1531 *: "All"
@@ -1443,7 +1553,7 @@
1443</phrase> 1553</phrase>
1444<phrase> 1554<phrase>
1445 id: LANG_REPEAT_AB 1555 id: LANG_REPEAT_AB
1446 desc: repeat one song 1556 desc: desc: repeat range from point A to B
1447 user: 1557 user:
1448 <source> 1558 <source>
1449 *: "A-B" 1559 *: "A-B"
@@ -1470,31 +1580,45 @@
1470 </voice> 1580 </voice>
1471</phrase> 1581</phrase>
1472<phrase> 1582<phrase>
1473 id: LANG_RESUME 1583 id: LANG_WIND_MENU
1474 desc: DEPRECATED 1584 desc: in the playback sub menu
1475 user: 1585 user:
1476 <source> 1586 <source>
1477 *: "" 1587 *: "Fast-Forward/Rewind"
1478 </source> 1588 </source>
1479 <dest> 1589 <dest>
1480 *: deprecated 1590 *: "Fast-Forward/Rewind"
1481 </dest> 1591 </dest>
1482 <voice> 1592 <voice>
1483 *: "" 1593 *: "Fast forward and Rewind"
1484 </voice> 1594 </voice>
1485</phrase> 1595</phrase>
1486<phrase> 1596<phrase>
1487 id: LANG_WIND_MENU 1597 id: LANG_FFRW_STEP
1488 desc: in the playback sub menu 1598 desc: in settings_menu
1489 user: 1599 user:
1490 <source> 1600 <source>
1491 *: "Fast-Forward/Rewind" 1601 *: "FF/RW Min Step"
1492 </source> 1602 </source>
1493 <dest> 1603 <dest>
1494 *: "Fast-Forward/Rewind" 1604 *: "FF/RW Min Step"
1495 </dest> 1605 </dest>
1496 <voice> 1606 <voice>
1497 *: "Fast forward and Rewind" 1607 *: "Minimum Step"
1608 </voice>
1609</phrase>
1610<phrase>
1611 id: LANG_FFRW_ACCEL
1612 desc: in settings_menu
1613 user:
1614 <source>
1615 *: "FF/RW Accel"
1616 </source>
1617 <dest>
1618 *: "FF/RW Accel"
1619 </dest>
1620 <voice>
1621 *: "Acceleration"
1498 </voice> 1622 </voice>
1499</phrase> 1623</phrase>
1500<phrase> 1624<phrase>
@@ -1503,12 +1627,15 @@
1503 user: 1627 user:
1504 <source> 1628 <source>
1505 *: "Anti-Skip Buffer" 1629 *: "Anti-Skip Buffer"
1630 flash_storage*: none
1506 </source> 1631 </source>
1507 <dest> 1632 <dest>
1508 *: "Anti-Skip Buffer" 1633 *: "Anti-Skip Buffer"
1509 </dest> 1634 flash_storage*: none
1635 </dest>
1510 <voice> 1636 <voice>
1511 *: "Anti-Skip Buffer" 1637 *: "Anti-Skip Buffer"
1638 flash_storage*: none
1512 </voice> 1639 </voice>
1513</phrase> 1640</phrase>
1514<phrase> 1641<phrase>
@@ -1544,1836 +1671,1470 @@
1544 desc: in playback settings 1671 desc: in playback settings
1545 user: 1672 user:
1546 <source> 1673 <source>
1547 *: "Crossfade" 1674 *: none
1675 swcodec: "Crossfade"
1548 </source> 1676 </source>
1549 <dest> 1677 <dest>
1550 *: "Crossfade" 1678 *: none
1679 swcodec: "Crossfade"
1551 </dest> 1680 </dest>
1552 <voice> 1681 <voice>
1553 *: "Crossfade" 1682 *: none
1683 swcodec: "Crossfade"
1554 </voice> 1684 </voice>
1555</phrase> 1685</phrase>
1556<phrase> 1686<phrase>
1557 id: LANG_REPLAYGAIN 1687 id: LANG_CROSSFADE_ENABLE
1558 desc: in replaygain 1688 desc: in crossfade settings menu
1559 user:
1560 <source>
1561 *: "Replaygain"
1562 </source>
1563 <dest>
1564 *: "Replaygain"
1565 </dest>
1566 <voice>
1567 *: "Replaygain"
1568 </voice>
1569</phrase>
1570<phrase>
1571 id: LANG_BEEP
1572 desc: in playback settings
1573 user: 1689 user:
1574 <source> 1690 <source>
1575 *: "Beep Volume" 1691 *: none
1692 swcodec: "Enable Crossfade"
1576 </source> 1693 </source>
1577 <dest> 1694 <dest>
1578 *: "Beep Volume" 1695 *: none
1696 swcodec: "Enable Crossfade"
1579 </dest> 1697 </dest>
1580 <voice> 1698 <voice>
1581 *: "Beep Volume" 1699 *: none
1700 swcodec: "Enable Crossfade"
1582 </voice> 1701 </voice>
1583</phrase> 1702</phrase>
1584<phrase> 1703<phrase>
1585 id: LANG_WEAK 1704 id: LANG_TRACKSKIP
1586 desc: in beep volume in playback settings 1705 desc: in crossfade settings
1587 user: 1706 user:
1588 <source> 1707 <source>
1589 *: "Weak" 1708 *: none
1709 swcodec: "Track Skip Only"
1590 </source> 1710 </source>
1591 <dest> 1711 <dest>
1592 *: "Weak" 1712 *: none
1713 swcodec: "Track Skip Only"
1593 </dest> 1714 </dest>
1594 <voice> 1715 <voice>
1595 *: "Weak" 1716 *: none
1717 swcodec: "Track Skip Only"
1596 </voice> 1718 </voice>
1597</phrase> 1719</phrase>
1598<phrase> 1720<phrase>
1599 id: LANG_MODERATE 1721 id: LANG_SHUFFLE_TRACKSKIP
1600 desc: in beep volume in playback settings 1722 desc: in settings_menu
1601 user: 1723 user:
1602 <source> 1724 <source>
1603 *: "Moderate" 1725 *: none
1726 swcodec: "Shuffle and Track Skip"
1604 </source> 1727 </source>
1605 <dest> 1728 <dest>
1606 *: "Moderate" 1729 *: none
1730 swcodec: "Shuffle and Track Skip"
1607 </dest> 1731 </dest>
1608 <voice> 1732 <voice>
1609 *: "Moderate" 1733 *: none
1734 swcodec: "Shuffle and Track Skip"
1610 </voice> 1735 </voice>
1611</phrase> 1736</phrase>
1612<phrase> 1737<phrase>
1613 id: LANG_STRONG 1738 id: LANG_CROSSFADE_FADE_IN_DELAY
1614 desc: in beep volume in playback settings 1739 desc: in crossfade settings menu
1615 user: 1740 user:
1616 <source> 1741 <source>
1617 *: "Strong" 1742 *: none
1743 swcodec: "Fade-In Delay"
1618 </source> 1744 </source>
1619 <dest> 1745 <dest>
1620 *: "Strong" 1746 *: none
1747 swcodec: "Fade-In Delay"
1621 </dest> 1748 </dest>
1622 <voice> 1749 <voice>
1623 *: "Strong" 1750 *: none
1751 swcodec: "Fade-In Delay"
1624 </voice> 1752 </voice>
1625</phrase> 1753</phrase>
1626<phrase> 1754<phrase>
1627 id: LANG_SPDIF_ENABLE 1755 id: LANG_CROSSFADE_FADE_IN_DURATION
1628 desc: in playback settings menu. enable/disable the optical out 1756 desc: in crossfade settings menu
1629 user: 1757 user:
1630 <source> 1758 <source>
1631 *: "Optical Output" 1759 *: none
1760 swcodec: "Fade-In Duration"
1632 </source> 1761 </source>
1633 <dest> 1762 <dest>
1634 *: "Optical Output" 1763 *: none
1764 swcodec: "Fade-In Duration"
1635 </dest> 1765 </dest>
1636 <voice> 1766 <voice>
1637 *: "Optical Output" 1767 *: none
1768 swcodec: "Fade-In Duration"
1638 </voice> 1769 </voice>
1639</phrase> 1770</phrase>
1640<phrase> 1771<phrase>
1641 id: LANG_ID3_ORDER 1772 id: LANG_CROSSFADE_FADE_OUT_DELAY
1642 desc: in playback settings screen 1773 desc: in crossfade settings menu
1643 user: 1774 user:
1644 <source> 1775 <source>
1645 *: "ID3 Tag Priority" 1776 *: none
1777 swcodec: "Fade-Out Delay"
1646 </source> 1778 </source>
1647 <dest> 1779 <dest>
1648 *: "ID3 Tag Priority" 1780 *: none
1781 swcodec: "Fade-Out Delay"
1649 </dest> 1782 </dest>
1650 <voice> 1783 <voice>
1651 *: "ID3 Tag Priority" 1784 *: none
1785 swcodec: "Fade-Out Delay"
1652 </voice> 1786 </voice>
1653</phrase> 1787</phrase>
1654<phrase> 1788<phrase>
1655 id: LANG_ID3_V1_FIRST 1789 id: LANG_CROSSFADE_FADE_OUT_DURATION
1656 desc: in playback settings screen 1790 desc: in crossfade settings menu
1657 user: 1791 user:
1658 <source> 1792 <source>
1659 *: "V1 then V2" 1793 *: none
1794 swcodec: "Fade-Out Duration"
1660 </source> 1795 </source>
1661 <dest> 1796 <dest>
1662 *: "V1 then V2" 1797 *: none
1798 swcodec: "Fade-Out Duration"
1663 </dest> 1799 </dest>
1664 <voice> 1800 <voice>
1665 *: "Version 1 then version 2" 1801 *: none
1802 swcodec: "Fade-Out Duration"
1666 </voice> 1803 </voice>
1667</phrase> 1804</phrase>
1668<phrase> 1805<phrase>
1669 id: LANG_ID3_V2_FIRST 1806 id: LANG_CROSSFADE_FADE_OUT_MODE
1670 desc: in playback settings screen 1807 desc: in crossfade settings menu
1671 user: 1808 user:
1672 <source> 1809 <source>
1673 *: "V2 then V1" 1810 *: none
1811 swcodec: "Fade-Out Mode"
1674 </source> 1812 </source>
1675 <dest> 1813 <dest>
1676 *: "V2 then V1" 1814 *: none
1815 swcodec: "Fade-Out Mode"
1677 </dest> 1816 </dest>
1678 <voice> 1817 <voice>
1679 *: "Version 2 then version 1" 1818 *: none
1819 swcodec: "Fade-Out Mode"
1680 </voice> 1820 </voice>
1681</phrase> 1821</phrase>
1682<phrase> 1822<phrase>
1683 id: LANG_NEXT_FOLDER 1823 id: LANG_MIX
1684 desc: in settings_menu. Should we allow move to next/prev folder from last/first track of current one 1824 desc: in playback settings, crossfade option
1685 user: 1825 user:
1686 <source> 1826 <source>
1687 *: "Auto-Change Directory" 1827 *: none
1828 swcodec: "Mix"
1688 </source> 1829 </source>
1689 <dest> 1830 <dest>
1690 *: "Auto-Change Directory" 1831 *: none
1832 swcodec: "Mix"
1691 </dest> 1833 </dest>
1692 <voice> 1834 <voice>
1693 *: "Auto-Change Directory" 1835 *: none
1836 swcodec: "Mix"
1694 </voice> 1837 </voice>
1695</phrase> 1838</phrase>
1696<phrase> 1839<phrase>
1697 id: LANG_TAGCACHE 1840 id: LANG_REPLAYGAIN
1698 desc: in settings menu 1841 desc: in replaygain
1699 user: 1842 user:
1700 <source> 1843 <source>
1701 *: "Database" 1844 *: "Replaygain"
1702 </source> 1845 </source>
1703 <dest> 1846 <dest>
1704 *: "Database" 1847 *: "Replaygain"
1705 </dest> 1848 </dest>
1706 <voice> 1849 <voice>
1707 *: "Database" 1850 *: "Replaygain"
1708 </voice> 1851 </voice>
1709</phrase> 1852</phrase>
1710<phrase> 1853<phrase>
1711 id: LANG_TAGCACHE_DISK 1854 id: LANG_REPLAYGAIN_ENABLE
1712 desc: 1855 desc: in replaygain
1713 user: 1856 user:
1714 <source> 1857 <source>
1715 *: "" 1858 *: "Enable Replaygain"
1716 </source> 1859 </source>
1717 <dest> 1860 <dest>
1718 *: "" 1861 *: "Enable Replaygain"
1719 </dest> 1862 </dest>
1720 <voice> 1863 <voice>
1721 *: "" 1864 *: "Enable Replaygain"
1722 </voice> 1865 </voice>
1723</phrase> 1866</phrase>
1724<phrase> 1867<phrase>
1725 id: LANG_TAGCACHE_RAM 1868 id: LANG_REPLAYGAIN_NOCLIP
1726 desc: in tag cache settings 1869 desc: in replaygain
1727 user: 1870 user:
1728 <source> 1871 <source>
1729 *: "Load to RAM" 1872 *: none
1873 swcodec: "Prevent Clipping"
1730 </source> 1874 </source>
1731 <dest> 1875 <dest>
1732 *: "Load to RAM" 1876 *: none
1877 swcodec: "Prevent Clipping"
1733 </dest> 1878 </dest>
1734 <voice> 1879 <voice>
1735 *: "Load to RAM" 1880 *: none
1881 swcodec: "Prevent Clipping"
1736 </voice> 1882 </voice>
1737</phrase> 1883</phrase>
1738<phrase> 1884<phrase>
1739 id: LANG_TAGCACHE_FORCE_UPDATE 1885 id: LANG_REPLAYGAIN_MODE
1740 desc: in tag cache settings 1886 desc: in replaygain
1741 user: 1887 user:
1742 <source> 1888 <source>
1743 *: "Initialize now" 1889 *: "Replaygain Type"
1744 </source> 1890 </source>
1745 <dest> 1891 <dest>
1746 *: "Initialize now" 1892 *: "Replaygain Type"
1747 </dest> 1893 </dest>
1748 <voice> 1894 <voice>
1749 *: "Initialize now" 1895 *: "Replaygain Type"
1750 </voice> 1896 </voice>
1751</phrase> 1897</phrase>
1752<phrase> 1898<phrase>
1753 id: LANG_TAGCACHE_FORCE_UPDATE_SPLASH 1899 id: LANG_ALBUM_GAIN
1754 desc: in tag cache settings 1900 desc: in replaygain
1755 user: 1901 user:
1756 <source> 1902 <source>
1757 *: "Updating in background" 1903 *: "Album Gain"
1758 </source> 1904 </source>
1759 <dest> 1905 <dest>
1760 *: "Updating in background" 1906 *: "Album Gain"
1761 </dest> 1907 </dest>
1762 <voice> 1908 <voice>
1763 *: "" 1909 *: "Album Gain"
1764 </voice> 1910 </voice>
1765</phrase> 1911</phrase>
1766<phrase> 1912<phrase>
1767 id: LANG_TAGCACHE_INIT 1913 id: LANG_TRACK_GAIN
1768 desc: while initializing tagcache on boot 1914 desc: in replaygain
1769 user: 1915 user:
1770 <source> 1916 <source>
1771 *: "Committing database" 1917 *: "Track Gain"
1772 </source> 1918 </source>
1773 <dest> 1919 <dest>
1774 *: "Committing database" 1920 *: "Track Gain"
1775 </dest> 1921 </dest>
1776 <voice> 1922 <voice>
1777 *: "" 1923 *: "Track Gain"
1778 </voice> 1924 </voice>
1779</phrase> 1925</phrase>
1780<phrase> 1926<phrase>
1781 id: LANG_RUNTIMEDB_ACTIVE 1927 id: LANG_SHUFFLE_GAIN
1782 desc: in settings_menu. 1928 desc: use track gain if shuffle mode is on, album gain otherwise
1783 user: 1929 user:
1784 <source> 1930 <source>
1785 *: "Gather Runtime Data" 1931 *: "Track Gain if Shuffling"
1786 </source> 1932 </source>
1787 <dest> 1933 <dest>
1788 *: "Gather Runtime Data" 1934 *: "Track Gain if Shuffling"
1789 </dest> 1935 </dest>
1790 <voice> 1936 <voice>
1791 *: "Gather Runtime Data" 1937 *: "Track Gain if Shuffling"
1792 </voice> 1938 </voice>
1793</phrase> 1939</phrase>
1794<phrase> 1940<phrase>
1795 id: LANG_SORT_CASE 1941 id: LANG_REPLAYGAIN_PREAMP
1796 desc: in settings_menu 1942 desc: in replaygain settings
1797 user: 1943 user:
1798 <source> 1944 <source>
1799 *: "Sort Case Sensitive" 1945 *: "Pre-amp"
1800 </source> 1946 </source>
1801 <dest> 1947 <dest>
1802 *: "Sort Case Sensitive" 1948 *: "Pre-amp"
1803 </dest> 1949 </dest>
1804 <voice> 1950 <voice>
1805 *: "Sort Case Sensitive" 1951 *: "Preamp"
1806 </voice> 1952 </voice>
1807</phrase> 1953</phrase>
1808<phrase> 1954<phrase>
1809 id: LANG_SORT_DIR 1955 id: LANG_BEEP
1810 desc: browser sorting setting 1956 desc: in playback settings
1811 user: 1957 user:
1812 <source> 1958 <source>
1813 *: "Sort Directories" 1959 *: none
1960 swcodec: "Beep Volume"
1814 </source> 1961 </source>
1815 <dest> 1962 <dest>
1816 *: "Sort Directories" 1963 *: none
1964 swcodec: "Beep Volume"
1817 </dest> 1965 </dest>
1818 <voice> 1966 <voice>
1819 *: "sort directories" 1967 *: none
1968 swcodec: "Beep Volume"
1820 </voice> 1969 </voice>
1821</phrase> 1970</phrase>
1822<phrase> 1971<phrase>
1823 id: LANG_SORT_FILE 1972 id: LANG_WEAK
1824 desc: browser sorting setting 1973 desc: in beep volume in playback settings
1825 user: 1974 user:
1826 <source> 1975 <source>
1827 *: "Sort Files" 1976 *: none
1977 swcodec: "Weak"
1828 </source> 1978 </source>
1829 <dest> 1979 <dest>
1830 *: "Sort Files" 1980 *: none
1981 swcodec: "Weak"
1831 </dest> 1982 </dest>
1832 <voice> 1983 <voice>
1833 *: "sort files" 1984 *: none
1985 swcodec: "Weak"
1834 </voice> 1986 </voice>
1835</phrase> 1987</phrase>
1836<phrase> 1988<phrase>
1837 id: LANG_SORT_ALPHA 1989 id: LANG_MODERATE
1838 desc: browser sorting setting 1990 desc: in beep volume in playback settings
1839 user: 1991 user:
1840 <source> 1992 <source>
1841 *: "Alphabetical" 1993 *: none
1994 swcodec: "Moderate"
1842 </source> 1995 </source>
1843 <dest> 1996 <dest>
1844 *: "Alphabetical" 1997 *: none
1998 swcodec: "Moderate"
1845 </dest> 1999 </dest>
1846 <voice> 2000 <voice>
1847 *: "Alphabetical" 2001 *: none
2002 swcodec: "Moderate"
1848 </voice> 2003 </voice>
1849</phrase> 2004</phrase>
1850<phrase> 2005<phrase>
1851 id: LANG_SORT_DATE 2006 id: LANG_STRONG
1852 desc: browser sorting setting 2007 desc: in beep volume in playback settings
1853 user: 2008 user:
1854 <source> 2009 <source>
1855 *: "By Date" 2010 *: none
2011 swcodec: "Strong"
1856 </source> 2012 </source>
1857 <dest> 2013 <dest>
1858 *: "By Date" 2014 *: none
2015 swcodec: "Strong"
1859 </dest> 2016 </dest>
1860 <voice> 2017 <voice>
1861 *: "By Date" 2018 *: none
2019 swcodec: "Strong"
1862 </voice> 2020 </voice>
1863</phrase> 2021</phrase>
1864<phrase> 2022<phrase>
1865 id: LANG_SORT_DATE_REVERSE 2023 id: LANG_SPDIF_ENABLE
1866 desc: browser sorting setting 2024 desc: in playback settings menu. enable/disable the optical out
1867 user: 2025 user:
1868 <source> 2026 <source>
1869 *: "By Newest Date" 2027 *: none
2028 spdif_power: "Optical Output"
1870 </source> 2029 </source>
1871 <dest> 2030 <dest>
1872 *: "By Newest Date" 2031 *: none
2032 spdif_power: "Optical Output"
1873 </dest> 2033 </dest>
1874 <voice> 2034 <voice>
1875 *: "By Newest Date" 2035 *: none
2036 spdif_power: "Optical Output"
1876 </voice> 2037 </voice>
1877</phrase> 2038</phrase>
1878<phrase> 2039<phrase>
1879 id: LANG_SORT_TYPE 2040 id: LANG_ID3_ORDER
1880 desc: browser sorting setting 2041 desc: in playback settings screen
1881 user: 2042 user:
1882 <source> 2043 <source>
1883 *: "By Type" 2044 *: "ID3 Tag Priority"
1884 </source> 2045 </source>
1885 <dest> 2046 <dest>
1886 *: "By Type" 2047 *: "ID3 Tag Priority"
1887 </dest> 2048 </dest>
1888 <voice> 2049 <voice>
1889 *: "By Type" 2050 *: "ID3 Tag Priority"
1890 </voice> 2051 </voice>
1891</phrase> 2052</phrase>
1892<phrase> 2053<phrase>
1893 id: LANG_FILTER 2054 id: LANG_ID3_V1_FIRST
1894 desc: setting name for dir filter 2055 desc: in playback settings screen
1895 user: 2056 user:
1896 <source> 2057 <source>
1897 *: "Show Files" 2058 *: "V1 then V2"
1898 </source> 2059 </source>
1899 <dest> 2060 <dest>
1900 *: "Show Files" 2061 *: "V1 then V2"
1901 </dest> 2062 </dest>
1902 <voice> 2063 <voice>
1903 *: "Show Files" 2064 *: "Version 1 then version 2"
1904 </voice> 2065 </voice>
1905</phrase> 2066</phrase>
1906<phrase> 2067<phrase>
1907 id: LANG_FILTER_ALL 2068 id: LANG_ID3_V2_FIRST
1908 desc: show all files 2069 desc: in playback settings screen
1909 user: 2070 user:
1910 <source> 2071 <source>
1911 *: "All" 2072 *: "V2 then V1"
1912 </source> 2073 </source>
1913 <dest> 2074 <dest>
1914 *: "All" 2075 *: "V2 then V1"
1915 </dest> 2076 </dest>
1916 <voice> 2077 <voice>
1917 *: "All" 2078 *: "Version 2 then version 1"
1918 </voice> 2079 </voice>
1919</phrase> 2080</phrase>
1920<phrase> 2081<phrase>
1921 id: LANG_FILTER_SUPPORTED 2082 id: LANG_NEXT_FOLDER
1922 desc: show all file types supported by Rockbox 2083 desc: in settings_menu. Should we allow move to next/prev folder from last/first track of current one
1923 user: 2084 user:
1924 <source> 2085 <source>
1925 *: "Supported" 2086 *: "Auto-Change Directory"
1926 </source> 2087 </source>
1927 <dest> 2088 <dest>
1928 *: "Supported" 2089 *: "Auto-Change Directory"
1929 </dest> 2090 </dest>
1930 <voice> 2091 <voice>
1931 *: "Supported" 2092 *: "Auto-Change Directory"
1932 </voice> 2093 </voice>
1933</phrase> 2094</phrase>
1934<phrase> 2095<phrase>
1935 id: LANG_FILTER_MUSIC 2096 id: LANG_RANDOM
1936 desc: show only music-related files 2097 desc: random folder
1937 user:
1938 <source> 2098 <source>
1939 *: "Music" 2099 *: "Random"
1940 </source> 2100 </source>
1941 <dest> 2101 <dest>
1942 *: "Music" 2102 *: "Random"
1943 </dest> 2103 </dest>
1944 <voice> 2104 <voice>
1945 *: "Music" 2105 *: "Random"
1946 </voice> 2106 </voice>
1947</phrase> 2107</phrase>
1948<phrase> 2108<phrase>
1949 id: LANG_FILTER_PLAYLIST 2109 id: LANG_AUDIOSCROBBLER
1950 desc: show only playlist 2110 desc: "Last.fm Log" in the playback menu
1951 user: 2111 user:
1952 <source> 2112 <source>
1953 *: "Playlists" 2113 *: "Last.fm Log"
1954 </source> 2114 </source>
1955 <dest> 2115 <dest>
1956 *: "Playlists" 2116 *: "Last.fm Log"
1957 </dest> 2117 </dest>
1958 <voice> 2118 <voice>
1959 *: "Playlists" 2119 *: "Last.fm Log"
1960 </voice> 2120 </voice>
1961</phrase> 2121</phrase>
1962<phrase> 2122<phrase>
1963 id: LANG_FILTER_ID3DB 2123 id: LANG_CUESHEET_ENABLE
1964 desc: show ID3 Database 2124 desc: cuesheet support option
1965 user: 2125 user:
1966 <source> 2126 <source>
1967 *: "Database" 2127 *: "Cuesheet Support"
1968 </source> 2128 </source>
1969 <dest> 2129 <dest>
1970 *: "Database" 2130 *: "Cuesheet Support"
1971 </dest> 2131 </dest>
1972 <voice> 2132 <voice>
1973 *: "Database" 2133 *: "Cuesheet Support"
1974 </voice> 2134 </voice>
1975</phrase> 2135</phrase>
1976<phrase> 2136<phrase>
1977 id: LANG_FOLLOW 2137 id: LANG_HEADPHONE_UNPLUG
1978 desc: in settings_menu 2138 desc: in settings_menu.
1979 user: 2139 user:
1980 <source> 2140 <source>
1981 *: "Follow Playlist" 2141 *: none
2142 headphone_detection: "Pause on Headphone Unplug"
1982 </source> 2143 </source>
1983 <dest> 2144 <dest>
1984 *: "Follow Playlist" 2145 *: none
2146 headphone_detection: "Pause on Headphone Unplug"
1985 </dest> 2147 </dest>
1986 <voice> 2148 <voice>
1987 *: "Follow Playlist" 2149 *: none
2150 headphone_detection: "Pause on Headphone Unplug"
1988 </voice> 2151 </voice>
1989</phrase> 2152</phrase>
1990<phrase> 2153<phrase>
1991 id: LANG_SHOW_ICONS 2154 id: LANG_HEADPHONE_UNPLUG_RESUME
1992 desc: in settings_menu 2155 desc: in pause_phones_menu.
1993 user: 2156 user:
1994 <source> 2157 <source>
1995 *: "Show Icons" 2158 *: none
2159 headphone_detection: "Pause and Resume"
1996 </source> 2160 </source>
1997 <dest> 2161 <dest>
1998 *: "Show Icons" 2162 *: none
2163 headphone_detection: "Pause and Resume"
1999 </dest> 2164 </dest>
2000 <voice> 2165 <voice>
2001 *: "Show Icons" 2166 *: none
2167 headphone_detection: "Pause and Resume"
2002 </voice> 2168 </voice>
2003</phrase> 2169</phrase>
2004<phrase> 2170<phrase>
2005 id: LANG_CUSTOM_FONT 2171 id: LANG_HEADPHONE_UNPLUG_RW
2006 desc: in setting_menu() 2172 desc: in pause_phones_menu.
2007 user: 2173 user:
2008 <source> 2174 <source>
2009 *: "Browse Fonts" 2175 *: none
2176 headphone_detection: "Duration to Rewind"
2010 </source> 2177 </source>
2011 <dest> 2178 <dest>
2012 *: "Browse Fonts" 2179 *: none
2180 headphone_detection: "Duration to Rewind"
2013 </dest> 2181 </dest>
2014 <voice> 2182 <voice>
2015 *: "Browse Fonts" 2183 *: none
2184 headphone_detection: "Duration to Rewind"
2016 </voice> 2185 </voice>
2017</phrase> 2186</phrase>
2018<phrase> 2187<phrase>
2019 id: LANG_WHILE_PLAYING 2188 id: LANG_HEADPHONE_UNPLUG_DISABLE_AUTORESUME
2020 desc: in settings_menu() 2189 desc: in pause_phones_menu.
2021 user: 2190 user:
2022 <source> 2191 <source>
2023 *: "Browse .wps files" 2192 *: none
2193 headphone_detection: "Disable resume on startup if phones unplugged"
2024 </source> 2194 </source>
2025 <dest> 2195 <dest>
2026 *: "Browse .wps files" 2196 *: none
2197 headphone_detection: "Disable resume on startup if phones unplugged"
2027 </dest> 2198 </dest>
2028 <voice> 2199 <voice>
2029 *: "Browse while-playing-screen files" 2200 *: none
2201 headphone_detection: "Disable resume on startup if phones unplugged"
2030 </voice> 2202 </voice>
2031</phrase> 2203</phrase>
2032<phrase> 2204<phrase>
2033 id: LANG_REMOTE_WHILE_PLAYING 2205 id: LANG_FILE
2034 desc: in settings_menu() 2206 desc: in settings_menu()
2035 user: 2207 user:
2036 <source> 2208 <source>
2037 *: "Browse .rwps files" 2209 *: "File View"
2038 </source>
2039 <dest>
2040 *: "Browse .rwps files"
2041 </dest>
2042 <voice>
2043 *: "Browse remote while-playing-screen files"
2044 </voice>
2045</phrase>
2046<phrase>
2047 id: LANG_LCD_MENU
2048 desc: in the display sub menu
2049 user:
2050 <source>
2051 *: "LCD Settings"
2052 </source>
2053 <dest>
2054 *: "LCD Settings"
2055 </dest>
2056 <voice>
2057 *: "LCD Settings"
2058 </voice>
2059</phrase>
2060<phrase>
2061 id: LANG_LCD_REMOTE_MENU
2062 desc: in the display sub menu
2063 user:
2064 <source>
2065 *: "Remote-LCD Settings"
2066 </source>
2067 <dest>
2068 *: "Remote-LCD Settings"
2069 </dest>
2070 <voice>
2071 *: "Remote LCD settings"
2072 </voice>
2073</phrase>
2074<phrase>
2075 id: LANG_SCROLL_MENU
2076 desc: in display_settings_menu()
2077 user:
2078 <source>
2079 *: "Scrolling"
2080 </source>
2081 <dest>
2082 *: "Scrolling"
2083 </dest>
2084 <voice>
2085 *: "Scrolling"
2086 </voice>
2087</phrase>
2088<phrase>
2089 id: LANG_BARS_MENU
2090 desc: in the display sub menu
2091 user:
2092 <source>
2093 *: "Status-/Scrollbar"
2094 </source>
2095 <dest>
2096 *: "Status-/Scrollbar"
2097 </dest>
2098 <voice>
2099 *: "Status- and Scrollbar"
2100 </voice>
2101</phrase>
2102<phrase>
2103 id: LANG_PM_MENU
2104 desc: in the display menu
2105 user:
2106 <source>
2107 *: "Peak Meter"
2108 </source>
2109 <dest>
2110 *: "Peak Meter"
2111 </dest>
2112 <voice>
2113 *: "Peak Meter"
2114 </voice>
2115</phrase>
2116<phrase>
2117 id: LANG_DEFAULT_CODEPAGE
2118 desc: default encoding used with id3 tags
2119 user:
2120 <source>
2121 *: "Default Codepage"
2122 </source>
2123 <dest>
2124 *: "Default Codepage"
2125 </dest>
2126 <voice>
2127 *: "Default codepage"
2128 </voice>
2129</phrase>
2130<phrase>
2131 id: LANG_CODEPAGE_LATIN1
2132 desc: in codepage setting menu
2133 user:
2134 <source>
2135 *: "Latin1 (ISO-8859-1)"
2136 </source>
2137 <dest>
2138 *: "Latin1 (ISO-8859-1)"
2139 </dest>
2140 <voice>
2141 *: "Latin 1"
2142 </voice>
2143</phrase>
2144<phrase>
2145 id: LANG_CODEPAGE_GREEK
2146 desc: in codepage setting menu
2147 user:
2148 <source>
2149 *: "Greek (ISO-8859-7)"
2150 </source>
2151 <dest>
2152 *: "Greek (ISO-8859-7)"
2153 </dest>
2154 <voice>
2155 *: "Greek"
2156 </voice>
2157</phrase>
2158<phrase>
2159 id: LANG_CODEPAGE_HEBREW
2160 desc: in codepage setting menu
2161 user:
2162 <source>
2163 *: "Hebrew (ISO-8859-8)"
2164 </source>
2165 <dest>
2166 *: "Hebrew (ISO-8859-8)"
2167 </dest>
2168 <voice>
2169 *: "Hebrew"
2170 </voice>
2171</phrase>
2172<phrase>
2173 id: LANG_CODEPAGE_CYRILLIC
2174 desc: in codepage setting menu
2175 user:
2176 <source>
2177 *: "Cyrillic (CP1251)"
2178 </source>
2179 <dest>
2180 *: "Cyrillic (CP1251)"
2181 </dest>
2182 <voice>
2183 *: "Cyrillic"
2184 </voice>
2185</phrase>
2186<phrase>
2187 id: LANG_CODEPAGE_THAI
2188 desc: in codepage setting menu
2189 user:
2190 <source>
2191 *: "Thai (ISO-8859-11)"
2192 </source>
2193 <dest>
2194 *: "Thai (ISO-8859-11)"
2195 </dest>
2196 <voice>
2197 *: "Thai"
2198 </voice>
2199</phrase>
2200<phrase>
2201 id: LANG_CODEPAGE_ARABIC
2202 desc: in codepage setting menu
2203 user:
2204 <source>
2205 *: "Arabic (CP1256)"
2206 </source> 2210 </source>
2207 <dest> 2211 <dest>
2208 *: "Arabic (CP1256)" 2212 *: "File View"
2209 </dest> 2213 </dest>
2210 <voice> 2214 <voice>
2211 *: "Arabic" 2215 *: "File View"
2212 </voice> 2216 </voice>
2213</phrase> 2217</phrase>
2214<phrase> 2218<phrase>
2215 id: LANG_CODEPAGE_TURKISH 2219 id: LANG_SORT_CASE
2216 desc: in codepage setting menu 2220 desc: in settings_menu
2217 user: 2221 user:
2218 <source> 2222 <source>
2219 *: "Turkish (ISO-8859-9)" 2223 *: "Sort Case Sensitive"
2220 </source> 2224 </source>
2221 <dest> 2225 <dest>
2222 *: "Turkish (ISO-8859-9)" 2226 *: "Sort Case Sensitive"
2223 </dest> 2227 </dest>
2224 <voice> 2228 <voice>
2225 *: "Turkish" 2229 *: "Sort Case Sensitive"
2226 </voice> 2230 </voice>
2227</phrase> 2231</phrase>
2228<phrase> 2232<phrase>
2229 id: LANG_CODEPAGE_LATIN_EXTENDED 2233 id: LANG_SORT_DIR
2230 desc: in codepage setting menu 2234 desc: browser sorting setting
2231 user: 2235 user:
2232 <source> 2236 <source>
2233 *: "Latin Extended (ISO-8859-2)" 2237 *: "Sort Directories"
2234 </source> 2238 </source>
2235 <dest> 2239 <dest>
2236 *: "Latin Extended (ISO-8859-2)" 2240 *: "Sort Directories"
2237 </dest> 2241 </dest>
2238 <voice> 2242 <voice>
2239 *: "Latin extended" 2243 *: "sort directories"
2240 </voice> 2244 </voice>
2241</phrase> 2245</phrase>
2242<phrase> 2246<phrase>
2243 id: LANG_CODEPAGE_JAPANESE 2247 id: LANG_SORT_FILE
2244 desc: in codepage setting menu 2248 desc: browser sorting setting
2245 user: 2249 user:
2246 <source> 2250 <source>
2247 *: "Japanese (SJIS)" 2251 *: "Sort Files"
2248 </source> 2252 </source>
2249 <dest> 2253 <dest>
2250 *: "Japanese (SJIS)" 2254 *: "Sort Files"
2251 </dest> 2255 </dest>
2252 <voice> 2256 <voice>
2253 *: "Japanese" 2257 *: "sort files"
2254 </voice> 2258 </voice>
2255</phrase> 2259</phrase>
2256<phrase> 2260<phrase>
2257 id: LANG_CODEPAGE_SIMPLIFIED 2261 id: LANG_SORT_ALPHA
2258 desc: in codepage setting menu 2262 desc: browser sorting setting
2259 user: 2263 user:
2260 <source> 2264 <source>
2261 *: "Simp. Chinese (GB2312)" 2265 *: "Alphabetical"
2262 </source> 2266 </source>
2263 <dest> 2267 <dest>
2264 *: "Simp. Chinese (GB2312)" 2268 *: "Alphabetical"
2265 </dest> 2269 </dest>
2266 <voice> 2270 <voice>
2267 *: "Simplified Chinese" 2271 *: "Alphabetical"
2268 </voice> 2272 </voice>
2269</phrase> 2273</phrase>
2270<phrase> 2274<phrase>
2271 id: LANG_CODEPAGE_KOREAN 2275 id: LANG_SORT_DATE
2272 desc: in codepage setting menu 2276 desc: browser sorting setting
2273 user: 2277 user:
2274 <source> 2278 <source>
2275 *: "Korean (KSX1001)" 2279 *: "By Date"
2276 </source> 2280 </source>
2277 <dest> 2281 <dest>
2278 *: "Korean (KSX1001)" 2282 *: "By Date"
2279 </dest> 2283 </dest>
2280 <voice> 2284 <voice>
2281 *: "Korean" 2285 *: "By Date"
2282 </voice> 2286 </voice>
2283</phrase> 2287</phrase>
2284<phrase> 2288<phrase>
2285 id: LANG_CODEPAGE_TRADITIONAL 2289 id: LANG_SORT_DATE_REVERSE
2286 desc: in codepage setting menu 2290 desc: browser sorting setting
2287 user: 2291 user:
2288 <source> 2292 <source>
2289 *: "Trad. Chinese (BIG5)" 2293 *: "By Newest Date"
2290 </source> 2294 </source>
2291 <dest> 2295 <dest>
2292 *: "Trad. Chinese (BIG5)" 2296 *: "By Newest Date"
2293 </dest> 2297 </dest>
2294 <voice> 2298 <voice>
2295 *: "Traditional Chinese" 2299 *: "By Newest Date"
2296 </voice> 2300 </voice>
2297</phrase> 2301</phrase>
2298<phrase> 2302<phrase>
2299 id: LANG_CODEPAGE_UTF8 2303 id: LANG_SORT_TYPE
2300 desc: in codepage setting menu 2304 desc: browser sorting setting
2301 user: 2305 user:
2302 <source> 2306 <source>
2303 *: "Unicode (UTF-8)" 2307 *: "By Type"
2304 </source> 2308 </source>
2305 <dest> 2309 <dest>
2306 *: "Unicode (UTF-8)" 2310 *: "By Type"
2307 </dest> 2311 </dest>
2308 <voice> 2312 <voice>
2309 *: "Unicode" 2313 *: "By Type"
2310 </voice> 2314 </voice>
2311</phrase> 2315</phrase>
2312<phrase> 2316<phrase>
2313 id: LANG_BATTERY_MENU 2317 id: LANG_FILTER
2314 desc: in the system sub menu 2318 desc: setting name for dir filter
2315 user: 2319 user:
2316 <source> 2320 <source>
2317 *: "Battery" 2321 *: "Show Files"
2318 </source> 2322 </source>
2319 <dest> 2323 <dest>
2320 *: "Battery" 2324 *: "Show Files"
2321 </dest> 2325 </dest>
2322 <voice> 2326 <voice>
2323 *: "Battery" 2327 *: "Show Files"
2324 </voice> 2328 </voice>
2325</phrase> 2329</phrase>
2326<phrase> 2330<phrase>
2327 id: LANG_DISK_MENU 2331 id: LANG_FILTER_SUPPORTED
2328 desc: in the system sub menu 2332 desc: show all file types supported by Rockbox
2329 user: 2333 user:
2330 <source> 2334 <source>
2331 *: "Disk" 2335 *: "Supported"
2332 </source> 2336 </source>
2333 <dest> 2337 <dest>
2334 *: "Disk" 2338 *: "Supported"
2335 </dest> 2339 </dest>
2336 <voice> 2340 <voice>
2337 *: "Disk" 2341 *: "Supported"
2338 </voice> 2342 </voice>
2339</phrase> 2343</phrase>
2340<phrase> 2344<phrase>
2341 id: LANG_TIME_MENU 2345 id: LANG_FILTER_MUSIC
2342 desc: in the system sub menu 2346 desc: show only music-related files
2343 user: 2347 user:
2344 <source> 2348 <source>
2345 *: "Time & Date" 2349 *: "Music"
2346 </source> 2350 </source>
2347 <dest> 2351 <dest>
2348 *: "Time & Date" 2352 *: "Music"
2349 </dest> 2353 </dest>
2350 <voice> 2354 <voice>
2351 *: "Time and Date" 2355 *: "Music"
2352 </voice> 2356 </voice>
2353</phrase> 2357</phrase>
2354<phrase> 2358<phrase>
2355 id: LANG_POWEROFF_IDLE 2359 id: LANG_FOLLOW
2356 desc: in settings_menu 2360 desc: in settings_menu
2357 user: 2361 user:
2358 <source> 2362 <source>
2359 *: "Idle Poweroff" 2363 *: "Follow Playlist"
2360 </source>
2361 <dest>
2362 *: "Idle Poweroff"
2363 </dest>
2364 <voice>
2365 *: "Idle Poweroff"
2366 </voice>
2367</phrase>
2368<phrase>
2369 id: LANG_SLEEP_TIMER
2370 desc: sleep timer setting
2371 user:
2372 <source>
2373 *: "Sleep Timer"
2374 </source>
2375 <dest>
2376 *: "Sleep Timer"
2377 </dest>
2378 <voice>
2379 *: "Sleep Timer"
2380 </voice>
2381</phrase>
2382<phrase>
2383 id: LANG_ALARM_MOD_ALARM_MENU
2384 desc: The name of the additional entry in the main menu for the RTC alarm mod.
2385 user:
2386 <source>
2387 *: "Wake-Up Alarm"
2388 </source>
2389 <dest>
2390 *: "Wake-Up Alarm"
2391 </dest>
2392 <voice>
2393 *: "Wake-Up Alarm"
2394 </voice>
2395</phrase>
2396<phrase>
2397 id: LANG_LIMITS_MENU
2398 desc: in the system sub menu
2399 user:
2400 <source>
2401 *: "Limits"
2402 </source> 2364 </source>
2403 <dest> 2365 <dest>
2404 *: "Limits" 2366 *: "Follow Playlist"
2405 </dest> 2367 </dest>
2406 <voice> 2368 <voice>
2407 *: "Limits" 2369 *: "Follow Playlist"
2408 </voice> 2370 </voice>
2409</phrase> 2371</phrase>
2410<phrase> 2372<phrase>
2411 id: LANG_LINE_IN 2373 id: LANG_SHOW_PATH
2412 desc: in settings_menu 2374 desc: in settings_menu
2413 user: 2375 user:
2414 <source> 2376 <source>
2415 *: "Line In" 2377 *: "Show Path"
2416 </source>
2417 <dest>
2418 *: "Line In"
2419 </dest>
2420 <voice>
2421 *: "Line In"
2422 </voice>
2423</phrase>
2424<phrase>
2425 id: LANG_CAR_ADAPTER_MODE
2426 desc: Displayed for setting car adapter mode to on/off
2427 user:
2428 <source>
2429 *: "Car Adapter Mode"
2430 </source>
2431 <dest>
2432 *: "Car Adapter Mode"
2433 </dest>
2434 <voice>
2435 *: "Car Adapter Mode"
2436 </voice>
2437</phrase>
2438<phrase>
2439 id: LANG_BOOKMARK_SETTINGS_AUTOCREATE
2440 desc: prompt for user to decide to create an bookmark
2441 user:
2442 <source>
2443 *: "Bookmark on Stop"
2444 </source>
2445 <dest>
2446 *: "Bookmark on Stop"
2447 </dest>
2448 <voice>
2449 *: "Bookmark on Stop"
2450 </voice>
2451</phrase>
2452<phrase>
2453 id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_YES
2454 desc: Save in recent bookmarks only
2455 user:
2456 <source>
2457 *: "Yes - Recent only"
2458 </source>
2459 <dest>
2460 *: "Yes - Recent only"
2461 </dest>
2462 <voice>
2463 *: "Yes - Recent only"
2464 </voice>
2465</phrase>
2466<phrase>
2467 id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_ASK
2468 desc: Save in recent bookmarks only
2469 user:
2470 <source>
2471 *: "Ask - Recent only"
2472 </source>
2473 <dest>
2474 *: "Ask - Recent only"
2475 </dest>
2476 <voice>
2477 *: "Ask - Recent only"
2478 </voice>
2479</phrase>
2480<phrase>
2481 id: LANG_BOOKMARK_SETTINGS_AUTOLOAD
2482 desc: prompt for user to decide to create a bookmark
2483 user:
2484 <source>
2485 *: "Load Last Bookmark"
2486 </source>
2487 <dest>
2488 *: "Load Last Bookmark"
2489 </dest>
2490 <voice>
2491 *: "Load Last Bookmark"
2492 </voice>
2493</phrase>
2494<phrase>
2495 id: LANG_BOOKMARK_SETTINGS_MAINTAIN_RECENT_BOOKMARKS
2496 desc: Configuration option to maintain a list of recent bookmarks
2497 user:
2498 <source>
2499 *: "Maintain a List of Recent Bookmarks?"
2500 </source>
2501 <dest>
2502 *: "Maintain a List of Recent Bookmarks?"
2503 </dest>
2504 <voice>
2505 *: "Maintain a List of Recent Bookmarks?"
2506 </voice>
2507</phrase>
2508<phrase>
2509 id: LANG_BOOKMARK_SETTINGS_UNIQUE_ONLY
2510 desc: Save only on bookmark for each playlist in recent bookmarks
2511 user:
2512 <source>
2513 *: "Unique only"
2514 </source>
2515 <dest>
2516 *: "Unique only"
2517 </dest>
2518 <voice>
2519 *: "Unique only"
2520 </voice>
2521</phrase>
2522<phrase>
2523 id: LANG_VOICE_MENU
2524 desc: item of voice menu, enable/disable the voice UI
2525 user:
2526 <source>
2527 *: "Voice Menus"
2528 </source>
2529 <dest>
2530 *: "Voice Menus"
2531 </dest>
2532 <voice>
2533 *: "Voice Menus"
2534 </voice>
2535</phrase>
2536<phrase>
2537 id: LANG_VOICE_DIR
2538 desc: item of voice menu, set the voice mode for directories
2539 user:
2540 <source>
2541 *: "Voice Directories"
2542 </source> 2378 </source>
2543 <dest> 2379 <dest>
2544 *: "Voice Directories" 2380 *: "Show Path"
2545 </dest> 2381 </dest>
2546 <voice> 2382 <voice>
2547 *: "Voice Directories" 2383 *: "Show Path"
2548 </voice> 2384 </voice>
2549</phrase> 2385</phrase>
2550<phrase> 2386<phrase>
2551 id: LANG_VOICE_FILE 2387 id: LANG_SHOW_PATH_CURRENT
2552 desc: item of voice menu, set the voice mode for files 2388 desc: in show path menu
2553 user: 2389 user:
2554 <source> 2390 <source>
2555 *: "Voice Filenames" 2391 *: "Current Directory Only"
2556 </source> 2392 </source>
2557 <dest> 2393 <dest>
2558 *: "Voice Filenames" 2394 *: "Current Directory Only"
2559 </dest> 2395 </dest>
2560 <voice> 2396 <voice>
2561 *: "Voice Filenames" 2397 *: "Current Directory Only"
2562 </voice> 2398 </voice>
2563</phrase> 2399</phrase>
2564<phrase> 2400<phrase>
2565 id: LANG_VOICE_NUMBER 2401 id: LANG_DISPLAY_FULL_PATH
2566 desc: "talkbox" mode for files+directories 2402 desc: track display options
2567 user: 2403 user:
2568 <source> 2404 <source>
2569 *: "Numbers" 2405 *: "Full Path"
2570 </source> 2406 </source>
2571 <dest> 2407 <dest>
2572 *: "Numbers" 2408 *: "Full Path"
2573 </dest> 2409 </dest>
2574 <voice> 2410 <voice>
2575 *: "Numbers" 2411 *: "Full Path"
2576 </voice> 2412 </voice>
2577</phrase> 2413</phrase>
2578<phrase> 2414<phrase>
2579 id: LANG_VOICE_SPELL 2415 id: LANG_BUILDING_DATABASE
2580 desc: "talkbox" mode for files+directories 2416 desc: splash database building progress
2581 user: 2417 user:
2582 <source> 2418 <source>
2583 *: "Spell" 2419 *: "Building database... %d found (OFF to return)"
2420 h100,h120,h300: "Building database... %d found (STOP to return)"
2421 ipod*: "Building database... %d found (PLAY/PAUSE to return)"
2422 x5,m5: "Building database... %d found (Long PLAY to return)"
2423 h10,h10_5gb,e200: "Building database... %d found (PREV to return)"
2584 </source> 2424 </source>
2585 <dest> 2425 <dest>
2586 *: "Spell" 2426 *: "Building database... %d found (OFF to return)"
2427 h100,h120,h300: "Building database... %d found (STOP to return)"
2428 ipod*: "Building database... %d found (PLAY/PAUSE to return)"
2429 x5,m5: "Building database... %d found (Long PLAY to return)"
2430 h10,h10_5gb,e200: "Building database... %d found (PREV to return)"
2587 </dest> 2431 </dest>
2588 <voice> 2432 <voice>
2589 *: "Spell" 2433 *: ""
2590 </voice> 2434 </voice>
2591</phrase> 2435</phrase>
2592<phrase> 2436<phrase>
2593 id: LANG_VOICE_DIR_HOVER 2437 id: LANG_TAGCACHE_RAM
2594 desc: "talkbox" mode for directories + files 2438 desc: in tag cache settings
2595 user: 2439 user:
2596 <source> 2440 <source>
2597 *: ".talk mp3 clip" 2441 *: none
2442 tc_ramcache: "Load to RAM"
2598 </source> 2443 </source>
2599 <dest> 2444 <dest>
2600 *: ".talk mp3 clip" 2445 *: none
2446 tc_ramcache: "Load to RAM"
2601 </dest> 2447 </dest>
2602 <voice> 2448 <voice>
2603 *: "talk mp3 clip" 2449 *: none
2450 tc_ramcache: "Load to RAM"
2604 </voice> 2451 </voice>
2605</phrase> 2452</phrase>
2606<phrase> 2453<phrase>
2607 id: LANG_RECORDING_QUALITY 2454 id: LANG_TAGCACHE_AUTOUPDATE
2608 desc: in the recording settings 2455 desc: in tag cache settings
2609 user: 2456 user:
2610 <source> 2457 <source>
2611 *: "Quality" 2458 *: "Auto Update"
2612 </source> 2459 </source>
2613 <dest> 2460 <dest>
2614 *: "Quality" 2461 *: "Auto Update"
2615 </dest> 2462 </dest>
2616 <voice> 2463 <voice>
2617 *: "Quality" 2464 *: "Auto Update"
2618 </voice> 2465 </voice>
2619</phrase> 2466</phrase>
2620<phrase> 2467<phrase>
2621 id: LANG_RECORDING_FREQUENCY 2468 id: LANG_TAGCACHE_FORCE_UPDATE
2622 desc: in the recording settings 2469 desc: in tag cache settings
2623 user: 2470 user:
2624 <source> 2471 <source>
2625 *: "Frequency" 2472 *: "Initialize now"
2626 </source> 2473 </source>
2627 <dest> 2474 <dest>
2628 *: "Frequency" 2475 *: "Initialize now"
2629 </dest> 2476 </dest>
2630 <voice> 2477 <voice>
2631 *: "Frequency" 2478 *: "Initialize now"
2632 </voice> 2479 </voice>
2633</phrase> 2480</phrase>
2634<phrase> 2481<phrase>
2635 id: LANG_RECORDING_SOURCE 2482 id: LANG_TAGCACHE_UPDATE
2636 desc: in the recording settings 2483 desc: in tag cache settings
2637 user: 2484 user:
2638 <source> 2485 <source>
2639 *: "Source" 2486 *: "Update Now"
2640 </source> 2487 </source>
2641 <dest> 2488 <dest>
2642 *: "Source" 2489 *: "Update Now"
2643 </dest> 2490 </dest>
2644 <voice> 2491 <voice>
2645 *: "Source" 2492 *: "Update Now"
2646 </voice> 2493 </voice>
2647</phrase> 2494</phrase>
2648<phrase> 2495<phrase>
2649 id: LANG_RECORDING_SRC_MIC 2496 id: LANG_RUNTIMEDB_ACTIVE
2650 desc: in the recording settings 2497 desc: in settings_menu.
2651 user: 2498 user:
2652 <source> 2499 <source>
2653 *: "Mic" 2500 *: "Gather Runtime Data"
2654 h100,h120,h300: "Internal Mic"
2655 </source> 2501 </source>
2656 <dest> 2502 <dest>
2657 *: "Mic" 2503 *: "Gather Runtime Data"
2658 h100,h120,h300: "Internal Mic"
2659 </dest> 2504 </dest>
2660 <voice> 2505 <voice>
2661 *: "Microphone" 2506 *: "Gather Runtime Data"
2662 h100,h120,h300: "Internal Microphone"
2663 </voice> 2507 </voice>
2664</phrase> 2508</phrase>
2665<phrase> 2509<phrase>
2666 id: LANG_RECORDING_SRC_LINE 2510 id: LANG_TAGCACHE_EXPORT
2667 desc: in the recording settings 2511 desc: in tag cache settings
2668 user: 2512 user:
2669 <source> 2513 <source>
2670 *: "Line In" 2514 *: "Export Modifications"
2671 </source> 2515 </source>
2672 <dest> 2516 <dest>
2673 *: "Line In" 2517 *: "Export Modifications"
2674 </dest> 2518 </dest>
2675 <voice> 2519 <voice>
2676 *: "Line In" 2520 *: "Export Modifications"
2677 </voice> 2521 </voice>
2678</phrase> 2522</phrase>
2679<phrase> 2523<phrase>
2680 id: LANG_RECORDING_SRC_DIGITAL 2524 id: LANG_TAGCACHE_IMPORT
2681 desc: in the recording settings 2525 desc: in tag cache settings
2682 user: 2526 user:
2683 <source> 2527 <source>
2684 *: "Digital" 2528 *: "Import Modifications"
2685 </source> 2529 </source>
2686 <dest> 2530 <dest>
2687 *: "Digital" 2531 *: "Import Modifications"
2688 </dest> 2532 </dest>
2689 <voice> 2533 <voice>
2690 *: "Digital" 2534 *: "Import Modifications"
2691 </voice> 2535 </voice>
2692</phrase> 2536</phrase>
2693<phrase> 2537<phrase>
2694 id: LANG_RECORDING_CHANNELS 2538 id: LANG_TAGCACHE_FORCE_UPDATE_SPLASH
2695 desc: in the recording settings 2539 desc: in tag cache settings
2696 user: 2540 user:
2697 <source> 2541 <source>
2698 *: "Channels" 2542 *: "Updating in background"
2699 </source> 2543 </source>
2700 <dest> 2544 <dest>
2701 *: "Channels" 2545 *: "Updating in background"
2702 </dest> 2546 </dest>
2703 <voice> 2547 <voice>
2704 *: "Channels" 2548 *: ""
2705 </voice> 2549 </voice>
2706</phrase> 2550</phrase>
2707<phrase> 2551<phrase>
2708 id: LANG_RECORDING_EDITABLE 2552 id: LANG_TAGCACHE_INIT
2709 desc: Editable recordings setting 2553 desc: while initializing tagcache on boot
2710 user: 2554 user:
2711 <source> 2555 <source>
2712 *: "Independent Frames" 2556 *: "Committing database"
2713 </source> 2557 </source>
2714 <dest> 2558 <dest>
2715 *: "Independent Frames" 2559 *: "Committing database"
2716 </dest> 2560 </dest>
2717 <voice> 2561 <voice>
2718 *: "Independent Frames" 2562 *: ""
2719 </voice> 2563 </voice>
2720</phrase> 2564</phrase>
2721<phrase> 2565<phrase>
2722 id: LANG_RECORD_TIMESPLIT 2566 id: LANG_TAGCACHE_BUSY
2723 desc: Record split menu 2567 desc: when trying to shutdown and tagcache is committing
2724 user:
2725 <source> 2568 <source>
2726 *: "File Split Options" 2569 *: "Database is not ready"
2727 </source> 2570 </source>
2728 <dest> 2571 <dest>
2729 *: "File Split Options" 2572 *: "Database is not ready"
2730 </dest> 2573 </dest>
2731 <voice> 2574 <voice>
2732 *: "File Split Options" 2575 *: "Database is not ready"
2733 </voice> 2576 </voice>
2734</phrase> 2577</phrase>
2735<phrase> 2578<phrase>
2736 id: LANG_RECORD_PRERECORD_TIME 2579 id: LANG_TAGNAVI_ALL_TRACKS
2737 desc: in recording settings_menu 2580 desc: "<All tracks>" entry in tag browser
2738 user: 2581 user:
2739 <source> 2582 <source>
2740 *: "Prerecord Time" 2583 *: "<All tracks>"
2741 </source> 2584 </source>
2742 <dest> 2585 <dest>
2743 *: "Prerecord Time" 2586 *: "<All tracks>"
2744 </dest> 2587 </dest>
2745 <voice> 2588 <voice>
2746 *: "Pre-Record time" 2589 *: "All tracks"
2747 </voice> 2590 </voice>
2748</phrase> 2591</phrase>
2749<phrase> 2592<phrase>
2750 id: LANG_RECORD_DIRECTORY 2593 id: LANG_DISPLAY
2751 desc: in recording settings_menu 2594 desc: in settings_menu()
2752 user: 2595 user:
2753 <source> 2596 <source>
2754 *: "Directory" 2597 *: "Display"
2755 </source> 2598 </source>
2756 <dest> 2599 <dest>
2757 *: "Directory" 2600 *: "Display"
2758 </dest> 2601 </dest>
2759 <voice> 2602 <voice>
2760 *: "Directory" 2603 *: "Display"
2761 </voice> 2604 </voice>
2762</phrase> 2605</phrase>
2763<phrase> 2606<phrase>
2764 id: LANG_RECORD_CURRENT_DIR 2607 id: LANG_CUSTOM_FONT
2765 desc: in recording directory options 2608 desc: in setting_menu()
2766 user: 2609 user:
2767 <source> 2610 <source>
2768 *: "Current Directory" 2611 *: none
2612 lcd_bitmap: "Browse Fonts"
2769 </source> 2613 </source>
2770 <dest> 2614 <dest>
2771 *: "Current Directory" 2615 *: none
2616 lcd_bitmap: "Browse Fonts"
2772 </dest> 2617 </dest>
2773 <voice> 2618 <voice>
2774 *: "Current directory" 2619 *: none
2620 lcd_bitmap: "Browse Fonts"
2775 </voice> 2621 </voice>
2776</phrase> 2622</phrase>
2777<phrase> 2623<phrase>
2778 id: LANG_RECORD_STARTUP 2624 id: LANG_WHILE_PLAYING
2779 desc: DEPRECATED 2625 desc: in settings_menu()
2780 user: 2626 user:
2781 <source> 2627 <source>
2782 *: "" 2628 *: "Browse .wps files"
2783 </source> 2629 </source>
2784 <dest> 2630 <dest>
2785 *: deprecated 2631 *: "Browse .wps files"
2786 </dest> 2632 </dest>
2787 <voice> 2633 <voice>
2788 *: "" 2634 *: "Browse while-playing-screen files"
2789 </voice> 2635 </voice>
2790</phrase> 2636</phrase>
2791<phrase> 2637<phrase>
2792 id: LANG_RECORD_TRIGGER 2638 id: LANG_REMOTE_WHILE_PLAYING
2793 desc: in recording settings_menu 2639 desc: in settings_menu()
2794 user: 2640 user:
2795 <source> 2641 <source>
2796 *: "Trigger" 2642 *: none
2643 remote: "Browse .rwps files"
2797 </source> 2644 </source>
2798 <dest> 2645 <dest>
2799 *: "Trigger" 2646 *: none
2647 remote: "Browse .rwps files"
2800 </dest> 2648 </dest>
2801 <voice> 2649 <voice>
2802 *: "Trigger" 2650 *: none
2651 remote: "Browse remote while-playing-screen files"
2803 </voice> 2652 </voice>
2804</phrase> 2653</phrase>
2805<phrase> 2654<phrase>
2806 id: LANG_CLIP_LIGHT 2655 id: LANG_LCD_MENU
2807 desc: in record settings menu. 2656 desc: in the display sub menu
2808 user: 2657 user:
2809 <source> 2658 <source>
2810 *: "Clipping Light" 2659 *: "LCD Settings"
2811 </source> 2660 </source>
2812 <dest> 2661 <dest>
2813 *: "Clipping Light" 2662 *: "LCD Settings"
2814 </dest> 2663 </dest>
2815 <voice> 2664 <voice>
2816 *: "Clipping Light" 2665 *: "LCD Settings"
2817 </voice> 2666 </voice>
2818</phrase> 2667</phrase>
2819<phrase> 2668<phrase>
2820 id: LANG_MAIN_UNIT 2669 id: LANG_BACKLIGHT
2821 desc: in record settings menu. 2670 desc: in settings_menu
2822 user: 2671 user:
2823 <source> 2672 <source>
2824 *: "Main Unit Only" 2673 *: "Backlight"
2825 </source> 2674 </source>
2826 <dest> 2675 <dest>
2827 *: "Main Unit Only" 2676 *: "Backlight"
2828 </dest> 2677 </dest>
2829 <voice> 2678 <voice>
2830 *: "Main unit only" 2679 *: "Backlight"
2831 </voice> 2680 </voice>
2832</phrase> 2681</phrase>
2833<phrase> 2682<phrase>
2834 id: LANG_REMOTE_UNIT 2683 id: LANG_BACKLIGHT_ON_WHEN_CHARGING
2835 desc: in record settings menu. 2684 desc: in display_settings_menu, backlight timeout with charger connected
2836 user: 2685 user:
2837 <source> 2686 <source>
2838 *: "Remote Unit Only" 2687 *: none
2688 charging: "Backlight (While Plugged In)"
2839 </source> 2689 </source>
2840 <dest> 2690 <dest>
2841 *: "Remote Unit Only" 2691 *: none
2692 charging: "Backlight (While Plugged In)"
2842 </dest> 2693 </dest>
2843 <voice> 2694 <voice>
2844 *: "Remote unit only" 2695 *: none
2696 charging: "Backlight (While Plugged In)"
2845 </voice> 2697 </voice>
2846</phrase> 2698</phrase>
2847<phrase> 2699<phrase>
2848 id: LANG_REMOTE_MAIN 2700 id: LANG_BACKLIGHT_ON_BUTTON_HOLD
2849 desc: in record settings menu. 2701 desc: in lcd settings
2850 user: 2702 user:
2851 <source> 2703 <source>
2852 *: "Main and Remote Unit" 2704 *: none
2705 hold_button: "Backlight (On Hold Key)"
2853 </source> 2706 </source>
2854 <dest> 2707 <dest>
2855 *: "Main and Remote Unit" 2708 *: none
2709 hold_button: "Backlight (On Hold Key)"
2856 </dest> 2710 </dest>
2857 <voice> 2711 <voice>
2858 *: "Main and remote unit" 2712 *: none
2713 hold_button: "Backlight on hold key"
2859 </voice> 2714 </voice>
2860</phrase> 2715</phrase>
2861<phrase> 2716<phrase>
2862 id: LANG_FFRW_STEP 2717 id: LANG_CAPTION_BACKLIGHT
2863 desc: in settings_menu 2718 desc: in settings_menu
2864 user: 2719 user:
2865 <source> 2720 <source>
2866 *: "FF/RW Min Step" 2721 *: "Caption Backlight"
2867 </source> 2722 </source>
2868 <dest> 2723 <dest>
2869 *: "FF/RW Min Step" 2724 *: "Caption Backlight"
2870 </dest> 2725 </dest>
2871 <voice> 2726 <voice>
2872 *: "Minimum Step" 2727 *: "Caption Backlight"
2873 </voice> 2728 </voice>
2874</phrase> 2729</phrase>
2875<phrase> 2730<phrase>
2876 id: LANG_FFRW_ACCEL 2731 id: LANG_BACKLIGHT_FADE_IN
2877 desc: in settings_menu 2732 desc: in settings_menu
2878 user: 2733 user:
2879 <source> 2734 <source>
2880 *: "FF/RW Accel" 2735 *: none
2881 </source> 2736 backlight_fade: "Backlight Fade In"
2882 <dest>
2883 *: "FF/RW Accel"
2884 </dest>
2885 <voice>
2886 *: "Acceleration"
2887 </voice>
2888</phrase>
2889<phrase>
2890 id: LANG_CROSSFADE_ENABLE
2891 desc: in crossfade settings menu
2892 user:
2893 <source>
2894 *: "Enable Crossfade"
2895 </source>
2896 <dest>
2897 *: "Enable Crossfade"
2898 </dest>
2899 <voice>
2900 *: "Enable Crossfade"
2901 </voice>
2902</phrase>
2903<phrase>
2904 id: LANG_TRACKSKIP
2905 desc: in crossfade settings
2906 user:
2907 <source>
2908 *: "Track Skip Only"
2909 </source>
2910 <dest>
2911 *: "Track Skip Only"
2912 </dest>
2913 <voice>
2914 *: "Track Skip Only"
2915 </voice>
2916</phrase>
2917<phrase>
2918 id: LANG_CROSSFADE_FADE_IN_DELAY
2919 desc: in crossfade settings menu
2920 user:
2921 <source>
2922 *: "Fade-In Delay"
2923 </source>
2924 <dest>
2925 *: "Fade-In Delay"
2926 </dest>
2927 <voice>
2928 *: "Fade-In Delay"
2929 </voice>
2930</phrase>
2931<phrase>
2932 id: LANG_CROSSFADE_FADE_IN_DURATION
2933 desc: in crossfade settings menu
2934 user:
2935 <source>
2936 *: "Fade-In Duration"
2937 </source>
2938 <dest>
2939 *: "Fade-In Duration"
2940 </dest>
2941 <voice>
2942 *: "Fade-In Duration"
2943 </voice>
2944</phrase>
2945<phrase>
2946 id: LANG_CROSSFADE_FADE_OUT_DELAY
2947 desc: in crossfade settings menu
2948 user:
2949 <source>
2950 *: "Fade-Out Delay"
2951 </source>
2952 <dest>
2953 *: "Fade-Out Delay"
2954 </dest>
2955 <voice>
2956 *: "Fade-Out Delay"
2957 </voice>
2958</phrase>
2959<phrase>
2960 id: LANG_CROSSFADE_FADE_OUT_DURATION
2961 desc: in crossfade settings menu
2962 user:
2963 <source>
2964 *: "Fade-Out Duration"
2965 </source> 2737 </source>
2966 <dest> 2738 <dest>
2967 *: "Fade-Out Duration" 2739 *: none
2740 backlight_fade: "Backlight Fade In"
2968 </dest> 2741 </dest>
2969 <voice> 2742 <voice>
2970 *: "Fade-Out Duration" 2743 *: none
2744 backlight_fade: "Backlight Fade In"
2971 </voice> 2745 </voice>
2972</phrase> 2746</phrase>
2973<phrase> 2747<phrase>
2974 id: LANG_CROSSFADE_FADE_OUT_MODE 2748 id: LANG_BACKLIGHT_FADE_OUT
2975 desc: in crossfade settings menu 2749 desc: in settings_menu
2976 user:
2977 <source>
2978 *: "Fade-Out Mode"
2979 </source>
2980 <dest>
2981 *: "Fade-Out Mode"
2982 </dest>
2983 <voice>
2984 *: "Fade-Out Mode"
2985 </voice>
2986</phrase>
2987<phrase>
2988 id: LANG_MIX
2989 desc: in playback settings, crossfade option
2990 user:
2991 <source>
2992 *: "Mix"
2993 </source>
2994 <dest>
2995 *: "Mix"
2996 </dest>
2997 <voice>
2998 *: "Mix"
2999 </voice>
3000</phrase>
3001<phrase>
3002 id: LANG_REPLAYGAIN_ENABLE
3003 desc: in replaygain
3004 user:
3005 <source>
3006 *: "Enable Replaygain"
3007 </source>
3008 <dest>
3009 *: "Enable Replaygain"
3010 </dest>
3011 <voice>
3012 *: "Enable Replaygain"
3013 </voice>
3014</phrase>
3015<phrase>
3016 id: LANG_REPLAYGAIN_NOCLIP
3017 desc: in replaygain
3018 user:
3019 <source>
3020 *: "Prevent Clipping"
3021 </source>
3022 <dest>
3023 *: "Prevent Clipping"
3024 </dest>
3025 <voice>
3026 *: "Prevent Clipping"
3027 </voice>
3028</phrase>
3029<phrase>
3030 id: LANG_REPLAYGAIN_MODE
3031 desc: in replaygain
3032 user:
3033 <source>
3034 *: "Replaygain Type"
3035 </source>
3036 <dest>
3037 *: "Replaygain Type"
3038 </dest>
3039 <voice>
3040 *: "Replaygain Type"
3041 </voice>
3042</phrase>
3043<phrase>
3044 id: LANG_ALBUM_GAIN
3045 desc: in replaygain
3046 user: 2750 user:
3047 <source> 2751 <source>
3048 *: "Album Gain" 2752 *: none
2753 backlight_fade: "Backlight Fade Out"
3049 </source> 2754 </source>
3050 <dest> 2755 <dest>
3051 *: "Album Gain" 2756 *: none
2757 backlight_fade: "Backlight Fade Out"
3052 </dest> 2758 </dest>
3053 <voice> 2759 <voice>
3054 *: "Album Gain" 2760 *: none
2761 backlight_fade: "Backlight Fade Out"
3055 </voice> 2762 </voice>
3056</phrase> 2763</phrase>
3057<phrase> 2764<phrase>
3058 id: LANG_TRACK_GAIN 2765 id: LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS
3059 desc: in replaygain 2766 desc: Backlight behaviour setting
3060 user: 2767 user:
3061 <source> 2768 <source>
3062 *: "Track Gain" 2769 *: "First Keypress Enables Backlight Only"
3063 </source> 2770 </source>
3064 <dest> 2771 <dest>
3065 *: "Track Gain" 2772 *: "First Keypress Enables Backlight Only"
3066 </dest> 2773 </dest>
3067 <voice> 2774 <voice>
3068 *: "Track Gain" 2775 *: "First Keypress Enables Backlight Only"
3069 </voice> 2776 </voice>
3070</phrase> 2777</phrase>
3071<phrase> 2778<phrase>
3072 id: LANG_SHUFFLE_GAIN 2779 id: LANG_LCD_SLEEP_AFTER_BACKLIGHT_OFF
3073 desc: use track gain if shuffle mode is on, album gain otherwise 2780 desc: In display settings, time to switch LCD chip into power saving state
3074 user: 2781 user:
3075 <source> 2782 <source>
3076 *: "Track Gain if Shuffling" 2783 *: none
2784 lcd_sleep: "Sleep (After Backlight Off)"
3077 </source> 2785 </source>
3078 <dest> 2786 <dest>
3079 *: "Track Gain if Shuffling" 2787 *: none
2788 lcd_sleep: "Sleep (After Backlight Off)"
3080 </dest> 2789 </dest>
3081 <voice> 2790 <voice>
3082 *: "Track Gain if Shuffling" 2791 *: none
2792 lcd_sleep: "Sleep after backlight off"
3083 </voice> 2793 </voice>
3084</phrase> 2794</phrase>
3085<phrase> 2795<phrase>
3086 id: LANG_REPLAYGAIN_PREAMP 2796 id: LANG_NEVER
3087 desc: in replaygain settings 2797 desc: in lcd settings
3088 user: 2798 user:
3089 <source> 2799 <source>
3090 *: "Pre-amp" 2800 *: none
2801 lcd_sleep: "Never"
3091 </source> 2802 </source>
3092 <dest> 2803 <dest>
3093 *: "Pre-amp" 2804 *: none
2805 lcd_sleep: "Never"
3094 </dest> 2806 </dest>
3095 <voice> 2807 <voice>
3096 *: "Preamp" 2808 *: none
2809 lcd_sleep: "Never"
3097 </voice> 2810 </voice>
3098</phrase> 2811</phrase>
3099<phrase> 2812<phrase>
3100 id: LANG_BACKLIGHT 2813 id: LANG_BRIGHTNESS
3101 desc: in settings_menu 2814 desc: in settings_menu
3102 user: 2815 user:
3103 <source> 2816 <source>
3104 *: "Backlight" 2817 *: none
2818 backlight_brightness: "Brightness"
3105 </source> 2819 </source>
3106 <dest> 2820 <dest>
3107 *: "Backlight" 2821 *: none
2822 backlight_brightness: "Brightness"
3108 </dest> 2823 </dest>
3109 <voice> 2824 <voice>
3110 *: "Backlight" 2825 *: none
2826 backlight_brightness: "Brightness"
3111 </voice> 2827 </voice>
3112</phrase> 2828</phrase>
3113<phrase> 2829<phrase>
3114 id: LANG_BACKLIGHT_ON_WHEN_CHARGING 2830 id: LANG_CONTRAST
3115 desc: in display_settings_menu, backlight timeout with charger connected 2831 desc: in settings_menu
3116 user: 2832 user:
3117 <source> 2833 <source>
3118 *: "Backlight (While Plugged In)" 2834 *: "Contrast"
3119 </source> 2835 </source>
3120 <dest> 2836 <dest>
3121 *: "Backlight (While Plugged In)" 2837 *: "Contrast"
3122 </dest> 2838 </dest>
3123 <voice> 2839 <voice>
3124 *: "Backlight (While Plugged In)" 2840 *: "Contrast"
3125 </voice> 2841 </voice>
3126</phrase> 2842</phrase>
3127<phrase> 2843<phrase>
3128 id: LANG_CAPTION_BACKLIGHT 2844 id: LANG_INVERT
3129 desc: in settings_menu 2845 desc: in settings_menu
3130 user: 2846 user:
3131 <source> 2847 <source>
3132 *: "Caption Backlight" 2848 *: none
2849 lcd_invert: "LCD Mode"
3133 </source> 2850 </source>
3134 <dest> 2851 <dest>
3135 *: "Caption Backlight" 2852 *: none
2853 lcd_invert: "LCD Mode"
3136 </dest> 2854 </dest>
3137 <voice> 2855 <voice>
3138 *: "Caption Backlight" 2856 *: none
2857 lcd_invert: "LCD Mode"
3139 </voice> 2858 </voice>
3140</phrase> 2859</phrase>
3141<phrase> 2860<phrase>
3142 id: LANG_BACKLIGHT_FADE_IN 2861 id: LANG_INVERT_LCD_INVERSE
3143 desc: in settings_menu 2862 desc: in settings_menu
3144 user: 2863 user:
3145 <source> 2864 <source>
3146 *: "Backlight Fade In" 2865 *: none
2866 lcd_invert: "Inverse"
3147 </source> 2867 </source>
3148 <dest> 2868 <dest>
3149 *: "Backlight Fade In" 2869 *: none
2870 lcd_invert: "Inverse"
3150 </dest> 2871 </dest>
3151 <voice> 2872 <voice>
3152 *: "Backlight Fade In" 2873 *: none
2874 lcd_invert: "Inverse"
3153 </voice> 2875 </voice>
3154</phrase> 2876</phrase>
3155<phrase> 2877<phrase>
3156 id: LANG_BACKLIGHT_FADE_OUT 2878 id: LANG_FLIP_DISPLAY
3157 desc: in settings_menu 2879 desc: in settings_menu, option to turn display+buttos by 180 degrees
3158 user: 2880 user:
3159 <source> 2881 <source>
3160 *: "Backlight Fade Out" 2882 *: none
2883 lcd_bitmap: "Upside Down"
3161 </source> 2884 </source>
3162 <dest> 2885 <dest>
3163 *: "Backlight Fade Out" 2886 *: none
2887 lcd_bitmap: "Upside Down"
3164 </dest> 2888 </dest>
3165 <voice> 2889 <voice>
3166 *: "Backlight Fade Out" 2890 *: none
2891 lcd_bitmap: "Upside Down"
3167 </voice> 2892 </voice>
3168</phrase> 2893</phrase>
3169<phrase> 2894<phrase>
3170 id: LANG_BRIGHTNESS 2895 id: LANG_INVERT_CURSOR
3171 desc: in settings_menu 2896 desc: in settings_menu
3172 user: 2897 user:
3173 <source> 2898 <source>
3174 *: "Brightness" 2899 *: none
2900 lcd_bitmap: "Line Selector"
3175 </source> 2901 </source>
3176 <dest> 2902 <dest>
3177 *: "Brightness" 2903 *: none
2904 lcd_bitmap: "Line Selector"
3178 </dest> 2905 </dest>
3179 <voice> 2906 <voice>
3180 *: "Brightness" 2907 *: none
2908 lcd_bitmap: "Line Selector"
3181 </voice> 2909 </voice>
3182</phrase> 2910</phrase>
3183<phrase> 2911<phrase>
3184 id: LANG_CONTRAST 2912 id: LANG_INVERT_CURSOR_POINTER
3185 desc: in settings_menu 2913 desc: in settings_menu
3186 user: 2914 user:
3187 <source> 2915 <source>
3188 *: "Contrast" 2916 *: none
2917 lcd_bitmap: "Pointer"
3189 </source> 2918 </source>
3190 <dest> 2919 <dest>
3191 *: "Contrast" 2920 *: none
2921 lcd_bitmap: "Pointer"
3192 </dest> 2922 </dest>
3193 <voice> 2923 <voice>
3194 *: "Contrast" 2924 *: none
2925 lcd_bitmap: "Pointer"
3195 </voice> 2926 </voice>
3196</phrase> 2927</phrase>
3197<phrase> 2928<phrase>
3198 id: LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS 2929 id: LANG_INVERT_CURSOR_BAR
3199 desc: Backlight behaviour setting 2930 desc: in settings_menu
3200 user: 2931 user:
3201 <source> 2932 <source>
3202 *: "First Keypress Enables Backlight Only" 2933 *: none
2934 lcd_bitmap: "Bar (Inverse)"
3203 </source> 2935 </source>
3204 <dest> 2936 <dest>
3205 *: "First Keypress Enables Backlight Only" 2937 *: none
2938 lcd_bitmap: "Bar (Inverse)"
3206 </dest> 2939 </dest>
3207 <voice> 2940 <voice>
3208 *: "First Keypress Enables Backlight Only" 2941 *: none
2942 lcd_bitmap: "Inverse Bar"
3209 </voice> 2943 </voice>
3210</phrase> 2944</phrase>
3211<phrase> 2945<phrase>
3212 id: LANG_INVERT 2946 id: LANG_CLEAR_BACKDROP
3213 desc: in settings_menu 2947 desc: text for LCD settings menu
3214 user: 2948 user:
3215 <source> 2949 <source>
3216 *: "LCD Mode" 2950 *: none
2951 lcd_non-mono: "Clear Backdrop"
3217 </source> 2952 </source>
3218 <dest> 2953 <dest>
3219 *: "LCD Mode" 2954 *: none
2955 lcd_non-mono: "Clear Backdrop"
3220 </dest> 2956 </dest>
3221 <voice> 2957 <voice>
3222 *: "LCD Mode" 2958 *: none
2959 lcd_non-mono: "Clear Backdrop"
3223 </voice> 2960 </voice>
3224</phrase> 2961</phrase>
3225<phrase> 2962<phrase>
3226 id: LANG_INVERT_LCD_NORMAL 2963 id: LANG_BACKGROUND_COLOR
3227 desc: in settings_menu 2964 desc: menu entry to set the background color
3228 user: 2965 user:
3229 <source> 2966 <source>
3230 *: "Normal" 2967 *: none
2968 lcd_non-mono: "Background Colour"
3231 </source> 2969 </source>
3232 <dest> 2970 <dest>
3233 *: "Normal" 2971 *: none
2972 lcd_non-mono: "Background Colour"
3234 </dest> 2973 </dest>
3235 <voice> 2974 <voice>
3236 *: "Normal" 2975 *: none
2976 lcd_non-mono: "Background Colour"
3237 </voice> 2977 </voice>
3238</phrase> 2978</phrase>
3239<phrase> 2979<phrase>
3240 id: LANG_INVERT_LCD_INVERSE 2980 id: LANG_FOREGROUND_COLOR
3241 desc: in settings_menu 2981 desc: menu entry to set the foreground color
3242 user: 2982 user:
3243 <source> 2983 <source>
3244 *: "Inverse" 2984 *: none
2985 lcd_non-mono: "Foreground Colour"
3245 </source> 2986 </source>
3246 <dest> 2987 <dest>
3247 *: "Inverse" 2988 *: none
2989 lcd_non-mono: "Foreground Colour"
3248 </dest> 2990 </dest>
3249 <voice> 2991 <voice>
3250 *: "Inverse" 2992 *: none
2993 lcd_non-mono: "Foreground Colour"
3251 </voice> 2994 </voice>
3252</phrase> 2995</phrase>
3253<phrase> 2996<phrase>
3254 id: LANG_FLIP_DISPLAY 2997 id: LANG_RESET_COLORS
3255 desc: in settings_menu, option to turn display+buttos by 180 degreed 2998 desc: menu
3256 user: 2999 user:
3257 <source> 3000 <source>
3258 *: "Upside Down" 3001 *: none
3002 lcd_non-mono: "Reset Colours"
3259 </source> 3003 </source>
3260 <dest> 3004 <dest>
3261 *: "Upside Down" 3005 *: none
3006 lcd_non-mono: "Reset Colours"
3262 </dest> 3007 </dest>
3263 <voice> 3008 <voice>
3264 *: "Upside Down" 3009 *: none
3010 lcd_non-mono: "Reset Colours"
3265 </voice> 3011 </voice>
3266</phrase> 3012</phrase>
3267<phrase> 3013<phrase>
3268 id: LANG_INVERT_CURSOR 3014 id: LANG_COLOR_RGB_LABELS
3269 desc: in settings_menu 3015 desc: what to show for the 'R' 'G' 'B' ONE LETTER EACH
3270 user: 3016 user:
3271 <source> 3017 <source>
3272 *: "Line Selector" 3018 *: none
3019 lcd_color: "RGB"
3273 </source> 3020 </source>
3274 <dest> 3021 <dest>
3275 *: "Line Selector" 3022 *: none
3023 lcd_color: "RGB"
3276 </dest> 3024 </dest>
3277 <voice> 3025 <voice>
3278 *: "Line Selector" 3026 *: none
3027 lcd_color: ""
3279 </voice> 3028 </voice>
3280</phrase> 3029</phrase>
3281<phrase> 3030<phrase>
3282 id: LANG_INVERT_CURSOR_POINTER 3031 id: LANG_COLOR_RGB_VALUE
3283 desc: in settings_menu 3032 desc: in color screen
3284 user: 3033 user:
3285 <source> 3034 <source>
3286 *: "Pointer" 3035 *: none
3036 lcd_color: "RGB: %02X%02X%02X"
3287 </source> 3037 </source>
3288 <dest> 3038 <dest>
3289 *: "Pointer" 3039 *: none
3040 lcd_color: "RGB: %02X%02X%02X"
3290 </dest> 3041 </dest>
3291 <voice> 3042 <voice>
3292 *: "Pointer" 3043 *: none
3044 lcd_color: ""
3293 </voice> 3045 </voice>
3294</phrase> 3046</phrase>
3295<phrase> 3047<phrase>
3296 id: LANG_INVERT_CURSOR_BAR 3048 id: LANG_COLOR_UNACCEPTABLE
3297 desc: in settings_menu 3049 desc: splash when user selects an invalid colour
3298 user: 3050 user:
3299 <source> 3051 <source>
3300 *: "Bar (Inverse)" 3052 *: none
3053 lcd_non-mono: "Invalid colour"
3301 </source> 3054 </source>
3302 <dest> 3055 <dest>
3303 *: "Bar (Inverse)" 3056 *: none
3057 lcd_non-mono: "Invalid colour"
3304 </dest> 3058 </dest>
3305 <voice> 3059 <voice>
3306 *: "Inverse Bar" 3060 *: none
3061 lcd_non-mono: ""
3307 </voice> 3062 </voice>
3308</phrase> 3063</phrase>
3309<phrase> 3064<phrase>
3310 id: LANG_CLEAR_BACKDROP 3065 id: LANG_LCD_REMOTE_MENU
3311 desc: text for LCD settings menu 3066 desc: in the display sub menu
3312 user: 3067 user:
3313 <source> 3068 <source>
3314 *: "Clear Backdrop" 3069 *: none
3070 remote: "Remote-LCD Settings"
3315 </source> 3071 </source>
3316 <dest> 3072 <dest>
3317 *: "Clear Backdrop" 3073 *: none
3074 remote: "Remote-LCD Settings"
3318 </dest> 3075 </dest>
3319 <voice> 3076 <voice>
3320 *: "Clear Backdrop" 3077 *: none
3078 remote: "Remote LCD settings"
3321 </voice> 3079 </voice>
3322</phrase> 3080</phrase>
3323<phrase> 3081<phrase>
3324 id: LANG_BACKGROUND_COLOR 3082 id: LANG_REDUCE_TICKING
3325 desc: menu entry to set the background color 3083 desc: in remote lcd settings menu
3326 user: 3084 user:
3327 <source> 3085 <source>
3328 *: "Background Colour" 3086 *: none
3087 remote_ticking: "Reduce Ticking"
3329 </source> 3088 </source>
3330 <dest> 3089 <dest>
3331 *: "Background Colour" 3090 *: none
3091 remote_ticking: "Reduce Ticking"
3332 </dest> 3092 </dest>
3333 <voice> 3093 <voice>
3334 *: "Background Colour" 3094 *: none
3095 remote_ticking: "Reduce Ticking"
3335 </voice> 3096 </voice>
3336</phrase> 3097</phrase>
3337<phrase> 3098<phrase>
3338 id: LANG_FOREGROUND_COLOR 3099 id: LANG_SHOW_ICONS
3339 desc: menu entry to set the foreground color 3100 desc: in settings_menu
3340 user: 3101 user:
3341 <source> 3102 <source>
3342 *: "Foreground Colour" 3103 *: "Show Icons"
3343 </source> 3104 </source>
3344 <dest> 3105 <dest>
3345 *: "Foreground Colour" 3106 *: "Show Icons"
3346 </dest> 3107 </dest>
3347 <voice> 3108 <voice>
3348 *: "Foreground Colour" 3109 *: "Show Icons"
3349 </voice> 3110 </voice>
3350</phrase> 3111</phrase>
3351<phrase> 3112<phrase>
3352 id: LANG_RESET_COLORS 3113 id: LANG_SCROLL_MENU
3353 desc: menu 3114 desc: in display_settings_menu()
3354 user: 3115 user:
3355 <source> 3116 <source>
3356 *: "Reset Colours" 3117 *: "Scrolling"
3357 </source> 3118 </source>
3358 <dest> 3119 <dest>
3359 *: "Reset Colours" 3120 *: "Scrolling"
3360 </dest> 3121 </dest>
3361 <voice> 3122 <voice>
3362 *: "Reset Colours" 3123 *: "Scrolling"
3363 </voice> 3124 </voice>
3364</phrase> 3125</phrase>
3365<phrase> 3126<phrase>
3366 id: LANG_REDUCE_TICKING 3127 id: LANG_SCROLL
3367 desc: in remote lcd settings menu 3128 desc: in settings_menu
3368 user: 3129 user:
3369 <source> 3130 <source>
3370 *: "Reduce Ticking" 3131 *: "Scroll Speed Setting Example"
3371 </source> 3132 </source>
3372 <dest> 3133 <dest>
3373 *: "Reduce Ticking" 3134 *: "Scroll Speed Setting Example"
3374 </dest> 3135 </dest>
3375 <voice> 3136 <voice>
3376 *: "Reduce Ticking" 3137 *: ""
3377 </voice> 3138 </voice>
3378</phrase> 3139</phrase>
3379<phrase> 3140<phrase>
@@ -3391,20 +3152,6 @@
3391 </voice> 3152 </voice>
3392</phrase> 3153</phrase>
3393<phrase> 3154<phrase>
3394 id: LANG_SCROLL
3395 desc: in settings_menu
3396 user:
3397 <source>
3398 *: "Scroll Speed Setting Example"
3399 </source>
3400 <dest>
3401 *: "Scroll Speed Setting Example"
3402 </dest>
3403 <voice>
3404 *: ""
3405 </voice>
3406</phrase>
3407<phrase>
3408 id: LANG_SCROLL_DELAY 3155 id: LANG_SCROLL_DELAY
3409 desc: Delay before scrolling 3156 desc: Delay before scrolling
3410 user: 3157 user:
@@ -3461,8 +3208,25 @@
3461 </voice> 3208 </voice>
3462</phrase> 3209</phrase>
3463<phrase> 3210<phrase>
3211 id: LANG_REMOTE_SCROLL_SETS
3212 desc: "Remote Scrolling Options" Submenu in "Scrolling Options" menu
3213 user:
3214 <source>
3215 *: none
3216 remote: "Remote Scrolling Options"
3217 </source>
3218 <dest>
3219 *: none
3220 remote: "Remote Scrolling Options"
3221 </dest>
3222 <voice>
3223 *: none
3224 remote: "Remote Scrolling Options"
3225 </voice>
3226</phrase>
3227<phrase>
3464 id: LANG_JUMP_SCROLL 3228 id: LANG_JUMP_SCROLL
3465 desc: (player) menu altarnative for jump scroll 3229 desc: (player) menu alternative for jump scroll
3466 user: 3230 user:
3467 <source> 3231 <source>
3468 *: "Jump Scroll" 3232 *: "Jump Scroll"
@@ -3545,17 +3309,72 @@
3545 </voice> 3309 </voice>
3546</phrase> 3310</phrase>
3547<phrase> 3311<phrase>
3312 id: LANG_LISTACCEL_START_DELAY
3313 desc: Delay before list starts accelerating
3314 user:
3315 <source>
3316 *: "List Acceleration Start Delay"
3317 scrollwheel: none
3318 </source>
3319 <dest>
3320 *: "List Acceleration Start Delay"
3321 scrollwheel: none
3322 </dest>
3323 <voice>
3324 *: "List Acceleration Start Delay"
3325 scrollwheel: none
3326 </voice>
3327</phrase>
3328<phrase>
3329 id: LANG_LISTACCEL_ACCEL_SPEED
3330 desc: list acceleration speed
3331 user:
3332 <source>
3333 *: "List Acceleration Speed"
3334 scrollwheel: none
3335 </source>
3336 <dest>
3337 *: "List Acceleration Speed"
3338 scrollwheel: none
3339 </dest>
3340 <voice>
3341 *: "List Acceleration Speed"
3342 scrollwheel: none
3343 </voice>
3344</phrase>
3345
3346<phrase>
3347 id: LANG_BARS_MENU
3348 desc: in the display sub menu
3349 user:
3350 <source>
3351 *: none
3352 lcd_bitmap: "Status-/Scrollbar"
3353 </source>
3354 <dest>
3355 *: none
3356 lcd_bitmap: "Status-/Scrollbar"
3357 </dest>
3358 <voice>
3359 *: none
3360 lcd_bitmap: "Status- and Scrollbar"
3361 </voice>
3362</phrase>
3363<phrase>
3548 id: LANG_SCROLL_BAR 3364 id: LANG_SCROLL_BAR
3549 desc: display menu, F3 substitute 3365 desc: display menu, F3 substitute
3550 user: 3366 user:
3551 <source> 3367 <source>
3552 *: "Scroll Bar" 3368 *: none
3369 lcd_bitmap: "Scroll Bar"
3553 </source> 3370 </source>
3554 <dest> 3371 <dest>
3555 *: "Scroll Bar" 3372 *: none
3373 lcd_bitmap: "Scroll Bar"
3556 </dest> 3374 </dest>
3557 <voice> 3375 <voice>
3558 *: "Scroll Bar" 3376 *: none
3377 lcd_bitmap: "Scroll Bar"
3559 </voice> 3378 </voice>
3560</phrase> 3379</phrase>
3561<phrase> 3380<phrase>
@@ -3563,13 +3382,16 @@
3563 desc: display menu, F3 substitute 3382 desc: display menu, F3 substitute
3564 user: 3383 user:
3565 <source> 3384 <source>
3566 *: "Status Bar" 3385 *: none
3386 lcd_bitmap: "Status Bar"
3567 </source> 3387 </source>
3568 <dest> 3388 <dest>
3569 *: "Status Bar" 3389 *: none
3390 lcd_bitmap: "Status Bar"
3570 </dest> 3391 </dest>
3571 <voice> 3392 <voice>
3572 *: "Status Bar" 3393 *: none
3394 lcd_bitmap: "Status Bar"
3573 </voice> 3395 </voice>
3574</phrase> 3396</phrase>
3575<phrase> 3397<phrase>
@@ -3577,13 +3399,16 @@
3577 desc: in settings menu 3399 desc: in settings menu
3578 user: 3400 user:
3579 <source> 3401 <source>
3580 *: "Button Bar" 3402 *: none
3403 recorder_pad: "Button Bar"
3581 </source> 3404 </source>
3582 <dest> 3405 <dest>
3583 *: "Button Bar" 3406 *: none
3407 recorder_pad: "Button Bar"
3584 </dest> 3408 </dest>
3585 <voice> 3409 <voice>
3586 *: "Button Bar" 3410 *: none
3411 recorder_pad: "Button Bar"
3587 </voice> 3412 </voice>
3588</phrase> 3413</phrase>
3589<phrase> 3414<phrase>
@@ -3591,13 +3416,16 @@
3591 desc: Volume type title 3416 desc: Volume type title
3592 user: 3417 user:
3593 <source> 3418 <source>
3594 *: "Volume Display" 3419 *: none
3420 lcd_bitmap: "Volume Display"
3595 </source> 3421 </source>
3596 <dest> 3422 <dest>
3597 *: "Volume Display" 3423 *: none
3424 lcd_bitmap: "Volume Display"
3598 </dest> 3425 </dest>
3599 <voice> 3426 <voice>
3600 *: "Volume Display" 3427 *: none
3428 lcd_bitmap: "Volume Display"
3601 </voice> 3429 </voice>
3602</phrase> 3430</phrase>
3603<phrase> 3431<phrase>
@@ -3605,13 +3433,16 @@
3605 desc: Battery type title 3433 desc: Battery type title
3606 user: 3434 user:
3607 <source> 3435 <source>
3608 *: "Battery Display" 3436 *: none
3437 lcd_bitmap: "Battery Display"
3609 </source> 3438 </source>
3610 <dest> 3439 <dest>
3611 *: "Battery Display" 3440 *: none
3441 lcd_bitmap: "Battery Display"
3612 </dest> 3442 </dest>
3613 <voice> 3443 <voice>
3614 *: "Battery Display" 3444 *: none
3445 lcd_bitmap: "Battery Display"
3615 </voice> 3446 </voice>
3616</phrase> 3447</phrase>
3617<phrase> 3448<phrase>
@@ -3619,13 +3450,16 @@
3619 desc: Label for type of icon display 3450 desc: Label for type of icon display
3620 user: 3451 user:
3621 <source> 3452 <source>
3622 *: "Graphic" 3453 *: none
3454 lcd_bitmap: "Graphic"
3623 </source> 3455 </source>
3624 <dest> 3456 <dest>
3625 *: "Graphic" 3457 *: none
3458 lcd_bitmap: "Graphic"
3626 </dest> 3459 </dest>
3627 <voice> 3460 <voice>
3628 *: "Graphic" 3461 *: none
3462 lcd_bitmap: "Graphic"
3629 </voice> 3463 </voice>
3630</phrase> 3464</phrase>
3631<phrase> 3465<phrase>
@@ -3633,41 +3467,50 @@
3633 desc: Label for type of icon display 3467 desc: Label for type of icon display
3634 user: 3468 user:
3635 <source> 3469 <source>
3636 *: "Numeric" 3470 *: none
3471 lcd_bitmap: "Numeric"
3637 </source> 3472 </source>
3638 <dest> 3473 <dest>
3639 *: "Numeric" 3474 *: none
3475 lcd_bitmap: "Numeric"
3640 </dest> 3476 </dest>
3641 <voice> 3477 <voice>
3642 *: "Numeric" 3478 *: none
3479 lcd_bitmap: "Numeric"
3643 </voice> 3480 </voice>
3644</phrase> 3481</phrase>
3645<phrase> 3482<phrase>
3646 id: LANG_PM_RELEASE 3483 id: LANG_PM_MENU
3647 desc: in the peak meter menu 3484 desc: in the display menu
3648 user: 3485 user:
3649 <source> 3486 <source>
3650 *: "Peak Release" 3487 *: "Peak Meter"
3488 masd: none
3651 </source> 3489 </source>
3652 <dest> 3490 <dest>
3653 *: "Peak Release" 3491 *: "Peak Meter"
3492 masd: none
3654 </dest> 3493 </dest>
3655 <voice> 3494 <voice>
3656 *: "Peak Release" 3495 *: "Peak Meter"
3496 masd: none
3657 </voice> 3497 </voice>
3658</phrase> 3498</phrase>
3659<phrase> 3499<phrase>
3660 id: LANG_PM_UNITS_PER_READ 3500 id: LANG_PM_CLIP_HOLD
3661 desc: in the peak meter menu 3501 desc: in the peak meter menu
3662 user: 3502 user:
3663 <source> 3503 <source>
3664 *: "Units Per Read" 3504 *: "Clip Hold Time"
3505 masd: none
3665 </source> 3506 </source>
3666 <dest> 3507 <dest>
3667 *: "Units Per Read" 3508 *: "Clip Hold Time"
3509 masd: none
3668 </dest> 3510 </dest>
3669 <voice> 3511 <voice>
3670 *: "Units Per Read" 3512 *: "Clip Hold Time"
3513 masd: none
3671 </voice> 3514 </voice>
3672</phrase> 3515</phrase>
3673<phrase> 3516<phrase>
@@ -3676,40 +3519,66 @@
3676 user: 3519 user:
3677 <source> 3520 <source>
3678 *: "Peak Hold Time" 3521 *: "Peak Hold Time"
3522 masd: none
3679 </source> 3523 </source>
3680 <dest> 3524 <dest>
3681 *: "Peak Hold Time" 3525 *: "Peak Hold Time"
3526 masd: none
3682 </dest> 3527 </dest>
3683 <voice> 3528 <voice>
3684 *: "Peak Hold Time" 3529 *: "Peak Hold Time"
3530 masd: none
3685 </voice> 3531 </voice>
3686</phrase> 3532</phrase>
3687<phrase> 3533<phrase>
3688 id: LANG_PM_CLIP_HOLD 3534 id: LANG_PM_ETERNAL
3689 desc: in the peak meter menu 3535 desc: in the peak meter menu
3690 user: 3536 user:
3691 <source> 3537 <source>
3692 *: "Clip Hold Time" 3538 *: "Eternal"
3539 masd: none
3693 </source> 3540 </source>
3694 <dest> 3541 <dest>
3695 *: "Clip Hold Time" 3542 *: "Eternal"
3543 masd: none
3696 </dest> 3544 </dest>
3697 <voice> 3545 <voice>
3698 *: "Clip Hold Time" 3546 *: "Eternal"
3547 masd: none
3699 </voice> 3548 </voice>
3700</phrase> 3549</phrase>
3701<phrase> 3550<phrase>
3702 id: LANG_PM_ETERNAL 3551 id: LANG_PM_RELEASE
3703 desc: in the peak meter menu 3552 desc: in the peak meter menu
3704 user: 3553 user:
3705 <source> 3554 <source>
3706 *: "Eternal" 3555 *: "Peak Release"
3556 masd: none
3707 </source> 3557 </source>
3708 <dest> 3558 <dest>
3709 *: "Eternal" 3559 *: "Peak Release"
3560 masd: none
3710 </dest> 3561 </dest>
3711 <voice> 3562 <voice>
3712 *: "Eternal" 3563 *: "Peak Release"
3564 masd: none
3565 </voice>
3566</phrase>
3567<phrase>
3568 id: LANG_PM_UNITS_PER_READ
3569 desc: in the peak meter menu
3570 user:
3571 <source>
3572 *: "Units Per Read"
3573 masd: none
3574 </source>
3575 <dest>
3576 *: "Units Per Read"
3577 masd: none
3578 </dest>
3579 <voice>
3580 *: "Units Per Read"
3581 masd: none
3713 </voice> 3582 </voice>
3714</phrase> 3583</phrase>
3715<phrase> 3584<phrase>
@@ -3718,12 +3587,15 @@
3718 user: 3587 user:
3719 <source> 3588 <source>
3720 *: "Scale" 3589 *: "Scale"
3590 masd: none
3721 </source> 3591 </source>
3722 <dest> 3592 <dest>
3723 *: "Scale" 3593 *: "Scale"
3594 masd: none
3724 </dest> 3595 </dest>
3725 <voice> 3596 <voice>
3726 *: "Scale" 3597 *: "Scale"
3598 masd: none
3727 </voice> 3599 </voice>
3728</phrase> 3600</phrase>
3729<phrase> 3601<phrase>
@@ -3732,12 +3604,15 @@
3732 user: 3604 user:
3733 <source> 3605 <source>
3734 *: "Logarithmic (dB)" 3606 *: "Logarithmic (dB)"
3607 masd: none
3735 </source> 3608 </source>
3736 <dest> 3609 <dest>
3737 *: "Logarithmic (dB)" 3610 *: "Logarithmic (dB)"
3611 masd: none
3738 </dest> 3612 </dest>
3739 <voice> 3613 <voice>
3740 *: "Logarithmic decibel" 3614 *: "Logarithmic decibel"
3615 masd: none
3741 </voice> 3616 </voice>
3742</phrase> 3617</phrase>
3743<phrase> 3618<phrase>
@@ -3746,12 +3621,15 @@
3746 user: 3621 user:
3747 <source> 3622 <source>
3748 *: "Linear (%)" 3623 *: "Linear (%)"
3624 masd: none
3749 </source> 3625 </source>
3750 <dest> 3626 <dest>
3751 *: "Linear (%)" 3627 *: "Linear (%)"
3628 masd: none
3752 </dest> 3629 </dest>
3753 <voice> 3630 <voice>
3754 *: "Linear percent" 3631 *: "Linear percent"
3632 masd: none
3755 </voice> 3633 </voice>
3756</phrase> 3634</phrase>
3757<phrase> 3635<phrase>
@@ -3760,12 +3638,15 @@
3760 user: 3638 user:
3761 <source> 3639 <source>
3762 *: "Minimum Of Range" 3640 *: "Minimum Of Range"
3641 masd: none
3763 </source> 3642 </source>
3764 <dest> 3643 <dest>
3765 *: "Minimum Of Range" 3644 *: "Minimum Of Range"
3645 masd: none
3766 </dest> 3646 </dest>
3767 <voice> 3647 <voice>
3768 *: "Minimum Of Range" 3648 *: "Minimum Of Range"
3649 masd: none
3769 </voice> 3650 </voice>
3770</phrase> 3651</phrase>
3771<phrase> 3652<phrase>
@@ -3774,4464 +3655,4835 @@
3774 user: 3655 user:
3775 <source> 3656 <source>
3776 *: "Maximum Of Range" 3657 *: "Maximum Of Range"
3658 masd: none
3777 </source> 3659 </source>
3778 <dest> 3660 <dest>
3779 *: "Maximum Of Range" 3661 *: "Maximum Of Range"
3662 masd: none
3780 </dest> 3663 </dest>
3781 <voice> 3664 <voice>
3782 *: "Maximum Of Range" 3665 *: "Maximum Of Range"
3666 masd: none
3783 </voice> 3667 </voice>
3784</phrase> 3668</phrase>
3785<phrase> 3669<phrase>
3786 id: LANG_BATTERY_CAPACITY 3670 id: LANG_DEFAULT_CODEPAGE
3787 desc: in settings_menu 3671 desc: default encoding used with id3 tags
3788 user: 3672 user:
3789 <source> 3673 <source>
3790 *: "Battery Capacity" 3674 *: "Default Codepage"
3791 </source> 3675 </source>
3792 <dest> 3676 <dest>
3793 *: "Battery Capacity" 3677 *: "Default Codepage"
3794 </dest> 3678 </dest>
3795 <voice> 3679 <voice>
3796 *: "Battery Capacity" 3680 *: "Default codepage"
3797 </voice> 3681 </voice>
3798</phrase> 3682</phrase>
3799<phrase> 3683<phrase>
3800 id: LANG_BATTERY_TYPE 3684 id: LANG_CODEPAGE_LATIN1
3801 desc: in battery settings 3685 desc: in codepage setting menu
3802 user: 3686 user:
3803 <source> 3687 <source>
3804 *: "Battery Type" 3688 *: "Latin1 (ISO-8859-1)"
3805 </source> 3689 </source>
3806 <dest> 3690 <dest>
3807 *: "Battery Type" 3691 *: "Latin1 (ISO-8859-1)"
3808 </dest> 3692 </dest>
3809 <voice> 3693 <voice>
3810 *: "Battery type" 3694 *: "Latin 1"
3811 </voice> 3695 </voice>
3812</phrase> 3696</phrase>
3813<phrase> 3697<phrase>
3814 id: LANG_BATTERY_TYPE_ALKALINE 3698 id: LANG_CODEPAGE_GREEK
3815 desc: in battery settings 3699 desc: in codepage setting menu
3816 user: 3700 user:
3817 <source> 3701 <source>
3818 *: "Alkaline" 3702 *: "Greek (ISO-8859-7)"
3819 </source> 3703 </source>
3820 <dest> 3704 <dest>
3821 *: "Alkaline" 3705 *: "Greek (ISO-8859-7)"
3822 </dest> 3706 </dest>
3823 <voice> 3707 <voice>
3824 *: "Alkaline" 3708 *: "Greek"
3825 </voice> 3709 </voice>
3826</phrase> 3710</phrase>
3827<phrase> 3711<phrase>
3828 id: LANG_BATTERY_TYPE_NIMH 3712 id: LANG_CODEPAGE_HEBREW
3829 desc: in battery settings 3713 desc: in codepage setting menu
3830 user: 3714 user:
3831 <source> 3715 <source>
3832 *: "NiMH" 3716 *: none
3717 lcd_bitmap: "Hebrew (ISO-8859-8)"
3833 </source> 3718 </source>
3834 <dest> 3719 <dest>
3835 *: "NiMH" 3720 *: none
3721 lcd_bitmap: "Hebrew (ISO-8859-8)"
3836 </dest> 3722 </dest>
3837 <voice> 3723 <voice>
3838 *: "Nickel metal hydride" 3724 *: none
3725 lcd_bitmap: "Hebrew"
3839 </voice> 3726 </voice>
3840</phrase> 3727</phrase>
3841<phrase> 3728<phrase>
3842 id: LANG_SPINDOWN 3729 id: LANG_CODEPAGE_CYRILLIC
3843 desc: in settings_menu 3730 desc: in codepage setting menu
3844 user: 3731 user:
3845 <source> 3732 <source>
3846 *: "Disk Spindown" 3733 *: "Cyrillic (CP1251)"
3847 </source> 3734 </source>
3848 <dest> 3735 <dest>
3849 *: "Disk Spindown" 3736 *: "Cyrillic (CP1251)"
3850 </dest> 3737 </dest>
3851 <voice> 3738 <voice>
3852 *: "Disk Spindown" 3739 *: "Cyrillic"
3853 </voice> 3740 </voice>
3854</phrase> 3741</phrase>
3855<phrase> 3742<phrase>
3856 id: LANG_POWEROFF 3743 id: LANG_CODEPAGE_THAI
3857 desc: DEPRECATED 3744 desc: in codepage setting menu
3858 user: 3745 user:
3859 <source> 3746 <source>
3860 *: "" 3747 *: none
3748 lcd_bitmap: "Thai (ISO-8859-11)"
3861 </source> 3749 </source>
3862 <dest> 3750 <dest>
3863 *: deprecated 3751 *: none
3752 lcd_bitmap: "Thai (ISO-8859-11)"
3864 </dest> 3753 </dest>
3865 <voice> 3754 <voice>
3866 *: "" 3755 *: none
3756 lcd_bitmap: "Thai"
3867 </voice> 3757 </voice>
3868</phrase> 3758</phrase>
3869<phrase> 3759<phrase>
3870 id: LANG_DIRCACHE_ENABLE 3760 id: LANG_CODEPAGE_ARABIC
3871 desc: in directory cache settings 3761 desc: in codepage setting menu
3872 user: 3762 user:
3873 <source> 3763 <source>
3874 *: "Directory Cache" 3764 *: none
3765 lcd_bitmap: "Arabic (CP1256)"
3875 </source> 3766 </source>
3876 <dest> 3767 <dest>
3877 *: "Directory Cache" 3768 *: none
3769 lcd_bitmap: "Arabic (CP1256)"
3878 </dest> 3770 </dest>
3879 <voice> 3771 <voice>
3880 *: "Directory Cache" 3772 *: none
3773 lcd_bitmap: "Arabic"
3881 </voice> 3774 </voice>
3882</phrase> 3775</phrase>
3883<phrase> 3776<phrase>
3884 id: LANG_DIRCACHE_REBOOT 3777 id: LANG_CODEPAGE_TURKISH
3885 desc: DEPRECATED 3778 desc: in codepage setting menu
3886 user: 3779 user:
3887 <source> 3780 <source>
3888 *: "" 3781 *: "Turkish (ISO-8859-9)"
3889 </source> 3782 </source>
3890 <dest> 3783 <dest>
3891 *: "" 3784 *: "Turkish (ISO-8859-9)"
3892 </dest> 3785 </dest>
3893 <voice> 3786 <voice>
3894 *: "" 3787 *: "Turkish"
3895 </voice> 3788 </voice>
3896</phrase> 3789</phrase>
3897<phrase> 3790<phrase>
3898 id: LANG_DIRCACHE_BUILDING 3791 id: LANG_CODEPAGE_LATIN_EXTENDED
3899 desc: when booting up and rebuilding the cache 3792 desc: in codepage setting menu
3900 user: 3793 user:
3901 <source> 3794 <source>
3902 *: "Scanning disk..." 3795 *: "Latin Extended (ISO-8859-2)"
3903 </source> 3796 </source>
3904 <dest> 3797 <dest>
3905 *: "Scanning disk..." 3798 *: "Latin Extended (ISO-8859-2)"
3906 </dest> 3799 </dest>
3907 <voice> 3800 <voice>
3908 *: "" 3801 *: "Latin extended"
3909 </voice> 3802 </voice>
3910</phrase> 3803</phrase>
3911<phrase> 3804<phrase>
3912 id: LANG_TIME 3805 id: LANG_CODEPAGE_JAPANESE
3913 desc: in settings_menu 3806 desc: in codepage setting menu
3914 user: 3807 user:
3915 <source> 3808 <source>
3916 *: "Set Time/Date" 3809 *: none
3810 lcd_bitmap: "Japanese (SJIS)"
3917 </source> 3811 </source>
3918 <dest> 3812 <dest>
3919 *: "Set Time/Date" 3813 *: none
3814 lcd_bitmap: "Japanese (SJIS)"
3920 </dest> 3815 </dest>
3921 <voice> 3816 <voice>
3922 *: "Set Time and Date" 3817 *: none
3818 lcd_bitmap: "Japanese"
3923 </voice> 3819 </voice>
3924</phrase> 3820</phrase>
3925<phrase> 3821<phrase>
3926 id: LANG_TIMEFORMAT 3822 id: LANG_CODEPAGE_SIMPLIFIED
3927 desc: select the time format of time in status bar 3823 desc: in codepage setting menu
3928 user: 3824 user:
3929 <source> 3825 <source>
3930 *: "Time Format" 3826 *: none
3827 lcd_bitmap: "Simp. Chinese (GB2312)"
3931 </source> 3828 </source>
3932 <dest> 3829 <dest>
3933 *: "Time Format" 3830 *: none
3831 lcd_bitmap: "Simp. Chinese (GB2312)"
3934 </dest> 3832 </dest>
3935 <voice> 3833 <voice>
3936 *: "Time Format" 3834 *: none
3835 lcd_bitmap: "Simplified Chinese"
3937 </voice> 3836 </voice>
3938</phrase> 3837</phrase>
3939<phrase> 3838<phrase>
3940 id: LANG_12_HOUR_CLOCK 3839 id: LANG_CODEPAGE_KOREAN
3941 desc: option for 12 hour clock 3840 desc: in codepage setting menu
3942 user: 3841 user:
3943 <source> 3842 <source>
3944 *: "12 Hour Clock" 3843 *: none
3844 lcd_bitmap: "Korean (KSX1001)"
3945 </source> 3845 </source>
3946 <dest> 3846 <dest>
3947 *: "12 Hour Clock" 3847 *: none
3848 lcd_bitmap: "Korean (KSX1001)"
3948 </dest> 3849 </dest>
3949 <voice> 3850 <voice>
3950 *: "12 Hour Clock" 3851 *: none
3852 lcd_bitmap: "Korean"
3951 </voice> 3853 </voice>
3952</phrase> 3854</phrase>
3953<phrase> 3855<phrase>
3954 id: LANG_24_HOUR_CLOCK 3856 id: LANG_CODEPAGE_TRADITIONAL
3955 desc: option for 24 hour clock 3857 desc: in codepage setting menu
3956 user: 3858 user:
3957 <source> 3859 <source>
3958 *: "24 Hour Clock" 3860 *: none
3861 lcd_bitmap: "Trad. Chinese (BIG5)"
3959 </source> 3862 </source>
3960 <dest> 3863 <dest>
3961 *: "24 Hour Clock" 3864 *: none
3865 lcd_bitmap: "Trad. Chinese (BIG5)"
3962 </dest> 3866 </dest>
3963 <voice> 3867 <voice>
3964 *: "24 Hour Clock" 3868 *: none
3869 lcd_bitmap: "Traditional Chinese"
3965 </voice> 3870 </voice>
3966</phrase> 3871</phrase>
3967<phrase> 3872<phrase>
3968 id: LANG_MAX_FILES_IN_DIR 3873 id: LANG_CODEPAGE_UTF8
3969 desc: in settings_menu 3874 desc: in codepage setting menu
3970 user: 3875 user:
3971 <source> 3876 <source>
3972 *: "Max Files in Dir Browser" 3877 *: "Unicode (UTF-8)"
3973 </source> 3878 </source>
3974 <dest> 3879 <dest>
3975 *: "Max Files in Dir Browser" 3880 *: "Unicode (UTF-8)"
3976 </dest> 3881 </dest>
3977 <voice> 3882 <voice>
3978 *: "Maximum files in directory browser" 3883 *: "Unicode"
3979 </voice> 3884 </voice>
3980</phrase> 3885</phrase>
3981<phrase> 3886<phrase>
3982 id: LANG_MAX_FILES_IN_PLAYLIST 3887 id: LANG_BUTTONLIGHT_TIMEOUT
3983 desc: in settings_menu 3888 desc: in settings_menu
3984 user: 3889 user:
3985 <source> 3890 <source>
3986 *: "Max Playlist Size" 3891 *: none
3892 e200: "Wheel Light Timeout"
3893 gigabeatf: "Button Light Timeout"
3987 </source> 3894 </source>
3988 <dest> 3895 <dest>
3989 *: "Max Playlist Size" 3896 *: none
3897 e200: "Wheel Light Timeout"
3898 gigabeatf: "Button Light Timeout"
3990 </dest> 3899 </dest>
3991 <voice> 3900 <voice>
3992 *: "Maximum playlist size" 3901 *: none
3902 e200: "Wheel Light Timeout"
3903 gigabeatf: "Button Light Timeout"
3993 </voice> 3904 </voice>
3994</phrase> 3905</phrase>
3995<phrase> 3906<phrase>
3996 id: LANG_PLAYLIST 3907 id: LANG_BUTTONLIGHT_BRIGHTNESS
3997 desc: Used when you need to say playlist, also voiced 3908 desc: in settings_menu
3998 user: 3909 user:
3999 <source> 3910 <source>
4000 *: "Playlist" 3911 *: none
3912 gigabeatf: "Button Light Brightness"
4001 </source> 3913 </source>
4002 <dest> 3914 <dest>
4003 *: "Playlist" 3915 *: none
3916 gigabeatf: "Button Light Brightness"
4004 </dest> 3917 </dest>
4005 <voice> 3918 <voice>
4006 *: "Playlist" 3919 *: none
3920 gigabeatf: "Button Light Brightness"
4007 </voice> 3921 </voice>
4008</phrase> 3922</phrase>
4009<phrase> 3923<phrase>
4010 id: LANG_BOOKMARK_MENU 3924 id: LANG_START_SCREEN
4011 desc: Text on main menu to get to bookmark commands 3925 desc: in the system sub menu
4012 user: 3926 user:
4013 <source> 3927 <source>
4014 *: "Bookmarks" 3928 *: "Start Screen"
4015 </source> 3929 </source>
4016 <dest> 3930 <dest>
4017 *: "Bookmarks" 3931 *: "Start Screen"
4018 </dest> 3932 </dest>
4019 <voice> 3933 <voice>
4020 *: "Bookmarks" 3934 *: "Start Screen"
4021 </voice> 3935 </voice>
4022</phrase> 3936</phrase>
4023<phrase> 3937<phrase>
4024 id: LANG_MENU_SHOW_ID3_INFO 3938 id: LANG_MAIN_MENU
4025 desc: Menu option to start tag viewer 3939 desc: in start screen setting
4026 user: 3940 user:
4027 <source> 3941 <source>
4028 *: "Show ID3 Info" 3942 *: "Main Menu"
4029 </source> 3943 </source>
4030 <dest> 3944 <dest>
4031 *: "Show ID3 Info" 3945 *: "Main Menu"
4032 </dest> 3946 </dest>
4033 <voice> 3947 <voice>
4034 *: "Show ID3 Info" 3948 *: "Main Menu"
4035 </voice> 3949 </voice>
4036</phrase> 3950</phrase>
4037<phrase> 3951<phrase>
4038 id: LANG_MENU_SET_RATING 3952 id: LANG_PREVIOUS_SCREEN
4039 desc: in wps context menu 3953 desc: in start screen setting
4040 user: 3954 user:
4041 <source> 3955 <source>
4042 *: "Set Song Rating" 3956 *: "Previous Screen"
4043 </source> 3957 </source>
4044 <dest> 3958 <dest>
4045 *: "Set Song Rating" 3959 *: "Previous Screen"
4046 </dest> 3960 </dest>
4047 <voice> 3961 <voice>
4048 *: "Set Song Rating" 3962 *: "Previous Screen"
4049 </voice> 3963 </voice>
4050</phrase> 3964</phrase>
4051<phrase> 3965<phrase>
4052 id: LANG_RATING 3966 id: LANG_BATTERY_MENU
4053 desc: in set_rating 3967 desc: in the system sub menu
4054 user: 3968 user:
4055 <source> 3969 <source>
4056 *: "Rating:" 3970 *: "Battery"
4057 </source> 3971 </source>
4058 <dest> 3972 <dest>
4059 *: "Rating:" 3973 *: "Battery"
4060 </dest> 3974 </dest>
4061 <voice> 3975 <voice>
4062 *: "" 3976 *: "Battery"
4063 </voice> 3977 </voice>
4064</phrase> 3978</phrase>
4065<phrase> 3979<phrase>
4066 id: LANG_RENAME 3980 id: LANG_BATTERY_CAPACITY
4067 desc: The verb/action Rename 3981 desc: in settings_menu
4068 user: 3982 user:
4069 <source> 3983 <source>
4070 *: "Rename" 3984 *: "Battery Capacity"
4071 </source> 3985 </source>
4072 <dest> 3986 <dest>
4073 *: "Rename" 3987 *: "Battery Capacity"
4074 </dest> 3988 </dest>
4075 <voice> 3989 <voice>
4076 *: "Rename" 3990 *: "Battery Capacity"
4077 </voice> 3991 </voice>
4078</phrase> 3992</phrase>
4079<phrase> 3993<phrase>
4080 id: LANG_CUT 3994 id: LANG_BATTERY_TYPE
4081 desc: The verb/action Cut 3995 desc: in battery settings
4082 user: 3996 user:
4083 <source> 3997 <source>
4084 *: "Cut" 3998 *: none
3999 battery_types: "Battery Type"
4085 </source> 4000 </source>
4086 <dest> 4001 <dest>
4087 *: "Cut" 4002 *: none
4003 battery_types: "Battery Type"
4088 </dest> 4004 </dest>
4089 <voice> 4005 <voice>
4090 *: "Cut" 4006 *: none
4007 battery_types: "Battery type"
4091 </voice> 4008 </voice>
4092</phrase> 4009</phrase>
4093<phrase> 4010<phrase>
4094 id: LANG_COPY 4011 id: LANG_BATTERY_TYPE_ALKALINE
4095 desc: The verb/action Copy 4012 desc: in battery settings
4096 user: 4013 user:
4097 <source> 4014 <source>
4098 *: "Copy" 4015 *: none
4016 battery_types: "Alkaline"
4099 </source> 4017 </source>
4100 <dest> 4018 <dest>
4101 *: "Copy" 4019 *: none
4020 battery_types: "Alkaline"
4102 </dest> 4021 </dest>
4103 <voice> 4022 <voice>
4104 *: "Copy" 4023 *: none
4024 battery_types: "Alkaline"
4105 </voice> 4025 </voice>
4106</phrase> 4026</phrase>
4107<phrase> 4027<phrase>
4108 id: LANG_PASTE 4028 id: LANG_BATTERY_TYPE_NIMH
4109 desc: The verb/action Paste 4029 desc: in battery settings
4110 user: 4030 user:
4111 <source> 4031 <source>
4112 *: "Paste" 4032 *: none
4033 battery_types: "NiMH"
4113 </source> 4034 </source>
4114 <dest> 4035 <dest>
4115 *: "Paste" 4036 *: none
4037 battery_types: "NiMH"
4116 </dest> 4038 </dest>
4117 <voice> 4039 <voice>
4118 *: "Paste" 4040 *: none
4041 battery_types: "Nickel metal hydride"
4119 </voice> 4042 </voice>
4120</phrase> 4043</phrase>
4121<phrase> 4044<phrase>
4122 id: LANG_REALLY_OVERWRITE 4045 id: LANG_DISK_MENU
4123 desc: The verb/action Paste 4046 desc: in the system sub menu
4124 user: 4047 user:
4125 <source> 4048 <source>
4126 *: "File/directory exists. Overwrite?" 4049 *: "Disk"
4127 </source> 4050 </source>
4128 <dest> 4051 <dest>
4129 *: "File/directory exists. Overwrite?" 4052 *: "Disk"
4130 </dest> 4053 </dest>
4131 <voice> 4054 <voice>
4132 *: "" 4055 *: "Disk"
4133 </voice> 4056 </voice>
4134</phrase> 4057</phrase>
4135<phrase> 4058<phrase>
4136 id: LANG_DELETE 4059 id: LANG_SPINDOWN
4137 desc: The verb/action Delete 4060 desc: in settings_menu
4138 user: 4061 user:
4139 <source> 4062 <source>
4140 *: "Delete" 4063 *: "Disk Spindown"
4064 flash_storage: none
4141 </source> 4065 </source>
4142 <dest> 4066 <dest>
4143 *: "Delete" 4067 *: "Disk Spindown"
4068 flash_storage: none
4144 </dest> 4069 </dest>
4145 <voice> 4070 <voice>
4146 *: "Delete" 4071 *: "Disk Spindown"
4072 flash_storage: none
4147 </voice> 4073 </voice>
4148</phrase> 4074</phrase>
4149<phrase> 4075<phrase>
4150 id: LANG_SET_AS_BACKDROP 4076 id: LANG_DIRCACHE_ENABLE
4151 desc: text for onplay menu entry 4077 desc: in directory cache settings
4152 user: 4078 user:
4153 <source> 4079 <source>
4154 *: "Set As Backdrop" 4080 *: none
4081 dircache: "Directory Cache"
4155 </source> 4082 </source>
4156 <dest> 4083 <dest>
4157 *: "Set As Backdrop" 4084 *: none
4085 dircache: "Directory Cache"
4158 </dest> 4086 </dest>
4159 <voice> 4087 <voice>
4160 *: "Set As Backdrop" 4088 *: none
4089 dircache: "Directory Cache"
4161 </voice> 4090 </voice>
4162</phrase> 4091</phrase>
4163<phrase> 4092<phrase>
4164 id: LANG_DELETE_DIR 4093 id: LANG_TIME_MENU
4165 desc: in on+play menu 4094 desc: in the system sub menu
4166 user: 4095 user:
4167 <source> 4096 <source>
4168 *: "Delete Directory" 4097 *: none
4098 rtc: "Time & Date"
4169 </source> 4099 </source>
4170 <dest> 4100 <dest>
4171 *: "Delete Directory" 4101 *: none
4102 rtc: "Time & Date"
4172 </dest> 4103 </dest>
4173 <voice> 4104 <voice>
4174 *: "delete directory" 4105 *: none
4106 rtc: "Time and Date"
4175 </voice> 4107 </voice>
4176</phrase> 4108</phrase>
4177<phrase> 4109<phrase>
4178 id: LANG_REALLY_DELETE 4110 id: LANG_SET_TIME
4179 desc: Really Delete? 4111 desc: in settings_menu
4180 user: 4112 user:
4181 <source> 4113 <source>
4182 *: "Delete?" 4114 *: none
4115 rtc: "Set Time/Date"
4183 </source> 4116 </source>
4184 <dest> 4117 <dest>
4185 *: "Delete?" 4118 *: none
4119 rtc: "Set Time/Date"
4186 </dest> 4120 </dest>
4187 <voice> 4121 <voice>
4188 *: "" 4122 *: none
4123 rtc: "Set Time and Date"
4189 </voice> 4124 </voice>
4190</phrase> 4125</phrase>
4191<phrase> 4126<phrase>
4192 id: LANG_DELETED 4127 id: LANG_TIMEFORMAT
4193 desc: A file has beed deleted 4128 desc: select the time format of time in status bar
4194 user: 4129 user:
4195 <source> 4130 <source>
4196 *: "Deleted" 4131 *: none
4132 rtc: "Time Format"
4197 </source> 4133 </source>
4198 <dest> 4134 <dest>
4199 *: "Deleted" 4135 *: none
4136 rtc: "Time Format"
4200 </dest> 4137 </dest>
4201 <voice> 4138 <voice>
4202 *: "" 4139 *: none
4140 rtc: "Time Format"
4203 </voice> 4141 </voice>
4204</phrase> 4142</phrase>
4205<phrase> 4143<phrase>
4206 id: LANG_ONPLAY_OPEN_WITH 4144 id: LANG_12_HOUR_CLOCK
4207 desc: Onplay open with 4145 desc: option for 12 hour clock
4208 user: 4146 user:
4209 <source> 4147 <source>
4210 *: "Open With..." 4148 *: none
4149 rtc: "12 Hour Clock"
4211 </source> 4150 </source>
4212 <dest> 4151 <dest>
4213 *: "Open With..." 4152 *: none
4153 rtc: "12 Hour Clock"
4214 </dest> 4154 </dest>
4215 <voice> 4155 <voice>
4216 *: "open with" 4156 *: none
4157 rtc: "12 Hour Clock"
4217 </voice> 4158 </voice>
4218</phrase> 4159</phrase>
4219<phrase> 4160<phrase>
4220 id: LANG_CREATE_DIR 4161 id: LANG_24_HOUR_CLOCK
4221 desc: in main menu 4162 desc: option for 24 hour clock
4222 user: 4163 user:
4223 <source> 4164 <source>
4224 *: "Create Directory" 4165 *: none
4166 rtc: "24 Hour Clock"
4225 </source> 4167 </source>
4226 <dest> 4168 <dest>
4227 *: "Create Directory" 4169 *: none
4170 rtc: "24 Hour Clock"
4228 </dest> 4171 </dest>
4229 <voice> 4172 <voice>
4230 *: "Create Directory" 4173 *: none
4174 rtc: "24 Hour Clock"
4231 </voice> 4175 </voice>
4232</phrase> 4176</phrase>
4233<phrase> 4177<phrase>
4234 id: LANG_PITCH 4178 id: LANG_TIME_SET_BUTTON
4235 desc: "pitch" in the pitch screen 4179 desc: used in set_time()
4236 user: 4180 user:
4237 <source> 4181 <source>
4238 *: "Pitch" 4182 *: none
4183 rtc: "ON = Set"
4184 h100,h120,h300: "NAVI = Set"
4185 ipod*,x5,m5,h10,h10_5gb,e200,gigabeatf: "SELECT = Set"
4239 </source> 4186 </source>
4240 <dest> 4187 <dest>
4241 *: "Pitch" 4188 *: none
4189 rtc: "ON = Set"
4190 h100,h120,h300: "NAVI = Set"
4191 ipod*,x5,m5,h10,h10_5gb,e200,gigabeatf: "SELECT = Set"
4242 </dest> 4192 </dest>
4243 <voice> 4193 <voice>
4244 *: "Pitch" 4194 *: none
4195 rtc,h100,h120,h300,h10,h10_5gb,x5,m5,ipod*,e200,gigabeatf: ""
4245 </voice> 4196 </voice>
4246</phrase> 4197</phrase>
4247<phrase> 4198<phrase>
4248 id: LANG_VIEW 4199 id: LANG_TIME_REVERT
4249 desc: in on+play menu 4200 desc: used in set_time()
4250 user: 4201 user:
4251 <source> 4202 <source>
4252 *: "View" 4203 *: none
4204 rtc: "OFF = Revert"
4205 h100,h120,h300: "STOP = Revert"
4206 ipod*,e200: "MENU = Revert"
4207 x5,m5: "RECORD = Revert"
4208 h10,h10_5gb: "PREV = Revert"
4209 gigabeatf: "A = Revert"
4253 </source> 4210 </source>
4254 <dest> 4211 <dest>
4255 *: "View" 4212 *: none
4213 rtc: "OFF = Revert"
4214 h100,h120,h300: "STOP = Revert"
4215 ipod*,e200: "MENU = Revert"
4216 x5,m5: "RECORD = Revert"
4217 h10,h10_5gb: "PREV = Revert"
4218 gigabeatf: "A = Revert"
4256 </dest> 4219 </dest>
4257 <voice> 4220 <voice>
4258 *: "View" 4221 *: none
4222 rtc,h100,h120,h300,ipod*,e200,x5,m5,h10,h10_gb,gigabeatf: ""
4259 </voice> 4223 </voice>
4260</phrase> 4224</phrase>
4261<phrase> 4225<phrase>
4262 id: LANG_SHUFFLE_PLAYLIST 4226 id: LANG_WEEKDAY_SUNDAY
4263 desc: in playlist menu, reshuffles the order in which songs are played 4227 desc: Maximum 3-letter abbreviation for weekday
4264 user: 4228 user:
4265 <source> 4229 <source>
4266 *: "Reshuffle" 4230 *: none
4231 rtc: "Sun"
4267 </source> 4232 </source>
4268 <dest> 4233 <dest>
4269 *: "Reshuffle" 4234 *: none
4235 rtc: "Sun"
4270 </dest> 4236 </dest>
4271 <voice> 4237 <voice>
4272 *: "Reshuffle" 4238 *: none
4239 rtc: ""
4273 </voice> 4240 </voice>
4274</phrase> 4241</phrase>
4275<phrase> 4242<phrase>
4276 id: LANG_INSERT 4243 id: LANG_WEEKDAY_MONDAY
4277 desc: in onplay menu. insert a track/playlist into dynamic playlist. 4244 desc: Maximum 3-letter abbreviation for weekday
4278 user: 4245 user:
4279 <source> 4246 <source>
4280 *: "Insert" 4247 *: none
4248 rtc: "Mon"
4281 </source> 4249 </source>
4282 <dest> 4250 <dest>
4283 *: "Insert" 4251 *: none
4252 rtc: "Mon"
4284 </dest> 4253 </dest>
4285 <voice> 4254 <voice>
4286 *: "Insert" 4255 *: none
4256 rtc: ""
4287 </voice> 4257 </voice>
4288</phrase> 4258</phrase>
4289<phrase> 4259<phrase>
4290 id: LANG_INSERT_FIRST 4260 id: LANG_WEEKDAY_TUESDAY
4291 desc: in onplay menu. insert a track/playlist into dynamic playlist. 4261 desc: Maximum 3-letter abbreviation for weekday
4292 user: 4262 user:
4293 <source> 4263 <source>
4294 *: "Insert next" 4264 *: none
4265 rtc: "Tue"
4295 </source> 4266 </source>
4296 <dest> 4267 <dest>
4297 *: "Insert next" 4268 *: none
4269 rtc: "Tue"
4298 </dest> 4270 </dest>
4299 <voice> 4271 <voice>
4300 *: "Insert next" 4272 *: none
4273 rtc: ""
4301 </voice> 4274 </voice>
4302</phrase> 4275</phrase>
4303<phrase> 4276<phrase>
4304 id: LANG_INSERT_LAST 4277 id: LANG_WEEKDAY_WEDNESDAY
4305 desc: in onplay menu. append a track/playlist into dynamic playlist. 4278 desc: Maximum 3-letter abbreviation for weekday
4306 user: 4279 user:
4307 <source> 4280 <source>
4308 *: "Insert last" 4281 *: none
4282 rtc: "Wed"
4309 </source> 4283 </source>
4310 <dest> 4284 <dest>
4311 *: "Insert last" 4285 *: none
4286 rtc: "Wed"
4312 </dest> 4287 </dest>
4313 <voice> 4288 <voice>
4314 *: "Insert last" 4289 *: none
4290 rtc: ""
4315 </voice> 4291 </voice>
4316</phrase> 4292</phrase>
4317<phrase> 4293<phrase>
4318 id: LANG_INSERT_SHUFFLED 4294 id: LANG_WEEKDAY_THURSDAY
4319 desc: in onplay menu. insert a track/playlist randomly into dynamic playlist 4295 desc: Maximum 3-letter abbreviation for weekday
4320 user: 4296 user:
4321 <source> 4297 <source>
4322 *: "Insert shuffled" 4298 *: none
4299 rtc: "Thu"
4323 </source> 4300 </source>
4324 <dest> 4301 <dest>
4325 *: "Insert shuffled" 4302 *: none
4303 rtc: "Thu"
4326 </dest> 4304 </dest>
4327 <voice> 4305 <voice>
4328 *: "Insert shuffled" 4306 *: none
4307 rtc: ""
4329 </voice> 4308 </voice>
4330</phrase> 4309</phrase>
4331<phrase> 4310<phrase>
4332 id: LANG_QUEUE 4311 id: LANG_WEEKDAY_FRIDAY
4333 desc: The verb/action Queue 4312 desc: Maximum 3-letter abbreviation for weekday
4334 user: 4313 user:
4335 <source> 4314 <source>
4336 *: "Queue" 4315 *: none
4316 rtc: "Fri"
4337 </source> 4317 </source>
4338 <dest> 4318 <dest>
4339 *: "Queue" 4319 *: none
4320 rtc: "Fri"
4340 </dest> 4321 </dest>
4341 <voice> 4322 <voice>
4342 *: "Queue" 4323 *: none
4324 rtc: ""
4343 </voice> 4325 </voice>
4344</phrase> 4326</phrase>
4345<phrase> 4327<phrase>
4346 id: LANG_QUEUE_FIRST 4328 id: LANG_WEEKDAY_SATURDAY
4347 desc: in onplay menu. queue a track/playlist into dynamic playlist. 4329 desc: Maximum 3-letter abbreviation for weekday
4348 user: 4330 user:
4349 <source> 4331 <source>
4350 *: "Queue next" 4332 *: none
4333 rtc: "Sat"
4351 </source> 4334 </source>
4352 <dest> 4335 <dest>
4353 *: "Queue next" 4336 *: none
4337 rtc: "Sat"
4354 </dest> 4338 </dest>
4355 <voice> 4339 <voice>
4356 *: "Queue next" 4340 *: none
4341 rtc: ""
4357 </voice> 4342 </voice>
4358</phrase> 4343</phrase>
4359<phrase> 4344<phrase>
4360 id: LANG_QUEUE_LAST 4345 id: LANG_MONTH_JANUARY
4361 desc: in onplay menu. queue a track/playlist at end of playlist. 4346 desc: Maximum 3-letter abbreviation for monthname
4362 user: 4347 user:
4363 <source> 4348 <source>
4364 *: "Queue last" 4349 *: none
4350 rtc: "Jan"
4365 </source> 4351 </source>
4366 <dest> 4352 <dest>
4367 *: "Queue last" 4353 *: none
4354 rtc: "Jan"
4368 </dest> 4355 </dest>
4369 <voice> 4356 <voice>
4370 *: "Queue last" 4357 *: none
4358 rtc: "January"
4371 </voice> 4359 </voice>
4372</phrase> 4360</phrase>
4373<phrase> 4361<phrase>
4374 id: LANG_QUEUE_SHUFFLED 4362 id: LANG_MONTH_FEBRUARY
4375 desc: in onplay menu. queue a track/playlist randomly into dynamic playlist 4363 desc: Maximum 3-letter abbreviation for monthname
4376 user: 4364 user:
4377 <source> 4365 <source>
4378 *: "Queue shuffled" 4366 *: none
4367 rtc: "Feb"
4379 </source> 4368 </source>
4380 <dest> 4369 <dest>
4381 *: "Queue shuffled" 4370 *: none
4371 rtc: "Feb"
4382 </dest> 4372 </dest>
4383 <voice> 4373 <voice>
4384 *: "Queue shuffled" 4374 *: none
4375 rtc: "February"
4385 </voice> 4376 </voice>
4386</phrase> 4377</phrase>
4387<phrase> 4378<phrase>
4388 id: LANG_SEARCH_IN_PLAYLIST 4379 id: LANG_MONTH_MARCH
4389 desc: in playlist menu. 4380 desc: Maximum 3-letter abbreviation for monthname
4390 user: 4381 user:
4391 <source> 4382 <source>
4392 *: "Search In Playlist" 4383 *: none
4384 rtc: "Mar"
4393 </source> 4385 </source>
4394 <dest> 4386 <dest>
4395 *: "Search In Playlist" 4387 *: none
4388 rtc: "Mar"
4396 </dest> 4389 </dest>
4397 <voice> 4390 <voice>
4398 *: "Search In Playlist" 4391 *: none
4392 rtc: "March"
4399 </voice> 4393 </voice>
4400</phrase> 4394</phrase>
4401<phrase> 4395<phrase>
4402 id: LANG_PLAYLIST_SEARCH_MSG 4396 id: LANG_MONTH_APRIL
4403 desc: splash number of tracks inserted 4397 desc: Maximum 3-letter abbreviation for monthname
4404 user: 4398 user:
4405 <source> 4399 <source>
4406 *: "Searching... %d found (%s)" 4400 *: none
4401 rtc: "Apr"
4407 </source> 4402 </source>
4408 <dest> 4403 <dest>
4409 *: "Searching... %d found (%s)" 4404 *: none
4405 rtc: "Apr"
4410 </dest> 4406 </dest>
4411 <voice> 4407 <voice>
4412 *: "" 4408 *: none
4409 rtc: "April"
4413 </voice> 4410 </voice>
4414</phrase> 4411</phrase>
4415<phrase> 4412<phrase>
4416 id: LANG_BOOKMARK_MENU_CREATE 4413 id: LANG_MONTH_MAY
4417 desc: Used off of the bookmark menu to create a bookmark 4414 desc: Maximum 3-letter abbreviation for monthname
4418 user: 4415 user:
4419 <source> 4416 <source>
4420 *: "Create Bookmark" 4417 *: none
4418 rtc: "May"
4421 </source> 4419 </source>
4422 <dest> 4420 <dest>
4423 *: "Create Bookmark" 4421 *: none
4422 rtc: "May"
4424 </dest> 4423 </dest>
4425 <voice> 4424 <voice>
4426 *: "Create Bookmark" 4425 *: none
4426 rtc: "May"
4427 </voice> 4427 </voice>
4428</phrase> 4428</phrase>
4429<phrase> 4429<phrase>
4430 id: LANG_BOOKMARK_MENU_LIST 4430 id: LANG_MONTH_JUNE
4431 desc: Used off of the bookmark menu to list available bookmarks for the currently playing directory or M3U 4431 desc: Maximum 3-letter abbreviation for monthname
4432 user: 4432 user:
4433 <source> 4433 <source>
4434 *: "List Bookmarks" 4434 *: none
4435 rtc: "Jun"
4435 </source> 4436 </source>
4436 <dest> 4437 <dest>
4437 *: "List Bookmarks" 4438 *: none
4439 rtc: "Jun"
4438 </dest> 4440 </dest>
4439 <voice> 4441 <voice>
4440 *: "List Bookmarks" 4442 *: none
4443 rtc: "June"
4441 </voice> 4444 </voice>
4442</phrase> 4445</phrase>
4443<phrase> 4446<phrase>
4444 id: LANG_ROCKBOX_INFO 4447 id: LANG_MONTH_JULY
4445 desc: displayed topmost on the info screen 4448 desc: Maximum 3-letter abbreviation for monthname
4446 user: 4449 user:
4447 <source> 4450 <source>
4448 *: "Rockbox Info:" 4451 *: none
4452 rtc: "Jul"
4449 </source> 4453 </source>
4450 <dest> 4454 <dest>
4451 *: "Rockbox Info:" 4455 *: none
4456 rtc: "Jul"
4452 </dest> 4457 </dest>
4453 <voice> 4458 <voice>
4454 *: "" 4459 *: none
4460 rtc: "July"
4455 </voice> 4461 </voice>
4456</phrase> 4462</phrase>
4457<phrase> 4463<phrase>
4458 id: LANG_BUFFER_STAT_PLAYER 4464 id: LANG_MONTH_AUGUST
4459 desc: the buffer size player-screen width, %d MB %d fraction of MB 4465 desc: Maximum 3-letter abbreviation for monthname
4460 user: 4466 user:
4461 <source> 4467 <source>
4462 *: "Buf: %d.%03dMB" 4468 *: none
4469 rtc: "Aug"
4463 </source> 4470 </source>
4464 <dest> 4471 <dest>
4465 *: "Buf: %d.%03dMB" 4472 *: none
4473 rtc: "Aug"
4466 </dest> 4474 </dest>
4467 <voice> 4475 <voice>
4468 *: "" 4476 *: none
4477 rtc: "August"
4469 </voice> 4478 </voice>
4470</phrase> 4479</phrase>
4471<phrase> 4480<phrase>
4472 id: LANG_BUFFER_STAT_RECORDER 4481 id: LANG_MONTH_SEPTEMBER
4473 desc: the buffer size recorder-screen width, %d MB %d fraction of MB 4482 desc: Maximum 3-letter abbreviation for monthname
4474 user: 4483 user:
4475 <source> 4484 <source>
4476 *: "Buffer: %d.%03dMB" 4485 *: none
4486 rtc: "Sep"
4477 </source> 4487 </source>
4478 <dest> 4488 <dest>
4479 *: "Buffer: %d.%03dMB" 4489 *: none
4490 rtc: "Sep"
4480 </dest> 4491 </dest>
4481 <voice> 4492 <voice>
4482 *: "" 4493 *: none
4494 rtc: "September"
4483 </voice> 4495 </voice>
4484</phrase> 4496</phrase>
4485<phrase> 4497<phrase>
4486 id: LANG_BATTERY_CHARGE 4498 id: LANG_MONTH_OCTOBER
4487 desc: tells that the battery is charging, instead of battery level 4499 desc: Maximum 3-letter abbreviation for monthname
4488 user: 4500 user:
4489 <source> 4501 <source>
4490 *: "Battery: Charging" 4502 *: none
4503 rtc: "Oct"
4491 </source> 4504 </source>
4492 <dest> 4505 <dest>
4493 *: "Battery: Charging" 4506 *: none
4507 rtc: "Oct"
4494 </dest> 4508 </dest>
4495 <voice> 4509 <voice>
4496 *: "Charging" 4510 *: none
4511 rtc: "October"
4497 </voice> 4512 </voice>
4498</phrase> 4513</phrase>
4499<phrase> 4514<phrase>
4500 id: LANG_BATTERY_TOPOFF_CHARGE 4515 id: LANG_MONTH_NOVEMBER
4501 desc: in info display, shows that top off charge is running 4516 desc: Maximum 3-letter abbreviation for monthname
4502 user: 4517 user:
4503 <source> 4518 <source>
4504 *: "Battery: Top-Off Chg" 4519 *: none
4520 rtc: "Nov"
4505 </source> 4521 </source>
4506 <dest> 4522 <dest>
4507 *: "Battery: Top-Off Chg" 4523 *: none
4524 rtc: "Nov"
4508 </dest> 4525 </dest>
4509 <voice> 4526 <voice>
4510 *: "Top off charge" 4527 *: none
4528 rtc: "November"
4511 </voice> 4529 </voice>
4512</phrase> 4530</phrase>
4513<phrase> 4531<phrase>
4514 id: LANG_BATTERY_TRICKLE_CHARGE 4532 id: LANG_MONTH_DECEMBER
4515 desc: in info display, shows that trickle charge is running 4533 desc: Maximum 3-letter abbreviation for monthname
4516 user: 4534 user:
4517 <source> 4535 <source>
4518 *: "Battery: Trickle Chg" 4536 *: none
4537 rtc: "Dec"
4519 </source> 4538 </source>
4520 <dest> 4539 <dest>
4521 *: "Battery: Trickle Chg" 4540 *: none
4541 rtc: "Dec"
4522 </dest> 4542 </dest>
4523 <voice> 4543 <voice>
4524 *: "Trickle charge" 4544 *: none
4545 rtc: "December"
4525 </voice> 4546 </voice>
4526</phrase> 4547</phrase>
4527<phrase> 4548<phrase>
4528 id: LANG_BATTERY_TIME 4549 id: LANG_POWEROFF_IDLE
4529 desc: battery level in % and estimated time remaining 4550 desc: in settings_menu
4530 user: 4551 user:
4531 <source> 4552 <source>
4532 *: "Battery: %d%% %dh %dm" 4553 *: "Idle Poweroff"
4533 player,recorder,fmrecorder,recorderv2,ondiosp,ondiofm,ifp7xx: "%d%% %dh %dm"
4534 h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
4535 </source> 4554 </source>
4536 <dest> 4555 <dest>
4537 *: "Battery: %d%% %dh %dm" 4556 *: "Idle Poweroff"
4538 player,recorder,fmrecorder,recorderv2,ondiosp,ondiofm,ifp7xx: "%d%% %dh %dm"
4539 h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
4540 </dest> 4557 </dest>
4541 <voice> 4558 <voice>
4542 *: "Battery level" 4559 *: "Idle Poweroff"
4543 </voice> 4560 </voice>
4544</phrase> 4561</phrase>
4545<phrase> 4562<phrase>
4546 id: LANG_DISK_SIZE_INFO 4563 id: LANG_SLEEP_TIMER
4547 desc: disk size info 4564 desc: sleep timer setting
4548 user: 4565 user:
4549 <source> 4566 <source>
4550 *: "Disk:" 4567 *: "Sleep Timer"
4551 </source> 4568 </source>
4552 <dest> 4569 <dest>
4553 *: "Disk:" 4570 *: "Sleep Timer"
4554 </dest> 4571 </dest>
4555 <voice> 4572 <voice>
4556 *: "" 4573 *: "Sleep Timer"
4557 </voice> 4574 </voice>
4558</phrase> 4575</phrase>
4559<phrase> 4576<phrase>
4560 id: LANG_DISK_FREE_INFO 4577 id: LANG_LIMITS_MENU
4561 desc: disk size info 4578 desc: in the system sub menu
4562 user: 4579 user:
4563 <source> 4580 <source>
4564 *: "Free:" 4581 *: "Limits"
4565 </source> 4582 </source>
4566 <dest> 4583 <dest>
4567 *: "Free:" 4584 *: "Limits"
4568 </dest> 4585 </dest>
4569 <voice> 4586 <voice>
4570 *: "Free diskspace:" 4587 *: "Limits"
4571 </voice> 4588 </voice>
4572</phrase> 4589</phrase>
4573<phrase> 4590<phrase>
4574 id: LANG_DISK_NAME_INTERNAL 4591 id: LANG_MAX_FILES_IN_DIR
4575 desc: in info menu; name for internal disk with multivolume (keep short!) 4592 desc: in settings_menu
4576 user: 4593 user:
4577 <source> 4594 <source>
4578 *: "Int:" 4595 *: "Max Files in Dir Browser"
4579 </source> 4596 </source>
4580 <dest> 4597 <dest>
4581 *: "Int:" 4598 *: "Max Files in Dir Browser"
4582 </dest> 4599 </dest>
4583 <voice> 4600 <voice>
4584 *: "Internal" 4601 *: "Maximum files in directory browser"
4585 </voice> 4602 </voice>
4586</phrase> 4603</phrase>
4587<phrase> 4604<phrase>
4588 id: LANG_DISK_NAME_MMC 4605 id: LANG_MAX_FILES_IN_PLAYLIST
4589 desc: in info menu; name for external disk with multivolume (Ondio; keep short!) 4606 desc: in settings_menu
4590 user: 4607 user:
4591 <source> 4608 <source>
4592 *: "MMC:" 4609 *: "Max Playlist Size"
4593 </source> 4610 </source>
4594 <dest> 4611 <dest>
4595 *: "MMC:" 4612 *: "Max Playlist Size"
4596 </dest> 4613 </dest>
4597 <voice> 4614 <voice>
4598 *: "Multimedia card" 4615 *: "Maximum playlist size"
4599 </voice> 4616 </voice>
4600</phrase> 4617</phrase>
4601<phrase> 4618<phrase>
4602 id: VOICE_CURRENT_TIME 4619 id: LANG_CAR_ADAPTER_MODE
4603 desc: spoken only, for wall clock announce 4620 desc: Displayed for setting car adapter mode to on/off
4604 user: 4621 user:
4605 <source> 4622 <source>
4606 *: "" 4623 *: none
4624 charging: "Car Adapter Mode"
4607 </source> 4625 </source>
4608 <dest> 4626 <dest>
4609 *: "" 4627 *: none
4628 charging: "Car Adapter Mode"
4610 </dest> 4629 </dest>
4611 <voice> 4630 <voice>
4612 *: "Current time:" 4631 *: none
4632 charging: "Car Adapter Mode"
4613 </voice> 4633 </voice>
4614</phrase> 4634</phrase>
4615<phrase> 4635<phrase>
4616 id: LANG_PITCH_UP 4636 id: LANG_ALARM_MOD_ALARM_MENU
4617 desc: in wps 4637 desc: The name of the additional entry in the main menu for the RTC alarm mod.
4618 user: 4638 user:
4619 <source> 4639 <source>
4620 *: "Pitch Up" 4640 *: none
4641 alarm: "Wake-Up Alarm"
4621 </source> 4642 </source>
4622 <dest> 4643 <dest>
4623 *: "Pitch Up" 4644 *: none
4645 alarm: "Wake-Up Alarm"
4624 </dest> 4646 </dest>
4625 <voice> 4647 <voice>
4626 *: "" 4648 *: none
4649 alarm: "Wake-Up Alarm"
4627 </voice> 4650 </voice>
4628</phrase> 4651</phrase>
4629<phrase> 4652<phrase>
4630 id: LANG_PITCH_DOWN 4653 id: LANG_ALARM_WAKEUP_SCREEN
4631 desc: in wps 4654 desc: in alarm menu setting
4632 user: 4655 user:
4633 <source> 4656 <source>
4634 *: "Pitch Down" 4657 *: none
4658 alarm: "Alarm Wake up Screen"
4635 </source> 4659 </source>
4636 <dest> 4660 <dest>
4637 *: "Pitch Down" 4661 *: none
4662 alarm: "Alarm Wake up Screen"
4638 </dest> 4663 </dest>
4639 <voice> 4664 <voice>
4640 *: "" 4665 *: none
4666 alarm: "Alarm Wake up Screen"
4641 </voice> 4667 </voice>
4642</phrase> 4668</phrase>
4643<phrase> 4669<phrase>
4644 id: LANG_PAUSE 4670 id: LANG_ALARM_MOD_TIME
4645 desc: in wps 4671 desc: The current alarm time shown in the alarm menu for the RTC alarm mod.
4646 user: 4672 user:
4647 <source> 4673 <source>
4648 *: "Pause" 4674 *: none
4675 alarm: "Alarm Time: %02d:%02d"
4649 </source> 4676 </source>
4650 <dest> 4677 <dest>
4651 *: "Pause" 4678 *: none
4679 alarm: "Alarm Time: %02d:%02d"
4652 </dest> 4680 </dest>
4653 <voice> 4681 <voice>
4654 *: "" 4682 *: none
4683 alarm: ""
4655 </voice> 4684 </voice>
4656</phrase> 4685</phrase>
4657<phrase> 4686<phrase>
4658 id: LANG_F2_MODE 4687 id: LANG_ALARM_MOD_TIME_TO_GO
4659 desc: in wps F2 pressed 4688 desc: The time until the alarm will go off shown in the alarm menu for the RTC alarm mod.
4660 user: 4689 user:
4661 <source> 4690 <source>
4662 *: "Mode:" 4691 *: none
4692 alarm: "Waking Up In %d:%02d"
4663 </source> 4693 </source>
4664 <dest> 4694 <dest>
4665 *: "Mode:" 4695 *: none
4696 alarm: "Waking Up In %d:%02d"
4666 </dest> 4697 </dest>
4667 <voice> 4698 <voice>
4668 *: "" 4699 *: none
4700 alarm: ""
4669 </voice> 4701 </voice>
4670</phrase> 4702</phrase>
4671<phrase> 4703<phrase>
4672 id: LANG_F3_STATUS 4704 id: LANG_ALARM_MOD_SHUTDOWN
4673 desc: in wps F3 pressed 4705 desc: The text that tells the user that the alarm time is ok and the device shuts off (for the RTC alarm mod).
4674 user: 4706 user:
4675 <source> 4707 <source>
4676 *: "Status" 4708 *: none
4709 alarm: "Alarm Set"
4677 </source> 4710 </source>
4678 <dest> 4711 <dest>
4679 *: "Status" 4712 *: none
4713 alarm: "Alarm Set"
4680 </dest> 4714 </dest>
4681 <voice> 4715 <voice>
4682 *: "" 4716 *: none
4717 alarm: ""
4683 </voice> 4718 </voice>
4684</phrase> 4719</phrase>
4685<phrase> 4720<phrase>
4686 id: LANG_F3_SCROLL 4721 id: LANG_ALARM_MOD_ERROR
4687 desc: in wps F3 pressed 4722 desc: The text that tells that the time is incorrect (for the RTC alarm mod).
4688 user: 4723 user:
4689 <source> 4724 <source>
4690 *: "Scroll" 4725 *: none
4726 alarm: "Alarm Time Is Too Soon!"
4691 </source> 4727 </source>
4692 <dest> 4728 <dest>
4693 *: "Scroll" 4729 *: none
4730 alarm: "Alarm Time Is Too Soon!"
4694 </dest> 4731 </dest>
4695 <voice> 4732 <voice>
4696 *: "" 4733 *: none
4734 alarm: ""
4697 </voice> 4735 </voice>
4698</phrase> 4736</phrase>
4699<phrase> 4737<phrase>
4700 id: LANG_F3_BAR 4738 id: LANG_ALARM_MOD_KEYS
4701 desc: in wps F3 pressed 4739 desc: Shown key functions in alarm menu (for the RTC alarm mod).
4702 user: 4740 user:
4703 <source> 4741 <source>
4704 *: "Bar" 4742 *: none
4743 alarm: "PLAY=Set OFF=Cancel"
4744 ipod*: "SELECT=Set MENU=Cancel"
4705 </source> 4745 </source>
4706 <dest> 4746 <dest>
4707 *: "Bar" 4747 *: none
4748 alarm: "PLAY=Set OFF=Cancel"
4749 ipod*: "SELECT=Set MENU=Cancel"
4708 </dest> 4750 </dest>
4709 <voice> 4751 <voice>
4710 *: "" 4752 *: none
4753 alarm,ipod*: ""
4711 </voice> 4754 </voice>
4712</phrase> 4755</phrase>
4713<phrase> 4756<phrase>
4714 id: LANG_BOOKMARK_SELECT_LIST_BOOKMARKS 4757 id: LANG_ALARM_MOD_DISABLE
4715 desc: DEPRECATED 4758 desc: Announce that the RTC alarm has been turned off
4716 user: 4759 user:
4717 <source> 4760 <source>
4718 *: "" 4761 *: none
4762 alarm: "Alarm Disabled"
4719 </source> 4763 </source>
4720 <dest> 4764 <dest>
4721 *: deprecated 4765 *: none
4766 alarm: "Alarm Disabled"
4722 </dest> 4767 </dest>
4723 <voice> 4768 <voice>
4724 *: "" 4769 *: none
4770 alarm: ""
4725 </voice> 4771 </voice>
4726</phrase> 4772</phrase>
4727<phrase> 4773<phrase>
4728 id: LANG_BOOKMARK_SELECT_EXIT 4774 id: LANG_BOOKMARK_SETTINGS
4729 desc: DEPRECATED 4775 desc: in general settings
4730 user: 4776 user:
4731 <source> 4777 <source>
4732 *: "" 4778 *: "Bookmarking"
4733 </source> 4779 </source>
4734 <dest> 4780 <dest>
4735 *: deprecated 4781 *: "Bookmarking"
4736 </dest> 4782 </dest>
4737 <voice> 4783 <voice>
4738 *: "" 4784 *: "Bookmarking"
4739 </voice> 4785 </voice>
4740</phrase> 4786</phrase>
4741<phrase> 4787<phrase>
4742 id: LANG_BOOKMARK_SELECT_BOOKMARK_TEXT 4788 id: LANG_BOOKMARK_SETTINGS_AUTOCREATE
4743 desc: DEPRECATED 4789 desc: prompt for user to decide to create an bookmark
4744 user: 4790 user:
4745 <source> 4791 <source>
4746 *: "" 4792 *: "Bookmark on Stop"
4747 </source> 4793 </source>
4748 <dest> 4794 <dest>
4749 *: deprecated 4795 *: "Bookmark on Stop"
4750 </dest> 4796 </dest>
4751 <voice> 4797 <voice>
4752 *: "" 4798 *: "Bookmark on Stop"
4753 </voice> 4799 </voice>
4754</phrase> 4800</phrase>
4755<phrase> 4801<phrase>
4756 id: LANG_BOOKMARK_SELECT_INDEX_TEXT 4802 id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_YES
4757 desc: DEPRECATED 4803 desc: Save in recent bookmarks only
4758 user: 4804 user:
4759 <source> 4805 <source>
4760 *: "" 4806 *: "Yes - Recent only"
4761 </source> 4807 </source>
4762 <dest> 4808 <dest>
4763 *: deprecated 4809 *: "Yes - Recent only"
4764 </dest> 4810 </dest>
4765 <voice> 4811 <voice>
4766 *: "" 4812 *: "Yes - Recent only"
4767 </voice> 4813 </voice>
4768</phrase> 4814</phrase>
4769<phrase> 4815<phrase>
4770 id: LANG_BOOKMARK_SELECT_TIME_TEXT 4816 id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_ASK
4771 desc: DEPRECATED 4817 desc: Save in recent bookmarks only
4772 user: 4818 user:
4773 <source> 4819 <source>
4774 *: "" 4820 *: "Ask - Recent only"
4775 </source> 4821 </source>
4776 <dest> 4822 <dest>
4777 *: deprecated 4823 *: "Ask - Recent only"
4778 </dest> 4824 </dest>
4779 <voice> 4825 <voice>
4780 *: "" 4826 *: "Ask - Recent only"
4781 </voice> 4827 </voice>
4782</phrase> 4828</phrase>
4783<phrase> 4829<phrase>
4784 id: LANG_BOOKMARK_SELECT_PLAY 4830 id: LANG_BOOKMARK_SETTINGS_AUTOLOAD
4785 desc: DEPRECATED 4831 desc: prompt for user to decide to create a bookmark
4786 user: 4832 user:
4787 <source> 4833 <source>
4788 *: "" 4834 *: "Load Last Bookmark"
4789 </source> 4835 </source>
4790 <dest> 4836 <dest>
4791 *: deprecated 4837 *: "Load Last Bookmark"
4792 </dest> 4838 </dest>
4793 <voice> 4839 <voice>
4794 *: "" 4840 *: "Load Last Bookmark"
4795 </voice> 4841 </voice>
4796</phrase> 4842</phrase>
4797<phrase> 4843<phrase>
4798 id: LANG_BOOKMARK_SELECT_DELETE 4844 id: LANG_BOOKMARK_SETTINGS_MAINTAIN_RECENT_BOOKMARKS
4799 desc: DEPRECATED 4845 desc: Configuration option to maintain a list of recent bookmarks
4800 user: 4846 user:
4801 <source> 4847 <source>
4802 *: "" 4848 *: "Maintain a List of Recent Bookmarks?"
4803 </source> 4849 </source>
4804 <dest> 4850 <dest>
4805 *: deprecated 4851 *: "Maintain a List of Recent Bookmarks?"
4806 </dest> 4852 </dest>
4807 <voice> 4853 <voice>
4808 *: "" 4854 *: "Maintain a List of Recent Bookmarks?"
4809 </voice> 4855 </voice>
4810</phrase> 4856</phrase>
4811<phrase> 4857<phrase>
4812 id: LANG_BOOKMARK_AUTOLOAD_QUERY 4858 id: LANG_BOOKMARK_SETTINGS_UNIQUE_ONLY
4813 desc: DEPRECATED 4859 desc: Save only on bookmark for each playlist in recent bookmarks
4814 user: 4860 user:
4815 <source> 4861 <source>
4816 *: "" 4862 *: "Unique only"
4817 </source> 4863 </source>
4818 <dest> 4864 <dest>
4819 *: deprecated 4865 *: "Unique only"
4820 </dest> 4866 </dest>
4821 <voice> 4867 <voice>
4822 *: "" 4868 *: "Unique only"
4823 </voice> 4869 </voice>
4824</phrase> 4870</phrase>
4825<phrase> 4871<phrase>
4826 id: LANG_AUTO_BOOKMARK_QUERY 4872 id: LANG_LANGUAGE
4827 desc: prompt for user to decide to create an bookmark 4873 desc: in settings_menu
4828 user: 4874 user:
4829 <source> 4875 <source>
4830 *: "Create a Bookmark?" 4876 *: "Language"
4831 </source> 4877 </source>
4832 <dest> 4878 <dest>
4833 *: "Create a Bookmark?" 4879 *: "Language"
4834 </dest> 4880 </dest>
4835 <voice> 4881 <voice>
4836 *: "" 4882 *: "Language"
4837 </voice> 4883 </voice>
4838</phrase> 4884</phrase>
4839<phrase> 4885<phrase>
4840 id: LANG_BOOKMARK_CREATE_SUCCESS 4886 id: LANG_LANGUAGE_LOADED
4841 desc: Indicates bookmark was successfully created 4887 desc: shown when a language has been loaded from the dir browser
4842 user: 4888 user:
4843 <source> 4889 <source>
4844 *: "Bookmark Created" 4890 *: "New Language"
4845 </source> 4891 </source>
4846 <dest> 4892 <dest>
4847 *: "Bookmark Created" 4893 *: "New Language"
4848 </dest> 4894 </dest>
4849 <voice> 4895 <voice>
4850 *: "" 4896 *: ""
4851 </voice> 4897 </voice>
4852</phrase> 4898</phrase>
4853<phrase> 4899<phrase>
4854 id: LANG_BOOKMARK_CREATE_FAILURE 4900 id: LANG_VOICE
4855 desc: Indicates bookmark was not created 4901 desc: root of voice menu
4856 user: 4902 user:
4857 <source> 4903 <source>
4858 *: "Bookmark Failed!" 4904 *: "Voice"
4859 </source> 4905 </source>
4860 <dest> 4906 <dest>
4861 *: "Bookmark Failed!" 4907 *: "Voice"
4862 </dest> 4908 </dest>
4863 <voice> 4909 <voice>
4864 *: "" 4910 *: "Voice"
4865 </voice> 4911 </voice>
4866</phrase> 4912</phrase>
4867<phrase> 4913<phrase>
4868 id: LANG_BOOKMARK_LOAD_EMPTY 4914 id: LANG_VOICE_MENU
4869 desc: Indicates bookmark was empty 4915 desc: item of voice menu, enable/disable the voice UI
4870 user: 4916 user:
4871 <source> 4917 <source>
4872 *: "Bookmark Empty" 4918 *: "Voice Menus"
4873 </source> 4919 </source>
4874 <dest> 4920 <dest>
4875 *: "Bookmark Empty" 4921 *: "Voice Menus"
4876 </dest> 4922 </dest>
4877 <voice> 4923 <voice>
4878 *: "" 4924 *: "Voice Menus"
4879 </voice> 4925 </voice>
4880</phrase> 4926</phrase>
4881<phrase> 4927<phrase>
4882 id: LANG_TIME_SET 4928 id: LANG_VOICE_DIR
4883 desc: used in set_time() 4929 desc: item of voice menu, set the voice mode for directories
4884 user: 4930 user:
4885 <source> 4931 <source>
4886 *: "ON = Set" 4932 *: "Voice Directories"
4887 h100,h120,h300: "NAVI = Set"
4888 ipod*: "SELECT = Set"
4889 x5: "SELECT = Set"
4890 h10,h10_5gb: "SELECT = Set"
4891 gigabeatf: "SELECT = Set"
4892 e200: "SELECT = Set"
4893 </source> 4933 </source>
4894 <dest> 4934 <dest>
4895 *: "ON = Set" 4935 *: "Voice Directories"
4896 h100,h120,h300: "NAVI = Set"
4897 ipod*: "SELECT = Set"
4898 x5: "SELECT = Set"
4899 h10,h10_5gb: "SELECT = Set"
4900 gigabeatf: "SELECT = Set"
4901 e200: "SELECT = Set"
4902 </dest> 4936 </dest>
4903 <voice> 4937 <voice>
4904 *: "" 4938 *: "Voice Directories"
4905 </voice> 4939 </voice>
4906</phrase> 4940</phrase>
4907<phrase> 4941<phrase>
4908 id: LANG_TIME_REVERT 4942 id: LANG_VOICE_DIR_TALK
4909 desc: used in set_time() 4943 desc: Item of voice menu, whether to use directory .talk clips
4910 user: 4944 user:
4911 <source> 4945 <source>
4912 *: "OFF = Revert" 4946 *: "Use Directory .talk Clips"
4913 h100,h120,h300: "STOP = Revert"
4914 ipod*,e200: "MENU = Revert"
4915 x5: "RECORD = Revert"
4916 h10,h10_5gb: "PREV = Revert"
4917 gigabeatf: "POWER = Revert"
4918 </source> 4947 </source>
4919 <dest> 4948 <dest>
4920 *: "OFF = Revert" 4949 *: "Use Directory .talk Clips"
4921 h100,h120,h300: "STOP = Revert"
4922 ipod*,e200: "MENU = Revert"
4923 x5: "RECORD = Revert"
4924 h10,h10_5gb: "PREV = Revert"
4925 gigabeatf: "POWER = Revert"
4926 </dest> 4950 </dest>
4927 <voice> 4951 <voice>
4928 *: "" 4952 *: "Use Directory .talk Clips"
4929 </voice> 4953 </voice>
4930</phrase> 4954</phrase>
4931<phrase> 4955<phrase>
4932 id: LANG_KEYLOCK_ON_PLAYER 4956 id: LANG_VOICE_FILE
4933 desc: displayed when key lock is on 4957 desc: item of voice menu, set the voice mode for files
4934 user: 4958 user:
4935 <source> 4959 <source>
4936 *: "Key Lock ON" 4960 *: "Voice Filenames"
4937 </source> 4961 </source>
4938 <dest> 4962 <dest>
4939 *: "Key Lock ON" 4963 *: "Voice Filenames"
4940 </dest> 4964 </dest>
4941 <voice> 4965 <voice>
4942 *: "" 4966 *: "Voice Filenames"
4943 </voice> 4967 </voice>
4944</phrase> 4968</phrase>
4945<phrase> 4969<phrase>
4946 id: LANG_KEYLOCK_OFF_PLAYER 4970 id: LANG_VOICE_FILE_TALK
4947 desc: displayed when key lock is turned off 4971 desc: Item of voice menu, whether to use file .talk clips
4948 user: 4972 user:
4949 <source> 4973 <source>
4950 *: "Key Lock OFF" 4974 *: "Use File .talk Clips"
4951 </source> 4975 </source>
4952 <dest> 4976 <dest>
4953 *: "Key Lock OFF" 4977 *: "Use File .talk Clips"
4954 </dest> 4978 </dest>
4955 <voice> 4979 <voice>
4956 *: "" 4980 *: "Use File .talk Clips"
4957 </voice> 4981 </voice>
4958</phrase> 4982</phrase>
4959<phrase> 4983<phrase>
4960 id: LANG_KEYLOCK_ON_RECORDER 4984 id: LANG_VOICE_NUMBER
4961 desc: displayed when key lock is on 4985 desc: "talkbox" mode for files+directories
4962 user: 4986 user:
4963 <source> 4987 <source>
4964 *: "Keylock is ON" 4988 *: "Numbers"
4965 </source> 4989 </source>
4966 <dest> 4990 <dest>
4967 *: "Keylock is ON" 4991 *: "Numbers"
4968 </dest> 4992 </dest>
4969 <voice> 4993 <voice>
4970 *: "" 4994 *: "Numbers"
4971 </voice> 4995 </voice>
4972</phrase> 4996</phrase>
4973<phrase> 4997<phrase>
4974 id: LANG_KEYLOCK_OFF_RECORDER 4998 id: LANG_VOICE_SPELL
4975 desc: displayed when key lock is turned off 4999 desc: "talkbox" mode for files+directories
4976 user: 5000 user:
4977 <source> 5001 <source>
4978 *: "Keylock is OFF" 5002 *: "Spell"
4979 </source> 5003 </source>
4980 <dest> 5004 <dest>
4981 *: "Keylock is OFF" 5005 *: "Spell"
4982 </dest> 5006 </dest>
4983 <voice> 5007 <voice>
4984 *: "" 5008 *: "Spell"
4985 </voice> 5009 </voice>
4986</phrase> 5010</phrase>
4987<phrase> 5011<phrase>
4988 id: LANG_RECORDING_TIME 5012 id: LANG_VOICE_DIR_HOVER
4989 desc: Display of recorded time 5013 desc: "talkbox" mode for directories + files
4990 user: 5014 user:
4991 <source> 5015 <source>
4992 *: "Time:" 5016 *: ".talk mp3 clip"
4993 </source> 5017 </source>
4994 <dest> 5018 <dest>
4995 *: "Time:" 5019 *: ".talk mp3 clip"
4996 </dest> 5020 </dest>
4997 <voice> 5021 <voice>
4998 *: "" 5022 *: "talk mp3 clip"
4999 </voice> 5023 </voice>
5000</phrase> 5024</phrase>
5001<phrase> 5025<phrase>
5002 id: LANG_RECORD_TIMESPLIT_REC 5026 id: LANG_MANAGE_MENU
5003 desc: Display of record timer interval setting, on the record screen 5027 desc: in the main menu
5004 user: 5028 user:
5005 <source> 5029 <source>
5006 *: "Split Time:" 5030 *: "Manage Settings"
5007 </source> 5031 </source>
5008 <dest> 5032 <dest>
5009 *: "Split Time:" 5033 *: "Manage Settings"
5010 </dest> 5034 </dest>
5011 <voice> 5035 <voice>
5012 *: "" 5036 *: "Manage Settings"
5013 </voice> 5037 </voice>
5014</phrase> 5038</phrase>
5015<phrase> 5039<phrase>
5016 id: LANG_RECORDING_SIZE 5040 id: LANG_CUSTOM_CFG
5017 desc: Display of recorded file size 5041 desc: in setting_menu()
5018 user: 5042 user:
5019 <source> 5043 <source>
5020 *: "Size:" 5044 *: "Browse .cfg files"
5021 </source> 5045 </source>
5022 <dest> 5046 <dest>
5023 *: "Size:" 5047 *: "Browse .cfg files"
5024 </dest> 5048 </dest>
5025 <voice> 5049 <voice>
5026 *: "" 5050 *: "Browse configuration files"
5027 </voice> 5051 </voice>
5028</phrase> 5052</phrase>
5029<phrase> 5053<phrase>
5030 id: LANG_RECORD_PRERECORD 5054 id: LANG_SETTINGS_LOADED
5031 desc: in recording and radio screen 5055 desc: Feedback shown when a .cfg file is loaded
5032 user: 5056 user:
5033 <source> 5057 <source>
5034 *: "Pre-Recording" 5058 *: "Settings Loaded"
5035 </source> 5059 </source>
5036 <dest> 5060 <dest>
5037 *: "Pre-Recording" 5061 *: "Settings Loaded"
5038 </dest> 5062 </dest>
5039 <voice> 5063 <voice>
5040 *: "" 5064 *: ""
5041 </voice> 5065 </voice>
5042</phrase> 5066</phrase>
5043<phrase> 5067<phrase>
5044 id: LANG_RECORDING_GAIN 5068 id: LANG_RESET
5045 desc: in the recording screen 5069 desc: in system_settings_menu()
5046 user: 5070 user:
5047 <source> 5071 <source>
5048 *: "Gain" 5072 *: "Reset Settings"
5049 </source> 5073 </source>
5050 <dest> 5074 <dest>
5051 *: "Gain" 5075 *: "Reset Settings"
5052 </dest> 5076 </dest>
5053 <voice> 5077 <voice>
5054 *: "" 5078 *: "Reset Settings"
5055 </voice> 5079 </voice>
5056</phrase> 5080</phrase>
5057<phrase> 5081<phrase>
5058 id: LANG_RECORDING_LEFT 5082 id: LANG_RESET_DONE_CLEAR
5059 desc: in the recording screen 5083 desc: visual confirmation after settings reset
5060 user: 5084 user:
5061 <source> 5085 <source>
5062 *: "Gain Left" 5086 *: "Cleared"
5063 </source> 5087 </source>
5064 <dest> 5088 <dest>
5065 *: "Gain Left" 5089 *: "Cleared"
5066 </dest> 5090 </dest>
5067 <voice> 5091 <voice>
5068 *: "" 5092 *: ""
5069 </voice> 5093 </voice>
5070</phrase> 5094</phrase>
5071<phrase> 5095<phrase>
5072 id: LANG_RECORDING_RIGHT 5096 id: LANG_SAVE_SETTINGS
5073 desc: in the recording screen 5097 desc: in system_settings_menu()
5074 user: 5098 user:
5075 <source> 5099 <source>
5076 *: "Gain Right" 5100 *: "Write .cfg file"
5077 </source> 5101 </source>
5078 <dest> 5102 <dest>
5079 *: "Gain Right" 5103 *: "Write .cfg file"
5080 </dest> 5104 </dest>
5081 <voice> 5105 <voice>
5082 *: "" 5106 *: "Write configuration file"
5083 </voice> 5107 </voice>
5084</phrase> 5108</phrase>
5085<phrase> 5109<phrase>
5086 id: LANG_RECORDING_GAIN_ANALOG 5110 id: LANG_SETTINGS_SAVED
5087 desc: in the recording screen 5111 desc: Feedback shown when a .cfg file is saved
5088 user: 5112 user:
5089 <source> 5113 <source>
5090 *: "A" 5114 *: "Settings Saved"
5091 </source> 5115 </source>
5092 <dest> 5116 <dest>
5093 *: "A" 5117 *: "Settings Saved"
5094 </dest> 5118 </dest>
5095 <voice> 5119 <voice>
5096 *: "" 5120 *: ""
5097 </voice> 5121 </voice>
5098</phrase> 5122</phrase>
5099<phrase> 5123<phrase>
5100 id: LANG_RECORDING_GAIN_DIGITAL 5124 id: LANG_SAVE_THEME
5101 desc: in the recording screen 5125 desc: save a theme file
5102 user: 5126 user:
5103 <source> 5127 <source>
5104 *: "D" 5128 *: "Save Theme Settings"
5105 </source> 5129 </source>
5106 <dest> 5130 <dest>
5107 *: "D" 5131 *: "Save Theme Settings"
5108 </dest> 5132 </dest>
5109 <voice> 5133 <voice>
5110 *: "" 5134 *: "Save Theme Settings"
5111 </voice> 5135 </voice>
5112</phrase> 5136</phrase>
5113<phrase> 5137<phrase>
5114 id: LANG_DISK_FULL 5138 id: LANG_CUSTOM_THEME
5115 desc: in recording screen 5139 desc: in the main menu
5116 user: 5140 user:
5117 <source> 5141 <source>
5118 *: "The disk is full. Press OFF to continue." 5142 *: "Browse Themes"
5119 h100,h120,h300: "The disk is full. Press STOP to continue."
5120 </source> 5143 </source>
5121 <dest> 5144 <dest>
5122 *: "The disk is full. Press OFF to continue." 5145 *: "Browse Themes"
5123 h100,h120,h300: "The disk is full. Press STOP to continue."
5124 </dest> 5146 </dest>
5125 <voice> 5147 <voice>
5126 *: "" 5148 *: "Browse Themes"
5127 </voice> 5149 </voice>
5128</phrase> 5150</phrase>
5129<phrase> 5151<phrase>
5130 id: LANG_RECORD_TRIGGER_MODE 5152 id: LANG_RECORDING_SETTINGS
5131 desc: in recording settings_menu 5153 desc: in the main menu
5132 user: 5154 user:
5133 <source> 5155 <source>
5134 *: "Trigger" 5156 *: none
5157 recording: "Recording Settings"
5135 </source> 5158 </source>
5136 <dest> 5159 <dest>
5137 *: "Trigger" 5160 *: none
5161 recording: "Recording Settings"
5138 </dest> 5162 </dest>
5139 <voice> 5163 <voice>
5140 *: "" 5164 *: none
5165 recording: "Recording Settings"
5141 </voice> 5166 </voice>
5142</phrase> 5167</phrase>
5143<phrase> 5168<phrase>
5144 id: LANG_RECORD_TRIG_NOREARM 5169 id: LANG_FM_MENU
5145 desc: in recording settings_menu 5170 desc: fm menu title
5146 user: 5171 user:
5147 <source> 5172 <source>
5148 *: "Once" 5173 *: none
5174 radio: "FM Radio Menu"
5149 </source> 5175 </source>
5150 <dest> 5176 <dest>
5151 *: "Once" 5177 *: none
5178 radio: "FM Radio Menu"
5152 </dest> 5179 </dest>
5153 <voice> 5180 <voice>
5154 *: "" 5181 *: none
5182 radio: "FM Radio Menu"
5155 </voice> 5183 </voice>
5156</phrase> 5184</phrase>
5157<phrase> 5185<phrase>
5158 id: LANG_RECORD_TRIG_REARM 5186 id: LANG_FM_STATION
5159 desc: in recording settings_menu 5187 desc: in radio screen
5160 user: 5188 user:
5161 <source> 5189 <source>
5162 *: "Repeat" 5190 *: none
5191 radio: "Station: %d.%02d MHz"
5163 </source> 5192 </source>
5164 <dest> 5193 <dest>
5165 *: "Repeat" 5194 *: none
5195 radio: "Station: %d.%02d MHz"
5166 </dest> 5196 </dest>
5167 <voice> 5197 <voice>
5168 *: "" 5198 *: none
5199 radio: ""
5169 </voice> 5200 </voice>
5170</phrase> 5201</phrase>
5171<phrase> 5202<phrase>
5172 id: LANG_RECORD_START_THRESHOLD 5203 id: LANG_FM_NO_PRESETS
5173 desc: in recording settings_menu 5204 desc: error when preset list is empty
5174 user: 5205 user:
5175 <source> 5206 <source>
5176 *: "Start Above" 5207 *: none
5208 radio: "No presets"
5177 </source> 5209 </source>
5178 <dest> 5210 <dest>
5179 *: "Start Above" 5211 *: none
5212 radio: "No presets"
5180 </dest> 5213 </dest>
5181 <voice> 5214 <voice>
5182 *: "" 5215 *: none
5216 radio: ""
5183 </voice> 5217 </voice>
5184</phrase> 5218</phrase>
5185<phrase> 5219<phrase>
5186 id: LANG_RECORD_MIN_DURATION 5220 id: LANG_FM_ADD_PRESET
5187 desc: in recording settings_menu 5221 desc: in radio menu
5188 user: 5222 user:
5189 <source> 5223 <source>
5190 *: "for at least" 5224 *: none
5225 radio: "Add Preset"
5191 </source> 5226 </source>
5192 <dest> 5227 <dest>
5193 *: "for at least" 5228 *: none
5229 radio: "Add Preset"
5194 </dest> 5230 </dest>
5195 <voice> 5231 <voice>
5196 *: "" 5232 *: none
5233 radio: "Add Preset"
5197 </voice> 5234 </voice>
5198</phrase> 5235</phrase>
5199<phrase> 5236<phrase>
5200 id: LANG_RECORD_STOP_THRESHOLD 5237 id: LANG_FM_EDIT_PRESET
5201 desc: in recording settings_menu 5238 desc: in radio screen
5202 user: 5239 user:
5203 <source> 5240 <source>
5204 *: "Stop Below" 5241 *: none
5242 radio: "Edit Preset"
5205 </source> 5243 </source>
5206 <dest> 5244 <dest>
5207 *: "Stop Below" 5245 *: none
5246 radio: "Edit Preset"
5208 </dest> 5247 </dest>
5209 <voice> 5248 <voice>
5210 *: "" 5249 *: none
5250 radio: "Edit Preset"
5211 </voice> 5251 </voice>
5212</phrase> 5252</phrase>
5213<phrase> 5253<phrase>
5214 id: LANG_RECORD_STOP_POSTREC 5254 id: LANG_FM_DELETE_PRESET
5215 desc: in recording settings_menu 5255 desc: in radio screen
5216 user: 5256 user:
5217 <source> 5257 <source>
5218 *: "for at least" 5258 *: none
5259 radio: "Remove Preset"
5219 </source> 5260 </source>
5220 <dest> 5261 <dest>
5221 *: "for at least" 5262 *: none
5263 radio: "Remove Preset"
5222 </dest> 5264 </dest>
5223 <voice> 5265 <voice>
5224 *: "" 5266 *: none
5267 radio: "Remove Preset"
5225 </voice> 5268 </voice>
5226</phrase> 5269</phrase>
5227<phrase> 5270<phrase>
5228 id: LANG_RECORD_STOP_GAP 5271 id: LANG_FM_PRESET_SAVE_FAILED
5229 desc: in recording settings_menu 5272 desc: in radio screen
5230 user: 5273 user:
5231 <source> 5274 <source>
5232 *: "Presplit Gap" 5275 *: none
5276 radio: "Preset Save Failed"
5233 </source> 5277 </source>
5234 <dest> 5278 <dest>
5235 *: "Presplit Gap" 5279 *: none
5280 radio: "Preset Save Failed"
5236 </dest> 5281 </dest>
5237 <voice> 5282 <voice>
5238 *: "" 5283 *: none
5284 radio: ""
5239 </voice> 5285 </voice>
5240</phrase> 5286</phrase>
5241<phrase> 5287<phrase>
5242 id: LANG_DB_INF 5288 id: LANG_FM_NO_FREE_PRESETS
5243 desc: -inf db for values below measurement 5289 desc: in radio screen
5244 user: 5290 user:
5245 <source> 5291 <source>
5246 *: "-inf" 5292 *: none
5293 radio: "The Preset List is Full"
5247 </source> 5294 </source>
5248 <dest> 5295 <dest>
5249 *: "-inf" 5296 *: none
5297 radio: "The Preset List is Full"
5250 </dest> 5298 </dest>
5251 <voice> 5299 <voice>
5252 *: "" 5300 *: none
5301 radio: ""
5253 </voice> 5302 </voice>
5254</phrase> 5303</phrase>
5255<phrase> 5304<phrase>
5256 id: LANG_RECORD_TRIG_IDLE 5305 id: LANG_BUTTONBAR_MENU
5257 desc: waiting for threshold 5306 desc: in button bar
5258 user: 5307 user:
5259 <source> 5308 <source>
5260 *: "Trigger Idle" 5309 *: none
5310 radio_screen_button_bar: "Menu"
5261 </source> 5311 </source>
5262 <dest> 5312 <dest>
5263 *: "Trigger Idle" 5313 *: none
5314 radio_screen_button_bar: "Menu"
5264 </dest> 5315 </dest>
5265 <voice> 5316 <voice>
5266 *: "" 5317 *: none
5318 radio_screen_button_bar: ""
5267 </voice> 5319 </voice>
5268</phrase> 5320</phrase>
5269<phrase> 5321<phrase>
5270 id: LANG_RECORD_TRIGGER_ACTIVE 5322 id: LANG_FM_BUTTONBAR_EXIT
5271 desc: 5323 desc: in radio screen
5272 user: 5324 user:
5273 <source> 5325 <source>
5274 *: "Trigger Active" 5326 *: none
5327 radio_screen_button_bar: "Exit"
5275 </source> 5328 </source>
5276 <dest> 5329 <dest>
5277 *: "Trigger Active" 5330 *: none
5331 radio_screen_button_bar: "Exit"
5278 </dest> 5332 </dest>
5279 <voice> 5333 <voice>
5280 *: "" 5334 *: none
5335 radio_screen_button_bar: ""
5281 </voice> 5336 </voice>
5282</phrase> 5337</phrase>
5283<phrase> 5338<phrase>
5284 id: LANG_ALARM_MOD_TIME 5339 id: LANG_FM_BUTTONBAR_ACTION
5285 desc: The current alarm time shown in the alarm menu for the RTC alarm mod. 5340 desc: in radio screen
5286 user: 5341 user:
5287 <source> 5342 <source>
5288 *: "Alarm Time: %02d:%02d" 5343 *: none
5344 radio_screen_button_bar: "Action"
5289 </source> 5345 </source>
5290 <dest> 5346 <dest>
5291 *: "Alarm Time: %02d:%02d" 5347 *: none
5348 radio_screen_button_bar: "Action"
5292 </dest> 5349 </dest>
5293 <voice> 5350 <voice>
5294 *: "" 5351 *: none
5352 radio_screen_button_bar: ""
5295 </voice> 5353 </voice>
5296</phrase> 5354</phrase>-->
5297<phrase> 5355<phrase>
5298 id: LANG_ALARM_MOD_TIME_TO_GO 5356 id: LANG_PRESET
5299 desc: The time until the alarm will go off shown in the alarm menu for the RTC alarm mod. 5357 desc: in button bar and radio screen / menu
5300 user: 5358 user:
5301 <source> 5359 <source>
5302 *: "Waking Up In %d:%02d" 5360 *: none
5361 radio: "Preset"
5303 </source> 5362 </source>
5304 <dest> 5363 <dest>
5305 *: "Waking Up In %d:%02d" 5364 *: none
5365 radio: "Preset"
5306 </dest> 5366 </dest>
5307 <voice> 5367 <voice>
5308 *: "" 5368 *: none
5369 radio: ""
5309 </voice> 5370 </voice>
5310</phrase> 5371</phrase>
5311<phrase> 5372<phrase>
5312 id: LANG_ALARM_MOD_SHUTDOWN 5373 id: LANG_FM_BUTTONBAR_ADD
5313 desc: The text that tells the user that the alarm time is ok and the device shuts off (for the RTC alarm mod). 5374 desc: in radio screen
5314 user: 5375 user:
5315 <source> 5376 <source>
5316 *: "Alarm Set" 5377 *: none
5378 radio_screen_button_bar: "Add"
5317 </source> 5379 </source>
5318 <dest> 5380 <dest>
5319 *: "Alarm Set" 5381 *: none
5382 radio_screen_button_bar: "Add"
5320 </dest> 5383 </dest>
5321 <voice> 5384 <voice>
5322 *: "" 5385 *: none
5386 radio_screen_button_bar: ""
5323 </voice> 5387 </voice>
5324</phrase> 5388</phrase>
5325<phrase> 5389<phrase>
5326 id: LANG_ALARM_MOD_ERROR 5390 id: LANG_FM_BUTTONBAR_RECORD
5327 desc: The text that tells that the time is incorrect (for the RTC alarm mod). 5391 desc: in radio screen
5328 user: 5392 user:
5329 <source> 5393 <source>
5330 *: "Alarm Time Is Too Soon!" 5394 *: none
5395 radio_screen_button_bar: "Record"
5331 </source> 5396 </source>
5332 <dest> 5397 <dest>
5333 *: "Alarm Time Is Too Soon!" 5398 *: none
5399 radio_screen_button_bar: "Record"
5334 </dest> 5400 </dest>
5335 <voice> 5401 <voice>
5336 *: "" 5402 *: none
5403 radio_screen_button_bar: ""
5337 </voice> 5404 </voice>
5338</phrase> 5405</phrase>
5339<phrase> 5406<phrase>
5340 id: LANG_ALARM_MOD_KEYS 5407 id: LANG_FM_MONO_MODE
5341 desc: Shown key functions in alarm menu (for the RTC alarm mod). 5408 desc: in radio screen
5342 user: 5409 user:
5343 <source> 5410 <source>
5344 *: "PLAY=Set OFF=Cancel" 5411 *: none
5345 ipod*: "SELECT=Set MENU=Cancel" 5412 radio: "Force mono"
5346 </source> 5413 </source>
5347 <dest> 5414 <dest>
5348 *: "PLAY=Set OFF=Cancel" 5415 *: none
5349 ipod*: "SELECT=Set MENU=Cancel" 5416 radio: "Force mono"
5350 </dest> 5417 </dest>
5351 <voice> 5418 <voice>
5352 *: "" 5419 *: none
5420 radio: "Force mono"
5353 </voice> 5421 </voice>
5354</phrase> 5422</phrase>
5355<phrase> 5423<phrase>
5356 id: LANG_ALARM_MOD_DISABLE 5424 id: LANG_FM_FREEZE
5357 desc: Announce that the RTC alarm has been turned off 5425 desc: splash screen during freeze in radio mode
5358 user: 5426 user:
5359 <source> 5427 <source>
5360 *: "Alarm Disabled" 5428 *: none
5429 radio: "Screen frozen!"
5361 </source> 5430 </source>
5362 <dest> 5431 <dest>
5363 *: "Alarm Disabled" 5432 *: none
5433 radio: "Screen frozen!"
5364 </dest> 5434 </dest>
5365 <voice> 5435 <voice>
5366 *: "" 5436 *: none
5437 radio: ""
5367 </voice> 5438 </voice>
5368</phrase> 5439</phrase>
5369<phrase> 5440<phrase>
5370 id: LANG_COLOR_RGB_LABELS 5441 id: LANG_FM_SCAN_PRESETS
5371 desc: what to show for the 'R' 'G' 'B' ONE LETTER EACH 5442 desc: in radio menu
5372 user: 5443 user:
5373 <source> 5444 <source>
5374 *: "RGB" 5445 *: none
5446 radio: "Auto-Scan Presets"
5375 </source> 5447 </source>
5376 <dest> 5448 <dest>
5377 *: "RGB" 5449 *: none
5450 radio: "Auto-Scan Presets"
5378 </dest> 5451 </dest>
5379 <voice> 5452 <voice>
5380 *: "" 5453 *: none
5454 radio: "Auto scan presets"
5381 </voice> 5455 </voice>
5382</phrase> 5456</phrase>
5383<phrase> 5457<phrase>
5384 id: LANG_COLOR_RGB_VALUE 5458 id: LANG_FM_CLEAR_PRESETS
5385 desc: in color screen 5459 desc: confirmation if presets can be cleared
5386 user: 5460 user:
5387 <source> 5461 <source>
5388 *: "RGB: %02X%02X%02X" 5462 *: none
5463 radio: "Clear Current Presets?"
5389 </source> 5464 </source>
5390 <dest> 5465 <dest>
5391 *: "RGB: %02X%02X%02X" 5466 *: none
5467 radio: "Clear Current Presets?"
5392 </dest> 5468 </dest>
5393 <voice> 5469 <voice>
5394 *: "" 5470 *: none
5471 radio: ""
5395 </voice> 5472 </voice>
5396</phrase> 5473</phrase>
5397<phrase> 5474<phrase>
5398 id: LANG_COLOR_UNACCEPTABLE 5475 id: LANG_FM_SCANNING
5399 desc: splash when user selects an invalid colour 5476 desc: during auto scan
5400 user: 5477 user:
5401 <source> 5478 <source>
5402 *: "Invalid colour" 5479 *: none
5480 radio: "Scanning %d.%02d MHz"
5403 </source> 5481 </source>
5404 <dest> 5482 <dest>
5405 *: "Invalid colour" 5483 *: none
5484 radio: "Scanning %d.%02d MHz"
5406 </dest> 5485 </dest>
5407 <voice> 5486 <voice>
5408 *: "" 5487 *: none
5488 radio: ""
5409 </voice> 5489 </voice>
5410</phrase> 5490</phrase>
5411<phrase> 5491<phrase>
5412 id: LANG_ID3_TITLE 5492 id: LANG_FM_DEFAULT_PRESET_NAME
5413 desc: in tag viewer 5493 desc: default preset name for auto scan mode
5414 user: 5494 user:
5415 <source> 5495 <source>
5416 *: "[Title]" 5496 *: none
5497 radio: "%d.%02d MHz"
5417 </source> 5498 </source>
5418 <dest> 5499 <dest>
5419 *: "[Title]" 5500 *: none
5501 radio: "%d.%02d MHz"
5420 </dest> 5502 </dest>
5421 <voice> 5503 <voice>
5422 *: "" 5504 *: none
5505 radio: ""
5423 </voice> 5506 </voice>
5424</phrase> 5507</phrase>
5425<phrase> 5508<phrase>
5426 id: LANG_ID3_ARTIST 5509 id: LANG_RADIO_SCAN_MODE
5427 desc: in tag viewer 5510 desc: in radio screen / menu
5428 user: 5511 user:
5429 <source> 5512 <source>
5430 *: "[Artist]" 5513 *: none
5514 radio: "Scan"
5431 </source> 5515 </source>
5432 <dest> 5516 <dest>
5433 *: "[Artist]" 5517 *: none
5518 radio: "Scan"
5434 </dest> 5519 </dest>
5435 <voice> 5520 <voice>
5436 *: "" 5521 *: none
5522 radio: ""
5437 </voice> 5523 </voice>
5438</phrase> 5524</phrase>
5439<phrase> 5525<phrase>
5440 id: LANG_ID3_ALBUM 5526 id: LANG_FM_PRESET_LOAD
5441 desc: in tag viewer 5527 desc: load preset list in fm radio
5442 user: 5528 user:
5443 <source> 5529 <source>
5444 *: "[Album]" 5530 *: none
5531 radio: "Load Preset List"
5445 </source> 5532 </source>
5446 <dest> 5533 <dest>
5447 *: "[Album]" 5534 *: none
5535 radio: "Load Preset List"
5448 </dest> 5536 </dest>
5449 <voice> 5537 <voice>
5450 *: "" 5538 *: none
5539 radio: "Load Preset List"
5451 </voice> 5540 </voice>
5452</phrase> 5541</phrase>
5453<phrase> 5542<phrase>
5454 id: LANG_ID3_TRACKNUM 5543 id: LANG_FM_PRESET_SAVE
5455 desc: in tag viewer 5544 desc: Save preset list in fm radio
5456 user: 5545 user:
5457 <source> 5546 <source>
5458 *: "[Tracknum]" 5547 *: none
5548 radio: "Save Preset List"
5459 </source> 5549 </source>
5460 <dest> 5550 <dest>
5461 *: "[Tracknum]" 5551 *: none
5552 radio: "Save Preset List"
5462 </dest> 5553 </dest>
5463 <voice> 5554 <voice>
5464 *: "" 5555 *: none
5556 radio: "Save Preset List"
5465 </voice> 5557 </voice>
5466</phrase> 5558</phrase>
5467<phrase> 5559<phrase>
5468 id: LANG_ID3_GENRE 5560 id: LANG_FM_PRESET_CLEAR
5469 desc: in tag viewer 5561 desc: clear preset list in fm radio
5470 user: 5562 user:
5471 <source> 5563 <source>
5472 *: "[Genre]" 5564 *: none
5565 radio: "Clear Preset List"
5473 </source> 5566 </source>
5474 <dest> 5567 <dest>
5475 *: "[Genre]" 5568 *: none
5569 radio: "Clear Preset List"
5476 </dest> 5570 </dest>
5477 <voice> 5571 <voice>
5478 *: "" 5572 *: none
5573 radio: "Clear Preset List"
5479 </voice> 5574 </voice>
5480</phrase> 5575</phrase>
5481<phrase> 5576<phrase>
5482 id: LANG_ID3_YEAR 5577 id: LANG_FMR
5483 desc: in tag viewer 5578 desc: Used when you need to say Preset List, also voiced
5484 user: 5579 user:
5485 <source> 5580 <source>
5486 *: "[Year]" 5581 *: none
5582 radio: "Preset List"
5487 </source> 5583 </source>
5488 <dest> 5584 <dest>
5489 *: "[Year]" 5585 *: none
5586 radio: "Preset List"
5490 </dest> 5587 </dest>
5491 <voice> 5588 <voice>
5492 *: "" 5589 *: none
5590 radio: "Preset List"
5493 </voice> 5591 </voice>
5494</phrase> 5592</phrase>
5495<phrase> 5593<phrase>
5496 id: LANG_ID3_LENGTH 5594 id: LANG_FM_FIRST_AUTOSCAN
5497 desc: in tag viewer 5595 desc: When you run the radio without an fmr file in settings
5498 user: 5596 user:
5499 <source> 5597 <source>
5500 *: "[Length]" 5598 *: none
5599 radio: "No settings found. Autoscan?"
5501 </source> 5600 </source>
5502 <dest> 5601 <dest>
5503 *: "[Length]" 5602 *: none
5603 radio: "No settings found. Autoscan?"
5504 </dest> 5604 </dest>
5505 <voice> 5605 <voice>
5506 *: "" 5606 *: none
5607 radio: ""
5507 </voice> 5608 </voice>
5508</phrase> 5609</phrase>
5509<phrase> 5610<phrase>
5510 id: LANG_ID3_PLAYLIST 5611 id: LANG_FM_SAVE_CHANGES
5511 desc: in tag viewer 5612 desc: When you try to exit radio to confirm save
5512 user: 5613 user:
5513 <source> 5614 <source>
5514 *: "[Playlist]" 5615 *: none
5616 radio: "Save Changes?"
5515 </source> 5617 </source>
5516 <dest> 5618 <dest>
5517 *: "[Playlist]" 5619 *: none
5620 radio: "Save Changes?"
5518 </dest> 5621 </dest>
5519 <voice> 5622 <voice>
5520 *: "" 5623 *: none
5624 radio: ""
5521 </voice> 5625 </voice>
5522</phrase> 5626</phrase>
5523<phrase> 5627<phrase>
5524 id: LANG_ID3_BITRATE 5628 id: LANG_FM_REGION
5525 desc: in tag viewer 5629 desc: fm tuner region setting
5526 user:
5527 <source> 5630 <source>
5528 *: "[Bitrate]" 5631 *: none
5632 radio: "Region"
5529 </source> 5633 </source>
5530 <dest> 5634 <dest>
5531 *: "[Bitrate]" 5635 *: none
5636 radio: "Region"
5532 </dest> 5637 </dest>
5533 <voice> 5638 <voice>
5534 *: "" 5639 *: none
5640 radio: "Region"
5535 </voice> 5641 </voice>
5536</phrase> 5642</phrase>
5537<phrase> 5643<phrase>
5538 id: LANG_UNIT_DB 5644 id: LANG_FM_EUROPE
5539 desc: in browse_id3 5645 desc: fm tuner region europe
5540 user:
5541 <source> 5646 <source>
5542 *: "dB" 5647 *: none
5648 radio: "Europe"
5543 </source> 5649 </source>
5544 <dest> 5650 <dest>
5545 *: "dB" 5651 *: none
5652 radio: "Europe"
5546 </dest> 5653 </dest>
5547 <voice> 5654 <voice>
5548 *: "" 5655 *: none
5656 radio: "Europe"
5549 </voice> 5657 </voice>
5550</phrase> 5658</phrase>
5551<phrase> 5659<phrase>
5552 id: LANG_ID3_VBR 5660 id: LANG_FM_US
5553 desc: in browse_id3 5661 desc: fm region us / canada
5554 user:
5555 <source> 5662 <source>
5556 *: " (VBR)" 5663 *: none
5664 radio: "US / Canada"
5557 </source> 5665 </source>
5558 <dest> 5666 <dest>
5559 *: " (VBR)" 5667 *: none
5668 radio: "US / Canada"
5560 </dest> 5669 </dest>
5561 <voice> 5670 <voice>
5562 *: "" 5671 *: none
5672 radio: "US / Canada"
5563 </voice> 5673 </voice>
5564</phrase> 5674</phrase>
5565<phrase> 5675<phrase>
5566 id: LANG_ID3_FREQUENCY 5676 id: LANG_FM_JAPAN
5567 desc: in tag viewer 5677 desc: fm region japan
5568 user:
5569 <source> 5678 <source>
5570 *: "[Frequency]" 5679 *: none
5680 radio: "Japan"
5571 </source> 5681 </source>
5572 <dest> 5682 <dest>
5573 *: "[Frequency]" 5683 *: none
5684 radio: "Japan"
5574 </dest> 5685 </dest>
5575 <voice> 5686 <voice>
5576 *: "" 5687 *: none
5688 radio: "Japan"
5577 </voice> 5689 </voice>
5578</phrase> 5690</phrase>
5579<phrase> 5691<phrase>
5580 id: LANG_ID3_TRACK_GAIN 5692 id: LANG_FM_KOREA
5581 desc: in tag viewer 5693 desc: fm region korea
5582 user:
5583 <source> 5694 <source>
5584 *: "[Track Gain]" 5695 *: none
5696 radio: "Korea"
5585 </source> 5697 </source>
5586 <dest> 5698 <dest>
5587 *: "[Track Gain]" 5699 *: none
5700 radio: "Korea"
5588 </dest> 5701 </dest>
5589 <voice> 5702 <voice>
5590 *: "" 5703 *: none
5704 radio: "Korea"
5591 </voice> 5705 </voice>
5592</phrase> 5706</phrase>
5593<phrase> 5707<phrase>
5594 id: LANG_ID3_ALBUM_GAIN 5708 id: LANG_RECORDING_FORMAT
5595 desc: in tag viewer 5709 desc: audio format item in recording menu
5596 user: 5710 user:
5597 <source> 5711 <source>
5598 *: "[Album Gain]" 5712 *: none
5713 recording: "Format"
5599 </source> 5714 </source>
5600 <dest> 5715 <dest>
5601 *: "[Album Gain]" 5716 *: none
5717 recording: "Format"
5602 </dest> 5718 </dest>
5603 <voice> 5719 <voice>
5604 *: "" 5720 *: none
5721 recording: "Format"
5605 </voice> 5722 </voice>
5606</phrase> 5723</phrase>
5607<phrase> 5724<phrase>
5608 id: LANG_ID3_PATH 5725 id: LANG_AFMT_MPA_L3
5609 desc: in tag viewer 5726 desc: audio format description
5610 user: 5727 user:
5611 <source> 5728 <source>
5612 *: "[Path]" 5729 *: none
5730 recording: "MPEG Layer 3"
5613 </source> 5731 </source>
5614 <dest> 5732 <dest>
5615 *: "[Path]" 5733 *: none
5734 recording: "MPEG Layer 3"
5616 </dest> 5735 </dest>
5617 <voice> 5736 <voice>
5618 *: "" 5737 *: none
5738 recording: "MPEG Layer 3"
5619 </voice> 5739 </voice>
5620</phrase> 5740</phrase>
5621<phrase> 5741<phrase>
5622 id: LANG_ID3_NO_INFO 5742 id: LANG_AFMT_PCM_WAV
5623 desc: in tag viewer 5743 desc: audio format description
5624 user: 5744 user:
5625 <source> 5745 <source>
5626 *: "<No Info>" 5746 *: none
5747 recording: "PCM Wave"
5627 </source> 5748 </source>
5628 <dest> 5749 <dest>
5629 *: "<No Info>" 5750 *: none
5751 recording: "PCM Wave"
5630 </dest> 5752 </dest>
5631 <voice> 5753 <voice>
5632 *: "" 5754 *: none
5755 recording: "PCM Wave"
5633 </voice> 5756 </voice>
5634</phrase> 5757</phrase>
5635<phrase> 5758<phrase>
5636 id: LANG_WEEKDAY_SUNDAY 5759 id: LANG_AFMT_WAVPACK
5637 desc: Maximum 3-letter abbreviation for weekday 5760 desc: audio format description
5638 user: 5761 user:
5639 <source> 5762 <source>
5640 *: "Sun" 5763 *: none
5764 recording_swcodec: "WavPack"
5641 </source> 5765 </source>
5642 <dest> 5766 <dest>
5643 *: "Sun" 5767 *: none
5768 recording_swcodec: "WavPack"
5644 </dest> 5769 </dest>
5645 <voice> 5770 <voice>
5646 *: "" 5771 *: none
5772 recording_swcodec: "WavPack"
5647 </voice> 5773 </voice>
5648</phrase> 5774</phrase>
5649<phrase> 5775<phrase>
5650 id: LANG_WEEKDAY_MONDAY 5776 id: LANG_AFMT_AIFF
5651 desc: Maximum 3-letter abbreviation for weekday 5777 desc: audio format description
5652 user: 5778 user:
5653 <source> 5779 <source>
5654 *: "Mon" 5780 *: none
5781 recording: "AIFF"
5655 </source> 5782 </source>
5656 <dest> 5783 <dest>
5657 *: "Mon" 5784 *: none
5785 recording: "AIFF"
5658 </dest> 5786 </dest>
5659 <voice> 5787 <voice>
5660 *: "" 5788 *: none
5789 recording: "AIFF"
5661 </voice> 5790 </voice>
5662</phrase> 5791</phrase>
5663<phrase> 5792<phrase>
5664 id: LANG_WEEKDAY_TUESDAY 5793 id: LANG_ENCODER_SETTINGS
5665 desc: Maximum 3-letter abbreviation for weekday 5794 desc: encoder settings
5666 user: 5795 user:
5667 <source> 5796 <source>
5668 *: "Tue" 5797 *: none
5798 recording: "Encoder Settings"
5669 </source> 5799 </source>
5670 <dest> 5800 <dest>
5671 *: "Tue" 5801 *: none
5802 recording: "Encoder Settings"
5672 </dest> 5803 </dest>
5673 <voice> 5804 <voice>
5674 *: "" 5805 *: none
5806 recording: "Encoder Settings"
5675 </voice> 5807 </voice>
5676</phrase> 5808</phrase>
5677<phrase> 5809<phrase>
5678 id: LANG_WEEKDAY_WEDNESDAY 5810 id: LANG_BITRATE
5679 desc: Maximum 3-letter abbreviation for weekday 5811 desc: bits-kilobits per unit time
5680 user: 5812 user:
5681 <source> 5813 <source>
5682 *: "Wed" 5814 *: none
5815 recording_swcodec: "Bitrate"
5683 </source> 5816 </source>
5684 <dest> 5817 <dest>
5685 *: "Wed" 5818 *: none
5819 recording_swcodec: "Bitrate"
5686 </dest> 5820 </dest>
5687 <voice> 5821 <voice>
5688 *: "" 5822 *: none
5823 recording_swcodec: "Bitrate"
5689 </voice> 5824 </voice>
5690</phrase> 5825</phrase>
5691<phrase> 5826<phrase>
5692 id: LANG_WEEKDAY_THURSDAY 5827 id: LANG_NO_SETTINGS
5693 desc: Maximum 3-letter abbreviation for weekday 5828 desc: when something has settings in a certain context
5694 user: 5829 user:
5695 <source> 5830 <source>
5696 *: "Thu" 5831 *: none
5832 recording: "(No Settings)"
5697 </source> 5833 </source>
5698 <dest> 5834 <dest>
5699 *: "Thu" 5835 *: none
5836 recording: "(No Settings)"
5700 </dest> 5837 </dest>
5701 <voice> 5838 <voice>
5702 *: "" 5839 *: none
5840 recording: "No settings available"
5703 </voice> 5841 </voice>
5704</phrase> 5842</phrase>
5705<phrase> 5843<phrase>
5706 id: LANG_WEEKDAY_FRIDAY 5844 id: LANG_RECORDING_QUALITY
5707 desc: Maximum 3-letter abbreviation for weekday 5845 desc: in the recording settings
5708 user: 5846 user:
5709 <source> 5847 <source>
5710 *: "Fri" 5848 *: none
5849 recording_hwcodec: "Quality"
5711 </source> 5850 </source>
5712 <dest> 5851 <dest>
5713 *: "Fri" 5852 *: none
5853 recording_hwcodec: "Quality"
5714 </dest> 5854 </dest>
5715 <voice> 5855 <voice>
5716 *: "" 5856 *: none
5857 recording_hwcodec: "Quality"
5717 </voice> 5858 </voice>
5718</phrase> 5859</phrase>
5719<phrase> 5860<phrase>
5720 id: LANG_WEEKDAY_SATURDAY 5861 id: LANG_RECORDING_FREQUENCY
5721 desc: Maximum 3-letter abbreviation for weekday 5862 desc: in the recording settings
5722 user: 5863 user:
5723 <source> 5864 <source>
5724 *: "Sat" 5865 *: none
5866 recording: "Frequency"
5725 </source> 5867 </source>
5726 <dest> 5868 <dest>
5727 *: "Sat" 5869 *: none
5870 recording: "Frequency"
5728 </dest> 5871 </dest>
5729 <voice> 5872 <voice>
5730 *: "" 5873 *: none
5874 recording: "Frequency"
5731 </voice> 5875 </voice>
5732</phrase> 5876</phrase>
5733<phrase> 5877<phrase>
5734 id: LANG_MONTH_JANUARY 5878 id: LANG_SOURCE_FREQUENCY
5735 desc: Maximum 3-letter abbreviation for monthname 5879 desc: when recording source frequency setting must follow source
5736 user: 5880 user:
5737 <source> 5881 <source>
5738 *: "Jan" 5882 *: none
5883 recording: "(Same As Source)"
5739 </source> 5884 </source>
5740 <dest> 5885 <dest>
5741 *: "Jan" 5886 *: none
5887 recording: "(Same As Source)"
5742 </dest> 5888 </dest>
5743 <voice> 5889 <voice>
5744 *: "January" 5890 *: none
5891 recording: "Same As Source"
5745 </voice> 5892 </voice>
5746</phrase> 5893</phrase>
5747<phrase> 5894<phrase>
5748 id: LANG_MONTH_FEBRUARY 5895 id: LANG_RECORDING_SOURCE
5749 desc: Maximum 3-letter abbreviation for monthname 5896 desc: in the recording settings
5750 user: 5897 user:
5751 <source> 5898 <source>
5752 *: "Feb" 5899 *: none
5900 recording: "Source"
5753 </source> 5901 </source>
5754 <dest> 5902 <dest>
5755 *: "Feb" 5903 *: none
5904 recording: "Source"
5756 </dest> 5905 </dest>
5757 <voice> 5906 <voice>
5758 *: "February" 5907 *: none
5908 recording: "Source"
5759 </voice> 5909 </voice>
5760</phrase> 5910</phrase>
5761<phrase> 5911<phrase>
5762 id: LANG_MONTH_MARCH 5912 id: LANG_RECORDING_SRC_MIC
5763 desc: Maximum 3-letter abbreviation for monthname 5913 desc: in the recording settings
5764 user: 5914 user:
5765 <source> 5915 <source>
5766 *: "Mar" 5916 *: none
5917 recording: "Microphone"
5918 h100,h120,h300: "Internal Microphone"
5767 </source> 5919 </source>
5768 <dest> 5920 <dest>
5769 *: "Mar" 5921 *: none
5922 recording: "Microphone"
5923 h100,h120,h300: "Internal Microphone"
5770 </dest> 5924 </dest>
5771 <voice> 5925 <voice>
5772 *: "March" 5926 *: none
5927 recording: "Microphone"
5928 h100,h120,h300: "Internal Microphone"
5773 </voice> 5929 </voice>
5774</phrase> 5930</phrase>
5775<phrase> 5931<phrase>
5776 id: LANG_MONTH_APRIL 5932 id: LANG_RECORDING_SRC_DIGITAL
5777 desc: Maximum 3-letter abbreviation for monthname 5933 desc: in the recording settings
5778 user: 5934 user:
5779 <source> 5935 <source>
5780 *: "Apr" 5936 *: none
5937 recording: "Digital"
5781 </source> 5938 </source>
5782 <dest> 5939 <dest>
5783 *: "Apr" 5940 *: none
5941 recording: "Digital"
5784 </dest> 5942 </dest>
5785 <voice> 5943 <voice>
5786 *: "April" 5944 *: none
5945 recording: "Digital"
5787 </voice> 5946 </voice>
5788</phrase> 5947</phrase>
5789<phrase> 5948<phrase>
5790 id: LANG_MONTH_MAY 5949 id: LANG_LINE_IN
5791 desc: Maximum 3-letter abbreviation for monthname 5950 desc: in the recording settings
5792 user: 5951 user:
5793 <source> 5952 <source>
5794 *: "May" 5953 *: none
5954 recording,player: "Line In"
5795 </source> 5955 </source>
5796 <dest> 5956 <dest>
5797 *: "May" 5957 *: none
5958 recording,player: "Line In"
5798 </dest> 5959 </dest>
5799 <voice> 5960 <voice>
5800 *: "May" 5961 *: none
5962 recording,player: "Line In"
5801 </voice> 5963 </voice>
5802</phrase> 5964</phrase>
5803<phrase> 5965<phrase>
5804 id: LANG_MONTH_JUNE 5966 id: LANG_RECORDING_EDITABLE
5805 desc: Maximum 3-letter abbreviation for monthname 5967 desc: Editable recordings setting
5806 user: 5968 user:
5807 <source> 5969 <source>
5808 *: "Jun" 5970 *: none
5971 recording_hwcodec: "Independent Frames"
5809 </source> 5972 </source>
5810 <dest> 5973 <dest>
5811 *: "Jun" 5974 *: none
5975 recording_hwcodec: "Independent Frames"
5812 </dest> 5976 </dest>
5813 <voice> 5977 <voice>
5814 *: "June" 5978 *: none
5979 recording_hwcodec: "Independent Frames"
5815 </voice> 5980 </voice>
5816</phrase> 5981</phrase>
5817<phrase> 5982<phrase>
5818 id: LANG_MONTH_JULY 5983 id: LANG_RECORD_TIMESPLIT
5819 desc: Maximum 3-letter abbreviation for monthname 5984 desc: Record split menu
5820 user: 5985 user:
5821 <source> 5986 <source>
5822 *: "Jul" 5987 *: none
5988 recording: "File Split Options"
5823 </source> 5989 </source>
5824 <dest> 5990 <dest>
5825 *: "Jul" 5991 *: none
5992 recording: "File Split Options"
5826 </dest> 5993 </dest>
5827 <voice> 5994 <voice>
5828 *: "July" 5995 *: none
5996 recording: "File Split Options"
5829 </voice> 5997 </voice>
5830</phrase> 5998</phrase>
5831<phrase> 5999<phrase>
5832 id: LANG_MONTH_AUGUST 6000 id: LANG_SPLIT_MEASURE
5833 desc: Maximum 3-letter abbreviation for monthname 6001 desc: in record timesplit options
5834 user:
5835 <source> 6002 <source>
5836 *: "Aug" 6003 *: none
6004 recording: "Split Measure"
5837 </source> 6005 </source>
5838 <dest> 6006 <dest>
5839 *: "Aug" 6007 *: none
6008 recording: "Split Measure"
5840 </dest> 6009 </dest>
5841 <voice> 6010 <voice>
5842 *: "August" 6011 *: none
6012 recording: "Split Measure"
5843 </voice> 6013 </voice>
5844</phrase> 6014</phrase>
5845<phrase> 6015<phrase>
5846 id: LANG_MONTH_SEPTEMBER 6016 id: LANG_SPLIT_TYPE
5847 desc: Maximum 3-letter abbreviation for monthname 6017 desc: in record timesplit options
5848 user:
5849 <source> 6018 <source>
5850 *: "Sep" 6019 *: none
6020 recording: "What to do when Splitting"
5851 </source> 6021 </source>
5852 <dest> 6022 <dest>
5853 *: "Sep" 6023 *: none
6024 recording: "What to do when Splitting"
5854 </dest> 6025 </dest>
5855 <voice> 6026 <voice>
5856 *: "September" 6027 *: none
6028 recording: "What to do when Splitting"
5857 </voice> 6029 </voice>
5858</phrase> 6030</phrase>
5859<phrase> 6031<phrase>
5860 id: LANG_MONTH_OCTOBER 6032 id: LANG_START_NEW_FILE
5861 desc: Maximum 3-letter abbreviation for monthname 6033 desc: in record timesplit options
5862 user: 6034 user:
5863 <source> 6035 <source>
5864 *: "Oct" 6036 *: none
6037 recording: "Start new file"
5865 </source> 6038 </source>
5866 <dest> 6039 <dest>
5867 *: "Oct" 6040 *: none
6041 recording: "Start new file"
5868 </dest> 6042 </dest>
5869 <voice> 6043 <voice>
5870 *: "October" 6044 *: none
6045 recording: "Start new file"
5871 </voice> 6046 </voice>
5872</phrase> 6047</phrase>
5873<phrase> 6048<phrase>
5874 id: LANG_MONTH_NOVEMBER 6049 id: LANG_STOP_RECORDING
5875 desc: Maximum 3-letter abbreviation for monthname 6050 desc: in record timesplit options
5876 user: 6051 user:
5877 <source> 6052 <source>
5878 *: "Nov" 6053 *: none
6054 recording: "Stop recording"
5879 </source> 6055 </source>
5880 <dest> 6056 <dest>
5881 *: "Nov" 6057 *: none
6058 recording: "Stop recording"
5882 </dest> 6059 </dest>
5883 <voice> 6060 <voice>
5884 *: "November" 6061 *: none
6062 recording: "Stop recording"
5885 </voice> 6063 </voice>
5886</phrase> 6064</phrase>
5887<phrase> 6065<phrase>
5888 id: LANG_MONTH_DECEMBER 6066 id: LANG_SPLIT_TIME
5889 desc: Maximum 3-letter abbreviation for monthname 6067 desc: in record timesplit options
5890 user:
5891 <source> 6068 <source>
5892 *: "Dec" 6069 *: none
6070 recording: "Split Time"
5893 </source> 6071 </source>
5894 <dest> 6072 <dest>
5895 *: "Dec" 6073 *: none
6074 recording: "Split Time"
5896 </dest> 6075 </dest>
5897 <voice> 6076 <voice>
5898 *: "December" 6077 *: none
6078 recording: "Split Time"
5899 </voice> 6079 </voice>
5900</phrase> 6080</phrase>
5901<phrase> 6081<phrase>
5902 id: VOICE_ZERO 6082 id: LANG_SPLIT_SIZE
5903 desc: spoken only, for composing numbers 6083 desc: in record timesplit options
5904 user:
5905 <source> 6084 <source>
5906 *: "" 6085 *: none
6086 recording: "Split Filesize"
5907 </source> 6087 </source>
5908 <dest> 6088 <dest>
5909 *: "" 6089 *: none
6090 recording: "Split Filesize"
5910 </dest> 6091 </dest>
5911 <voice> 6092 <voice>
5912 *: "0" 6093 *: none
6094 recording: "Split Filesize"
5913 </voice> 6095 </voice>
5914</phrase> 6096</phrase>
5915<phrase> 6097<phrase>
5916 id: VOICE_ONE 6098 id: LANG_REC_SIZE
5917 desc: spoken only, for composing numbers 6099 desc: in record timesplit options
5918 user: 6100 user:
5919 <source> 6101 <source>
5920 *: "" 6102 *: none
6103 recording: "Filesize"
5921 </source> 6104 </source>
5922 <dest> 6105 <dest>
5923 *: "" 6106 *: none
6107 recording: "Filesize"
5924 </dest> 6108 </dest>
5925 <voice> 6109 <voice>
5926 *: "1" 6110 *: none
6111 recording: "Filesize"
5927 </voice> 6112 </voice>
5928</phrase> 6113</phrase>
5929<phrase> 6114<phrase>
5930 id: VOICE_TWO 6115 id: LANG_RECORD_PRERECORD_TIME
5931 desc: spoken only, for composing numbers 6116 desc: in recording settings_menu
5932 user: 6117 user:
5933 <source> 6118 <source>
5934 *: "" 6119 *: none
6120 recording: "Prerecord Time"
5935 </source> 6121 </source>
5936 <dest> 6122 <dest>
5937 *: "" 6123 *: none
6124 recording: "Prerecord Time"
5938 </dest> 6125 </dest>
5939 <voice> 6126 <voice>
5940 *: "2" 6127 *: none
6128 recording: "Pre-Record time"
5941 </voice> 6129 </voice>
5942</phrase> 6130</phrase>
5943<phrase> 6131<phrase>
5944 id: VOICE_THREE 6132 id: LANG_RECORD_DIRECTORY
5945 desc: spoken only, for composing numbers 6133 desc: in recording settings_menu
5946 user: 6134 user:
5947 <source> 6135 <source>
5948 *: "" 6136 *: none
6137 recording: "Directory"
5949 </source> 6138 </source>
5950 <dest> 6139 <dest>
5951 *: "" 6140 *: none
6141 recording: "Directory"
5952 </dest> 6142 </dest>
5953 <voice> 6143 <voice>
5954 *: "3" 6144 *: none
6145 recording: "Directory"
5955 </voice> 6146 </voice>
5956</phrase> 6147</phrase>
5957<phrase> 6148<phrase>
5958 id: VOICE_FOUR 6149 id: LANG_RECORD_CURRENT_DIR
5959 desc: spoken only, for composing numbers 6150 desc: in recording directory options
5960 user: 6151 user:
5961 <source> 6152 <source>
5962 *: "" 6153 *: none
6154 recording: "Current Directory"
5963 </source> 6155 </source>
5964 <dest> 6156 <dest>
5965 *: "" 6157 *: none
6158 recording: "Current Directory"
5966 </dest> 6159 </dest>
5967 <voice> 6160 <voice>
5968 *: "4" 6161 *: none
6162 recording: "Current directory"
5969 </voice> 6163 </voice>
5970</phrase> 6164</phrase>
5971<phrase> 6165<phrase>
5972 id: VOICE_FIFE 6166 id: LANG_SET_AS_REC_DIR
5973 desc: spoken only, for composing numbers 6167 desc: used in the onplay menu to set a recording dir
5974 user: 6168 user:
5975 <source> 6169 <source>
5976 *: "" 6170 *: none
6171 recording: "Set As Recording Directory"
5977 </source> 6172 </source>
5978 <dest> 6173 <dest>
5979 *: "" 6174 *: none
6175 recording: "Set As Recording Directory"
5980 </dest> 6176 </dest>
5981 <voice> 6177 <voice>
5982 *: "5" 6178 *: none
6179 recording: "Set As Recording Directory"
5983 </voice> 6180 </voice>
5984</phrase> 6181</phrase>
5985<phrase> 6182<phrase>
5986 id: VOICE_SIX 6183 id: LANG_CLEAR_REC_DIR
5987 desc: spoken only, for composing numbers 6184 desc:
5988 user: 6185 user:
5989 <source> 6186 <source>
5990 *: "" 6187 *: none
6188 recording: "Clear Recording Directory"
5991 </source> 6189 </source>
5992 <dest> 6190 <dest>
5993 *: "" 6191 *: none
6192 recording: "Clear Recording Directory"
5994 </dest> 6193 </dest>
5995 <voice> 6194 <voice>
5996 *: "6" 6195 *: none
6196 recording: "Clear Recording Directory"
5997 </voice> 6197 </voice>
5998</phrase> 6198</phrase>
5999<phrase> 6199<phrase>
6000 id: VOICE_SEVEN 6200 id: LANG_REC_DIR_NOT_WRITABLE
6001 desc: spoken only, for composing numbers 6201 desc:
6002 user: 6202 user:
6003 <source> 6203 <source>
6004 *: "" 6204 *: none
6205 recording: "Can't write to recording directory"
6005 </source> 6206 </source>
6006 <dest> 6207 <dest>
6007 *: "" 6208 *: none
6209 recording: "Can't write to recording directory"
6008 </dest> 6210 </dest>
6009 <voice> 6211 <voice>
6010 *: "7" 6212 *: none
6213 recording: "Can't write to recording directory"
6011 </voice> 6214 </voice>
6012</phrase> 6215</phrase>
6216
6013<phrase> 6217<phrase>
6014 id: VOICE_EIGHT 6218 id: LANG_CLIP_LIGHT
6015 desc: spoken only, for composing numbers 6219 desc: in record settings menu.
6016 user: 6220 user:
6017 <source> 6221 <source>
6018 *: "" 6222 *: none
6223 recording: "Clipping Light"
6019 </source> 6224 </source>
6020 <dest> 6225 <dest>
6021 *: "" 6226 *: none
6227 recording: "Clipping Light"
6022 </dest> 6228 </dest>
6023 <voice> 6229 <voice>
6024 *: "8" 6230 *: none
6231 recording: "Clipping Light"
6025 </voice> 6232 </voice>
6026</phrase> 6233</phrase>
6027<phrase> 6234<phrase>
6028 id: VOICE_NINE 6235 id: LANG_MAIN_UNIT
6029 desc: spoken only, for composing numbers 6236 desc: in record settings menu.
6030 user: 6237 user:
6031 <source> 6238 <source>
6032 *: "" 6239 *: none
6240 remote: "Main Unit Only"
6033 </source> 6241 </source>
6034 <dest> 6242 <dest>
6035 *: "" 6243 *: none
6244 remote: "Main Unit Only"
6036 </dest> 6245 </dest>
6037 <voice> 6246 <voice>
6038 *: "9" 6247 *: none
6248 remote: "Main unit only"
6039 </voice> 6249 </voice>
6040</phrase> 6250</phrase>
6041<phrase> 6251<phrase>
6042 id: VOICE_TEN 6252 id: LANG_REMOTE_UNIT
6043 desc: spoken only, for composing numbers 6253 desc: in record settings menu.
6044 user: 6254 user:
6045 <source> 6255 <source>
6046 *: "" 6256 *: none
6257 remote: "Remote Unit Only"
6047 </source> 6258 </source>
6048 <dest> 6259 <dest>
6049 *: "" 6260 *: none
6261 remote: "Remote Unit Only"
6050 </dest> 6262 </dest>
6051 <voice> 6263 <voice>
6052 *: "10" 6264 *: none
6265 remote: "Remote unit only"
6053 </voice> 6266 </voice>
6054</phrase> 6267</phrase>
6055<phrase> 6268<phrase>
6056 id: VOICE_ELEVEN 6269 id: LANG_REMOTE_MAIN
6057 desc: spoken only, for composing numbers 6270 desc: in record settings menu.
6058 user: 6271 user:
6059 <source> 6272 <source>
6060 *: "" 6273 *: none
6274 remote: "Main and Remote Unit"
6061 </source> 6275 </source>
6062 <dest> 6276 <dest>
6063 *: "" 6277 *: none
6278 remote: "Main and Remote Unit"
6064 </dest> 6279 </dest>
6065 <voice> 6280 <voice>
6066 *: "11" 6281 *: none
6282 remote: "Main and remote unit"
6067 </voice> 6283 </voice>
6068</phrase> 6284</phrase>
6069<phrase> 6285<phrase>
6070 id: VOICE_TWELVE 6286 id: LANG_RECORD_TRIGGER
6071 desc: spoken only, for composing numbers 6287 desc: in recording settings_menu
6072 user: 6288 user:
6073 <source> 6289 <source>
6074 *: "" 6290 *: none
6291 recording: "Trigger"
6075 </source> 6292 </source>
6076 <dest> 6293 <dest>
6077 *: "" 6294 *: none
6295 recording: "Trigger"
6078 </dest> 6296 </dest>
6079 <voice> 6297 <voice>
6080 *: "12" 6298 *: none
6299 recording: "Trigger"
6081 </voice> 6300 </voice>
6082</phrase> 6301</phrase>
6083<phrase> 6302<phrase>
6084 id: VOICE_THIRTEEN 6303 id: LANG_RECORD_TRIG_NOREARM
6085 desc: spoken only, for composing numbers 6304 desc: in recording settings_menu
6086 user: 6305 user:
6087 <source> 6306 <source>
6088 *: "" 6307 *: none
6308 recording: "Once"
6089 </source> 6309 </source>
6090 <dest> 6310 <dest>
6091 *: "" 6311 *: none
6312 recording: "Once"
6092 </dest> 6313 </dest>
6093 <voice> 6314 <voice>
6094 *: "13" 6315 *: none
6316 recording: ""
6095 </voice> 6317 </voice>
6096</phrase> 6318</phrase>
6097<phrase> 6319<phrase>
6098 id: VOICE_FOURTEEN 6320 id: LANG_RECORD_TRIGGER_TYPE
6099 desc: spoken only, for composing numbers 6321 desc: in recording trigger menu
6100 user:
6101 <source> 6322 <source>
6102 *: "" 6323 *: none
6324 recording: "Trigtype"
6103 </source> 6325 </source>
6104 <dest> 6326 <dest>
6105 *: "" 6327 *: none
6328 recording: "Trigtype"
6106 </dest> 6329 </dest>
6107 <voice> 6330 <voice>
6108 *: "14" 6331 *: none
6332 recording: "Trigtype"
6109 </voice> 6333 </voice>
6110</phrase> 6334</phrase>
6111<phrase> 6335<phrase>
6112 id: VOICE_FIFTEEN 6336 id: LANG_RECORD_TRIGGER_NEWFILESTP
6113 desc: spoken only, for composing numbers 6337 desc: trigger types
6114 user:
6115 <source> 6338 <source>
6116 *: "" 6339 *: none
6340 recording: "New file"
6117 </source> 6341 </source>
6118 <dest> 6342 <dest>
6119 *: "" 6343 *: none
6344 recording: "New file"
6120 </dest> 6345 </dest>
6121 <voice> 6346 <voice>
6122 *: "15" 6347 *: none
6348 recording: "New file"
6123 </voice> 6349 </voice>
6124</phrase> 6350</phrase>
6125<phrase> 6351<phrase>
6126 id: VOICE_SIXTEEN 6352 id: LANG_RECORD_TRIGGER_STOP
6127 desc: spoken only, for composing numbers 6353 desc: trigger types
6128 user:
6129 <source> 6354 <source>
6130 *: "" 6355 *: none
6356 recording: "Stop"
6131 </source> 6357 </source>
6132 <dest> 6358 <dest>
6133 *: "" 6359 *: none
6360 recording: "Stop"
6134 </dest> 6361 </dest>
6135 <voice> 6362 <voice>
6136 *: "16" 6363 *: none
6364 recording: "Stop"
6137 </voice> 6365 </voice>
6138</phrase> 6366</phrase>
6139<phrase> 6367<phrase>
6140 id: VOICE_SEVENTEEN 6368 id: LANG_RECORD_START_THRESHOLD
6141 desc: spoken only, for composing numbers 6369 desc: in recording settings_menu
6142 user: 6370 user:
6143 <source> 6371 <source>
6144 *: "" 6372 *: none
6373 recording: "Start Above"
6145 </source> 6374 </source>
6146 <dest> 6375 <dest>
6147 *: "" 6376 *: none
6377 recording: "Start Above"
6148 </dest> 6378 </dest>
6149 <voice> 6379 <voice>
6150 *: "17" 6380 *: none
6381 recording: ""
6151 </voice> 6382 </voice>
6152</phrase> 6383</phrase>
6153<phrase> 6384<phrase>
6154 id: VOICE_EIGHTEEN 6385 id: LANG_MIN_DURATION
6155 desc: spoken only, for composing numbers 6386 desc: in recording settings_menu
6156 user: 6387 user:
6157 <source> 6388 <source>
6158 *: "" 6389 *: none
6390 recording: "for at least"
6159 </source> 6391 </source>
6160 <dest> 6392 <dest>
6161 *: "" 6393 *: none
6394 recording: "for at least"
6162 </dest> 6395 </dest>
6163 <voice> 6396 <voice>
6164 *: "18" 6397 *: none
6398 recording: ""
6165 </voice> 6399 </voice>
6166</phrase> 6400</phrase>
6167<phrase> 6401<phrase>
6168 id: VOICE_NINETEEN 6402 id: LANG_RECORD_STOP_THRESHOLD
6169 desc: spoken only, for composing numbers 6403 desc: in recording settings_menu
6170 user: 6404 user:
6171 <source> 6405 <source>
6172 *: "" 6406 *: none
6407 recording: "Stop Below"
6173 </source> 6408 </source>
6174 <dest> 6409 <dest>
6175 *: "" 6410 *: none
6411 recording: "Stop Below"
6176 </dest> 6412 </dest>
6177 <voice> 6413 <voice>
6178 *: "19" 6414 *: none
6415 recording: ""
6179 </voice> 6416 </voice>
6180</phrase> 6417</phrase>
6181<phrase> 6418<phrase>
6182 id: VOICE_TWENTY 6419 id: LANG_RECORD_STOP_GAP
6183 desc: spoken only, for composing numbers 6420 desc: in recording settings_menu
6184 user: 6421 user:
6185 <source> 6422 <source>
6186 *: "" 6423 *: none
6424 recording: "Presplit Gap"
6187 </source> 6425 </source>
6188 <dest> 6426 <dest>
6189 *: "" 6427 *: none
6428 recording: "Presplit Gap"
6190 </dest> 6429 </dest>
6191 <voice> 6430 <voice>
6192 *: "20" 6431 *: none
6432 recording: ""
6193 </voice> 6433 </voice>
6194</phrase> 6434</phrase>
6195<phrase> 6435<phrase>
6196 id: VOICE_THIRTY 6436 id: LANG_RECORD_PRERECORD
6197 desc: spoken only, for composing numbers 6437 desc: in recording and radio screen
6198 user: 6438 user:
6199 <source> 6439 <source>
6200 *: "" 6440 *: none
6441 recording: "Pre-Recording"
6201 </source> 6442 </source>
6202 <dest> 6443 <dest>
6203 *: "" 6444 *: none
6445 recording: "Pre-Recording"
6204 </dest> 6446 </dest>
6205 <voice> 6447 <voice>
6206 *: "30" 6448 *: none
6449 recording: ""
6207 </voice> 6450 </voice>
6208</phrase> 6451</phrase>
6209<phrase> 6452<phrase>
6210 id: VOICE_FORTY 6453 id: LANG_RECORDING_LEFT
6211 desc: spoken only, for composing numbers 6454 desc: in the recording screen
6212 user: 6455 user:
6213 <source> 6456 <source>
6214 *: "" 6457 *: none
6458 recording: "Gain Left"
6215 </source> 6459 </source>
6216 <dest> 6460 <dest>
6217 *: "" 6461 *: none
6462 recording: "Gain Left"
6218 </dest> 6463 </dest>
6219 <voice> 6464 <voice>
6220 *: "40" 6465 *: none
6466 recording: ""
6221 </voice> 6467 </voice>
6222</phrase> 6468</phrase>
6223<phrase> 6469<phrase>
6224 id: VOICE_FIFTY 6470 id: LANG_RECORDING_RIGHT
6225 desc: spoken only, for composing numbers 6471 desc: in the recording screen
6226 user: 6472 user:
6227 <source> 6473 <source>
6228 *: "" 6474 *: none
6475 recording: "Gain Right"
6229 </source> 6476 </source>
6230 <dest> 6477 <dest>
6231 *: "" 6478 *: none
6479 recording: "Gain Right"
6232 </dest> 6480 </dest>
6233 <voice> 6481 <voice>
6234 *: "50" 6482 *: none
6483 recording: ""
6235 </voice> 6484 </voice>
6236</phrase> 6485</phrase>
6237<phrase> 6486<phrase>
6238 id: VOICE_SIXTY 6487 id: LANG_RECORD_AGC_PRESET
6239 desc: spoken only, for composing numbers 6488 desc: automatic gain control in record settings
6240 user:
6241 <source> 6489 <source>
6242 *: "" 6490 *: none
6491 agc: "Automatic Gain Control"
6243 </source> 6492 </source>
6244 <dest> 6493 <dest>
6245 *: "" 6494 *: none
6495 agc: "Automatic Gain Control"
6246 </dest> 6496 </dest>
6247 <voice> 6497 <voice>
6248 *: "60" 6498 *: none
6499 agc: "Automatic gain control"
6249 </voice> 6500 </voice>
6250</phrase> 6501</phrase>
6251<phrase> 6502<phrase>
6252 id: VOICE_SEVENTY 6503 id: LANG_AGC_SAFETY
6253 desc: spoken only, for composing numbers 6504 desc: AGC preset
6254 user:
6255 <source> 6505 <source>
6256 *: "" 6506 *: none
6507 agc: "Safety (clip)"
6257 </source> 6508 </source>
6258 <dest> 6509 <dest>
6259 *: "" 6510 *: none
6511 agc: "Safety (clip)"
6260 </dest> 6512 </dest>
6261 <voice> 6513 <voice>
6262 *: "70" 6514 *: none
6515 agc: "Safety (clip)"
6263 </voice> 6516 </voice>
6264</phrase> 6517</phrase>
6265<phrase> 6518<phrase>
6266 id: VOICE_EIGHTY 6519 id: LANG_AGC_LIVE
6267 desc: spoken only, for composing numbers 6520 desc: AGC preset
6268 user:
6269 <source> 6521 <source>
6270 *: "" 6522 *: none
6523 agc: "Live (slow)"
6271 </source> 6524 </source>
6272 <dest> 6525 <dest>
6273 *: "" 6526 *: none
6527 agc: "Live (slow)"
6274 </dest> 6528 </dest>
6275 <voice> 6529 <voice>
6276 *: "80" 6530 *: none
6531 agc: "Live (slow)"
6277 </voice> 6532 </voice>
6278</phrase> 6533</phrase>
6279<phrase> 6534<phrase>
6280 id: VOICE_NINETY 6535 id: LANG_AGC_DJSET
6281 desc: spoken only, for composing numbers 6536 desc: AGC preset
6282 user:
6283 <source> 6537 <source>
6284 *: "" 6538 *: none
6539 agc: "DJ-Set (slow)"
6285 </source> 6540 </source>
6286 <dest> 6541 <dest>
6287 *: "" 6542 *: none
6543 agc: "DJ-Set (slow)"
6288 </dest> 6544 </dest>
6289 <voice> 6545 <voice>
6290 *: "90" 6546 *: none
6547 agc: "DJ set (slow)"
6291 </voice> 6548 </voice>
6292</phrase> 6549</phrase>
6293<phrase> 6550<phrase>
6294 id: VOICE_HUNDRED 6551 id: LANG_AGC_MEDIUM
6295 desc: spoken only, for composing numbers 6552 desc: AGC preset
6296 user:
6297 <source> 6553 <source>
6298 *: "" 6554 *: none
6555 agc: "Medium"
6299 </source> 6556 </source>
6300 <dest> 6557 <dest>
6301 *: "" 6558 *: none
6559 agc: "Medium"
6302 </dest> 6560 </dest>
6303 <voice> 6561 <voice>
6304 *: "hundred" 6562 *: none
6563 agc: "Medium"
6305 </voice> 6564 </voice>
6306</phrase> 6565</phrase>
6307<phrase> 6566<phrase>
6308 id: VOICE_THOUSAND 6567 id: LANG_AGC_VOICE
6309 desc: spoken only, for composing numbers 6568 desc: AGC preset
6310 user:
6311 <source> 6569 <source>
6312 *: "" 6570 *: none
6571 agc: "Voice (fast)"
6313 </source> 6572 </source>
6314 <dest> 6573 <dest>
6315 *: "" 6574 *: none
6575 agc: "Voice (fast)"
6316 </dest> 6576 </dest>
6317 <voice> 6577 <voice>
6318 *: "thousand" 6578 *: none
6579 agc: "Voice (fast)"
6319 </voice> 6580 </voice>
6320</phrase> 6581</phrase>
6321<phrase> 6582<phrase>
6322 id: VOICE_MILLION 6583 id: LANG_RECORD_AGC_CLIPTIME
6323 desc: spoken only, for composing numbers 6584 desc: in record settings
6324 user:
6325 <source> 6585 <source>
6326 *: "" 6586 *: none
6587 agc: "AGC clip time"
6327 </source> 6588 </source>
6328 <dest> 6589 <dest>
6329 *: "" 6590 *: none
6591 agc: "AGC clip time"
6330 </dest> 6592 </dest>
6331 <voice> 6593 <voice>
6332 *: "million" 6594 *: none
6595 agc: "AGC clip time"
6333 </voice> 6596 </voice>
6334</phrase> 6597</phrase>
6335<phrase> 6598<phrase>
6336 id: VOICE_BILLION 6599 id: LANG_REMOTE_LCD_OFF
6337 desc: spoken only, for composing numbers 6600 desc: Remote lcd off splash in recording screen
6338 user: 6601 user:
6339 <source> 6602 <source>
6340 *: "" 6603 *: none
6604 remote: "Remote Display OFF"
6341 </source> 6605 </source>
6342 <dest> 6606 <dest>
6343 *: "" 6607 *: none
6608 remote: "Remote Display OFF"
6344 </dest> 6609 </dest>
6345 <voice> 6610 <voice>
6346 *: "billion" 6611 *: none
6612 remote: "Remote Display OFF"
6347 </voice> 6613 </voice>
6348</phrase> 6614</phrase>
6349<phrase> 6615<phrase>
6350 id: VOICE_MINUS 6616 id: LANG_REMOTE_LCD_ON
6351 desc: spoken only, for composing numbers 6617 desc: Remote lcd off splash in recording screen
6352 user: 6618 user:
6353 <source> 6619 <source>
6354 *: "" 6620 *: none
6621 remote: "(Vol- : Re-enable)"
6355 </source> 6622 </source>
6356 <dest> 6623 <dest>
6357 *: "" 6624 *: none
6625 remote: "(Vol- : Re-enable)"
6358 </dest> 6626 </dest>
6359 <voice> 6627 <voice>
6360 *: "minus" 6628 *: none
6629 remote: "(Vol- : Re-enable)"
6361 </voice> 6630 </voice>
6362</phrase> 6631</phrase>
6363<phrase> 6632<phrase>
6364 id: VOICE_PLUS 6633 id: LANG_CREATE_PLAYLIST
6365 desc: spoken only, for composing numbers 6634 desc: Menu option for creating a playlist
6366 user: 6635 user:
6367 <source> 6636 <source>
6368 *: "" 6637 *: "Create Playlist"
6369 </source> 6638 </source>
6370 <dest> 6639 <dest>
6371 *: "" 6640 *: "Create Playlist"
6372 </dest> 6641 </dest>
6373 <voice> 6642 <voice>
6374 *: "plus" 6643 *: "Create Playlist"
6375 </voice> 6644 </voice>
6376</phrase> 6645</phrase>
6377<phrase> 6646<phrase>
6378 id: VOICE_MILLISECONDS 6647 id: LANG_PLAYLISTVIEWER_SETTINGS
6379 desc: spoken only, a unit postfix 6648 desc: title for the playlist viewer settings menus
6380 user: 6649 user:
6381 <source> 6650 <source>
6382 *: "" 6651 *: "Playlist Viewer Settings"
6383 </source> 6652 </source>
6384 <dest> 6653 <dest>
6385 *: "" 6654 *: "Playlist Viewer Settings"
6386 </dest> 6655 </dest>
6387 <voice> 6656 <voice>
6388 *: "milliseconds" 6657 *: "Playlist Viewer Settings"
6389 </voice> 6658 </voice>
6390</phrase> 6659</phrase>
6391<phrase> 6660<phrase>
6392 id: VOICE_SECOND 6661 id: LANG_VIEW_DYNAMIC_PLAYLIST
6393 desc: spoken only, a unit postfix 6662 desc: in playlist menu.
6394 user: 6663 user:
6395 <source> 6664 <source>
6396 *: "" 6665 *: "View Current Playlist"
6397 </source> 6666 </source>
6398 <dest> 6667 <dest>
6399 *: "" 6668 *: "View Current Playlist"
6400 </dest> 6669 </dest>
6401 <voice> 6670 <voice>
6402 *: "second" 6671 *: "View Current Playlist"
6403 </voice> 6672 </voice>
6404</phrase> 6673</phrase>
6405<phrase> 6674<phrase>
6406 id: VOICE_SECONDS 6675 id: LANG_MOVE
6407 desc: spoken only, a unit postfix 6676 desc: The verb/action Move
6408 user: 6677 user:
6409 <source> 6678 <source>
6410 *: "" 6679 *: "Move"
6411 </source> 6680 </source>
6412 <dest> 6681 <dest>
6413 *: "" 6682 *: "Move"
6414 </dest> 6683 </dest>
6415 <voice> 6684 <voice>
6416 *: "seconds" 6685 *: "Move"
6417 </voice> 6686 </voice>
6418</phrase> 6687</phrase>
6419<phrase> 6688<phrase>
6420 id: VOICE_MINUTE 6689 id: LANG_SHOW_INDICES
6421 desc: spoken only, a unit postfix 6690 desc: in playlist viewer menu
6422 user: 6691 user:
6423 <source> 6692 <source>
6424 *: "" 6693 *: "Show Indices"
6425 </source> 6694 </source>
6426 <dest> 6695 <dest>
6427 *: "" 6696 *: "Show Indices"
6428 </dest> 6697 </dest>
6429 <voice> 6698 <voice>
6430 *: "minute" 6699 *: "Show Indices"
6431 </voice> 6700 </voice>
6432</phrase> 6701</phrase>
6433<phrase> 6702<phrase>
6434 id: VOICE_MINUTES 6703 id: LANG_TRACK_DISPLAY
6435 desc: spoken only, a unit postfix 6704 desc: in playlist viewer on+play menu
6436 user: 6705 user:
6437 <source> 6706 <source>
6438 *: "" 6707 *: "Track Display"
6439 </source> 6708 </source>
6440 <dest> 6709 <dest>
6441 *: "" 6710 *: "Track Display"
6442 </dest> 6711 </dest>
6443 <voice> 6712 <voice>
6444 *: "minutes" 6713 *: "Track Display"
6445 </voice> 6714 </voice>
6446</phrase> 6715</phrase>
6447<phrase> 6716<phrase>
6448 id: VOICE_HOUR 6717 id: LANG_DISPLAY_TRACK_NAME_ONLY
6449 desc: spoken only, a unit postfix 6718 desc: track display options
6450 user: 6719 user:
6451 <source> 6720 <source>
6452 *: "" 6721 *: "Track Name Only"
6453 </source> 6722 </source>
6454 <dest> 6723 <dest>
6455 *: "" 6724 *: "Track Name Only"
6456 </dest> 6725 </dest>
6457 <voice> 6726 <voice>
6458 *: "hour" 6727 *: "Track Name Only"
6459 </voice> 6728 </voice>
6460</phrase> 6729</phrase>
6461<phrase> 6730<phrase>
6462 id: VOICE_HOURS 6731 id: LANG_REMOVE
6463 desc: spoken only, a unit postfix 6732 desc: in playlist viewer on+play menu
6464 user: 6733 user:
6465 <source> 6734 <source>
6466 *: "" 6735 *: "Remove"
6467 </source> 6736 </source>
6468 <dest> 6737 <dest>
6469 *: "" 6738 *: "Remove"
6470 </dest> 6739 </dest>
6471 <voice> 6740 <voice>
6472 *: "hours" 6741 *: "Remove"
6473 </voice> 6742 </voice>
6474</phrase> 6743</phrase>
6475<phrase> 6744<phrase>
6476 id: VOICE_KHZ 6745 id: LANG_SAVE_DYNAMIC_PLAYLIST
6477 desc: spoken only, a unit postfix 6746 desc: in playlist menu.
6478 user: 6747 user:
6479 <source> 6748 <source>
6480 *: "" 6749 *: "Save Current Playlist"
6481 </source> 6750 </source>
6482 <dest> 6751 <dest>
6483 *: "" 6752 *: "Save Current Playlist"
6484 </dest> 6753 </dest>
6485 <voice> 6754 <voice>
6486 *: "kilohertz" 6755 *: "Save Current Playlist"
6487 </voice> 6756 </voice>
6488</phrase> 6757</phrase>
6489<phrase> 6758<phrase>
6490 id: VOICE_DB 6759 id: LANG_PLAYLIST_SAVE_COUNT
6491 desc: spoken only, a unit postfix 6760 desc: splash number of tracks saved
6492 user: 6761 user:
6493 <source> 6762 <source>
6494 *: "" 6763 *: "Saved %d tracks (%s)"
6495 </source> 6764 </source>
6496 <dest> 6765 <dest>
6497 *: "" 6766 *: "Saved %d tracks (%s)"
6498 </dest> 6767 </dest>
6499 <voice> 6768 <voice>
6500 *: "decibel"
6501 </voice>
6502</phrase>
6503<phrase>
6504 id: VOICE_PERCENT
6505 desc: spoken only, a unit postfix
6506 user:
6507 <source>
6508 *: ""
6509 </source>
6510 <dest>
6511 *: "" 6769 *: ""
6512 </dest>
6513 <voice>
6514 *: "percent"
6515 </voice> 6770 </voice>
6516</phrase> 6771</phrase>
6517<phrase> 6772<phrase>
6518 id: VOICE_MILLIAMPHOURS 6773 id: LANG_CATALOG
6519 desc: spoken only, a unit postfix 6774 desc: in onplay menu
6520 user: 6775 user:
6521 <source> 6776 <source>
6522 *: "" 6777 *: "Playlist Catalog"
6523 </source> 6778 </source>
6524 <dest> 6779 <dest>
6525 *: "" 6780 *: "Playlist Catalog"
6526 </dest> 6781 </dest>
6527 <voice> 6782 <voice>
6528 *: "milli-amp hours" 6783 *: "Playlist Catalog"
6529 </voice> 6784 </voice>
6530</phrase> 6785</phrase>
6531<phrase> 6786<phrase>
6532 id: VOICE_PIXEL 6787 id: LANG_RECURSE_DIRECTORY
6533 desc: spoken only, a unit postfix 6788 desc: In playlist menu
6534 user: 6789 user:
6535 <source> 6790 <source>
6536 *: "" 6791 *: "Recursively Insert Directories"
6537 </source> 6792 </source>
6538 <dest> 6793 <dest>
6539 *: "" 6794 *: "Recursively Insert Directories"
6540 </dest> 6795 </dest>
6541 <voice> 6796 <voice>
6542 *: "pixel" 6797 *: "Recursively Insert Directories"
6543 </voice> 6798 </voice>
6544</phrase> 6799</phrase>
6545<phrase> 6800<phrase>
6546 id: VOICE_PER_SEC 6801 id: LANG_RECURSE_DIRECTORY_QUESTION
6547 desc: spoken only, a unit postfix 6802 desc: Asked from onplay screen
6548 user: 6803 user:
6549 <source> 6804 <source>
6550 *: "" 6805 *: "Recursively?"
6551 </source> 6806 </source>
6552 <dest> 6807 <dest>
6553 *: "" 6808 *: "Recursively?"
6554 </dest> 6809 </dest>
6555 <voice> 6810 <voice>
6556 *: "per second" 6811 *: ""
6557 </voice> 6812 </voice>
6558</phrase> 6813</phrase>
6559<phrase> 6814<phrase>
6560 id: VOICE_HERTZ 6815 id: LANG_WARN_ERASEDYNPLAYLIST_MENU
6561 desc: spoken only, a unit postfix 6816 desc: in playlist options menu, option to warn when erasing dynamic playlist
6562 user: 6817 user:
6563 <source> 6818 <source>
6564 *: "" 6819 *: "Warn When Erasing Dynamic Playlist"
6565 </source> 6820 </source>
6566 <dest> 6821 <dest>
6567 *: "" 6822 *: "Warn When Erasing Dynamic Playlist"
6568 </dest> 6823 </dest>
6569 <voice> 6824 <voice>
6570 *: "hertz" 6825 *: "Warn When Erasing Dynamic Playlist"
6571 </voice> 6826 </voice>
6572</phrase> 6827</phrase>
6573<phrase> 6828<phrase>
6574 id: LANG_BYTE 6829 id: LANG_WARN_ERASEDYNPLAYLIST_PROMPT
6575 desc: a unit postfix 6830 desc: prompt shown when about to erase a modified dynamic playlist
6576 user: 6831 user:
6577 <source> 6832 <source>
6578 *: "B" 6833 *: "Erase dynamic playlist?"
6579 </source> 6834 </source>
6580 <dest> 6835 <dest>
6581 *: "B" 6836 *: "Erase dynamic playlist?"
6582 </dest> 6837 </dest>
6583 <voice> 6838 <voice>
6584 *: "" 6839 *: ""
6585 </voice> 6840 </voice>
6586</phrase> 6841</phrase>
6587<phrase> 6842<phrase>
6588 id: LANG_KILOBYTE 6843 id: LANG_SHUTDOWN
6589 desc: a unit postfix, also voiced 6844 desc: in main menu
6590 user: 6845 user:
6591 <source> 6846 <source>
6592 *: "KB" 6847 *: none
6848 soft_shutdown: "Shut down"
6593 </source> 6849 </source>
6594 <dest> 6850 <dest>
6595 *: "KB" 6851 *: none
6852 soft_shutdown: "Shut down"
6596 </dest> 6853 </dest>
6597 <voice> 6854 <voice>
6598 *: "kilobyte" 6855 *: none
6856 soft_shutdown: "Shut down"
6599 </voice> 6857 </voice>
6600</phrase> 6858</phrase>
6601<phrase> 6859<phrase>
6602 id: LANG_MEGABYTE 6860 id: LANG_ROCKBOX_INFO
6603 desc: a unit postfix, also voiced 6861 desc: displayed topmost on the info screen and in the info menu
6604 user: 6862 user:
6605 <source> 6863 <source>
6606 *: "MB" 6864 *: "Rockbox Info"
6607 </source> 6865 </source>
6608 <dest> 6866 <dest>
6609 *: "MB" 6867 *: "Rockbox Info"
6610 </dest> 6868 </dest>
6611 <voice> 6869 <voice>
6612 *: "megabyte" 6870 *: "Rockbox Info"
6613 </voice> 6871 </voice>
6614</phrase> 6872</phrase>
6615<phrase> 6873<phrase>
6616 id: LANG_GIGABYTE 6874 id: LANG_BUFFER_STAT
6617 desc: a unit postfix, also voiced 6875 desc: the buffer size, %d MB %d fraction of MB
6618 user: 6876 user:
6619 <source> 6877 <source>
6620 *: "GB" 6878 *: "Buffer: %d.%03dMB"
6879 player: "Buf: %d.%03dMB"
6621 </source> 6880 </source>
6622 <dest> 6881 <dest>
6623 *: "GB" 6882 *: "Buffer: %d.%03dMB"
6883 player: "Buf: %d.%03dMB"
6624 </dest> 6884 </dest>
6625 <voice> 6885 <voice>
6626 *: "gigabyte" 6886 *: ""
6627 </voice> 6887 </voice>
6628</phrase> 6888</phrase>
6629<phrase> 6889<phrase>
6630 id: LANG_POINT 6890 id: LANG_BATTERY_TIME
6631 desc: decimal separator for composing numbers 6891 desc: battery level in % and estimated time remaining
6632 user: 6892 user:
6633 <source> 6893 <source>
6634 *: "." 6894 *: "Battery: %d%% %dh %dm"
6895 player,recorder,fmrecorder,recorderv2,ondio*,ifp7xx: "%d%% %dh %dm"
6896 h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
6635 </source> 6897 </source>
6636 <dest> 6898 <dest>
6637 *: "." 6899 *: "Battery: %d%% %dh %dm"
6900 player,recorder,fmrecorder,recorderv2,ondio*,ifp7xx: "%d%% %dh %dm"
6901 h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
6638 </dest> 6902 </dest>
6639 <voice> 6903 <voice>
6640 *: "point" 6904 *: "Battery level"
6641 </voice> 6905 </voice>
6642</phrase> 6906</phrase>
6643<phrase> 6907<phrase>
6644 id: VOICE_CHAR_A 6908 id: LANG_DISK_SIZE_INFO
6645 desc: spoken only, for spelling 6909 desc: disk size info
6646 user: 6910 user:
6647 <source> 6911 <source>
6648 *: "" 6912 *: "Disk:"
6649 </source> 6913 </source>
6650 <dest> 6914 <dest>
6651 *: "" 6915 *: "Disk:"
6652 </dest> 6916 </dest>
6653 <voice> 6917 <voice>
6654 *: "A"
6655 </voice>
6656</phrase>
6657<phrase>
6658 id: VOICE_CHAR_B
6659 desc: spoken only, for spelling
6660 user:
6661 <source>
6662 *: "" 6918 *: ""
6663 </source>
6664 <dest>
6665 *: ""
6666 </dest>
6667 <voice>
6668 *: "B"
6669 </voice> 6919 </voice>
6670</phrase> 6920</phrase>
6671<phrase> 6921<phrase>
6672 id: VOICE_CHAR_C 6922 id: LANG_DISK_FREE_INFO
6673 desc: spoken only, for spelling 6923 desc: disk size info
6674 user: 6924 user:
6675 <source> 6925 <source>
6676 *: "" 6926 *: "Free:"
6677 </source> 6927 </source>
6678 <dest> 6928 <dest>
6679 *: "" 6929 *: "Free:"
6680 </dest> 6930 </dest>
6681 <voice> 6931 <voice>
6682 *: "C" 6932 *: "Free diskspace:"
6683 </voice> 6933 </voice>
6684</phrase> 6934</phrase>
6685<phrase> 6935<phrase>
6686 id: VOICE_CHAR_D 6936 id: LANG_DISK_NAME_INTERNAL
6687 desc: spoken only, for spelling 6937 desc: in info menu; name for internal disk with multivolume (keep short!)
6688 user: 6938 user:
6689 <source> 6939 <source>
6690 *: "" 6940 *: none
6941 multivolume: "Int:"
6691 </source> 6942 </source>
6692 <dest> 6943 <dest>
6693 *: "" 6944 *: none
6945 multivolume: "Int:"
6694 </dest> 6946 </dest>
6695 <voice> 6947 <voice>
6696 *: "D" 6948 *: none
6949 multivolume: "Internal"
6697 </voice> 6950 </voice>
6698</phrase> 6951</phrase>
6699<phrase> 6952<phrase>
6700 id: VOICE_CHAR_E 6953 id: LANG_DISK_NAME_MMC
6701 desc: spoken only, for spelling 6954 desc: in info menu; name for external disk with multivolume (Ondio; keep short!)
6702 user: 6955 user:
6703 <source> 6956 <source>
6704 *: "" 6957 *: none
6958 e200: "mSD:"
6959 ondio*: "MMC:"
6705 </source> 6960 </source>
6706 <dest> 6961 <dest>
6707 *: "" 6962 *: none
6963 e200: "mSD:"
6964 ondio*: "MMC:"
6708 </dest> 6965 </dest>
6709 <voice> 6966 <voice>
6710 *: "E" 6967 *: none
6968 e200: "micro Secure Digital card:"
6969 ondio*: "Multimedia card"
6711 </voice> 6970 </voice>
6712</phrase> 6971</phrase>
6713<phrase> 6972<phrase>
6714 id: VOICE_CHAR_F 6973 id: LANG_VERSION
6715 desc: spoken only, for spelling 6974 desc: in the info menu
6716 user: 6975 user:
6717 <source> 6976 <source>
6718 *: "" 6977 *: "Version"
6719 </source> 6978 </source>
6720 <dest> 6979 <dest>
6721 *: "" 6980 *: "Version"
6722 </dest> 6981 </dest>
6723 <voice> 6982 <voice>
6724 *: "F" 6983 *: "Version"
6725 </voice> 6984 </voice>
6726</phrase> 6985</phrase>
6727<phrase> 6986<phrase>
6728 id: VOICE_CHAR_G 6987 id: LANG_RUNNING_TIME
6729 desc: spoken only, for spelling 6988 desc: in run time screen
6730 user: 6989 user:
6731 <source> 6990 <source>
6732 *: "" 6991 *: "Running Time"
6733 </source> 6992 </source>
6734 <dest> 6993 <dest>
6735 *: "" 6994 *: "Running Time"
6736 </dest> 6995 </dest>
6737 <voice> 6996 <voice>
6738 *: "G" 6997 *: "Running Time"
6739 </voice> 6998 </voice>
6740</phrase> 6999</phrase>
6741<phrase> 7000<phrase>
6742 id: VOICE_CHAR_H 7001 id: LANG_CURRENT_TIME
6743 desc: spoken only, for spelling 7002 desc: in run time screen
6744 user: 7003 user:
6745 <source> 7004 <source>
6746 *: "" 7005 *: "Current Time"
6747 </source> 7006 </source>
6748 <dest> 7007 <dest>
6749 *: "" 7008 *: "Current Time"
6750 </dest> 7009 </dest>
6751 <voice> 7010 <voice>
6752 *: "H" 7011 *: "Current Time"
6753 </voice> 7012 </voice>
6754</phrase> 7013</phrase>
6755<phrase> 7014<phrase>
6756 id: VOICE_CHAR_I 7015 id: LANG_TOP_TIME
6757 desc: spoken only, for spelling 7016 desc: in run time screen
6758 user: 7017 user:
6759 <source> 7018 <source>
6760 *: "" 7019 *: "Top Time"
6761 </source> 7020 </source>
6762 <dest> 7021 <dest>
6763 *: "" 7022 *: "Top Time"
6764 </dest> 7023 </dest>
6765 <voice> 7024 <voice>
6766 *: "I" 7025 *: "Top Time"
6767 </voice> 7026 </voice>
6768</phrase> 7027</phrase>
6769<phrase> 7028<phrase>
6770 id: VOICE_CHAR_J 7029 id: LANG_CLEAR_TIME
6771 desc: spoken only, for spelling 7030 desc: in run time screen
6772 user: 7031 user:
6773 <source> 7032 <source>
6774 *: "" 7033 *: "Clear Time?"
6775 </source> 7034 </source>
6776 <dest> 7035 <dest>
6777 *: "" 7036 *: "Clear Time?"
6778 </dest> 7037 </dest>
6779 <voice> 7038 <voice>
6780 *: "J" 7039 *: "Clear Time?"
6781 </voice> 7040 </voice>
6782</phrase> 7041</phrase>
6783<phrase> 7042<phrase>
6784 id: VOICE_CHAR_K 7043 id: LANG_DEBUG
6785 desc: spoken only, for spelling 7044 desc: in the info menu
6786 user: 7045 user:
6787 <source> 7046 <source>
6788 *: "" 7047 *: "Debug (Keep Out!)"
6789 </source> 7048 </source>
6790 <dest> 7049 <dest>
6791 *: "" 7050 *: "Debug (Keep Out!)"
6792 </dest> 7051 </dest>
6793 <voice> 7052 <voice>
6794 *: "K" 7053 *: "Debug, keep out!"
6795 </voice> 7054 </voice>
6796</phrase> 7055</phrase>
6797<phrase> 7056<phrase>
6798 id: VOICE_CHAR_L 7057 id: LANG_USB
6799 desc: spoken only, for spelling 7058 desc: in the info menu
6800 user: 7059 user:
6801 <source> 7060 <source>
6802 *: "" 7061 *: none
7062 sim: "USB (Sim)"
6803 </source> 7063 </source>
6804 <dest> 7064 <dest>
6805 *: "" 7065 *: none
7066 sim: "USB (Sim)"
6806 </dest> 7067 </dest>
6807 <voice> 7068 <voice>
6808 *: "L" 7069 *: none
7070 sim: ""
6809 </voice> 7071 </voice>
6810</phrase> 7072</phrase>
6811<phrase> 7073<phrase>
6812 id: VOICE_CHAR_M 7074 id: LANG_PLAYLIST
6813 desc: spoken only, for spelling 7075 desc: Used when you need to say playlist, also voiced
6814 user: 7076 user:
6815 <source> 7077 <source>
6816 *: "" 7078 *: "Playlist"
6817 </source> 7079 </source>
6818 <dest> 7080 <dest>
6819 *: "" 7081 *: "Playlist"
6820 </dest> 7082 </dest>
6821 <voice> 7083 <voice>
6822 *: "M" 7084 *: "Playlist"
6823 </voice> 7085 </voice>
6824</phrase> 7086</phrase>
6825<phrase> 7087<phrase>
6826 id: VOICE_CHAR_N 7088 id: LANG_INSERT
6827 desc: spoken only, for spelling 7089 desc: in onplay menu. insert a track/playlist into dynamic playlist.
6828 user: 7090 user:
6829 <source> 7091 <source>
6830 *: "" 7092 *: "Insert"
6831 </source> 7093 </source>
6832 <dest> 7094 <dest>
6833 *: "" 7095 *: "Insert"
6834 </dest> 7096 </dest>
6835 <voice> 7097 <voice>
6836 *: "N" 7098 *: "Insert"
6837 </voice> 7099 </voice>
6838</phrase> 7100</phrase>
6839<phrase> 7101<phrase>
6840 id: VOICE_CHAR_O 7102 id: LANG_INSERT_FIRST
6841 desc: spoken only, for spelling 7103 desc: in onplay menu. insert a track/playlist into dynamic playlist.
6842 user: 7104 user:
6843 <source> 7105 <source>
6844 *: "" 7106 *: "Insert next"
6845 </source> 7107 </source>
6846 <dest> 7108 <dest>
6847 *: "" 7109 *: "Insert next"
6848 </dest> 7110 </dest>
6849 <voice> 7111 <voice>
6850 *: "O" 7112 *: "Insert next"
6851 </voice> 7113 </voice>
6852</phrase> 7114</phrase>
6853<phrase> 7115<phrase>
6854 id: VOICE_CHAR_P 7116 id: LANG_INSERT_LAST
6855 desc: spoken only, for spelling 7117 desc: in onplay menu. append a track/playlist into dynamic playlist.
6856 user: 7118 user:
6857 <source> 7119 <source>
6858 *: "" 7120 *: "Insert last"
6859 </source> 7121 </source>
6860 <dest> 7122 <dest>
6861 *: "" 7123 *: "Insert last"
6862 </dest> 7124 </dest>
6863 <voice> 7125 <voice>
6864 *: "P" 7126 *: "Insert last"
6865 </voice> 7127 </voice>
6866</phrase> 7128</phrase>
6867<phrase> 7129<phrase>
6868 id: VOICE_CHAR_Q 7130 id: LANG_INSERT_SHUFFLED
6869 desc: spoken only, for spelling 7131 desc: in onplay menu. insert a track/playlist randomly into dynamic playlist
6870 user: 7132 user:
6871 <source> 7133 <source>
6872 *: "" 7134 *: "Insert shuffled"
6873 </source> 7135 </source>
6874 <dest> 7136 <dest>
6875 *: "" 7137 *: "Insert shuffled"
6876 </dest> 7138 </dest>
6877 <voice> 7139 <voice>
6878 *: "Q" 7140 *: "Insert shuffled"
6879 </voice> 7141 </voice>
6880</phrase> 7142</phrase>
6881<phrase> 7143<phrase>
6882 id: VOICE_CHAR_R 7144 id: LANG_QUEUE
6883 desc: spoken only, for spelling 7145 desc: The verb/action Queue
6884 user: 7146 user:
6885 <source> 7147 <source>
6886 *: "" 7148 *: "Queue"
6887 </source> 7149 </source>
6888 <dest> 7150 <dest>
6889 *: "" 7151 *: "Queue"
6890 </dest> 7152 </dest>
6891 <voice> 7153 <voice>
6892 *: "R" 7154 *: "Queue"
6893 </voice> 7155 </voice>
6894</phrase> 7156</phrase>
6895<phrase> 7157<phrase>
6896 id: VOICE_CHAR_S 7158 id: LANG_QUEUE_FIRST
6897 desc: spoken only, for spelling 7159 desc: in onplay menu. queue a track/playlist into dynamic playlist.
6898 user: 7160 user:
6899 <source> 7161 <source>
6900 *: "" 7162 *: "Queue next"
6901 </source> 7163 </source>
6902 <dest> 7164 <dest>
6903 *: "" 7165 *: "Queue next"
6904 </dest> 7166 </dest>
6905 <voice> 7167 <voice>
6906 *: "S" 7168 *: "Queue next"
6907 </voice> 7169 </voice>
6908</phrase> 7170</phrase>
6909<phrase> 7171<phrase>
6910 id: VOICE_CHAR_T 7172 id: LANG_QUEUE_LAST
6911 desc: spoken only, for spelling 7173 desc: in onplay menu. queue a track/playlist at end of playlist.
6912 user: 7174 user:
6913 <source> 7175 <source>
6914 *: "" 7176 *: "Queue last"
6915 </source> 7177 </source>
6916 <dest> 7178 <dest>
6917 *: "" 7179 *: "Queue last"
6918 </dest> 7180 </dest>
6919 <voice> 7181 <voice>
6920 *: "T" 7182 *: "Queue last"
6921 </voice> 7183 </voice>
6922</phrase> 7184</phrase>
6923<phrase> 7185<phrase>
6924 id: VOICE_CHAR_U 7186 id: LANG_QUEUE_SHUFFLED
6925 desc: spoken only, for spelling 7187 desc: in onplay menu. queue a track/playlist randomly into dynamic playlist
6926 user: 7188 user:
6927 <source> 7189 <source>
6928 *: "" 7190 *: "Queue shuffled"
6929 </source> 7191 </source>
6930 <dest> 7192 <dest>
6931 *: "" 7193 *: "Queue shuffled"
6932 </dest> 7194 </dest>
6933 <voice> 7195 <voice>
6934 *: "U" 7196 *: "Queue shuffled"
6935 </voice> 7197 </voice>
6936</phrase> 7198</phrase>
6937<phrase> 7199<phrase>
6938 id: VOICE_CHAR_V 7200 id: LANG_REPLACE
6939 desc: spoken only, for spelling 7201 desc: in onplay menu. Replace the current playlist with a new one.
6940 user: 7202 user:
6941 <source> 7203 <source>
6942 *: "" 7204 *: "Play Next"
6943 </source> 7205 </source>
6944 <dest> 7206 <dest>
6945 *: "" 7207 *: "Play Next"
6946 </dest> 7208 </dest>
6947 <voice> 7209 <voice>
6948 *: "V" 7210 *: "Play Next"
6949 </voice> 7211 </voice>
6950</phrase> 7212</phrase>
6951<phrase> 7213<phrase>
6952 id: VOICE_CHAR_W 7214 id: LANG_PLAYLIST_INSERT_COUNT
6953 desc: spoken only, for spelling 7215 desc: splash number of tracks inserted
6954 user: 7216 user:
6955 <source> 7217 <source>
6956 *: "" 7218 *: "Inserted %d tracks (%s)"
6957 </source> 7219 </source>
6958 <dest> 7220 <dest>
6959 *: "" 7221 *: "Inserted %d tracks (%s)"
6960 </dest> 7222 </dest>
6961 <voice> 7223 <voice>
6962 *: "W"
6963 </voice>
6964</phrase>
6965<phrase>
6966 id: VOICE_CHAR_X
6967 desc: spoken only, for spelling
6968 user:
6969 <source>
6970 *: ""
6971 </source>
6972 <dest>
6973 *: "" 7224 *: ""
6974 </dest>
6975 <voice>
6976 *: "X"
6977 </voice> 7225 </voice>
6978</phrase> 7226</phrase>
6979<phrase> 7227<phrase>
6980 id: VOICE_CHAR_Y 7228 id: LANG_PLAYLIST_QUEUE_COUNT
6981 desc: spoken only, for spelling 7229 desc: splash number of tracks queued
6982 user: 7230 user:
6983 <source> 7231 <source>
6984 *: "" 7232 *: "Queued %d tracks (%s)"
6985 </source> 7233 </source>
6986 <dest> 7234 <dest>
6987 *: "" 7235 *: "Queued %d tracks (%s)"
6988 </dest> 7236 </dest>
6989 <voice> 7237 <voice>
6990 *: "Y"
6991 </voice>
6992</phrase>
6993<phrase>
6994 id: VOICE_CHAR_Z
6995 desc: spoken only, for spelling
6996 user:
6997 <source>
6998 *: "" 7238 *: ""
6999 </source>
7000 <dest>
7001 *: ""
7002 </dest>
7003 <voice>
7004 *: "Z"
7005 </voice> 7239 </voice>
7006</phrase> 7240</phrase>
7007<phrase> 7241<phrase>
7008 id: VOICE_DOT 7242 id: LANG_VIEW
7009 desc: spoken only, for spelling 7243 desc: in on+play menu
7010 user: 7244 user:
7011 <source> 7245 <source>
7012 *: "" 7246 *: "View"
7013 </source> 7247 </source>
7014 <dest> 7248 <dest>
7015 *: "" 7249 *: "View"
7016 </dest> 7250 </dest>
7017 <voice> 7251 <voice>
7018 *: "dot" 7252 *: "View"
7019 </voice> 7253 </voice>
7020</phrase> 7254</phrase>
7021<phrase> 7255<phrase>
7022 id: VOICE_PAUSE 7256 id: LANG_SEARCH_IN_PLAYLIST
7023 desc: spoken only, for spelling, a split second of silence (difficult to author) 7257 desc: in playlist menu.
7024 user: 7258 user:
7025 <source> 7259 <source>
7026 *: "" 7260 *: "Search In Playlist"
7027 </source> 7261 </source>
7028 <dest> 7262 <dest>
7029 *: "" 7263 *: "Search In Playlist"
7030 </dest> 7264 </dest>
7031 <voice> 7265 <voice>
7032 *: " " 7266 *: "Search In Playlist"
7033 </voice> 7267 </voice>
7034</phrase> 7268</phrase>
7035<phrase> 7269<phrase>
7036 id: VOICE_FILE 7270 id: LANG_PLAYLIST_SEARCH_MSG
7037 desc: spoken only, prefix for file number 7271 desc: splash number of tracks inserted
7038 user: 7272 user:
7039 <source> 7273 <source>
7040 *: "" 7274 *: "Searching... %d found (%s)"
7041 </source> 7275 </source>
7042 <dest> 7276 <dest>
7043 *: "" 7277 *: "Searching... %d found (%s)"
7044 </dest> 7278 </dest>
7045 <voice> 7279 <voice>
7046 *: "file"
7047 </voice>
7048</phrase>
7049<phrase>
7050 id: VOICE_DIR
7051 desc: spoken only, prefix for directory number
7052 user:
7053 <source>
7054 *: "" 7280 *: ""
7055 </source>
7056 <dest>
7057 *: ""
7058 </dest>
7059 <voice>
7060 *: "folder"
7061 </voice> 7281 </voice>
7062</phrase> 7282</phrase>
7063<phrase> 7283<phrase>
7064 id: VOICE_EXT_MPA 7284 id: LANG_SHUFFLE_PLAYLIST
7065 desc: spoken only, for file extension 7285 desc: in playlist menu, reshuffles the order in which songs are played
7066 user: 7286 user:
7067 <source> 7287 <source>
7068 *: "" 7288 *: "Reshuffle"
7069 </source> 7289 </source>
7070 <dest> 7290 <dest>
7071 *: "" 7291 *: "Reshuffle"
7072 </dest> 7292 </dest>
7073 <voice> 7293 <voice>
7074 *: "audio" 7294 *: "Reshuffle"
7075 </voice> 7295 </voice>
7076</phrase> 7296</phrase>
7077<phrase> 7297<phrase>
7078 id: VOICE_EXT_CFG 7298 id: LANG_CATALOG_VIEW
7079 desc: spoken only, for file extension 7299 desc: in onplay playlist catalog submenu
7080 user: 7300 user:
7081 <source> 7301 <source>
7082 *: "" 7302 *: "View Catalog"
7083 </source> 7303 </source>
7084 <dest> 7304 <dest>
7085 *: "" 7305 *: "View Catalog"
7086 </dest> 7306 </dest>
7087 <voice> 7307 <voice>
7088 *: "configuration" 7308 *: "View Catalog"
7089 </voice> 7309 </voice>
7090</phrase> 7310</phrase>
7091<phrase> 7311<phrase>
7092 id: VOICE_EXT_WPS 7312 id: LANG_CATALOG_ADD_TO
7093 desc: spoken only, for file extension 7313 desc: in onplay playlist catalog submenu
7094 user: 7314 user:
7095 <source> 7315 <source>
7096 *: "" 7316 *: "Add to Playlist"
7097 </source> 7317 </source>
7098 <dest> 7318 <dest>
7099 *: "" 7319 *: "Add to Playlist"
7100 </dest> 7320 </dest>
7101 <voice> 7321 <voice>
7102 *: "while-playing-screen" 7322 *: "Add to Playlist"
7103 </voice> 7323 </voice>
7104</phrase> 7324</phrase>
7105<phrase> 7325<phrase>
7106 id: VOICE_EXT_TXT 7326 id: LANG_CATALOG_ADD_TO_NEW
7107 desc: spoken only, for file extension 7327 desc: in onplay playlist catalog submenu
7108 user: 7328 user:
7109 <source> 7329 <source>
7110 *: "" 7330 *: "Add to New Playlist"
7111 </source> 7331 </source>
7112 <dest> 7332 <dest>
7113 *: "" 7333 *: "Add to New Playlist"
7114 </dest> 7334 </dest>
7115 <voice> 7335 <voice>
7116 *: "text" 7336 *: "Add to New Playlist"
7117 </voice> 7337 </voice>
7118</phrase> 7338</phrase>
7119<phrase> 7339<phrase>
7120 id: VOICE_EXT_ROCK 7340 id: LANG_CATALOG_NO_DIRECTORY
7121 desc: spoken only, for file extension 7341 desc: error message when playlist catalog directory doesn't exist
7122 user: 7342 user:
7123 <source> 7343 <source>
7124 *: "" 7344 *: "%s doesn't exist"
7125 </source> 7345 </source>
7126 <dest> 7346 <dest>
7127 *: "" 7347 *: "%s doesn't exist"
7128 </dest> 7348 </dest>
7129 <voice> 7349 <voice>
7130 *: "plugin" 7350 *: ""
7131 </voice> 7351 </voice>
7132</phrase> 7352</phrase>
7133<phrase> 7353<phrase>
7134 id: VOICE_EXT_FONT 7354 id: LANG_CATALOG_NO_PLAYLISTS
7135 desc: spoken only, for file extension 7355 desc: error message when no playlists for playlist catalog
7136 user: 7356 user:
7137 <source> 7357 <source>
7138 *: "" 7358 *: "No Playlists"
7139 </source> 7359 </source>
7140 <dest> 7360 <dest>
7141 *: "" 7361 *: "No Playlists"
7142 </dest> 7362 </dest>
7143 <voice> 7363 <voice>
7144 *: "font" 7364 *: ""
7145 </voice> 7365 </voice>
7146</phrase> 7366</phrase>
7147<phrase> 7367<phrase>
7148 id: VOICE_EXT_BMARK 7368 id: LANG_BOOKMARK_MENU
7149 desc: spoken only, for file extension and the word in general 7369 desc: Text on main menu to get to bookmark commands
7150 user: 7370 user:
7151 <source> 7371 <source>
7152 *: "" 7372 *: "Bookmarks"
7153 </source> 7373 </source>
7154 <dest> 7374 <dest>
7155 *: "" 7375 *: "Bookmarks"
7156 </dest> 7376 </dest>
7157 <voice> 7377 <voice>
7158 *: "bookmark" 7378 *: "Bookmarks"
7159 </voice> 7379 </voice>
7160</phrase> 7380</phrase>
7161<phrase> 7381<phrase>
7162 id: VOICE_EXT_UCL 7382 id: LANG_BOOKMARK_MENU_CREATE
7163 desc: spoken only, for file extension 7383 desc: Used off of the bookmark menu to create a bookmark
7164 user: 7384 user:
7165 <source> 7385 <source>
7166 *: "" 7386 *: "Create Bookmark"
7167 </source> 7387 </source>
7168 <dest> 7388 <dest>
7169 *: "" 7389 *: "Create Bookmark"
7170 </dest> 7390 </dest>
7171 <voice> 7391 <voice>
7172 *: "flash" 7392 *: "Create Bookmark"
7173 </voice> 7393 </voice>
7174</phrase> 7394</phrase>
7175<phrase> 7395<phrase>
7176 id: VOICE_EXT_AJZ 7396 id: LANG_BOOKMARK_MENU_LIST
7177 desc: spoken only, for file extension 7397 desc: Used off of the bookmark menu to list available bookmarks for the currently playing directory or M3U
7178 user: 7398 user:
7179 <source> 7399 <source>
7180 *: "" 7400 *: "List Bookmarks"
7181 </source> 7401 </source>
7182 <dest> 7402 <dest>
7183 *: "" 7403 *: "List Bookmarks"
7184 </dest> 7404 </dest>
7185 <voice> 7405 <voice>
7186 *: "firmware" 7406 *: "List Bookmarks"
7187 </voice> 7407 </voice>
7188</phrase> 7408</phrase>
7189<phrase> 7409<phrase>
7190 id: VOICE_EXT_RWPS 7410 id: LANG_ONPLAY_MENU_TITLE
7191 desc: spoken only, for file extension 7411 desc: title for the onplay menus
7192 user: 7412 user:
7193 <source> 7413 <source>
7194 *: "" 7414 *: "Context Menu"
7195 </source> 7415 </source>
7196 <dest> 7416 <dest>
7197 *: "" 7417 *: "Context Menu"
7198 </dest> 7418 </dest>
7199 <voice> 7419 <voice>
7200 *: "remote while-playing-screen" 7420 *: "Context Menu"
7201 </voice> 7421 </voice>
7202</phrase> 7422</phrase>
7203<phrase> 7423<phrase>
7204 id: VOICE_EXT_KBD 7424 id: LANG_MENU_SET_RATING
7205 desc: spoken only, for file extension 7425 desc: Set the rating of a file in the wps context menu
7206 user: 7426 user:
7207 <source> 7427 <source>
7208 *: "" 7428 *: "Menu set rating"
7209 </source> 7429 </source>
7210 <dest> 7430 <dest>
7211 *: "" 7431 *: "Menu set rating"
7212 </dest> 7432 </dest>
7213 <voice> 7433 <voice>
7214 *: "keyboard" 7434 *: "Menu set rating"
7215 </voice> 7435 </voice>
7216</phrase> 7436</phrase>
7217<phrase> 7437<phrase>
7218 id: LANG_PLAYLIST_LOAD 7438 id: LANG_BROWSE_CUESHEET
7219 desc: displayed on screen while loading a playlist 7439 desc:
7220 user: 7440 user:
7221 <source> 7441 <source>
7222 *: "Loading..." 7442 *: "Browse Cuesheet"
7223 </source> 7443 </source>
7224 <dest> 7444 <dest>
7225 *: "Loading..." 7445 *: "Browse Cuesheet"
7226 </dest> 7446 </dest>
7227 <voice> 7447 <voice>
7228 *: "" 7448 *: "Browse Cuesheet"
7229 </voice> 7449 </voice>
7230</phrase> 7450</phrase>
7231<phrase> 7451<phrase>
7232 id: LANG_PLAYLIST_SHUFFLE 7452 id: LANG_MENU_SHOW_ID3_INFO
7233 desc: displayed on screen while shuffling a playlist 7453 desc: Menu option to start tag viewer
7234 user: 7454 user:
7235 <source> 7455 <source>
7236 *: "Shuffling..." 7456 *: "Show ID3 Info"
7237 </source> 7457 </source>
7238 <dest> 7458 <dest>
7239 *: "Shuffling..." 7459 *: "Show ID3 Info"
7240 </dest> 7460 </dest>
7241 <voice> 7461 <voice>
7242 *: "" 7462 *: "Show ID3 Info"
7243 </voice> 7463 </voice>
7244</phrase> 7464</phrase>
7245<phrase> 7465<phrase>
7246 id: LANG_PLAYLIST_BUFFER_FULL 7466 id: LANG_ID3_TITLE
7247 desc: in playlist.indices() when playlist is full 7467 desc: in tag viewer
7248 user: 7468 user:
7249 <source> 7469 <source>
7250 *: "Playlist Buffer Full" 7470 *: "[Title]"
7251 </source> 7471 </source>
7252 <dest> 7472 <dest>
7253 *: "Playlist Buffer Full" 7473 *: "[Title]"
7254 </dest> 7474 </dest>
7255 <voice> 7475 <voice>
7256 *: "" 7476 *: ""
7257 </voice> 7477 </voice>
7258</phrase> 7478</phrase>
7259<phrase> 7479<phrase>
7260 id: LANG_END_PLAYLIST_PLAYER 7480 id: LANG_ID3_ARTIST
7261 desc: DEPRECATED 7481 desc: in tag viewer
7262 user: 7482 user:
7263 <source> 7483 <source>
7264 *: "" 7484 *: "[Artist]"
7265 </source> 7485 </source>
7266 <dest> 7486 <dest>
7267 *: deprecated 7487 *: "[Artist]"
7268 </dest> 7488 </dest>
7269 <voice> 7489 <voice>
7270 *: "" 7490 *: ""
7271 </voice> 7491 </voice>
7272</phrase> 7492</phrase>
7273<phrase> 7493<phrase>
7274 id: LANG_END_PLAYLIST_RECORDER 7494 id: LANG_ID3_ALBUM
7275 desc: when playlist has finished 7495 desc: in tag viewer
7276 user: 7496 user:
7277 <source> 7497 <source>
7278 *: "End of Song List" 7498 *: "[Album]"
7279 player: "End of List"
7280 </source> 7499 </source>
7281 <dest> 7500 <dest>
7282 *: "End of Song List" 7501 *: "[Album]"
7283 player: "End of List"
7284 </dest> 7502 </dest>
7285 <voice> 7503 <voice>
7286 *: "" 7504 *: ""
7287 </voice> 7505 </voice>
7288</phrase> 7506</phrase>
7289<phrase> 7507<phrase>
7290 id: LANG_CREATING 7508 id: LANG_ID3_TRACKNUM
7291 desc: Screen feedback during playlist creation 7509 desc: in tag viewer
7292 user: 7510 user:
7293 <source> 7511 <source>
7294 *: "Creating" 7512 *: "[Tracknum]"
7295 </source> 7513 </source>
7296 <dest> 7514 <dest>
7297 *: "Creating" 7515 *: "[Tracknum]"
7298 </dest> 7516 </dest>
7299 <voice> 7517 <voice>
7300 *: "" 7518 *: ""
7301 </voice> 7519 </voice>
7302</phrase> 7520</phrase>
7303<phrase> 7521<phrase>
7304 id: LANG_PLAYLIST_INSERT_COUNT 7522 id: LANG_ID3_GENRE
7305 desc: splash number of tracks inserted 7523 desc: in tag viewer
7306 user: 7524 user:
7307 <source> 7525 <source>
7308 *: "Inserted %d tracks (%s)" 7526 *: "[Genre]"
7309 </source> 7527 </source>
7310 <dest> 7528 <dest>
7311 *: "Inserted %d tracks (%s)" 7529 *: "[Genre]"
7312 </dest> 7530 </dest>
7313 <voice> 7531 <voice>
7314 *: "" 7532 *: ""
7315 </voice> 7533 </voice>
7316</phrase> 7534</phrase>
7317<phrase> 7535<phrase>
7318 id: LANG_PLAYLIST_QUEUE_COUNT 7536 id: LANG_ID3_YEAR
7319 desc: splash number of tracks queued 7537 desc: in tag viewer
7320 user: 7538 user:
7321 <source> 7539 <source>
7322 *: "Queued %d tracks (%s)" 7540 *: "[Year]"
7323 </source> 7541 </source>
7324 <dest> 7542 <dest>
7325 *: "Queued %d tracks (%s)" 7543 *: "[Year]"
7326 </dest> 7544 </dest>
7327 <voice> 7545 <voice>
7328 *: "" 7546 *: ""
7329 </voice> 7547 </voice>
7330</phrase> 7548</phrase>
7331<phrase> 7549<phrase>
7332 id: LANG_PLAYLIST_SAVE_COUNT 7550 id: LANG_ID3_LENGTH
7333 desc: splash number of tracks saved 7551 desc: in tag viewer
7334 user: 7552 user:
7335 <source> 7553 <source>
7336 *: "Saved %d tracks (%s)" 7554 *: "[Length]"
7337 </source> 7555 </source>
7338 <dest> 7556 <dest>
7339 *: "Saved %d tracks (%s)" 7557 *: "[Length]"
7340 </dest> 7558 </dest>
7341 <voice> 7559 <voice>
7342 *: "" 7560 *: ""
7343 </voice> 7561 </voice>
7344</phrase> 7562</phrase>
7345<phrase> 7563<phrase>
7346 id: LANG_RECURSE_DIRECTORY_QUESTION 7564 id: LANG_ID3_PLAYLIST
7347 desc: Asked from onplay screen 7565 desc: in tag viewer
7348 user: 7566 user:
7349 <source> 7567 <source>
7350 *: "Recursively?" 7568 *: "[Playlist]"
7351 </source> 7569 </source>
7352 <dest> 7570 <dest>
7353 *: "Recursively?" 7571 *: "[Playlist]"
7354 </dest> 7572 </dest>
7355 <voice> 7573 <voice>
7356 *: "" 7574 *: ""
7357 </voice> 7575 </voice>
7358</phrase> 7576</phrase>
7359<phrase> 7577<phrase>
7360 id: LANG_WARN_ERASEDYNPLAYLIST_PROMPT 7578 id: LANG_ID3_BITRATE
7361 desc: prompt shown when about to erase a modified dynamic playlist 7579 desc: in tag viewer
7362 user: 7580 user:
7363 <source> 7581 <source>
7364 *: "Erase dynamic playlist?" 7582 *: "[Bitrate]"
7365 </source> 7583 </source>
7366 <dest> 7584 <dest>
7367 *: "Erase dynamic playlist?" 7585 *: "[Bitrate]"
7368 </dest> 7586 </dest>
7369 <voice> 7587 <voice>
7370 *: "" 7588 *: ""
7371 </voice> 7589 </voice>
7372</phrase> 7590</phrase>
7373<phrase> 7591<phrase>
7374 id: LANG_NOTHING_TO_RESUME 7592 id: LANG_ID3_ALBUMARTIST
7375 desc: Error message displayed when resume button pressed but no playlist 7593 desc: in tag viewer
7376 user: 7594 user:
7377 <source> 7595 <source>
7378 *: "Nothing to resume" 7596 *: "[Album Artist]"
7379 </source> 7597 </source>
7380 <dest> 7598 <dest>
7381 *: "Nothing to resume" 7599 *: "[Album Artist]"
7382 </dest> 7600 </dest>
7383 <voice> 7601 <voice>
7384 *: "" 7602 *: ""
7385 </voice> 7603 </voice>
7386</phrase> 7604</phrase>
7387<phrase> 7605<phrase>
7388 id: LANG_PLAYLIST_CONTROL_UPDATE_ERROR 7606 id: LANG_ID3_DISCNUM
7389 desc: Playlist error 7607 desc: in tag viewer
7390 user: 7608 user:
7391 <source> 7609 <source>
7392 *: "Error updating playlist control file" 7610 *: "[Discnum]"
7393 </source> 7611 </source>
7394 <dest> 7612 <dest>
7395 *: "Error updating playlist control file" 7613 *: "[Discnum]"
7396 </dest> 7614 </dest>
7397 <voice> 7615 <voice>
7398 *: "" 7616 *: ""
7399 </voice> 7617 </voice>
7400</phrase> 7618</phrase>
7401<phrase> 7619<phrase>
7402 id: LANG_PLAYLIST_ACCESS_ERROR 7620 id: LANG_ID3_COMMENT
7403 desc: Playlist error 7621 desc: in tag viewer
7404 user: 7622 user:
7405 <source> 7623 <source>
7406 *: "Error accessing playlist file" 7624 *: "[Comment]"
7407 </source> 7625 </source>
7408 <dest> 7626 <dest>
7409 *: "Error accessing playlist file" 7627 *: "[Comment]"
7410 </dest> 7628 </dest>
7411 <voice> 7629 <voice>
7412 *: "" 7630 *: ""
7413 </voice> 7631 </voice>
7414</phrase> 7632</phrase>
7415<phrase> 7633<phrase>
7416 id: LANG_PLAYLIST_CONTROL_ACCESS_ERROR 7634 id: LANG_ID3_VBR
7417 desc: Playlist error 7635 desc: in browse_id3
7418 user: 7636 user:
7419 <source> 7637 <source>
7420 *: "Error accessing playlist control file" 7638 *: " (VBR)"
7421 </source> 7639 </source>
7422 <dest> 7640 <dest>
7423 *: "Error accessing playlist control file" 7641 *: " (VBR)"
7424 </dest> 7642 </dest>
7425 <voice> 7643 <voice>
7426 *: "" 7644 *: ""
7427 </voice> 7645 </voice>
7428</phrase> 7646</phrase>
7429<phrase> 7647<phrase>
7430 id: LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR 7648 id: LANG_ID3_FREQUENCY
7431 desc: Playlist error 7649 desc: in tag viewer
7432 user: 7650 user:
7433 <source> 7651 <source>
7434 *: "Error accessing directory" 7652 *: "[Frequency]"
7435 </source> 7653 </source>
7436 <dest> 7654 <dest>
7437 *: "Error accessing directory" 7655 *: "[Frequency]"
7438 </dest> 7656 </dest>
7439 <voice> 7657 <voice>
7440 *: "" 7658 *: ""
7441 </voice> 7659 </voice>
7442</phrase> 7660</phrase>
7443<phrase> 7661<phrase>
7444 id: LANG_PLAYLIST_CONTROL_INVALID 7662 id: LANG_ID3_TRACK_GAIN
7445 desc: Playlist resume error 7663 desc: in tag viewer
7446 user: 7664 user:
7447 <source> 7665 <source>
7448 *: "Playlist control file is invalid" 7666 *: "[Track Gain]"
7449 </source> 7667 </source>
7450 <dest> 7668 <dest>
7451 *: "Playlist control file is invalid" 7669 *: "[Track Gain]"
7452 </dest> 7670 </dest>
7453 <voice> 7671 <voice>
7454 *: "" 7672 *: ""
7455 </voice> 7673 </voice>
7456</phrase> 7674</phrase>
7457<phrase> 7675<phrase>
7458 id: LANG_FM_STATION 7676 id: LANG_ID3_ALBUM_GAIN
7459 desc: in radio screen 7677 desc: in tag viewer
7460 user: 7678 user:
7461 <source> 7679 <source>
7462 *: "Station: %d.%02d MHz" 7680 *: "[Album Gain]"
7463 </source> 7681 </source>
7464 <dest> 7682 <dest>
7465 *: "Station: %d.%02d MHz" 7683 *: "[Album Gain]"
7466 </dest> 7684 </dest>
7467 <voice> 7685 <voice>
7468 *: "" 7686 *: ""
7469 </voice> 7687 </voice>
7470</phrase> 7688</phrase>
7471<phrase> 7689<phrase>
7472 id: LANG_FM_NO_PRESETS 7690 id: LANG_ID3_PATH
7473 desc: error when preset list is empty 7691 desc: in tag viewer
7474 user: 7692 user:
7475 <source> 7693 <source>
7476 *: "No presets" 7694 *: "[Path]"
7477 </source> 7695 </source>
7478 <dest> 7696 <dest>
7479 *: "No presets" 7697 *: "[Path]"
7480 </dest> 7698 </dest>
7481 <voice> 7699 <voice>
7482 *: "" 7700 *: ""
7483 </voice> 7701 </voice>
7484</phrase> 7702</phrase>
7485<phrase> 7703<phrase>
7486 id: LANG_FM_ADD_PRESET 7704 id: LANG_ID3_NO_INFO
7487 desc: in radio menu 7705 desc: in tag viewer
7488 user: 7706 user:
7489 <source> 7707 <source>
7490 *: "Add Preset" 7708 *: "<No Info>"
7491 </source> 7709 </source>
7492 <dest> 7710 <dest>
7493 *: "Add Preset" 7711 *: "<No Info>"
7494 </dest> 7712 </dest>
7495 <voice> 7713 <voice>
7496 *: "Add Preset" 7714 *: ""
7497 </voice> 7715 </voice>
7498</phrase> 7716</phrase>
7499<phrase> 7717<phrase>
7500 id: LANG_FM_EDIT_PRESET 7718 id: LANG_RENAME
7501 desc: in radio screen 7719 desc: The verb/action Rename
7502 user: 7720 user:
7503 <source> 7721 <source>
7504 *: "Edit Preset" 7722 *: "Rename"
7505 </source> 7723 </source>
7506 <dest> 7724 <dest>
7507 *: "Edit Preset" 7725 *: "Rename"
7508 </dest> 7726 </dest>
7509 <voice> 7727 <voice>
7510 *: "Edit Preset" 7728 *: "Rename"
7511 </voice> 7729 </voice>
7512</phrase> 7730</phrase>
7513<phrase> 7731<phrase>
7514 id: LANG_FM_DELETE_PRESET 7732 id: LANG_CUT
7515 desc: in radio screen 7733 desc: The verb/action Cut
7516 user: 7734 user:
7517 <source> 7735 <source>
7518 *: "Remove Preset" 7736 *: "Cut"
7519 </source> 7737 </source>
7520 <dest> 7738 <dest>
7521 *: "Remove Preset" 7739 *: "Cut"
7522 </dest> 7740 </dest>
7523 <voice> 7741 <voice>
7524 *: "Remove Preset" 7742 *: "Cut"
7525 </voice> 7743 </voice>
7526</phrase> 7744</phrase>
7527<phrase> 7745<phrase>
7528 id: LANG_FM_PRESET_SAVE_FAILED 7746 id: LANG_COPY
7529 desc: in radio screen 7747 desc: The verb/action Copy
7530 user: 7748 user:
7531 <source> 7749 <source>
7532 *: "Preset Save Failed" 7750 *: "Copy"
7533 </source> 7751 </source>
7534 <dest> 7752 <dest>
7535 *: "Preset Save Failed" 7753 *: "Copy"
7536 </dest> 7754 </dest>
7537 <voice> 7755 <voice>
7538 *: "" 7756 *: "Copy"
7539 </voice> 7757 </voice>
7540</phrase> 7758</phrase>
7541<phrase> 7759<phrase>
7542 id: LANG_FM_NO_FREE_PRESETS 7760 id: LANG_PASTE
7543 desc: in radio screen 7761 desc: The verb/action Paste
7544 user: 7762 user:
7545 <source> 7763 <source>
7546 *: "The Preset List is Full" 7764 *: "Paste"
7547 </source> 7765 </source>
7548 <dest> 7766 <dest>
7549 *: "The Preset List is Full" 7767 *: "Paste"
7550 </dest> 7768 </dest>
7551 <voice> 7769 <voice>
7552 *: "" 7770 *: "Paste"
7553 </voice> 7771 </voice>
7554</phrase> 7772</phrase>
7555<phrase> 7773<phrase>
7556 id: LANG_BUTTONBAR_MENU 7774 id: LANG_REALLY_OVERWRITE
7557 desc: in button bar 7775 desc: The verb/action Paste
7558 user: 7776 user:
7559 <source> 7777 <source>
7560 *: "Menu" 7778 *: "File/directory exists. Overwrite?"
7561 </source> 7779 </source>
7562 <dest> 7780 <dest>
7563 *: "Menu" 7781 *: "File/directory exists. Overwrite?"
7564 </dest> 7782 </dest>
7565 <voice> 7783 <voice>
7566 *: "" 7784 *: ""
7567 </voice> 7785 </voice>
7568</phrase> 7786</phrase>
7569<phrase> 7787<phrase>
7570 id: LANG_FM_BUTTONBAR_EXIT 7788 id: LANG_DELETE
7571 desc: in radio screen 7789 desc: The verb/action Delete
7572 user: 7790 user:
7573 <source> 7791 <source>
7574 *: "Exit" 7792 *: "Delete"
7575 </source> 7793 </source>
7576 <dest> 7794 <dest>
7577 *: "Exit" 7795 *: "Delete"
7578 </dest> 7796 </dest>
7579 <voice> 7797 <voice>
7580 *: "" 7798 *: "Delete"
7581 </voice> 7799 </voice>
7582</phrase> 7800</phrase>
7583<phrase> 7801<phrase>
7584 id: LANG_FM_BUTTONBAR_ACTION 7802 id: LANG_DELETE_DIR
7585 desc: in radio screen 7803 desc: in on+play menu
7586 user: 7804 user:
7587 <source> 7805 <source>
7588 *: "Action" 7806 *: "Delete Directory"
7589 </source> 7807 </source>
7590 <dest> 7808 <dest>
7591 *: "Action" 7809 *: "Delete Directory"
7592 </dest> 7810 </dest>
7593 <voice> 7811 <voice>
7594 *: "" 7812 *: "delete directory"
7595 </voice> 7813 </voice>
7596</phrase> 7814</phrase>
7597<phrase> 7815<phrase>
7598 id: LANG_FM_BUTTONBAR_PRESETS 7816 id: LANG_REALLY_DELETE
7599 desc: in button bar 7817 desc: Really Delete?
7600 user: 7818 user:
7601 <source> 7819 <source>
7602 *: "Preset" 7820 *: "Delete?"
7603 </source> 7821 </source>
7604 <dest> 7822 <dest>
7605 *: "Preset" 7823 *: "Delete?"
7606 </dest> 7824 </dest>
7607 <voice> 7825 <voice>
7608 *: "" 7826 *: ""
7609 </voice> 7827 </voice>
7610</phrase> 7828</phrase>
7611<phrase> 7829<phrase>
7612 id: LANG_FM_BUTTONBAR_ADD 7830 id: LANG_COPYING
7613 desc: in radio screen 7831 desc:
7614 user: 7832 user:
7615 <source> 7833 <source>
7616 *: "Add" 7834 *: "Copying..."
7617 </source> 7835 </source>
7618 <dest> 7836 <dest>
7619 *: "Add" 7837 *: "Copying..."
7620 </dest> 7838 </dest>
7621 <voice> 7839 <voice>
7622 *: "" 7840 *: "Copying"
7623 </voice> 7841 </voice>
7624</phrase> 7842</phrase>
7625<phrase> 7843<phrase>
7626 id: LANG_FM_BUTTONBAR_RECORD 7844 id: LANG_DELETING
7627 desc: in radio screen 7845 desc:
7628 user: 7846 user:
7629 <source> 7847 <source>
7630 *: "Record" 7848 *: "Deleting..."
7631 </source> 7849 </source>
7632 <dest> 7850 <dest>
7633 *: "Record" 7851 *: "Deleting..."
7634 </dest> 7852 </dest>
7635 <voice> 7853 <voice>
7636 *: "" 7854 *: "Deleting"
7637 </voice> 7855 </voice>
7638</phrase> 7856</phrase>
7639<phrase> 7857<phrase>
7640 id: LANG_FM_MONO_MODE 7858 id: LANG_MOVING
7641 desc: in radio screen 7859 desc:
7642 user: 7860 user:
7643 <source> 7861 <source>
7644 *: "Force mono" 7862 *: "Moving..."
7645 </source> 7863 </source>
7646 <dest> 7864 <dest>
7647 *: "Force mono" 7865 *: "Moving..."
7648 </dest> 7866 </dest>
7649 <voice> 7867 <voice>
7650 *: "Force mono" 7868 *: "Moving"
7651 </voice> 7869 </voice>
7652</phrase> 7870</phrase>
7653<phrase> 7871<phrase>
7654 id: LANG_FM_FREEZE 7872 id: LANG_DELETED
7655 desc: splash screen during freeze in radio mode 7873 desc: A file has beed deleted
7656 user: 7874 user:
7657 <source> 7875 <source>
7658 *: "Screen frozen!" 7876 *: "Deleted"
7659 </source> 7877 </source>
7660 <dest> 7878 <dest>
7661 *: "Screen frozen!" 7879 *: "Deleted"
7662 </dest> 7880 </dest>
7663 <voice> 7881 <voice>
7664 *: "" 7882 *: ""
7665 </voice> 7883 </voice>
7666</phrase> 7884</phrase>
7667<phrase> 7885<phrase>
7668 id: LANG_FM_SCAN_PRESETS 7886 id: LANG_SET_AS_BACKDROP
7669 desc: in radio menu 7887 desc: text for onplay menu entry
7670 user:
7671 <source>
7672 *: "Auto-Scan Presets"
7673 </source>
7674 <dest>
7675 *: "Auto-Scan Presets"
7676 </dest>
7677 <voice>
7678 *: "Auto scan presets"
7679 </voice>
7680</phrase>
7681<phrase>
7682 id: LANG_FM_CLEAR_PRESETS
7683 desc: confirmation if presets can be cleared
7684 user: 7888 user:
7685 <source> 7889 <source>
7686 *: "Clear Current Presets?" 7890 *: none
7891 lcd_non-mono: "Set As Backdrop"
7687 </source> 7892 </source>
7688 <dest> 7893 <dest>
7689 *: "Clear Current Presets?" 7894 *: none
7895 lcd_non-mono: "Set As Backdrop"
7690 </dest> 7896 </dest>
7691 <voice> 7897 <voice>
7692 *: "" 7898 *: none
7899 lcd_non-mono: "Set As Backdrop"
7693 </voice> 7900 </voice>
7694</phrase> 7901</phrase>
7695<phrase> 7902<phrase>
7696 id: LANG_FM_SCANNING 7903 id: LANG_BACKDROP_LOADED
7697 desc: during auto scan 7904 desc: text for splash to indicate a new backdrop has been loaded successfully
7698 user: 7905 user:
7699 <source> 7906 <source>
7700 *: "Scanning %d.%02d MHz" 7907 *: none
7908 lcd_non-mono: "Backdrop Loaded"
7701 </source> 7909 </source>
7702 <dest> 7910 <dest>
7703 *: "Scanning %d.%02d MHz" 7911 *: none
7912 lcd_non-mono: "Backdrop Loaded"
7704 </dest> 7913 </dest>
7705 <voice> 7914 <voice>
7706 *: "" 7915 *: none
7916 lcd_non-mono: ""
7707 </voice> 7917 </voice>
7708</phrase> 7918</phrase>
7709<phrase> 7919<phrase>
7710 id: LANG_FM_DEFAULT_PRESET_NAME 7920 id: LANG_BACKDROP_FAILED
7711 desc: default preset name for auto scan mode 7921 desc: text for splash to indicate a failure to load a bitmap as backdrop
7712 user: 7922 user:
7713 <source> 7923 <source>
7714 *: "%d.%02d MHz" 7924 *: none
7925 lcd_non-mono: "Backdrop Failed"
7715 </source> 7926 </source>
7716 <dest> 7927 <dest>
7717 *: "%d.%02d MHz" 7928 *: none
7929 lcd_non-mono: "Backdrop Failed"
7718 </dest> 7930 </dest>
7719 <voice> 7931 <voice>
7720 *: "" 7932 *: none
7933 lcd_non-mono: ""
7721 </voice> 7934 </voice>
7722</phrase> 7935</phrase>
7723<phrase> 7936<phrase>
7724 id: LANG_FM_TUNE_MODE 7937 id: LANG_ONPLAY_OPEN_WITH
7725 desc: in radio screen / menu 7938 desc: Onplay open with
7726 user: 7939 user:
7727 <source> 7940 <source>
7728 *: "Mode:" 7941 *: "Open With..."
7729 </source> 7942 </source>
7730 <dest> 7943 <dest>
7731 *: "Mode:" 7944 *: "Open With..."
7732 </dest> 7945 </dest>
7733 <voice> 7946 <voice>
7734 *: "" 7947 *: "open with"
7735 </voice> 7948 </voice>
7736</phrase> 7949</phrase>
7737<phrase> 7950<phrase>
7738 id: LANG_RADIO_SCAN_MODE 7951 id: LANG_CREATE_DIR
7739 desc: in radio screen / menu 7952 desc: in main menu
7740 user: 7953 user:
7741 <source> 7954 <source>
7742 *: "Scan" 7955 *: "Create Directory"
7743 </source> 7956 </source>
7744 <dest> 7957 <dest>
7745 *: "Scan" 7958 *: "Create Directory"
7746 </dest> 7959 </dest>
7747 <voice> 7960 <voice>
7748 *: "" 7961 *: "Create Directory"
7749 </voice> 7962 </voice>
7750</phrase> 7963</phrase>
7751<phrase> 7964<phrase>
7752 id: LANG_RADIO_PRESET_MODE 7965 id: LANG_PROPERTIES
7753 desc: in radio screen / menu 7966 desc: browser file/dir properties
7754 user: 7967 user:
7755 <source> 7968 <source>
7756 *: "Preset" 7969 *: "Properties"
7757 </source> 7970 </source>
7758 <dest> 7971 <dest>
7759 *: "Preset" 7972 *: "Properties"
7760 </dest> 7973 </dest>
7761 <voice> 7974 <voice>
7762 *: "" 7975 *: "Properties"
7763 </voice> 7976 </voice>
7764</phrase> 7977</phrase>
7765<phrase> 7978<phrase>
7766 id: LANG_DIRBROWSE_F1 7979 id: LANG_ADD_TO_FAVES
7767 desc: in dir browser, F1 button bar text 7980 desc:
7768 user: 7981 user:
7769 <source> 7982 <source>
7770 *: "Menu" 7983 *: "Add to shortcuts"
7771 </source> 7984 </source>
7772 <dest> 7985 <dest>
7773 *: "Menu" 7986 *: "Add to shortcuts"
7774 </dest> 7987 </dest>
7775 <voice> 7988 <voice>
7776 *: "" 7989 *: "Add to shortcuts"
7777 </voice> 7990 </voice>
7778</phrase> 7991</phrase>
7779<phrase> 7992<phrase>
7780 id: LANG_DIRBROWSE_F2 7993 id: LANG_PITCH
7781 desc: in dir browser, F2 button bar text 7994 desc: "pitch" in the pitch screen
7782 user: 7995 user:
7783 <source> 7996 <source>
7784 *: "Option" 7997 *: none
7998 pitchscreen: "Pitch"
7785 </source> 7999 </source>
7786 <dest> 8000 <dest>
7787 *: "Option" 8001 *: none
8002 pitchscreen: "Pitch"
7788 </dest> 8003 </dest>
7789 <voice> 8004 <voice>
7790 *: "" 8005 *: none
8006 pitchscreen: "Pitch"
7791 </voice> 8007 </voice>
7792</phrase> 8008</phrase>
7793<phrase> 8009<phrase>
7794 id: LANG_DIRBROWSE_F3 8010 id: LANG_PITCH_UP
7795 desc: in dir browser, F3 button bar text 8011 desc: in wps
7796 user: 8012 user:
7797 <source> 8013 <source>
7798 *: "LCD" 8014 *: none
8015 pitchscreen: "Pitch Up"
7799 </source> 8016 </source>
7800 <dest> 8017 <dest>
7801 *: "LCD" 8018 *: none
8019 pitchscreen: "Pitch Up"
7802 </dest> 8020 </dest>
7803 <voice> 8021 <voice>
7804 *: "" 8022 *: none
8023 pitchscreen: ""
7805 </voice> 8024 </voice>
7806</phrase> 8025</phrase>
7807<phrase> 8026<phrase>
7808 id: LANG_SHOWDIR_BUFFER_FULL 8027 id: LANG_PITCH_DOWN
7809 desc: in showdir(), displayed on screen when you reach buffer limit 8028 desc: in wps
7810 user: 8029 user:
7811 <source> 8030 <source>
7812 *: "Dir Buffer is Full!" 8031 *: none
8032 pitchscreen: "Pitch Down"
7813 </source> 8033 </source>
7814 <dest> 8034 <dest>
7815 *: "Dir Buffer is Full!" 8035 *: none
8036 pitchscreen: "Pitch Down"
7816 </dest> 8037 </dest>
7817 <voice> 8038 <voice>
7818 *: "" 8039 *: none
8040 pitchscreen: ""
7819 </voice> 8041 </voice>
7820</phrase> 8042</phrase>
7821<phrase> 8043<phrase>
7822 id: LANG_LANGUAGE_LOADED 8044 id: LANG_PITCH_UP_SEMITONE
7823 desc: shown when a language has been loaded from the dir browser 8045 desc: in wps
7824 user: 8046 user:
7825 <source> 8047 <source>
7826 *: "New Language" 8048 *: none
8049 pitchscreen: "Semitone Up"
7827 </source> 8050 </source>
7828 <dest> 8051 <dest>
7829 *: "New Language" 8052 *: none
8053 pitchscreen: "Semitone Up"
7830 </dest> 8054 </dest>
7831 <voice> 8055 <voice>
7832 *: "" 8056 *: none
8057 pitchscreen: ""
7833 </voice> 8058 </voice>
7834</phrase> 8059</phrase>
7835<phrase> 8060<phrase>
7836 id: LANG_SETTINGS_LOADED 8061 id: LANG_PITCH_DOWN_SEMITONE
7837 desc: Feedback shown when a .cfg file is loaded 8062 desc: in wps
7838 user: 8063 user:
7839 <source> 8064 <source>
7840 *: "Settings Loaded" 8065 *: none
8066 pitchscreen: "Semitone Down"
7841 </source> 8067 </source>
7842 <dest> 8068 <dest>
7843 *: "Settings Loaded" 8069 *: none
8070 pitchscreen: "Semitone Down"
7844 </dest> 8071 </dest>
7845 <voice> 8072 <voice>
7846 *: "" 8073 *: none
8074 pitchscreen: ""
7847 </voice> 8075 </voice>
7848</phrase> 8076</phrase>
7849<phrase> 8077<phrase>
7850 id: LANG_SETTINGS_SAVED 8078 id: LANG_PLAYLIST_BUFFER_FULL
7851 desc: Feedback shown when a .cfg file is saved 8079 desc: in playlist.indices() when playlist is full
7852 user: 8080 user:
7853 <source> 8081 <source>
7854 *: "Settings Saved" 8082 *: "Playlist Buffer Full"
7855 </source> 8083 </source>
7856 <dest> 8084 <dest>
7857 *: "Settings Saved" 8085 *: "Playlist Buffer Full"
7858 </dest> 8086 </dest>
7859 <voice> 8087 <voice>
7860 *: "" 8088 *: ""
7861 </voice> 8089 </voice>
7862</phrase> 8090</phrase>
7863<phrase> 8091<phrase>
7864 id: LANG_BOOT_CHANGED 8092 id: LANG_END_PLAYLIST
7865 desc: File browser discovered the boot file was changed 8093 desc: when playlist has finished
7866 user: 8094 user:
7867 <source> 8095 <source>
7868 *: "Boot changed" 8096 *: "End of Song List"
8097 player: "End of List"
7869 </source> 8098 </source>
7870 <dest> 8099 <dest>
7871 *: "Boot changed" 8100 *: "End of Song List"
8101 player: "End of List"
7872 </dest> 8102 </dest>
7873 <voice> 8103 <voice>
7874 *: "" 8104 *: ""
7875 </voice> 8105 </voice>
7876</phrase> 8106</phrase>
7877<phrase> 8107<phrase>
7878 id: LANG_REBOOT_NOW 8108 id: LANG_CREATING
7879 desc: Do you want to reboot? 8109 desc: Screen feedback during playlist creation
7880 user: 8110 user:
7881 <source> 8111 <source>
7882 *: "Reboot now?" 8112 *: "Creating"
7883 </source> 8113 </source>
7884 <dest> 8114 <dest>
7885 *: "Reboot now?" 8115 *: "Creating"
7886 </dest> 8116 </dest>
7887 <voice> 8117 <voice>
7888 *: "" 8118 *: ""
7889 </voice> 8119 </voice>
7890</phrase> 8120</phrase>
7891<phrase> 8121<phrase>
7892 id: LANG_OFF_ABORT 8122 id: LANG_NOTHING_TO_RESUME
7893 desc: Used on recorder models 8123 desc: Error message displayed when resume button pressed but no playlist
7894 user: 8124 user:
7895 <source> 8125 <source>
7896 *: "OFF to abort" 8126 *: "Nothing to resume"
7897 h100,h120,h300: "STOP to abort"
7898 ipod*: "PLAY/PAUSE to abort"
7899 x5: "Long PLAY to abort"
7900 h10,h10_5gb: "PREV to abort"
7901 e200: "PREV to abort"
7902 </source> 8127 </source>
7903 <dest> 8128 <dest>
7904 *: "OFF to abort" 8129 *: "Nothing to resume"
7905 h100,h120,h300: "STOP to abort"
7906 ipod*: "PLAY/PAUSE to abort"
7907 x5: "Long PLAY to abort"
7908 h10,h10_5gb: "PREV to abort"
7909 e200: "PREV to abort"
7910 </dest> 8130 </dest>
7911 <voice> 8131 <voice>
7912 *: "" 8132 *: ""
7913 </voice> 8133 </voice>
7914</phrase> 8134</phrase>
7915<phrase> 8135<phrase>
7916 id: LANG_STOP_ABORT 8136 id: LANG_PLAYLIST_CONTROL_UPDATE_ERROR
7917 desc: Used on player models 8137 desc: Playlist error
7918 user: 8138 user:
7919 <source> 8139 <source>
7920 *: "STOP to abort" 8140 *: "Error updating playlist control file"
7921 </source> 8141 </source>
7922 <dest> 8142 <dest>
7923 *: "STOP to abort" 8143 *: "Error updating playlist control file"
7924 </dest> 8144 </dest>
7925 <voice> 8145 <voice>
7926 *: "" 8146 *: ""
7927 </voice> 8147 </voice>
7928</phrase> 8148</phrase>
7929<phrase> 8149<phrase>
7930 id: LANG_NO_FILES 8150 id: LANG_PLAYLIST_ACCESS_ERROR
7931 desc: in settings_menu 8151 desc: Playlist error
7932 user: 8152 user:
7933 <source> 8153 <source>
7934 *: "No files" 8154 *: "Error accessing playlist file"
7935 </source> 8155 </source>
7936 <dest> 8156 <dest>
7937 *: "No files" 8157 *: "Error accessing playlist file"
7938 </dest> 8158 </dest>
7939 <voice> 8159 <voice>
7940 *: "" 8160 *: ""
7941 </voice> 8161 </voice>
7942</phrase> 8162</phrase>
7943<phrase> 8163<phrase>
7944 id: LANG_BACKDROP_LOADED 8164 id: LANG_PLAYLIST_CONTROL_ACCESS_ERROR
7945 desc: text for splash to indicate a new backdrop has been loaded successfully 8165 desc: Playlist error
7946 user: 8166 user:
7947 <source> 8167 <source>
7948 *: "Backdrop Loaded" 8168 *: "Error accessing playlist control file"
7949 </source> 8169 </source>
7950 <dest> 8170 <dest>
7951 *: "Backdrop Loaded" 8171 *: "Error accessing playlist control file"
7952 </dest> 8172 </dest>
7953 <voice> 8173 <voice>
7954 *: "" 8174 *: ""
7955 </voice> 8175 </voice>
7956</phrase> 8176</phrase>
7957<phrase> 8177<phrase>
7958 id: LANG_BACKDROP_FAILED 8178 id: LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR
7959 desc: text for splash to indicate a failure to load a bitmap as backdrop 8179 desc: Playlist error
7960 user: 8180 user:
7961 <source> 8181 <source>
7962 *: "Backdrop Failed" 8182 *: "Error accessing directory"
7963 </source> 8183 </source>
7964 <dest> 8184 <dest>
7965 *: "Backdrop Failed" 8185 *: "Error accessing directory"
7966 </dest> 8186 </dest>
7967 <voice> 8187 <voice>
7968 *: "" 8188 *: ""
7969 </voice> 8189 </voice>
7970</phrase> 8190</phrase>
7971<phrase> 8191<phrase>
7972 id: LANG_KEYBOARD_LOADED 8192 id: LANG_PLAYLIST_CONTROL_INVALID
7973 desc: shown when a keyboard has been loaded from the dir browser 8193 desc: Playlist resume error
7974 user: 8194 user:
7975 <source> 8195 <source>
7976 *: "New Keyboard" 8196 *: "Playlist control file is invalid"
7977 </source> 8197 </source>
7978 <dest> 8198 <dest>
7979 *: "New Keyboard" 8199 *: "Playlist control file is invalid"
7980 </dest> 8200 </dest>
7981 <voice> 8201 <voice>
7982 *: "" 8202 *: ""
7983 </voice> 8203 </voice>
7984</phrase> 8204</phrase>
7985<phrase> 8205<phrase>
7986 id: LANG_ID3DB_ARTISTS 8206 id: LANG_SETTINGS_SAVE_FAILED
7987 desc: ID3 virtual folder name 8207 desc: displayed if save settings has failed
7988 user: 8208 user:
7989 <source> 8209 <source>
7990 *: "Artists" 8210 *: "Save Failed"
7991 </source> 8211 </source>
7992 <dest> 8212 <dest>
7993 *: "Artists" 8213 *: "Save Failed"
7994 </dest> 8214 </dest>
7995 <voice> 8215 <voice>
7996 *: "" 8216 *: ""
7997 </voice> 8217 </voice>
7998</phrase> 8218</phrase>
7999<phrase> 8219<phrase>
8000 id: LANG_ID3DB_ALBUMS 8220 id: LANG_SETTINGS_PARTITION
8001 desc: ID3 virtual folder name 8221 desc: if save settings has failed
8002 user: 8222 user:
8003 <source> 8223 <source>
8004 *: "Albums" 8224 *: "No partition?"
8225 player: "Partition?"
8005 </source> 8226 </source>
8006 <dest> 8227 <dest>
8007 *: "Albums" 8228 *: "No partition?"
8229 player: "Partition?"
8008 </dest> 8230 </dest>
8009 <voice> 8231 <voice>
8010 *: "" 8232 *: ""
8011 </voice> 8233 </voice>
8012</phrase> 8234</phrase>
8013<phrase> 8235<phrase>
8014 id: LANG_ID3DB_SONGS 8236 id: LANG_PAUSE
8015 desc: ID3 virtual folder name 8237 desc: in wps and recording trigger menu
8016 user: 8238 user:
8017 <source> 8239 <source>
8018 *: "Songs" 8240 *: "Pause"
8019 </source> 8241 </source>
8020 <dest> 8242 <dest>
8021 *: "Songs" 8243 *: "Pause"
8022 </dest> 8244 </dest>
8023 <voice> 8245 <voice>
8024 *: "" 8246 *: "Pause"
8025 </voice> 8247 </voice>
8026</phrase> 8248</phrase>
8027<phrase> 8249<phrase>
8028 id: LANG_ID3DB_GENRES 8250 id: LANG_MODE
8029 desc: in tag cache 8251 desc: in wps F2 pressed and radio screen
8030 user: 8252 user:
8031 <source> 8253 <source>
8032 *: "Genres" 8254 *: "Mode:"
8033 </source> 8255 </source>
8034 <dest> 8256 <dest>
8035 *: "Genres" 8257 *: "Mode:"
8036 </dest> 8258 </dest>
8037 <voice> 8259 <voice>
8038 *: "" 8260 *: ""
8039 </voice> 8261 </voice>
8040</phrase> 8262</phrase>
8041<phrase> 8263<phrase>
8042 id: LANG_ID3DB_SEARCH 8264 id: LANG_TIME
8043 desc: ID3 virtual folder name 8265 desc: Used on the bookmark select window to label elapsed time
8044 user: 8266 user:
8045 <source> 8267 <source>
8046 *: "Search" 8268 *: "Time"
8047 </source> 8269 </source>
8048 <dest> 8270 <dest>
8049 *: "Search" 8271 *: "Time"
8050 </dest> 8272 </dest>
8051 <voice> 8273 <voice>
8052 *: "" 8274 *: "Time"
8053 </voice> 8275 </voice>
8054</phrase> 8276</phrase>
8055<phrase> 8277<phrase>
8056 id: LANG_ID3DB_SEARCH_ARTISTS 8278 id: LANG_USB_CHARGING
8057 desc: ID3 virtual folder name 8279 desc: in Battery menu
8058 user: 8280 user:
8059 <source> 8281 <source>
8060 *: "Search Artists" 8282 *: none
8283 usb_charging: "Charge During USB Connection"
8061 </source> 8284 </source>
8062 <dest> 8285 <dest>
8063 *: "Search Artists" 8286 *: none
8287 usb_charging: "Charge During USB Connection"
8064 </dest> 8288 </dest>
8065 <voice> 8289 <voice>
8066 *: "" 8290 *: none
8291 usb_charging: "Charge During U S B Connection"
8067 </voice> 8292 </voice>
8068</phrase> 8293</phrase>
8069<phrase> 8294<phrase>
8070 id: LANG_ID3DB_SEARCH_ALBUMS 8295 id: LANG_KEYLOCK_ON
8071 desc: ID3 virtual folder name 8296 desc: displayed when key lock is on
8072 user: 8297 user:
8073 <source> 8298 <source>
8074 *: "Search Albums" 8299 *: "Keylock is ON"
8300 player: "Key Lock ON"
8075 </source> 8301 </source>
8076 <dest> 8302 <dest>
8077 *: "Search Albums" 8303 *: "Keylock is ON"
8304 player: "Key Lock ON"
8078 </dest> 8305 </dest>
8079 <voice> 8306 <voice>
8080 *: "" 8307 *: ""
8081 </voice> 8308 </voice>
8082</phrase> 8309</phrase>
8083<phrase> 8310<phrase>
8084 id: LANG_ID3DB_SEARCH_SONGS 8311 id: LANG_KEYLOCK_OFF
8085 desc: ID3 virtual folder name 8312 desc: displayed when key lock is turned off
8086 user: 8313 user:
8087 <source> 8314 <source>
8088 *: "Search Songs" 8315 *: "Keylock is OFF"
8316 player: "Key Lock OFF"
8089 </source> 8317 </source>
8090 <dest> 8318 <dest>
8091 *: "Search Songs" 8319 *: "Keylock is OFF"
8320 player: "Key Lock OFF"
8092 </dest> 8321 </dest>
8093 <voice> 8322 <voice>
8094 *: "" 8323 *: ""
8095 </voice> 8324 </voice>
8096</phrase> 8325</phrase>
8097<phrase> 8326<phrase>
8098 id: LANG_ID3DB_MATCHES 8327 id: LANG_RECORDING_TIME
8099 desc: ID3 virtual folder name 8328 desc: Display of recorded time
8100 user: 8329 user:
8101 <source> 8330 <source>
8102 *: "Found %d matches" 8331 *: none
8332 recording: "Time:"
8103 </source> 8333 </source>
8104 <dest> 8334 <dest>
8105 *: "Found %d matches" 8335 *: none
8336 recording: "Time:"
8106 </dest> 8337 </dest>
8107 <voice> 8338 <voice>
8108 *: "" 8339 *: none
8340 recording: ""
8109 </voice> 8341 </voice>
8110</phrase> 8342</phrase>
8111<phrase> 8343<phrase>
8112 id: LANG_ID3DB_ALL_SONGS 8344 id: LANG_DISK_FULL
8113 desc: ID3 virtual folder name 8345 desc: in recording screen
8114 user: 8346 user:
8115 <source> 8347 <source>
8116 *: "<All songs>" 8348 *: none
8349 recording: "The disk is full. Press STOP to continue."
8117 </source> 8350 </source>
8118 <dest> 8351 <dest>
8119 *: "<All songs>" 8352 *: none
8353 recording: "The disk is full. Press STOP to continue."
8120 </dest> 8354 </dest>
8121 <voice> 8355 <voice>
8122 *: "" 8356 *: none
8357 recording: ""
8123 </voice> 8358 </voice>
8124</phrase> 8359</phrase>
8125<phrase> 8360<phrase>
8126 id: LANG_MOVE 8361 id: LANG_DB_INF
8127 desc: The verb/action Move 8362 desc: -inf db for values below measurement
8128 user: 8363 user:
8129 <source> 8364 <source>
8130 *: "Move" 8365 *: none
8366 recording: "-inf"
8131 </source> 8367 </source>
8132 <dest> 8368 <dest>
8133 *: "Move" 8369 *: none
8370 recording: "-inf"
8134 </dest> 8371 </dest>
8135 <voice> 8372 <voice>
8136 *: "Move" 8373 *: none
8374 recording: ""
8137 </voice> 8375 </voice>
8138</phrase> 8376</phrase>
8139<phrase> 8377<phrase>
8140 id: LANG_MOVE_FAILED 8378 id: LANG_CONFIRM_SHUTDOWN
8141 desc: Error message displayed in playlist viewer 8379 desc: in shutdown screen
8142 user: 8380 user:
8143 <source> 8381 <source>
8144 *: "Move Failed" 8382 *: none
8383 soft_shutdown: "Press OFF to shut down"
8145 </source> 8384 </source>
8146 <dest> 8385 <dest>
8147 *: "Move Failed" 8386 *: none
8387 soft_shutdown: "Press OFF to shut down"
8148 </dest> 8388 </dest>
8149 <voice> 8389 <voice>
8150 *: "" 8390 *: none
8391 soft_shutdown: ""
8151 </voice> 8392 </voice>
8152</phrase> 8393</phrase>
8153<phrase> 8394<phrase>
8154 id: LANG_SHOW_INDICES 8395 id: LANG_REMOVE_MMC
8155 desc: in playlist viewer menu 8396 desc: before acknowledging usb in case an MMC is inserted (Ondio)
8156 user: 8397 user:
8157 <source> 8398 <source>
8158 *: "Show Indices" 8399 *: none
8400 ondio*: "Please remove inserted MMC"
8159 </source> 8401 </source>
8160 <dest> 8402 <dest>
8161 *: "Show Indices" 8403 *: none
8404 ondio*: "Please remove inserted MMC"
8162 </dest> 8405 </dest>
8163 <voice> 8406 <voice>
8164 *: "Show Indices" 8407 *: none
8408 ondio*: "Please remove multimedia card"
8165 </voice> 8409 </voice>
8166</phrase> 8410</phrase>
8167<phrase> 8411<phrase>
8168 id: LANG_TRACK_DISPLAY 8412 id: LANG_BOOT_CHANGED
8169 desc: in playlist viewer on+play menu 8413 desc: File browser discovered the boot file was changed
8170 user: 8414 user:
8171 <source> 8415 <source>
8172 *: "Track Display" 8416 *: "Boot changed"
8173 </source> 8417 </source>
8174 <dest> 8418 <dest>
8175 *: "Track Display" 8419 *: "Boot changed"
8176 </dest> 8420 </dest>
8177 <voice> 8421 <voice>
8178 *: "Track Display" 8422 *: ""
8179 </voice> 8423 </voice>
8180</phrase> 8424</phrase>
8181<phrase> 8425<phrase>
8182 id: LANG_DISPLAY_TRACK_NAME_ONLY 8426 id: LANG_REBOOT_NOW
8183 desc: track display options 8427 desc: Do you want to reboot?
8184 user: 8428 user:
8185 <source> 8429 <source>
8186 *: "Track Name Only" 8430 *: "Reboot now?"
8187 </source> 8431 </source>
8188 <dest> 8432 <dest>
8189 *: "Track Name Only" 8433 *: "Reboot now?"
8190 </dest> 8434 </dest>
8191 <voice> 8435 <voice>
8192 *: "Track Name Only" 8436 *: ""
8193 </voice> 8437 </voice>
8194</phrase> 8438</phrase>
8195<phrase> 8439<phrase>
8196 id: LANG_DISPLAY_FULL_PATH 8440 id: LANG_OFF_ABORT
8197 desc: track display options 8441 desc: Used on recorder models
8198 user: 8442 user:
8199 <source> 8443 <source>
8200 *: "Full Path" 8444 *: "OFF to abort"
8445 player,h100,h120,h300: "STOP to abort"
8446 ipod*: "PLAY/PAUSE to abort"
8447 x5,m5: "Long PLAY to abort"
8448 h10,h10_5gb,e200: "PREV to abort"
8201 </source> 8449 </source>
8202 <dest> 8450 <dest>
8203 *: "Full Path" 8451 *: "OFF to abort"
8452 player,h100,h120,h300: "STOP to abort"
8453 ipod*: "PLAY/PAUSE to abort"
8454 x5,m5: "Long PLAY to abort"
8455 h10,h10_5gb,e200: "PREV to abort"
8204 </dest> 8456 </dest>
8205 <voice> 8457 <voice>
8206 *: "Full Path" 8458 *: ""
8207 </voice> 8459 </voice>
8208</phrase> 8460</phrase>
8209<phrase> 8461<phrase>
8210 id: LANG_REMOVE 8462 id: LANG_NO_FILES
8211 desc: in playlist viewer on+play menu 8463 desc: in settings_menu
8212 user: 8464 user:
8213 <source> 8465 <source>
8214 *: "Remove" 8466 *: "No files"
8215 </source> 8467 </source>
8216 <dest> 8468 <dest>
8217 *: "Remove" 8469 *: "No files"
8218 </dest> 8470 </dest>
8219 <voice> 8471 <voice>
8220 *: "Remove" 8472 *: ""
8221 </voice> 8473 </voice>
8222</phrase> 8474</phrase>
8223<phrase> 8475<phrase>
8224 id: LANG_FILE_OPTIONS 8476 id: LANG_KEYBOARD_LOADED
8225 desc: in playlist viewer on+play menu 8477 desc: shown when a keyboard has been loaded from the dir browser
8226 user: 8478 user:
8227 <source> 8479 <source>
8228 *: "File Options" 8480 *: "New Keyboard"
8229 </source> 8481 </source>
8230 <dest> 8482 <dest>
8231 *: "File Options" 8483 *: "New Keyboard"
8232 </dest> 8484 </dest>
8233 <voice> 8485 <voice>
8234 *: "File Options" 8486 *: ""
8235 </voice> 8487 </voice>
8236</phrase> 8488</phrase>
8237<phrase> 8489<phrase>
@@ -8333,1517 +8585,1085 @@
8333 </voice> 8585 </voice>
8334</phrase> 8586</phrase>
8335<phrase> 8587<phrase>
8336 id: LANG_FILETYPES_PLUGIN_NAME_LONG 8588 id: LANG_SHOWDIR_BUFFER_FULL
8337 desc: Viewer plugin name too long 8589 desc: in showdir(), displayed on screen when you reach buffer limit
8338 user: 8590 user:
8339 <source> 8591 <source>
8340 *: "Plugin name too long" 8592 *: "Dir Buffer is Full!"
8341 </source> 8593 </source>
8342 <dest> 8594 <dest>
8343 *: "Plugin name too long" 8595 *: "Dir Buffer is Full!"
8344 </dest> 8596 </dest>
8345 <voice> 8597 <voice>
8346 *: "" 8598 *: ""
8347 </voice> 8599 </voice>
8348</phrase> 8600</phrase>
8349<phrase> 8601<phrase>
8350 id: LANG_FILETYPES_STRING_BUFFER_EMPTY 8602 id: LANG_INVALID_FILENAME
8351 desc: Filetype string buffer empty 8603 desc: "invalid filename entered" error message
8352 user: 8604 user:
8353 <source> 8605 <source>
8354 *: "Filetype string buffer empty" 8606 *: "Invalid Filename!"
8355 </source> 8607 </source>
8356 <dest> 8608 <dest>
8357 *: "Filetype string buffer empty" 8609 *: "Invalid Filename!"
8358 </dest> 8610 </dest>
8359 <voice> 8611 <voice>
8360 *: "" 8612 *: "Invalid Filename"
8361 </voice> 8613 </voice>
8362</phrase> 8614</phrase>
8363<phrase> 8615<phrase>
8364 id: LANG_RESUME_CONFIRM_PLAYER 8616 id: LANG_FILETYPES_PLUGIN_NAME_LONG
8365 desc: possible answers to resume question 8617 desc: Viewer plugin name too long
8366 user: 8618 user:
8367 <source> 8619 <source>
8368 *: "(PLAY/STOP)" 8620 *: "Plugin name too long"
8369 </source> 8621 </source>
8370 <dest> 8622 <dest>
8371 *: "(PLAY/STOP)" 8623 *: "Plugin name too long"
8372 </dest> 8624 </dest>
8373 <voice> 8625 <voice>
8374 *: "" 8626 *: ""
8375 </voice> 8627 </voice>
8376</phrase> 8628</phrase>
8377<phrase> 8629<phrase>
8378 id: LANG_FM_PRESET_LOAD 8630 id: LANG_FILETYPES_STRING_BUFFER_FULL
8379 desc: load preset list in fm radio 8631 desc: Filetype string buffer full
8380 user: 8632 user:
8381 <source> 8633 <source>
8382 *: "Load Preset List" 8634 *: "Filetype string buffer full"
8383 </source> 8635 </source>
8384 <dest> 8636 <dest>
8385 *: "Load Preset List" 8637 *: "Filetype string buffer full"
8386 </dest> 8638 </dest>
8387 <voice> 8639 <voice>
8388 *: "Load Preset List" 8640 *: ""
8389 </voice>
8390</phrase>
8391<phrase>
8392 id: LANG_FM_PRESET_SAVE
8393 desc: Save preset list in fm radio
8394 user:
8395 <source>
8396 *: "Save Preset List"
8397 </source>
8398 <dest>
8399 *: "Save Preset List"
8400 </dest>
8401 <voice>
8402 *: "Save Preset List"
8403 </voice>
8404</phrase>
8405<phrase>
8406 id: LANG_FM_PRESET_CLEAR
8407 desc: clear preset list in fm radio
8408 user:
8409 <source>
8410 *: "Clear Preset List"
8411 </source>
8412 <dest>
8413 *: "Clear Preset List"
8414 </dest>
8415 <voice>
8416 *: "Clear Preset List"
8417 </voice> 8641 </voice>
8418</phrase> 8642</phrase>
8419<phrase> 8643<phrase>
8420 id: LANG_FMR 8644 id: LANG_RESTARTING_PLAYBACK
8421 desc: Used when you need to say Preset List, also voiced 8645 desc: splash screen displayed when pcm buffer size is changed
8422 user: 8646 user:
8423 <source> 8647 <source>
8424 *: "Preset List" 8648 *: none
8649 swcodec: "Restarting playback..."
8425 </source> 8650 </source>
8426 <dest> 8651 <dest>
8427 *: "Preset List" 8652 *: none
8653 swcodec: "Restarting playback..."
8428 </dest> 8654 </dest>
8429 <voice> 8655 <voice>
8430 *: "Preset List" 8656 *: none
8657 swcodec: ""
8431 </voice> 8658 </voice>
8432</phrase> 8659</phrase>
8433<phrase> 8660<phrase>
8434 id: LANG_FM_FIRST_AUTOSCAN 8661 id: LANG_PLEASE_REBOOT
8435 desc: When you run the radio without an fmr file in settings 8662 desc: when activating an option that requires a reboot
8436 user: 8663 user:
8437 <source> 8664 <source>
8438 *: "No settings found. Autoscan?" 8665 *: "Please reboot to enable"
8439 </source> 8666 </source>
8440 <dest> 8667 <dest>
8441 *: "No settings found. Autoscan?" 8668 *: "Please reboot to enable"
8442 </dest> 8669 </dest>
8443 <voice> 8670 <voice>
8444 *: "" 8671 *: ""
8445 </voice> 8672 </voice>
8446</phrase> 8673</phrase>
8447<phrase> 8674<phrase>
8448 id: LANG_FM_SAVE_CHANGES 8675 id: LANG_BATTERY_CHARGE
8449 desc: When you try to exit radio to confirm save 8676 desc: tells that the battery is charging, instead of battery level
8450 user: 8677 user:
8451 <source> 8678 <source>
8452 *: "Save Changes?" 8679 *: none
8680 charging: "Battery: Charging"
8453 </source> 8681 </source>
8454 <dest> 8682 <dest>
8455 *: "Save Changes?" 8683 *: none
8684 charging: "Battery: Charging"
8456 </dest> 8685 </dest>
8457 <voice> 8686 <voice>
8458 *: "" 8687 *: none
8688 charging: "Charging"
8459 </voice> 8689 </voice>
8460</phrase> 8690</phrase>
8461<phrase> 8691<phrase>
8462 id: LANG_PIXELS 8692 id: LANG_BATTERY_TOPOFF_CHARGE
8463 desc: In the settings menu 8693 desc: in info display, shows that top off charge is running Only for V1 recorder
8464 user: 8694 user:
8465 <source> 8695 <source>
8466 *: "pixels" 8696 *: none
8697 recorder: "Battery: Top-Off Chg"
8467 </source> 8698 </source>
8468 <dest> 8699 <dest>
8469 *: "pixels" 8700 *: none
8701 recorder: "Battery: Top-Off Chg"
8470 </dest> 8702 </dest>
8471 <voice> 8703 <voice>
8472 *: "pixels" 8704 *: none
8705 recorder: "Top off charge"
8473 </voice> 8706 </voice>
8474</phrase> 8707</phrase>
8475<phrase> 8708<phrase>
8476 id: LANG_CROSSFEED_DIRECT_GAIN 8709 id: LANG_BATTERY_TRICKLE_CHARGE
8477 desc: in crossfeed settings 8710 desc: in info display, shows that trickle charge is running
8478 user: 8711 user:
8479 <source> 8712 <source>
8480 *: "Direct Gain" 8713 *: none
8714 charging: "Battery: Trickle Chg"
8481 </source> 8715 </source>
8482 <dest> 8716 <dest>
8483 *: "Direct Gain" 8717 *: none
8718 charging: "Battery: Trickle Chg"
8484 </dest> 8719 </dest>
8485 <voice> 8720 <voice>
8486 *: "Direct gain" 8721 *: none
8722 charging: "Trickle charge"
8487 </voice> 8723 </voice>
8488</phrase> 8724</phrase>
8489<phrase> 8725<phrase>
8490 id: LANG_CROSSFEED_CROSS_GAIN
8491 desc: in crossfeed settings
8492 <source>
8493 *: "Cross Gain"
8494 </source>
8495 <dest>
8496 *: "Cross Gain"
8497 </dest>
8498 <voice>
8499 *: "Cross gain"
8500 </voice>
8501</phrase>
8502<phrase>
8503 id: LANG_CROSSFEED_HF_ATTENUATION
8504 desc: in crossfeed settings
8505 <source>
8506 *: "High-Frequency Attenuation"
8507 </source>
8508 <dest>
8509 *: "High-Frequency Attenuation"
8510 </dest>
8511 <voice>
8512 *: "High-frequency attenuation"
8513 </voice>
8514</phrase>
8515<phrase> 8726<phrase>
8516 id: LANG_CROSSFEED_HF_CUTOFF 8727 id: LANG_WARNING_BATTERY_LOW
8517 desc: in crossfeed settings 8728 desc: general warning
8518 <source> 8729 user:
8519 *: "High-Frequency Cutoff"
8520 </source>
8521 <dest>
8522 *: "High-Frequency Cutoff"
8523 </dest>
8524 <voice>
8525 *: "High-frequency cutoff"
8526 </voice>
8527</phrase>
8528<phrase>
8529 id: LANG_UNIT_HERTZ
8530 desc: in sound settings
8531 <source> 8730 <source>
8532 *: "Hz" 8731 *: "WARNING! Low Battery!"
8533 </source> 8732 </source>
8534 <dest> 8733 <dest>
8535 *: "Hz" 8734 *: "WARNING! Low Battery!"
8536 </dest> 8735 </dest>
8537 <voice> 8736 <voice>
8538 *: "" 8737 *: ""
8539 </voice> 8738 </voice>
8540</phrase> 8739</phrase>
8541<phrase> 8740<phrase>
8542 id: LANG_TAGCACHE_BUSY 8741 id: LANG_WARNING_BATTERY_EMPTY
8543 desc: when trying to shutdown and tagcache is committing 8742 desc: general warning
8544 <source>
8545 *: "Database is not ready"
8546 </source>
8547 <dest>
8548 *: "Database is not ready"
8549 </dest>
8550 <voice>
8551 *: "Database is not ready"
8552 </voice>
8553</phrase>
8554<phrase>
8555 id: LANG_TAGNAVI_ALL_TRACKS
8556 desc: "<All tracks>" entry in tag browser
8557 user: 8743 user:
8558 <source> 8744 <source>
8559 *: "<All tracks>" 8745 *: "Battery empty! RECHARGE!"
8560 </source> 8746 </source>
8561 <dest> 8747 <dest>
8562 *: "<All tracks>" 8748 *: "Battery empty! RECHARGE!"
8563 </dest> 8749 </dest>
8564 <voice> 8750 <voice>
8565 *: "All tracks" 8751 *: ""
8566 </voice> 8752 </voice>
8567</phrase> 8753</phrase>
8568<phrase> 8754<phrase>
8569 id: LANG_INVALID_FILENAME 8755 id: LANG_BYTE
8570 desc: "invalid filename entered" error message 8756 desc: a unit postfix
8571 user: 8757 user:
8572 <source> 8758 <source>
8573 *: "Invalid Filename!" 8759 *: "B"
8574 </source> 8760 </source>
8575 <dest> 8761 <dest>
8576 *: "Invalid Filename!" 8762 *: "B"
8577 </dest> 8763 </dest>
8578 <voice> 8764 <voice>
8579 *: "Invalid Filename" 8765 *: ""
8580 </voice> 8766 </voice>
8581</phrase> 8767</phrase>
8582<phrase> 8768<phrase>
8583 id: LANG_REMOTE_SCROLL_SETS 8769 id: LANG_KILOBYTE
8584 desc: "Remote Scrolling Options" Submenu in "Scrolling Options" menu 8770 desc: a unit postfix, also voiced
8585 user: 8771 user:
8586 <source> 8772 <source>
8587 *: "Remote Scrolling Options" 8773 *: "KB"
8588 </source> 8774 </source>
8589 <dest> 8775 <dest>
8590 *: "Remote Scrolling Options" 8776 *: "KB"
8591 </dest> 8777 </dest>
8592 <voice> 8778 <voice>
8593 *: "Remote Scrolling Options" 8779 *: "kilobyte"
8594 </voice> 8780 </voice>
8595</phrase> 8781</phrase>
8596<phrase> 8782<phrase>
8597 id: LANG_TAGCACHE_UPDATE 8783 id: LANG_MEGABYTE
8598 desc: in tag cache settings 8784 desc: a unit postfix, also voiced
8599 user: 8785 user:
8600 <source> 8786 <source>
8601 *: "Update Now" 8787 *: "MB"
8602 </source> 8788 </source>
8603 <dest> 8789 <dest>
8604 *: "Update Now" 8790 *: "MB"
8605 </dest> 8791 </dest>
8606 <voice> 8792 <voice>
8607 *: "Update Now" 8793 *: "megabyte"
8608 </voice> 8794 </voice>
8609</phrase> 8795</phrase>
8610<phrase> 8796<phrase>
8611 id: LANG_TAGCACHE_AUTOUPDATE 8797 id: LANG_GIGABYTE
8612 desc: in tag cache settings 8798 desc: a unit postfix, also voiced
8613 user: 8799 user:
8614 <source> 8800 <source>
8615 *: "Auto Update" 8801 *: "GB"
8616 </source> 8802 </source>
8617 <dest> 8803 <dest>
8618 *: "Auto Update" 8804 *: "GB"
8619 </dest> 8805 </dest>
8620 <voice> 8806 <voice>
8621 *: "Auto Update" 8807 *: "gigabyte"
8622 </voice> 8808 </voice>
8623</phrase> 8809</phrase>
8624<phrase> 8810<phrase>
8625 id: LANG_TAGCACHE_EXPORT 8811 id: LANG_POINT
8626 desc: in tag cache settings 8812 desc: decimal separator for composing numbers
8627 user: 8813 user:
8628 <source> 8814 <source>
8629 *: "Export Modifications" 8815 *: "."
8630 </source> 8816 </source>
8631 <dest> 8817 <dest>
8632 *: "Export Modifications" 8818 *: "."
8633 </dest> 8819 </dest>
8634 <voice> 8820 <voice>
8635 *: "Export Modifications" 8821 *: "point"
8636 </voice> 8822 </voice>
8637</phrase> 8823</phrase>
8638<phrase> 8824<phrase>
8639 id: LANG_CATALOG 8825 id: VOICE_ZERO
8640 desc: in onplay menu 8826 desc: spoken only, for composing numbers
8641 user: 8827 user:
8642 <source> 8828 <source>
8643 *: "Playlist Catalog" 8829 *: ""
8644 </source> 8830 </source>
8645 <dest> 8831 <dest>
8646 *: "Playlist Catalog" 8832 *: ""
8647 </dest> 8833 </dest>
8648 <voice> 8834 <voice>
8649 *: "Playlist Catalog" 8835 *: "0"
8650 </voice> 8836 </voice>
8651</phrase> 8837</phrase>
8652<phrase> 8838<phrase>
8653 id: LANG_CATALOG_ADD_TO 8839 id: VOICE_ONE
8654 desc: in onplay playlist catalog submenu 8840 desc: spoken only, for composing numbers
8655 user: 8841 user:
8656 <source> 8842 <source>
8657 *: "Add to Playlist" 8843 *: ""
8658 </source> 8844 </source>
8659 <dest> 8845 <dest>
8660 *: "Add to Playlist" 8846 *: ""
8661 </dest> 8847 </dest>
8662 <voice> 8848 <voice>
8663 *: "Add to Playlist" 8849 *: "1"
8664 </voice> 8850 </voice>
8665</phrase> 8851</phrase>
8666<phrase> 8852<phrase>
8667 id: LANG_CATALOG_ADD_TO_NEW 8853 id: VOICE_TWO
8668 desc: in onplay playlist catalog submenu 8854 desc: spoken only, for composing numbers
8669 user: 8855 user:
8670 <source> 8856 <source>
8671 *: "Add to New Playlist" 8857 *: ""
8672 </source> 8858 </source>
8673 <dest> 8859 <dest>
8674 *: "Add to New Playlist" 8860 *: ""
8675 </dest> 8861 </dest>
8676 <voice> 8862 <voice>
8677 *: "Add to New Playlist" 8863 *: "2"
8678 </voice> 8864 </voice>
8679</phrase> 8865</phrase>
8680<phrase> 8866<phrase>
8681 id: LANG_CATALOG_VIEW 8867 id: VOICE_THREE
8682 desc: in onplay playlist catalog submenu 8868 desc: spoken only, for composing numbers
8683 user: 8869 user:
8684 <source> 8870 <source>
8685 *: "View Catalog" 8871 *: ""
8686 </source> 8872 </source>
8687 <dest> 8873 <dest>
8688 *: "View Catalog" 8874 *: ""
8689 </dest> 8875 </dest>
8690 <voice> 8876 <voice>
8691 *: "View Catalog" 8877 *: "3"
8692 </voice> 8878 </voice>
8693</phrase> 8879</phrase>
8694<phrase> 8880<phrase>
8695 id: LANG_CATALOG_NO_DIRECTORY 8881 id: VOICE_FOUR
8696 desc: error message when playlist catalog directory doesn't exist 8882 desc: spoken only, for composing numbers
8697 user: 8883 user:
8698 <source> 8884 <source>
8699 *: "%s doesn't exist"
8700 </source>
8701 <dest>
8702 *: "%s doesn't exist"
8703 </dest>
8704 <voice>
8705 *: "" 8885 *: ""
8706 </voice>
8707</phrase>
8708<phrase>
8709 id: LANG_CATALOG_NO_PLAYLISTS
8710 desc: error message when no playlists for playlist catalog
8711 user:
8712 <source>
8713 *: "No Playlists"
8714 </source> 8886 </source>
8715 <dest> 8887 <dest>
8716 *: "No Playlists"
8717 </dest>
8718 <voice>
8719 *: "" 8888 *: ""
8720 </voice>
8721</phrase>
8722<phrase>
8723 id: LANG_TAGCACHE_IMPORT
8724 desc: in tag cache settings
8725 user:
8726 <source>
8727 *: "Import Modifications"
8728 </source>
8729 <dest>
8730 *: "Import Modifications"
8731 </dest>
8732 <voice>
8733 *: "Import Modifications"
8734 </voice>
8735</phrase>
8736<phrase>
8737 id: LANG_SPLIT_MEASURE
8738 desc: in record timesplit options
8739 <source>
8740 *: "Split Measure"
8741 </source>
8742 <dest>
8743 *: "Split Measure"
8744 </dest>
8745 <voice>
8746 *: "Split Measure"
8747 </voice>
8748</phrase>
8749<phrase>
8750 id: LANG_SPLIT_TYPE
8751 desc: in record timesplit options
8752 <source>
8753 *: "What to do when Splitting"
8754 </source>
8755 <dest>
8756 *: "What to do when Splitting"
8757 </dest>
8758 <voice>
8759 *: "What to do when Splitting"
8760 </voice>
8761</phrase>
8762<phrase>
8763 id: LANG_SPLIT_TIME
8764 desc: in record timesplit options
8765 <source>
8766 *: "Split Time"
8767 </source>
8768 <dest>
8769 *: "Split Time"
8770 </dest>
8771 <voice>
8772 *: "Split Time"
8773 </voice>
8774</phrase>
8775<phrase>
8776 id: LANG_SPLIT_SIZE
8777 desc: in record timesplit options
8778 <source>
8779 *: "Split Filesize"
8780 </source>
8781 <dest>
8782 *: "Split Filesize"
8783 </dest> 8889 </dest>
8784 <voice> 8890 <voice>
8785 *: "Split Filesize" 8891 *: "4"
8786 </voice> 8892 </voice>
8787</phrase> 8893</phrase>
8788<phrase> 8894<phrase>
8789 id: LANG_REC_TIME 8895 id: VOICE_FIFE
8790 desc: in record timesplit options 8896 desc: spoken only, for composing numbers
8791 user: 8897 user:
8792 <source> 8898 <source>
8793 *: "Time" 8899 *: ""
8794 </source> 8900 </source>
8795 <dest> 8901 <dest>
8796 *: "Time" 8902 *: ""
8797 </dest> 8903 </dest>
8798 <voice> 8904 <voice>
8799 *: "Time" 8905 *: "5"
8800 </voice> 8906 </voice>
8801</phrase> 8907</phrase>
8802<phrase> 8908<phrase>
8803 id: LANG_REC_SIZE 8909 id: VOICE_SIX
8804 desc: in record timesplit options 8910 desc: spoken only, for composing numbers
8805 user: 8911 user:
8806 <source> 8912 <source>
8807 *: "Filesize" 8913 *: ""
8808 </source> 8914 </source>
8809 <dest> 8915 <dest>
8810 *: "Filesize" 8916 *: ""
8811 </dest> 8917 </dest>
8812 <voice> 8918 <voice>
8813 *: "Filesize" 8919 *: "6"
8814 </voice> 8920 </voice>
8815</phrase> 8921</phrase>
8816<phrase> 8922<phrase>
8817 id: LANG_START_NEW_FILE 8923 id: VOICE_SEVEN
8818 desc: in record timesplit options 8924 desc: spoken only, for composing numbers
8819 user: 8925 user:
8820 <source> 8926 <source>
8821 *: "Start new file" 8927 *: ""
8822 </source> 8928 </source>
8823 <dest> 8929 <dest>
8824 *: "Start new file" 8930 *: ""
8825 </dest> 8931 </dest>
8826 <voice> 8932 <voice>
8827 *: "Start new file" 8933 *: "7"
8828 </voice> 8934 </voice>
8829</phrase> 8935</phrase>
8830<phrase> 8936<phrase>
8831 id: LANG_STOP_RECORDING 8937 id: VOICE_EIGHT
8832 desc: in record timesplit options 8938 desc: spoken only, for composing numbers
8833 user: 8939 user:
8834 <source> 8940 <source>
8835 *: "Stop recording" 8941 *: ""
8836 </source> 8942 </source>
8837 <dest> 8943 <dest>
8838 *: "Stop recording" 8944 *: ""
8839 </dest> 8945 </dest>
8840 <voice> 8946 <voice>
8841 *: "Stop recording" 8947 *: "8"
8842 </voice> 8948 </voice>
8843</phrase> 8949</phrase>
8844<phrase> 8950<phrase>
8845 id: LANG_REMOTE_LCD_OFF 8951 id: VOICE_NINE
8846 desc: Remote lcd off splash 8952 desc: spoken only, for composing numbers
8847 user: 8953 user:
8848 <source> 8954 <source>
8849 *: "Remote Display OFF" 8955 *: ""
8850 </source> 8956 </source>
8851 <dest> 8957 <dest>
8852 *: "Remote Display OFF" 8958 *: ""
8853 </dest> 8959 </dest>
8854 <voice> 8960 <voice>
8855 *: "Remote Display OFF" 8961 *: "9"
8856 </voice> 8962 </voice>
8857</phrase> 8963</phrase>
8858<phrase> 8964<phrase>
8859 id: LANG_REMOTE_LCD_ON 8965 id: VOICE_TEN
8860 desc: Remote lcd off splash 8966 desc: spoken only, for composing numbers
8861 user: 8967 user:
8862 <source> 8968 <source>
8863 *: "(Vol- : Re-enable)" 8969 *: ""
8864 </source> 8970 </source>
8865 <dest> 8971 <dest>
8866 *: "(Vol- : Re-enable)" 8972 *: ""
8867 </dest> 8973 </dest>
8868 <voice> 8974 <voice>
8869 *: "(Vol- : Re-enable)" 8975 *: "10"
8870 </voice> 8976 </voice>
8871</phrase> 8977</phrase>
8872<phrase> 8978<phrase>
8873 id: LANG_BACKLIGHT_ON_BUTTON_HOLD_NORMAL 8979 id: VOICE_ELEVEN
8874 desc: in lcd settings 8980 desc: spoken only, for composing numbers
8875 user: 8981 user:
8876 <source> 8982 <source>
8877 *: "Normal" 8983 *: ""
8878 </source> 8984 </source>
8879 <dest> 8985 <dest>
8880 *: "Normal" 8986 *: ""
8881 </dest> 8987 </dest>
8882 <voice> 8988 <voice>
8883 *: "Normal" 8989 *: "11"
8884 </voice> 8990 </voice>
8885</phrase> 8991</phrase>
8886<phrase> 8992<phrase>
8887 id: LANG_BACKLIGHT_ON_BUTTON_HOLD 8993 id: VOICE_TWELVE
8888 desc: in lcd settings 8994 desc: spoken only, for composing numbers
8889 user: 8995 user:
8890 <source> 8996 <source>
8891 *: "Backlight (On Hold Key)" 8997 *: ""
8892 </source> 8998 </source>
8893 <dest> 8999 <dest>
8894 *: "Backlight (On Hold Key)" 9000 *: ""
8895 </dest> 9001 </dest>
8896 <voice> 9002 <voice>
8897 *: "Backlight on hold key" 9003 *: "12"
8898 </voice> 9004 </voice>
8899</phrase> 9005</phrase>
8900<phrase> 9006<phrase>
8901 id: LANG_NEVER 9007 id: VOICE_THIRTEEN
8902 desc: in lcd settings 9008 desc: spoken only, for composing numbers
8903 user: 9009 user:
8904 <source> 9010 <source>
8905 *: "Never" 9011 *: ""
8906 </source> 9012 </source>
8907 <dest> 9013 <dest>
8908 *: "Never" 9014 *: ""
8909 </dest> 9015 </dest>
8910 <voice> 9016 <voice>
8911 *: "Never" 9017 *: "13"
8912 </voice> 9018 </voice>
8913</phrase> 9019</phrase>
8914<phrase> 9020<phrase>
8915 id: LANG_LCD_SLEEP_AFTER_BACKLIGHT_OFF 9021 id: VOICE_FOURTEEN
8916 desc: In display settings, time to switch LCD chip into power saving state 9022 desc: spoken only, for composing numbers
8917 user: 9023 user:
8918 <source> 9024 <source>
8919 *: "Sleep (After Backlight Off)" 9025 *: ""
8920 </source> 9026 </source>
8921 <dest> 9027 <dest>
8922 *: "Sleep (After Backlight Off)" 9028 *: ""
8923 </dest> 9029 </dest>
8924 <voice> 9030 <voice>
8925 *: "Sleep after backlight off" 9031 *: "14"
8926 </voice> 9032 </voice>
8927</phrase> 9033</phrase>
8928<phrase> 9034<phrase>
8929 id: LANG_SYSFONT_SET_BOOL_YES 9035 id: VOICE_FIFTEEN
8930 desc: bool true representation 9036 desc: spoken only, for composing numbers
8931 user: 9037 user:
8932 <source> 9038 <source>
8933 *: "Yes" 9039 *: ""
8934 </source> 9040 </source>
8935 <dest> 9041 <dest>
8936 *: "Yes" 9042 *: ""
8937 </dest> 9043 </dest>
8938 <voice> 9044 <voice>
8939 *: "Yes" 9045 *: "15"
8940 </voice> 9046 </voice>
8941</phrase> 9047</phrase>
8942<phrase> 9048<phrase>
8943 id: LANG_SYSFONT_SET_BOOL_NO 9049 id: VOICE_SIXTEEN
8944 desc: bool false representation 9050 desc: spoken only, for composing numbers
8945 user: 9051 user:
8946 <source> 9052 <source>
8947 *: "No" 9053 *: ""
8948 </source> 9054 </source>
8949 <dest> 9055 <dest>
8950 *: "No" 9056 *: ""
8951 </dest> 9057 </dest>
8952 <voice> 9058 <voice>
8953 *: "No" 9059 *: "16"
8954 </voice> 9060 </voice>
8955</phrase> 9061</phrase>
8956<phrase> 9062<phrase>
8957 id: LANG_SYSFONT_ON 9063 id: VOICE_SEVENTEEN
8958 desc: Used in a lot of places 9064 desc: spoken only, for composing numbers
8959 user: 9065 user:
8960 <source> 9066 <source>
8961 *: "On" 9067 *: ""
8962 </source> 9068 </source>
8963 <dest> 9069 <dest>
8964 *: "On" 9070 *: ""
8965 </dest> 9071 </dest>
8966 <voice> 9072 <voice>
8967 *: "On" 9073 *: "17"
8968 </voice> 9074 </voice>
8969</phrase> 9075</phrase>
8970<phrase> 9076<phrase>
8971 id: LANG_SYSFONT_OFF 9077 id: VOICE_EIGHTEEN
8972 desc: Used in a lot of places 9078 desc: spoken only, for composing numbers
8973 user: 9079 user:
8974 <source> 9080 <source>
8975 *: "Off" 9081 *: ""
8976 </source> 9082 </source>
8977 <dest> 9083 <dest>
8978 *: "Off" 9084 *: ""
8979 </dest> 9085 </dest>
8980 <voice> 9086 <voice>
8981 *: "Off" 9087 *: "18"
8982 </voice> 9088 </voice>
8983</phrase> 9089</phrase>
8984<phrase> 9090<phrase>
8985 id: LANG_SYSFONT_VOLUME 9091 id: VOICE_NINETEEN
8986 desc: in sound_settings 9092 desc: spoken only, for composing numbers
8987 user: 9093 user:
8988 <source> 9094 <source>
8989 *: "Volume" 9095 *: ""
8990 </source> 9096 </source>
8991 <dest> 9097 <dest>
8992 *: "Volume" 9098 *: ""
8993 </dest> 9099 </dest>
8994 <voice> 9100 <voice>
8995 *: "Volume" 9101 *: "19"
8996 </voice> 9102 </voice>
8997</phrase> 9103</phrase>
8998<phrase> 9104<phrase>
8999 id: LANG_SYSFONT_CHANNEL_STEREO 9105 id: VOICE_TWENTY
9000 desc: in sound_settings 9106 desc: spoken only, for composing numbers
9001 user: 9107 user:
9002 <source> 9108 <source>
9003 *: "Stereo" 9109 *: ""
9004 </source> 9110 </source>
9005 <dest> 9111 <dest>
9006 *: "Stereo" 9112 *: ""
9007 </dest> 9113 </dest>
9008 <voice> 9114 <voice>
9009 *: "Stereo" 9115 *: "20"
9010 </voice> 9116 </voice>
9011</phrase> 9117</phrase>
9012<phrase> 9118<phrase>
9013 id: LANG_SYSFONT_CHANNEL_MONO 9119 id: VOICE_THIRTY
9014 desc: in sound_settings 9120 desc: spoken only, for composing numbers
9015 user: 9121 user:
9016 <source> 9122 <source>
9017 *: "Mono" 9123 *: ""
9018 </source> 9124 </source>
9019 <dest> 9125 <dest>
9020 *: "Mono" 9126 *: ""
9021 </dest> 9127 </dest>
9022 <voice> 9128 <voice>
9023 *: "Mono" 9129 *: "30"
9024 </voice> 9130 </voice>
9025</phrase> 9131</phrase>
9026<phrase> 9132<phrase>
9027 id: LANG_SYSFONT_EQUALIZER_EDIT_MODE 9133 id: VOICE_FORTY
9028 desc: in the equalizer settings menu 9134 desc: spoken only, for composing numbers
9029 user: 9135 user:
9030 <source> 9136 <source>
9031 *: "Edit mode: %s"
9032 </source>
9033 <dest>
9034 *: "Edit mode: %s"
9035 </dest>
9036 <voice>
9037 *: "" 9137 *: ""
9038 </voice>
9039</phrase>
9040<phrase>
9041 id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
9042 desc: in the equalizer settings menu
9043 user:
9044 <source>
9045 *: "Cutoff Frequency"
9046 </source> 9138 </source>
9047 <dest> 9139 <dest>
9048 *: "Cutoff Frequency" 9140 *: ""
9049 </dest> 9141 </dest>
9050 <voice> 9142 <voice>
9051 *: "Cutoff Frequency" 9143 *: "40"
9052 </voice> 9144 </voice>
9053</phrase> 9145</phrase>
9054<phrase> 9146<phrase>
9055 id: LANG_SYSFONT_EQUALIZER_BAND_GAIN 9147 id: VOICE_FIFTY
9056 desc: in the equalizer settings menu 9148 desc: spoken only, for composing numbers
9057 user: 9149 user:
9058 <source> 9150 <source>
9059 *: "Gain" 9151 *: ""
9060 </source> 9152 </source>
9061 <dest> 9153 <dest>
9062 *: "Gain" 9154 *: ""
9063 </dest> 9155 </dest>
9064 <voice> 9156 <voice>
9065 *: "Gain" 9157 *: "50"
9066 </voice> 9158 </voice>
9067</phrase> 9159</phrase>
9068<phrase> 9160<phrase>
9069 id: LANG_SYSFONT_SHUFFLE 9161 id: VOICE_SIXTY
9070 desc: in settings_menu 9162 desc: spoken only, for composing numbers
9071 user: 9163 user:
9072 <source> 9164 <source>
9073 *: "Shuffle" 9165 *: ""
9074 </source> 9166 </source>
9075 <dest> 9167 <dest>
9076 *: "Shuffle" 9168 *: ""
9077 </dest> 9169 </dest>
9078 <voice> 9170 <voice>
9079 *: "Shuffle" 9171 *: "60"
9080 </voice> 9172 </voice>
9081</phrase> 9173</phrase>
9082<phrase> 9174<phrase>
9083 id: LANG_SYSFONT_REPEAT 9175 id: VOICE_SEVENTY
9084 desc: in settings_menu 9176 desc: spoken only, for composing numbers
9085 user: 9177 user:
9086 <source> 9178 <source>
9087 *: "Repeat" 9179 *: ""
9088 </source> 9180 </source>
9089 <dest> 9181 <dest>
9090 *: "Repeat" 9182 *: ""
9091 </dest> 9183 </dest>
9092 <voice> 9184 <voice>
9093 *: "Repeat" 9185 *: "70"
9094 </voice> 9186 </voice>
9095</phrase> 9187</phrase>
9096<phrase> 9188<phrase>
9097 id: LANG_SYSFONT_REPEAT_ALL 9189 id: VOICE_EIGHTY
9098 desc: repeat playlist once all songs have completed 9190 desc: spoken only, for composing numbers
9099 user: 9191 user:
9100 <source> 9192 <source>
9101 *: "All" 9193 *: ""
9102 </source> 9194 </source>
9103 <dest> 9195 <dest>
9104 *: "All" 9196 *: ""
9105 </dest> 9197 </dest>
9106 <voice> 9198 <voice>
9107 *: "All" 9199 *: "80"
9108 </voice> 9200 </voice>
9109</phrase> 9201</phrase>
9110<phrase> 9202<phrase>
9111 id: LANG_SYSFONT_REPEAT_ONE 9203 id: VOICE_NINETY
9112 desc: repeat one song 9204 desc: spoken only, for composing numbers
9113 user: 9205 user:
9114 <source> 9206 <source>
9115 *: "One" 9207 *: ""
9116 </source> 9208 </source>
9117 <dest> 9209 <dest>
9118 *: "One" 9210 *: ""
9119 </dest> 9211 </dest>
9120 <voice> 9212 <voice>
9121 *: "One" 9213 *: "90"
9122 </voice> 9214 </voice>
9123</phrase> 9215</phrase>
9124<phrase> 9216<phrase>
9125 id: LANG_SYSFONT_REPEAT_AB 9217 id: VOICE_HUNDRED
9126 desc: repeat one song 9218 desc: spoken only, for composing numbers
9127 user: 9219 user:
9128 <source> 9220 <source>
9129 *: "A-B" 9221 *: ""
9130 </source> 9222 </source>
9131 <dest> 9223 <dest>
9132 *: "A-B" 9224 *: ""
9133 </dest> 9225 </dest>
9134 <voice> 9226 <voice>
9135 *: "A-B" 9227 *: "hundred"
9136 </voice> 9228 </voice>
9137</phrase> 9229</phrase>
9138<phrase> 9230<phrase>
9139 id: LANG_SYSFONT_FILTER 9231 id: VOICE_THOUSAND
9140 desc: setting name for dir filter 9232 desc: spoken only, for composing numbers
9141 user: 9233 user:
9142 <source> 9234 <source>
9143 *: "Show Files" 9235 *: ""
9144 </source> 9236 </source>
9145 <dest> 9237 <dest>
9146 *: "Show Files" 9238 *: ""
9147 </dest> 9239 </dest>
9148 <voice> 9240 <voice>
9149 *: "Show Files" 9241 *: "thousand"
9150 </voice> 9242 </voice>
9151</phrase> 9243</phrase>
9152<phrase> 9244<phrase>
9153 id: LANG_SYSFONT_FILTER_ALL 9245 id: VOICE_MILLION
9154 desc: show all files 9246 desc: spoken only, for composing numbers
9155 user: 9247 user:
9156 <source> 9248 <source>
9157 *: "All" 9249 *: ""
9158 </source> 9250 </source>
9159 <dest> 9251 <dest>
9160 *: "All" 9252 *: ""
9161 </dest> 9253 </dest>
9162 <voice> 9254 <voice>
9163 *: "All" 9255 *: "million"
9164 </voice> 9256 </voice>
9165</phrase> 9257</phrase>
9166<phrase> 9258<phrase>
9167 id: LANG_SYSFONT_FILTER_SUPPORTED 9259 id: VOICE_BILLION
9168 desc: show all file types supported by Rockbox 9260 desc: spoken only, for composing numbers
9169 user: 9261 user:
9170 <source> 9262 <source>
9171 *: "Supported" 9263 *: ""
9172 </source> 9264 </source>
9173 <dest> 9265 <dest>
9174 *: "Supported" 9266 *: ""
9175 </dest> 9267 </dest>
9176 <voice> 9268 <voice>
9177 *: "Supported" 9269 *: "billion"
9178 </voice> 9270 </voice>
9179</phrase> 9271</phrase>
9180<phrase> 9272<phrase>
9181 id: LANG_SYSFONT_FILTER_MUSIC 9273 id: VOICE_MINUS
9182 desc: show only music-related files 9274 desc: spoken only, for composing numbers
9183 user: 9275 user:
9184 <source> 9276 <source>
9185 *: "Music" 9277 *: ""
9186 </source> 9278 </source>
9187 <dest> 9279 <dest>
9188 *: "Music" 9280 *: ""
9189 </dest> 9281 </dest>
9190 <voice> 9282 <voice>
9191 *: "Music" 9283 *: "minus"
9192 </voice> 9284 </voice>
9193</phrase> 9285</phrase>
9194<phrase> 9286<phrase>
9195 id: LANG_SYSFONT_FILTER_PLAYLIST 9287 id: VOICE_PLUS
9196 desc: show only playlist 9288 desc: spoken only, for composing numbers
9197 user: 9289 user:
9198 <source> 9290 <source>
9199 *: "Playlists" 9291 *: ""
9200 </source> 9292 </source>
9201 <dest> 9293 <dest>
9202 *: "Playlists" 9294 *: ""
9203 </dest> 9295 </dest>
9204 <voice> 9296 <voice>
9205 *: "Playlists" 9297 *: "plus"
9206 </voice> 9298 </voice>
9207</phrase> 9299</phrase>
9208<phrase> 9300<phrase>
9209 id: LANG_SYSFONT_FILTER_ID3DB 9301 id: VOICE_MILLISECONDS
9210 desc: show ID3 Database 9302 desc: spoken only, a unit postfix
9211 user: 9303 user:
9212 <source> 9304 <source>
9213 *: "Database" 9305 *: ""
9214 </source> 9306 </source>
9215 <dest> 9307 <dest>
9216 *: "Database" 9308 *: ""
9217 </dest> 9309 </dest>
9218 <voice> 9310 <voice>
9219 *: "Database" 9311 *: "milliseconds"
9220 </voice> 9312 </voice>
9221</phrase> 9313</phrase>
9222<phrase> 9314<phrase>
9223 id: LANG_SYSFONT_RECORDING_QUALITY 9315 id: VOICE_SECOND
9224 desc: in the recording settings 9316 desc: spoken only, a unit postfix
9225 user: 9317 user:
9226 <source> 9318 <source>
9227 *: "Quality" 9319 *: ""
9228 </source> 9320 </source>
9229 <dest> 9321 <dest>
9230 *: "Quality" 9322 *: ""
9231 </dest> 9323 </dest>
9232 <voice> 9324 <voice>
9233 *: "Quality" 9325 *: "second"
9234 </voice> 9326 </voice>
9235</phrase> 9327</phrase>
9236<phrase> 9328<phrase>
9237 id: LANG_SYSFONT_RECORDING_FREQUENCY 9329 id: VOICE_SECONDS
9238 desc: in the recording settings 9330 desc: spoken only, a unit postfix
9239 user: 9331 user:
9240 <source> 9332 <source>
9241 *: "Frequency" 9333 *: ""
9242 </source> 9334 </source>
9243 <dest> 9335 <dest>
9244 *: "Frequency" 9336 *: ""
9245 </dest> 9337 </dest>
9246 <voice> 9338 <voice>
9247 *: "Frequency" 9339 *: "seconds"
9248 </voice> 9340 </voice>
9249</phrase> 9341</phrase>
9250<phrase> 9342<phrase>
9251 id: LANG_SYSFONT_RECORDING_SOURCE 9343 id: VOICE_MINUTE
9252 desc: in the recording settings 9344 desc: spoken only, a unit postfix
9253 user: 9345 user:
9254 <source> 9346 <source>
9255 *: "Source" 9347 *: ""
9256 </source> 9348 </source>
9257 <dest> 9349 <dest>
9258 *: "Source" 9350 *: ""
9259 </dest> 9351 </dest>
9260 <voice> 9352 <voice>
9261 *: "Source" 9353 *: "minute"
9262 </voice> 9354 </voice>
9263</phrase> 9355</phrase>
9264<phrase> 9356<phrase>
9265 id: LANG_SYSFONT_RECORDING_SRC_MIC 9357 id: VOICE_MINUTES
9266 desc: in the recording settings 9358 desc: spoken only, a unit postfix
9267 user: 9359 user:
9268 <source> 9360 <source>
9269 *: "Int. Mic" 9361 *: ""
9270 </source> 9362 </source>
9271 <dest> 9363 <dest>
9272 *: "Int. Mic" 9364 *: ""
9273 </dest> 9365 </dest>
9274 <voice> 9366 <voice>
9275 *: "Internal Microphone" 9367 *: "minutes"
9276 </voice> 9368 </voice>
9277</phrase> 9369</phrase>
9278<phrase> 9370<phrase>
9279 id: LANG_SYSFONT_RECORDING_SRC_LINE 9371 id: VOICE_HOUR
9280 desc: in the recording settings 9372 desc: spoken only, a unit postfix
9281 user: 9373 user:
9282 <source> 9374 <source>
9283 *: "Line In" 9375 *: ""
9284 </source> 9376 </source>
9285 <dest> 9377 <dest>
9286 *: "Line In" 9378 *: ""
9287 </dest> 9379 </dest>
9288 <voice> 9380 <voice>
9289 *: "Line In" 9381 *: "hour"
9290 </voice> 9382 </voice>
9291</phrase> 9383</phrase>
9292<phrase> 9384<phrase>
9293 id: LANG_SYSFONT_RECORDING_SRC_DIGITAL 9385 id: VOICE_HOURS
9294 desc: in the recording settings 9386 desc: spoken only, a unit postfix
9295 user: 9387 user:
9296 <source> 9388 <source>
9297 *: "Digital" 9389 *: ""
9298 </source> 9390 </source>
9299 <dest> 9391 <dest>
9300 *: "Digital" 9392 *: ""
9301 </dest> 9393 </dest>
9302 <voice> 9394 <voice>
9303 *: "Digital" 9395 *: "hours"
9304 </voice> 9396 </voice>
9305</phrase> 9397</phrase>
9306<phrase> 9398<phrase>
9307 id: LANG_SYSFONT_RECORDING_CHANNELS 9399 id: VOICE_KHZ
9308 desc: in the recording settings 9400 desc: spoken only, a unit postfix
9309 user: 9401 user:
9310 <source> 9402 <source>
9311 *: "Channels" 9403 *: ""
9312 </source> 9404 </source>
9313 <dest> 9405 <dest>
9314 *: "Channels" 9406 *: ""
9315 </dest> 9407 </dest>
9316 <voice> 9408 <voice>
9317 *: "Channels" 9409 *: "kilohertz"
9318 </voice> 9410 </voice>
9319</phrase> 9411</phrase>
9320<phrase> 9412<phrase>
9321 id: LANG_SYSFONT_RECORD_TRIGGER 9413 id: VOICE_DB
9322 desc: in recording settings_menu 9414 desc: spoken only, a unit postfix
9323 user: 9415 user:
9324 <source> 9416 <source>
9325 *: "Trigger" 9417 *: ""
9326 </source> 9418 </source>
9327 <dest> 9419 <dest>
9328 *: "Trigger" 9420 *: ""
9329 </dest> 9421 </dest>
9330 <voice> 9422 <voice>
9331 *: "Trigger" 9423 *: "decibel"
9332 </voice> 9424 </voice>
9333</phrase> 9425</phrase>
9334<phrase> 9426<phrase>
9335 id: LANG_SYSFONT_FLIP_DISPLAY 9427 id: VOICE_PERCENT
9336 desc: in settings_menu, option to turn display+buttos by 180 degreed 9428 desc: spoken only, a unit postfix
9337 user: 9429 user:
9338 <source> 9430 <source>
9339 *: "Upside Down" 9431 *: ""
9340 </source> 9432 </source>
9341 <dest> 9433 <dest>
9342 *: "Upside Down" 9434 *: ""
9343 </dest> 9435 </dest>
9344 <voice> 9436 <voice>
9345 *: "Upside Down" 9437 *: "percent"
9346 </voice> 9438 </voice>
9347</phrase> 9439</phrase>
9348<phrase> 9440<phrase>
9349 id: LANG_SYSFONT_SCROLL_BAR 9441 id: VOICE_MILLIAMPHOURS
9350 desc: display menu, F3 substitute 9442 desc: spoken only, a unit postfix
9351 user: 9443 user:
9352 <source> 9444 <source>
9353 *: "Scroll Bar" 9445 *: ""
9354 </source> 9446 </source>
9355 <dest> 9447 <dest>
9356 *: "Scroll Bar" 9448 *: ""
9357 </dest> 9449 </dest>
9358 <voice> 9450 <voice>
9359 *: "Scroll Bar" 9451 *: "milli-amp hours"
9360 </voice> 9452 </voice>
9361</phrase> 9453</phrase>
9362<phrase> 9454<phrase>
9363 id: LANG_SYSFONT_STATUS_BAR 9455 id: VOICE_PIXEL
9364 desc: display menu, F3 substitute 9456 desc: spoken only, a unit postfix
9365 user: 9457 user:
9366 <source> 9458 <source>
9367 *: "Status Bar" 9459 *: ""
9368 </source> 9460 </source>
9369 <dest> 9461 <dest>
9370 *: "Status Bar" 9462 *: ""
9371 </dest> 9463 </dest>
9372 <voice> 9464 <voice>
9373 *: "Status Bar" 9465 *: "pixel"
9374 </voice> 9466 </voice>
9375</phrase> 9467</phrase>
9376<phrase> 9468<phrase>
9377 id: LANG_SYSFONT_PITCH 9469 id: VOICE_PER_SEC
9378 desc: "pitch" in the pitch screen 9470 desc: spoken only, a unit postfix
9379 user: 9471 user:
9380 <source> 9472 <source>
9381 *: "Pitch" 9473 *: ""
9382 </source> 9474 </source>
9383 <dest> 9475 <dest>
9384 *: "Pitch" 9476 *: ""
9385 </dest> 9477 </dest>
9386 <voice> 9478 <voice>
9387 *: "Pitch" 9479 *: "per second"
9388 </voice> 9480 </voice>
9389</phrase> 9481</phrase>
9390<phrase> 9482<phrase>
9391 id: LANG_SYSFONT_PITCH_UP 9483 id: VOICE_HERTZ
9392 desc: in wps 9484 desc: spoken only, a unit postfix
9393 user: 9485 user:
9394 <source> 9486 <source>
9395 *: "Pitch Up"
9396 </source>
9397 <dest>
9398 *: "Pitch Up"
9399 </dest>
9400 <voice>
9401 *: "" 9487 *: ""
9402 </voice>
9403</phrase>
9404<phrase>
9405 id: LANG_SYSFONT_PITCH_DOWN
9406 desc: in wps
9407 user:
9408 <source>
9409 *: "Pitch Down"
9410 </source> 9488 </source>
9411 <dest> 9489 <dest>
9412 *: "Pitch Down"
9413 </dest>
9414 <voice>
9415 *: "" 9490 *: ""
9416 </voice>
9417</phrase>
9418<phrase>
9419 id: LANG_SYSFONT_F2_MODE
9420 desc: in wps F2 pressed
9421 user:
9422 <source>
9423 *: "Mode:"
9424 </source>
9425 <dest>
9426 *: "Mode:"
9427 </dest> 9491 </dest>
9428 <voice> 9492 <voice>
9429 *: "" 9493 *: "hertz"
9430 </voice> 9494 </voice>
9431</phrase> 9495</phrase>
9432<phrase> 9496<phrase>
9433 id: LANG_SYSFONT_RECORDING_TIME 9497 id: VOICE_KBIT_PER_SEC
9434 desc: Display of recorded time 9498 desc: spoken only, a unit postfix
9435 user: 9499 user:
9436 <source> 9500 <source>
9437 *: "Time:"
9438 </source>
9439 <dest>
9440 *: "Time:"
9441 </dest>
9442 <voice>
9443 *: "" 9501 *: ""
9444 </voice>
9445</phrase>
9446<phrase>
9447 id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
9448 desc: Display of record timer interval setting, on the record screen
9449 user:
9450 <source>
9451 *: "Split Time:"
9452 </source> 9502 </source>
9453 <dest> 9503 <dest>
9454 *: "Split Time:"
9455 </dest>
9456 <voice>
9457 *: "" 9504 *: ""
9458 </voice>
9459</phrase>
9460<phrase>
9461 id: LANG_SYSFONT_RECORDING_SIZE
9462 desc: Display of recorded file size
9463 user:
9464 <source>
9465 *: "Size:"
9466 </source>
9467 <dest>
9468 *: "Size:"
9469 </dest> 9505 </dest>
9470 <voice> 9506 <voice>
9471 *: "" 9507 *: "kilobits per second"
9472 </voice> 9508 </voice>
9473</phrase> 9509</phrase>
9474<phrase> 9510<phrase>
9475 id: LANG_SYSFONT_RECORD_PRERECORD 9511 id: VOICE_CHAR_A
9476 desc: in recording and radio screen 9512 desc: spoken only, for spelling
9477 user: 9513 user:
9478 <source> 9514 <source>
9479 *: "Pre-Recording"
9480 </source>
9481 <dest>
9482 *: "Pre-Recording"
9483 </dest>
9484 <voice>
9485 *: "" 9515 *: ""
9486 </voice>
9487</phrase>
9488<phrase>
9489 id: LANG_SYSFONT_RECORDING_GAIN
9490 desc: in the recording screen
9491 user:
9492 <source>
9493 *: "Gain"
9494 </source> 9516 </source>
9495 <dest> 9517 <dest>
9496 *: "Gain"
9497 </dest>
9498 <voice>
9499 *: "" 9518 *: ""
9500 </voice>
9501</phrase>
9502<phrase>
9503 id: LANG_SYSFONT_RECORDING_LEFT
9504 desc: in the recording screen
9505 user:
9506 <source>
9507 *: "Gain Left"
9508 </source>
9509 <dest>
9510 *: "Gain Left"
9511 </dest> 9519 </dest>
9512 <voice> 9520 <voice>
9513 *: "" 9521 *: "A"
9514 </voice> 9522 </voice>
9515</phrase> 9523</phrase>
9516<phrase> 9524<phrase>
9517 id: LANG_SYSFONT_RECORDING_RIGHT 9525 id: VOICE_CHAR_B
9518 desc: in the recording screen 9526 desc: spoken only, for spelling
9519 user: 9527 user:
9520 <source> 9528 <source>
9521 *: "Gain Right"
9522 </source>
9523 <dest>
9524 *: "Gain Right"
9525 </dest>
9526 <voice>
9527 *: "" 9529 *: ""
9528 </voice>
9529</phrase>
9530<phrase>
9531 id: LANG_SYSFONT_DISK_FULL
9532 desc: in recording screen
9533 user:
9534 <source>
9535 *: "The disk is full. Press OFF to continue."
9536 h100,h120,h300: "The disk is full. Press STOP to continue."
9537 </source> 9530 </source>
9538 <dest> 9531 <dest>
9539 *: "The disk is full. Press OFF to continue."
9540 h100,h120,h300: "The disk is full. Press STOP to continue."
9541 </dest>
9542 <voice>
9543 *: "" 9532 *: ""
9544 </voice>
9545</phrase>
9546<phrase>
9547 id: LANG_SYSFONT_DIRBROWSE_F1
9548 desc: in dir browser, F1 button bar text
9549 user:
9550 <source>
9551 *: "Menu"
9552 </source>
9553 <dest>
9554 *: "Menu"
9555 </dest> 9533 </dest>
9556 <voice> 9534 <voice>
9557 *: "" 9535 *: "B"
9558 </voice> 9536 </voice>
9559</phrase> 9537</phrase>
9560<phrase> 9538<phrase>
9561 id: LANG_SYSFONT_DIRBROWSE_F2 9539 id: VOICE_CHAR_C
9562 desc: in dir browser, F2 button bar text 9540 desc: spoken only, for spelling
9563 user: 9541 user:
9564 <source> 9542 <source>
9565 *: "Option"
9566 </source>
9567 <dest>
9568 *: "Option"
9569 </dest>
9570 <voice>
9571 *: "" 9543 *: ""
9572 </voice>
9573</phrase>
9574<phrase>
9575 id: LANG_SYSFONT_DIRBROWSE_F3
9576 desc: in dir browser, F3 button bar text
9577 user:
9578 <source>
9579 *: "LCD"
9580 </source> 9544 </source>
9581 <dest> 9545 <dest>
9582 *: "LCD"
9583 </dest>
9584 <voice>
9585 *: "" 9546 *: ""
9586 </voice>
9587</phrase>
9588<phrase>
9589 id: LANG_SYSFONT_SPLIT_SIZE
9590 desc: in record timesplit options
9591 <source>
9592 *: "Split Filesize"
9593 </source>
9594 <dest>
9595 *: "Split Filesize"
9596 </dest> 9547 </dest>
9597 <voice> 9548 <voice>
9598 *: "Split Filesize" 9549 *: "C"
9599 </voice> 9550 </voice>
9600</phrase> 9551</phrase>
9601<phrase> 9552<phrase>
9602 id: LANG_LOADING_PERCENT 9553 id: VOICE_CHAR_D
9603 desc: splash number of percents loaded 9554 desc: spoken only, for spelling
9604 user: 9555 user:
9605 <source> 9556 <source>
9606 *: "Loading... %d%% done (%s)"
9607 </source>
9608 <dest>
9609 *: "Loading... %d%% done (%s)"
9610 </dest>
9611 <voice>
9612 *: "" 9557 *: ""
9613 </voice>
9614</phrase>
9615<phrase>
9616 id: LANG_EQUALIZER_HARDWARE
9617 desc: in the sound settings menu
9618 user:
9619 <source>
9620 *: "Hardware Equalizer"
9621 </source> 9558 </source>
9622 <dest> 9559 <dest>
9623 *: "Hardware Equalizer" 9560 *: ""
9624 </dest> 9561 </dest>
9625 <voice> 9562 <voice>
9626 *: "Hardware equalizer" 9563 *: "D"
9627 </voice> 9564 </voice>
9628</phrase> 9565</phrase>
9629<phrase> 9566<phrase>
9630 id: LANG_EQUALIZER_HARDWARE_ENABLED 9567 id: VOICE_CHAR_E
9631 desc: in the equalizer settings menu 9568 desc: spoken only, for spelling
9632 user: 9569 user:
9633 <source> 9570 <source>
9634 *: "Enable Hardware EQ" 9571 *: ""
9635 </source> 9572 </source>
9636 <dest> 9573 <dest>
9637 *: "Enable Hardware EQ" 9574 *: ""
9638 </dest> 9575 </dest>
9639 <voice> 9576 <voice>
9640 *: "Enable hardware equalizer" 9577 *: "E"
9641 </voice> 9578 </voice>
9642</phrase> 9579</phrase>
9643<phrase> 9580<phrase>
9644 id: LANG_EQUALIZER_BANDWIDTH 9581 id: VOICE_CHAR_F
9645 desc: in the equalizer settings menu 9582 desc: spoken only, for spelling
9646 user: 9583 user:
9647 <source> 9584 <source>
9648 *: "Bandwidth" 9585 *: ""
9649 </source> 9586 </source>
9650 <dest> 9587 <dest>
9651 *: "Bandwidth" 9588 *: ""
9652 </dest> 9589 </dest>
9653 <voice> 9590 <voice>
9654 *: "Bandwidth" 9591 *: "F"
9655 </voice> 9592 </voice>
9656</phrase> 9593</phrase>
9657<phrase> 9594<phrase>
9658 id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW 9595 id: VOICE_CHAR_G
9659 desc: in the equalizer settings menu 9596 desc: spoken only, for spelling
9660 user: 9597 user:
9661 <source> 9598 <source>
9662 *: "Narrow" 9599 *: ""
9663 </source> 9600 </source>
9664 <dest> 9601 <dest>
9665 *: "Narrow" 9602 *: ""
9666 </dest> 9603 </dest>
9667 <voice> 9604 <voice>
9668 *: "Narrow" 9605 *: "G"
9669 </voice> 9606 </voice>
9670</phrase> 9607</phrase>
9671<phrase> 9608<phrase>
9672 id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE 9609 id: VOICE_CHAR_H
9673 desc: in the equalizer settings menu 9610 desc: spoken only, for spelling
9674 user: 9611 user:
9675 <source> 9612 <source>
9676 *: "Wide" 9613 *: ""
9677 </source> 9614 </source>
9678 <dest> 9615 <dest>
9679 *: "Wide" 9616 *: ""
9680 </dest> 9617 </dest>
9681 <voice> 9618 <voice>
9682 *: "Wide" 9619 *: "H"
9683 </voice> 9620 </voice>
9684</phrase> 9621</phrase>
9685<phrase> 9622<phrase>
9686 id: LANG_SHOW_PATH 9623 id: VOICE_CHAR_I
9687 desc: in settings_menu 9624 desc: spoken only, for spelling
9688 user: 9625 user:
9689 <source> 9626 <source>
9690 *: "Show Path" 9627 *: ""
9691 </source> 9628 </source>
9692 <dest> 9629 <dest>
9693 *: "Show Path" 9630 *: ""
9694 </dest> 9631 </dest>
9695 <voice> 9632 <voice>
9696 *: "Show Path" 9633 *: "I"
9697 </voice> 9634 </voice>
9698</phrase> 9635</phrase>
9699<phrase> 9636<phrase>
9700 id: LANG_SHOW_PATH_CURRENT 9637 id: VOICE_CHAR_J
9701 desc: in show path menu 9638 desc: spoken only, for spelling
9702 user: 9639 user:
9703 <source> 9640 <source>
9704 *: "Current Directory Only" 9641 *: ""
9705 </source> 9642 </source>
9706 <dest> 9643 <dest>
9707 *: "Current Directory Only" 9644 *: ""
9708 </dest> 9645 </dest>
9709 <voice> 9646 <voice>
9710 *: "Current Directory Only" 9647 *: "J"
9711 </voice> 9648 </voice>
9712</phrase> 9649</phrase>
9713<phrase> 9650<phrase>
9714 id: LANG_SHOW_PATH_FULL 9651 id: VOICE_CHAR_K
9715 desc: in show path menu 9652 desc: spoken only, for spelling
9716 user: 9653 user:
9717 <source> 9654 <source>
9718 *: "Full Path" 9655 *: ""
9719 </source>
9720 <dest>
9721 *: "Full Path"
9722 </dest>
9723 <voice>
9724 *: "Full Path"
9725 </voice>
9726</phrase>
9727<phrase>
9728 id: LANG_RECORD_AGC_PRESET
9729 desc: automatic gain control in record settings
9730 <source>
9731 *: "Automatic Gain Control"
9732 </source>
9733 <dest>
9734 *: "Automatic Gain Control"
9735 </dest>
9736 <voice>
9737 *: "Automatic gain control"
9738 </voice>
9739</phrase>
9740<phrase>
9741 id: LANG_AGC_SAFETY
9742 desc: AGC preset
9743 <source>
9744 *: "Safety (clip)"
9745 </source>
9746 <dest>
9747 *: "Safety (clip)"
9748 </dest>
9749 <voice>
9750 *: "Safety (clip)"
9751 </voice>
9752</phrase>
9753<phrase>
9754 id: LANG_AGC_LIVE
9755 desc: AGC preset
9756 <source>
9757 *: "Live (slow)"
9758 </source>
9759 <dest>
9760 *: "Live (slow)"
9761 </dest>
9762 <voice>
9763 *: "Live (slow)"
9764 </voice>
9765</phrase>
9766<phrase>
9767 id: LANG_AGC_DJSET
9768 desc: AGC preset
9769 <source>
9770 *: "DJ-Set (slow)"
9771 </source>
9772 <dest>
9773 *: "DJ-Set (slow)"
9774 </dest>
9775 <voice>
9776 *: "DJ set (slow)"
9777 </voice>
9778</phrase>
9779<phrase>
9780 id: LANG_AGC_MEDIUM
9781 desc: AGC preset
9782 <source>
9783 *: "Medium"
9784 </source>
9785 <dest>
9786 *: "Medium"
9787 </dest>
9788 <voice>
9789 *: "Medium"
9790 </voice>
9791</phrase>
9792<phrase>
9793 id: LANG_AGC_VOICE
9794 desc: AGC preset
9795 <source>
9796 *: "Voice (fast)"
9797 </source>
9798 <dest>
9799 *: "Voice (fast)"
9800 </dest>
9801 <voice>
9802 *: "Voice (fast)"
9803 </voice>
9804</phrase>
9805<phrase>
9806 id: LANG_RECORD_AGC_CLIPTIME
9807 desc: in record settings
9808 <source>
9809 *: "AGC clip time"
9810 </source>
9811 <dest>
9812 *: "AGC clip time"
9813 </dest>
9814 <voice>
9815 *: "AGC clip time"
9816 </voice>
9817</phrase>
9818<phrase>
9819 id: LANG_SYSFONT_RECORDING_AGC_PRESET
9820 desc: automatic gain control in recording screen
9821 <source>
9822 *: "AGC"
9823 </source>
9824 <dest>
9825 *: "AGC"
9826 </dest>
9827 <voice>
9828 *: "AGC"
9829 </voice>
9830</phrase>
9831<phrase>
9832 id: LANG_RECORDING_AGC_MAXGAIN
9833 desc: AGC maximum gain in recording screen
9834 <source>
9835 *: "AGC max. gain"
9836 </source> 9656 </source>
9837 <dest> 9657 <dest>
9838 *: "AGC max. gain" 9658 *: ""
9839 </dest> 9659 </dest>
9840 <voice> 9660 <voice>
9841 *: "AGC maximum gain" 9661 *: "K"
9842 </voice> 9662 </voice>
9843</phrase> 9663</phrase>
9844<phrase> 9664<phrase>
9845 id: VOICE_KBIT_PER_SEC 9665 id: VOICE_CHAR_L
9846 desc: spoken only, a unit postfix 9666 desc: spoken only, for spelling
9847 user: 9667 user:
9848 <source> 9668 <source>
9849 *: "" 9669 *: ""
@@ -9852,1233 +9672,1289 @@
9852 *: "" 9672 *: ""
9853 </dest> 9673 </dest>
9854 <voice> 9674 <voice>
9855 *: "kilobits per second" 9675 *: "L"
9856 </voice> 9676 </voice>
9857</phrase> 9677</phrase>
9858<phrase> 9678<phrase>
9859 id: LANG_SYSFONT_RECORDING_FILENAME 9679 id: VOICE_CHAR_M
9860 desc: Filename header in recording screen 9680 desc: spoken only, for spelling
9861 user: 9681 user:
9862 <source> 9682 <source>
9863 *: "Filename:"
9864 </source>
9865 <dest>
9866 *: "Filename:"
9867 </dest>
9868 <voice>
9869 *: "" 9683 *: ""
9870 </voice>
9871</phrase>
9872<phrase>
9873 id: LANG_UNPLUG
9874 desc: in settings_menu.
9875 user:
9876 <source>
9877 *: "Pause on Headphone Unplug"
9878 </source> 9684 </source>
9879 <dest> 9685 <dest>
9880 *: "Pause on Headphone Unplug" 9686 *: ""
9881 </dest> 9687 </dest>
9882 <voice> 9688 <voice>
9883 *: "Pause on Headphone Unplug" 9689 *: "M"
9884 </voice> 9690 </voice>
9885</phrase> 9691</phrase>
9886<phrase> 9692<phrase>
9887 id: LANG_UNPLUG_RESUME 9693 id: VOICE_CHAR_N
9888 desc: in pause_phones_menu. 9694 desc: spoken only, for spelling
9889 user: 9695 user:
9890 <source> 9696 <source>
9891 *: "Pause and Resume" 9697 *: ""
9892 </source> 9698 </source>
9893 <dest> 9699 <dest>
9894 *: "Pause and Resume" 9700 *: ""
9895 </dest> 9701 </dest>
9896 <voice> 9702 <voice>
9897 *: "Pause and Resume" 9703 *: "N"
9898 </voice> 9704 </voice>
9899</phrase> 9705</phrase>
9900<phrase> 9706<phrase>
9901 id: LANG_UNPLUG_RW 9707 id: VOICE_CHAR_O
9902 desc: in pause_phones_menu. 9708 desc: spoken only, for spelling
9903 user: 9709 user:
9904 <source> 9710 <source>
9905 *: "Duration to Rewind" 9711 *: ""
9906 </source> 9712 </source>
9907 <dest> 9713 <dest>
9908 *: "Duration to Rewind" 9714 *: ""
9909 </dest> 9715 </dest>
9910 <voice> 9716 <voice>
9911 *: "Duration to Rewind" 9717 *: "O"
9912 </voice> 9718 </voice>
9913</phrase> 9719</phrase>
9914<phrase> 9720<phrase>
9915 id: LANG_UNPLUG_DISABLE_AUTORESUME 9721 id: VOICE_CHAR_P
9916 desc: in pause_phones_menu. 9722 desc: spoken only, for spelling
9917 user: 9723 user:
9918 <source> 9724 <source>
9919 *: "Disable resume on startup if phones unplugged" 9725 *: ""
9920 </source>
9921 <dest>
9922 *: "Disable resume on startup if phones unplugged"
9923 </dest>
9924 <voice>
9925 *: "Disable resume on startup if phones unplugged"
9926 </voice>
9927</phrase>
9928<phrase>
9929 id: LANG_FM_REGION
9930 desc: fm tuner region setting
9931 <source>
9932 *: "Region"
9933 </source>
9934 <dest>
9935 *: "Region"
9936 </dest>
9937 <voice>
9938 *: "Region"
9939 </voice>
9940</phrase>
9941<phrase>
9942 id: LANG_FM_EUROPE
9943 desc: fm tuner region europe
9944 <source>
9945 *: "Europe"
9946 </source>
9947 <dest>
9948 *: "Europe"
9949 </dest>
9950 <voice>
9951 *: "Europe"
9952 </voice>
9953</phrase>
9954<phrase>
9955 id: LANG_FM_US
9956 desc: fm region us / canada
9957 <source>
9958 *: "US / Canada"
9959 </source>
9960 <dest>
9961 *: "US / Canada"
9962 </dest>
9963 <voice>
9964 *: "US / Canada"
9965 </voice>
9966</phrase>
9967<phrase>
9968 id: LANG_FM_JAPAN
9969 desc: fm region japan
9970 <source>
9971 *: "Japan"
9972 </source>
9973 <dest>
9974 *: "Japan"
9975 </dest>
9976 <voice>
9977 *: "Japan"
9978 </voice>
9979</phrase>
9980<phrase>
9981 id: LANG_FM_KOREA
9982 desc: fm region korea
9983 <source>
9984 *: "Korea"
9985 </source> 9726 </source>
9986 <dest> 9727 <dest>
9987 *: "Korea" 9728 *: ""
9988 </dest> 9729 </dest>
9989 <voice> 9730 <voice>
9990 *: "Korea" 9731 *: "P"
9991 </voice> 9732 </voice>
9992</phrase> 9733</phrase>
9993<phrase> 9734<phrase>
9994 id: LANG_RANDOM 9735 id: VOICE_CHAR_Q
9995 desc: random folder 9736 desc: spoken only, for spelling
9737 user:
9996 <source> 9738 <source>
9997 *: "Random" 9739 *: ""
9998 </source> 9740 </source>
9999 <dest> 9741 <dest>
10000 *: "Random" 9742 *: ""
10001 </dest> 9743 </dest>
10002 <voice> 9744 <voice>
10003 *: "Random" 9745 *: "Q"
10004 </voice> 9746 </voice>
10005</phrase> 9747</phrase>
10006<phrase> 9748<phrase>
10007 id: LANG_AUDIOSCROBBLER 9749 id: VOICE_CHAR_R
10008 desc: "Last.fm Log" in the playback menu 9750 desc: spoken only, for spelling
10009 user: 9751 user:
10010 <source> 9752 <source>
10011 *: "Last.fm Log" 9753 *: ""
10012 </source> 9754 </source>
10013 <dest> 9755 <dest>
10014 *: "Last.fm Log" 9756 *: ""
10015 </dest> 9757 </dest>
10016 <voice> 9758 <voice>
10017 *: "Last.fm Log" 9759 *: "R"
10018 </voice> 9760 </voice>
10019</phrase> 9761</phrase>
10020<phrase> 9762<phrase>
10021 id: LANG_PLEASE_REBOOT 9763 id: VOICE_CHAR_S
10022 desc: when activating an option that requires a reboot 9764 desc: spoken only, for spelling
10023 user: 9765 user:
10024 <source> 9766 <source>
10025 *: "Please reboot to enable" 9767 *: ""
10026 </source> 9768 </source>
10027 <dest> 9769 <dest>
10028 *: "Please reboot to enable" 9770 *: ""
10029 </dest> 9771 </dest>
10030 <voice> 9772 <voice>
10031 *: "" 9773 *: "S"
10032 </voice> 9774 </voice>
10033</phrase> 9775</phrase>
10034<phrase> 9776<phrase>
10035 id: LANG_DITHERING 9777 id: VOICE_CHAR_T
10036 desc: in the sound settings menu 9778 desc: spoken only, for spelling
10037 user: 9779 user:
10038 <source> 9780 <source>
10039 *: "Dithering" 9781 *: ""
10040 </source> 9782 </source>
10041 <dest> 9783 <dest>
10042 *: "Dithering" 9784 *: ""
10043 </dest> 9785 </dest>
10044 <voice> 9786 <voice>
10045 *: "Dithering" 9787 *: "T"
10046 </voice> 9788 </voice>
10047</phrase> 9789</phrase>
10048<phrase> 9790<phrase>
10049 id: LANG_SYSFONT_PITCH_UP_SEMITONE 9791 id: VOICE_CHAR_U
10050 desc: in wps 9792 desc: spoken only, for spelling
10051 user: 9793 user:
10052 <source> 9794 <source>
10053 *: "Semitone Up" 9795 *: ""
10054 </source> 9796 </source>
10055 <dest> 9797 <dest>
10056 *: "Semitone Up" 9798 *: ""
10057 </dest> 9799 </dest>
10058 <voice> 9800 <voice>
10059 *: "" 9801 *: "U"
10060 </voice> 9802 </voice>
10061</phrase> 9803</phrase>
10062<phrase> 9804<phrase>
10063 id: LANG_SYSFONT_PITCH_DOWN_SEMITONE 9805 id: VOICE_CHAR_V
10064 desc: in wps 9806 desc: spoken only, for spelling
10065 user: 9807 user:
10066 <source> 9808 <source>
10067 *: "Semitone Down" 9809 *: ""
10068 </source> 9810 </source>
10069 <dest> 9811 <dest>
10070 *: "Semitone Down" 9812 *: ""
10071 </dest> 9813 </dest>
10072 <voice> 9814 <voice>
10073 *: "" 9815 *: "V"
10074 </voice> 9816 </voice>
10075</phrase> 9817</phrase>
10076<phrase> 9818<phrase>
10077 id: LANG_RECORDING_FORMAT 9819 id: VOICE_CHAR_W
10078 desc: audio format item in recording menu 9820 desc: spoken only, for spelling
10079 user: 9821 user:
10080 <source> 9822 <source>
10081 *: "Format" 9823 *: ""
10082 </source> 9824 </source>
10083 <dest> 9825 <dest>
10084 *: "Format" 9826 *: ""
10085 </dest> 9827 </dest>
10086 <voice> 9828 <voice>
10087 *: "Format" 9829 *: "W"
10088 </voice> 9830 </voice>
10089</phrase> 9831</phrase>
10090<phrase> 9832<phrase>
10091 id: LANG_AFMT_MPA_L3 9833 id: VOICE_CHAR_X
10092 desc: audio format description 9834 desc: spoken only, for spelling
10093 user: 9835 user:
10094 <source> 9836 <source>
10095 *: "MPEG Layer 3" 9837 *: ""
10096 </source> 9838 </source>
10097 <dest> 9839 <dest>
10098 *: "MPEG Layer 3" 9840 *: ""
10099 </dest> 9841 </dest>
10100 <voice> 9842 <voice>
10101 *: "MPEG Layer 3" 9843 *: "X"
10102 </voice> 9844 </voice>
10103</phrase> 9845</phrase>
10104<phrase> 9846<phrase>
10105 id: LANG_AFMT_PCM_WAV 9847 id: VOICE_CHAR_Y
10106 desc: audio format description 9848 desc: spoken only, for spelling
10107 user: 9849 user:
10108 <source> 9850 <source>
10109 *: "PCM Wave" 9851 *: ""
10110 </source> 9852 </source>
10111 <dest> 9853 <dest>
10112 *: "PCM Wave" 9854 *: ""
10113 </dest> 9855 </dest>
10114 <voice> 9856 <voice>
10115 *: "PCM Wave" 9857 *: "Y"
10116 </voice> 9858 </voice>
10117</phrase> 9859</phrase>
10118<phrase> 9860<phrase>
10119 id: LANG_AFMT_WAVPACK 9861 id: VOICE_CHAR_Z
10120 desc: audio format description 9862 desc: spoken only, for spelling
10121 user: 9863 user:
10122 <source> 9864 <source>
10123 *: "WavPack" 9865 *: ""
10124 </source> 9866 </source>
10125 <dest> 9867 <dest>
10126 *: "WavPack" 9868 *: ""
10127 </dest> 9869 </dest>
10128 <voice> 9870 <voice>
10129 *: "WavPack" 9871 *: "Z"
10130 </voice> 9872 </voice>
10131</phrase> 9873</phrase>
10132<phrase> 9874<phrase>
10133 id: LANG_ENCODER_SETTINGS 9875 id: VOICE_DOT
10134 desc: encoder settings 9876 desc: spoken only, for spelling
10135 user: 9877 user:
10136 <source> 9878 <source>
10137 *: "Encoder Settings" 9879 *: ""
10138 </source> 9880 </source>
10139 <dest> 9881 <dest>
10140 *: "Encoder Settings" 9882 *: ""
10141 </dest> 9883 </dest>
10142 <voice> 9884 <voice>
10143 *: "Encoder Settings" 9885 *: "dot"
10144 </voice> 9886 </voice>
10145</phrase> 9887</phrase>
10146<phrase> 9888<phrase>
10147 id: LANG_NO_SETTINGS 9889 id: VOICE_PAUSE
10148 desc: when something has settings in a certain context 9890 desc: spoken only, for spelling, a split second of silence (difficult to author)
10149 user: 9891 user:
10150 <source> 9892 <source>
10151 *: "(No Settings)" 9893 *: ""
10152 </source> 9894 </source>
10153 <dest> 9895 <dest>
10154 *: "(No Settings)" 9896 *: ""
10155 </dest> 9897 </dest>
10156 <voice> 9898 <voice>
10157 *: "No settings available" 9899 *: " "
10158 </voice> 9900 </voice>
10159</phrase> 9901</phrase>
10160<phrase> 9902<phrase>
10161 id: LANG_SOURCE_FREQUENCY 9903 id: VOICE_FILE
10162 desc: when recording source frequency setting must follow source 9904 desc: spoken only, prefix for file number
10163 user: 9905 user:
10164 <source> 9906 <source>
10165 *: "(Same As Source)" 9907 *: ""
10166 </source> 9908 </source>
10167 <dest> 9909 <dest>
10168 *: "(Same As Source)" 9910 *: ""
10169 </dest> 9911 </dest>
10170 <voice> 9912 <voice>
10171 *: "Same As Source" 9913 *: "file"
10172 </voice> 9914 </voice>
10173</phrase> 9915</phrase>
10174<phrase> 9916<phrase>
10175 id: LANG_BITRATE 9917 id: VOICE_DIR
10176 desc: bits-kilobits per unit time 9918 desc: spoken only, prefix for directory number
10177 user: 9919 user:
10178 <source> 9920 <source>
10179 *: "Bitrate" 9921 *: ""
10180 </source> 9922 </source>
10181 <dest> 9923 <dest>
10182 *: "Bitrate" 9924 *: ""
10183 </dest> 9925 </dest>
10184 <voice> 9926 <voice>
10185 *: "Bitrate" 9927 *: "folder"
10186 </voice> 9928 </voice>
10187</phrase> 9929</phrase>
10188<phrase> 9930<phrase>
10189 id: LANG_RECORD_TRIGGER_TYPE 9931 id: VOICE_EXT_MPA
10190 desc: in recording trigger menu 9932 desc: spoken only, for file extension
9933 user:
10191 <source> 9934 <source>
10192 *: "Trigtype" 9935 *: ""
10193 </source> 9936 </source>
10194 <dest> 9937 <dest>
10195 *: "Trigtype" 9938 *: ""
10196 </dest> 9939 </dest>
10197 <voice> 9940 <voice>
10198 *: "Trigtype" 9941 *: "audio"
10199 </voice> 9942 </voice>
10200</phrase> 9943</phrase>
10201<phrase> 9944<phrase>
10202 id: LANG_RECORD_TRIGGER_STOP 9945 id: VOICE_EXT_CFG
10203 desc: trigger types 9946 desc: spoken only, for file extension
9947 user:
10204 <source> 9948 <source>
10205 *: "Stop" 9949 *: ""
10206 </source> 9950 </source>
10207 <dest> 9951 <dest>
10208 *: "Stop" 9952 *: ""
10209 </dest> 9953 </dest>
10210 <voice> 9954 <voice>
10211 *: "Stop" 9955 *: "configuration"
10212 </voice> 9956 </voice>
10213</phrase> 9957</phrase>
10214<phrase> 9958<phrase>
10215 id: LANG_RECORD_TRIGGER_PAUSE 9959 id: VOICE_EXT_WPS
10216 desc: trigger types 9960 desc: spoken only, for file extension
9961 user:
10217 <source> 9962 <source>
10218 *: "Pause" 9963 *: ""
10219 </source> 9964 </source>
10220 <dest> 9965 <dest>
10221 *: "Pause" 9966 *: ""
10222 </dest> 9967 </dest>
10223 <voice> 9968 <voice>
10224 *: "Pause" 9969 *: "while-playing-screen"
10225 </voice> 9970 </voice>
10226</phrase> 9971</phrase>
10227<phrase> 9972<phrase>
10228 id: LANG_RECORD_TRIGGER_NEWFILESTP 9973 id: VOICE_EXT_TXT
10229 desc: trigger types 9974 desc: spoken only, for file extension
9975 user:
10230 <source> 9976 <source>
10231 *: "New file" 9977 *: ""
10232 </source> 9978 </source>
10233 <dest> 9979 <dest>
10234 *: "New file" 9980 *: ""
10235 </dest> 9981 </dest>
10236 <voice> 9982 <voice>
10237 *: "New file" 9983 *: "text"
10238 </voice> 9984 </voice>
10239</phrase> 9985</phrase>
10240<phrase> 9986<phrase>
10241 id: LANG_WARNING_BATTERY_LOW 9987 id: VOICE_EXT_ROCK
10242 desc: general warning 9988 desc: spoken only, for file extension
10243 user: 9989 user:
10244 <source> 9990 <source>
10245 *: "WARNING! Low Battery!" 9991 *: ""
10246 </source> 9992 </source>
10247 <dest> 9993 <dest>
10248 *: "WARNING! Low Battery!" 9994 *: ""
10249 </dest> 9995 </dest>
10250 <voice> 9996 <voice>
10251 *: "" 9997 *: "plugin"
10252 </voice> 9998 </voice>
10253</phrase> 9999</phrase>
10254<phrase> 10000<phrase>
10255 id: LANG_WARNING_BATTERY_EMPTY 10001 id: VOICE_EXT_FONT
10256 desc: general warning 10002 desc: spoken only, for file extension
10257 user: 10003 user:
10258 <source> 10004 <source>
10259 *: "Battery empty! RECHARGE!" 10005 *: ""
10260 </source> 10006 </source>
10261 <dest> 10007 <dest>
10262 *: "Battery empty! RECHARGE!" 10008 *: ""
10263 </dest> 10009 </dest>
10264 <voice> 10010 <voice>
10265 *: "" 10011 *: "font"
10266 </voice> 10012 </voice>
10267</phrase> 10013</phrase>
10268<phrase> 10014<phrase>
10269 id: LANG_AFMT_AIFF 10015 id: VOICE_EXT_BMARK
10270 desc: audio format description 10016 desc: spoken only, for file extension and the word in general
10271 user: 10017 user:
10272 <source> 10018 <source>
10273 *: "AIFF" 10019 *: ""
10274 </source> 10020 </source>
10275 <dest> 10021 <dest>
10276 *: "AIFF" 10022 *: ""
10277 </dest> 10023 </dest>
10278 <voice> 10024 <voice>
10279 *: "AIFF" 10025 *: "bookmark"
10280 </voice> 10026 </voice>
10281</phrase> 10027</phrase>
10282<phrase> 10028<phrase>
10283 id: LANG_SYSFONT_AGC_SAFETY 10029 id: VOICE_EXT_AJZ
10284 desc: AGC preset 10030 desc: spoken only, for file extension
10031 user:
10285 <source> 10032 <source>
10286 *: "Safety (clip)" 10033 *: ""
10287 </source> 10034 </source>
10288 <dest> 10035 <dest>
10289 *: "Safety (clip)" 10036 *: ""
10290 </dest> 10037 </dest>
10291 <voice> 10038 <voice>
10292 *: "Safety (clip)" 10039 *: "firmware"
10293 </voice> 10040 </voice>
10294</phrase> 10041</phrase>
10295<phrase> 10042<phrase>
10296 id: LANG_SYSFONT_AGC_LIVE 10043 id: VOICE_EXT_RWPS
10297 desc: AGC preset 10044 desc: spoken only, for file extension
10045 user:
10298 <source> 10046 <source>
10299 *: "Live (slow)" 10047 *: none
10048 remote: ""
10300 </source> 10049 </source>
10301 <dest> 10050 <dest>
10302 *: "Live (slow)" 10051 *: none
10052 remote: ""
10303 </dest> 10053 </dest>
10304 <voice> 10054 <voice>
10305 *: "Live (slow)" 10055 *: none
10056 remote: "remote while-playing-screen"
10306 </voice> 10057 </voice>
10307</phrase> 10058</phrase>
10308<phrase> 10059<phrase>
10309 id: LANG_SYSFONT_AGC_DJSET 10060 id: VOICE_EXT_KBD
10310 desc: AGC preset 10061 desc: spoken only, for file extension
10062 user:
10311 <source> 10063 <source>
10312 *: "DJ-Set (slow)" 10064 *: ""
10313 </source> 10065 </source>
10314 <dest> 10066 <dest>
10315 *: "DJ-Set (slow)" 10067 *: ""
10316 </dest> 10068 </dest>
10317 <voice> 10069 <voice>
10318 *: "DJ set (slow)" 10070 *: "keyboard"
10319 </voice> 10071 </voice>
10320</phrase> 10072</phrase>
10321<phrase> 10073<phrase>
10322 id: LANG_SYSFONT_AGC_MEDIUM 10074 id: VOICE_EXT_CUESHEET
10323 desc: AGC preset 10075 desc:
10076 user:
10324 <source> 10077 <source>
10325 *: "Medium" 10078 *: ""
10326 </source> 10079 </source>
10327 <dest> 10080 <dest>
10328 *: "Medium" 10081 *: ""
10329 </dest> 10082 </dest>
10330 <voice> 10083 <voice>
10331 *: "Medium" 10084 *: "cuesheet"
10332 </voice> 10085 </voice>
10333</phrase> 10086</phrase>
10334<phrase> 10087<phrase>
10335 id: LANG_SYSFONT_AGC_VOICE 10088 id: VOICE_BOOKMARK_SELECT_INDEX_TEXT
10336 desc: AGC preset 10089 desc: voice only, used in the bookmark list to label index number
10090 user:
10337 <source> 10091 <source>
10338 *: "Voice (fast)" 10092 *: ""
10339 </source> 10093 </source>
10340 <dest> 10094 <dest>
10341 *: "Voice (fast)" 10095 *: ""
10342 </dest> 10096 </dest>
10343 <voice> 10097 <voice>
10344 *: "Voice (fast)" 10098 *: "Index"
10345 </voice> 10099 </voice>
10346</phrase> 10100</phrase>
10347<phrase> 10101<phrase>
10348 id: LANG_SYSFONT_RECORDING_AGC_MAXGAIN 10102 id: VOICE_CURRENT_TIME
10349 desc: AGC maximum gain in recording screen 10103 desc: spoken only, for wall clock announce
10104 user:
10350 <source> 10105 <source>
10351 *: "AGC max. gain" 10106 *: none
10107 rtc: ""
10352 </source> 10108 </source>
10353 <dest> 10109 <dest>
10354 *: "AGC max. gain" 10110 *: none
10111 rtc: ""
10355 </dest> 10112 </dest>
10356 <voice> 10113 <voice>
10357 *: "AGC maximum gain" 10114 *: none
10115 rtc: "Current time:"
10358 </voice> 10116 </voice>
10359</phrase> 10117</phrase>
10360<phrase> 10118<phrase>
10361 id: LANG_PROPERTIES 10119 id: LANG_SYSFONT_SET_BOOL_YES
10362 desc: browser file/dir properties 10120 desc: bool true representation
10363 user: 10121 user:
10364 <source> 10122 <source>
10365 *: "Properties" 10123 *: none
10124 lcd_bitmap: "Yes"
10366 </source> 10125 </source>
10367 <dest> 10126 <dest>
10368 *: "Properties" 10127 *: none
10128 lcd_bitmap: "Yes"
10369 </dest> 10129 </dest>
10370 <voice> 10130 <voice>
10371 *: "Properties" 10131 *: none
10132 lcd_bitmap: "Yes"
10372 </voice> 10133 </voice>
10373</phrase> 10134</phrase>
10374<phrase> 10135<phrase>
10375 id: LANG_SHUFFLE_TRACKSKIP 10136 id: LANG_SYSFONT_SET_BOOL_NO
10376 desc: in settings_menu 10137 desc: bool false representation
10377 user: 10138 user:
10378 <source> 10139 <source>
10379 *: "Shuffle and Track Skip" 10140 *: none
10141 lcd_bitmap: "No"
10380 </source> 10142 </source>
10381 <dest> 10143 <dest>
10382 *: "Shuffle and Track Skip" 10144 *: none
10145 lcd_bitmap: "No"
10383 </dest> 10146 </dest>
10384 <voice> 10147 <voice>
10385 *: "Shuffle and Track Skip" 10148 *: none
10149 lcd_bitmap: "No"
10386 </voice> 10150 </voice>
10387</phrase> 10151</phrase>
10388<phrase> 10152<phrase>
10389 id: LANG_RUNNING_TIME 10153 id: LANG_SYSFONT_ON
10390 desc: in run time screen 10154 desc: Used in a lot of places
10391 user: 10155 user:
10392 <source> 10156 <source>
10393 *: "Running Time" 10157 *: none
10158 lcd_bitmap: "On"
10394 </source> 10159 </source>
10395 <dest> 10160 <dest>
10396 *: "Running Time" 10161 *: none
10162 lcd_bitmap: "On"
10397 </dest> 10163 </dest>
10398 <voice> 10164 <voice>
10399 *: "Running Time" 10165 *: none
10166 lcd_bitmap: "On"
10400 </voice> 10167 </voice>
10401</phrase> 10168</phrase>
10402<phrase> 10169<phrase>
10403 id: LANG_CURRENT_TIME 10170 id: LANG_SYSFONT_OFF
10404 desc: in run time screen 10171 desc: Used in a lot of places
10405 user: 10172 user:
10406 <source> 10173 <source>
10407 *: "Current Time" 10174 *: none
10175 lcd_bitmap: "Off"
10408 </source> 10176 </source>
10409 <dest> 10177 <dest>
10410 *: "Current Time" 10178 *: none
10179 lcd_bitmap: "Off"
10411 </dest> 10180 </dest>
10412 <voice> 10181 <voice>
10413 *: "Current Time" 10182 *: none
10183 lcd_bitmap: "Off"
10414 </voice> 10184 </voice>
10415</phrase> 10185</phrase>
10416<phrase> 10186<phrase>
10417 id: LANG_TOP_TIME 10187 id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
10418 desc: in run time screen 10188 desc: in the equalizer settings menu
10419 user: 10189 user:
10420 <source> 10190 <source>
10421 *: "Top Time" 10191 *: none
10192 swcodec: "Edit mode: %s"
10422 </source> 10193 </source>
10423 <dest> 10194 <dest>
10424 *: "Top Time" 10195 *: none
10196 swcodec: "Edit mode: %s"
10425 </dest> 10197 </dest>
10426 <voice> 10198 <voice>
10427 *: "Top Time" 10199 *: none
10200 swcodec: ""
10428 </voice> 10201 </voice>
10429</phrase> 10202</phrase>
10430<phrase> 10203<phrase>
10431 id: LANG_CLEAR_TIME 10204 id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
10432 desc: in run time screen 10205 desc: in the equalizer settings menu
10433 user: 10206 user:
10434 <source> 10207 <source>
10435 *: "Clear Time?" 10208 *: none
10209 swcodec: "Cutoff Frequency"
10436 </source> 10210 </source>
10437 <dest> 10211 <dest>
10438 *: "Clear Time?" 10212 *: none
10213 swcodec: "Cutoff Frequency"
10439 </dest> 10214 </dest>
10440 <voice> 10215 <voice>
10441 *: "Clear Time?" 10216 *: none
10217 swcodec: "Cutoff Frequency"
10442 </voice> 10218 </voice>
10443</phrase> 10219</phrase>
10444<phrase> 10220<phrase>
10445 id: LANG_REPLACE 10221 id: LANG_SYSFONT_GAIN
10446 desc: in onplay menu. Replace the current playlist with a new one. 10222 desc: in the equalizer settings menu
10447 user: 10223 user:
10448 <source> 10224 <source>
10449 *: "Play Next" 10225 *: none
10226 lcd_bitmap: "Gain"
10450 </source> 10227 </source>
10451 <dest> 10228 <dest>
10452 *: "Play Next" 10229 *: none
10230 lcd_bitmap: "Gain"
10453 </dest> 10231 </dest>
10454 <voice> 10232 <voice>
10455 *: "Play Next" 10233 *: none
10234 lcd_bitmap: "Gain"
10456 </voice> 10235 </voice>
10457</phrase> 10236</phrase>
10458<phrase> 10237<phrase>
10459 id: LANG_SAVE_THEME 10238 id: LANG_SYSFONT_SHUFFLE
10460 desc: save a theme file 10239 desc: in settings_menu
10461 user: 10240 user:
10462 <source> 10241 <source>
10463 *: "Save Theme Settings" 10242 *: none
10243 lcd_bitmap: "Shuffle"
10464 </source> 10244 </source>
10465 <dest> 10245 <dest>
10466 *: "Save Theme Settings" 10246 *: none
10247 lcd_bitmap: "Shuffle"
10467 </dest> 10248 </dest>
10468 <voice> 10249 <voice>
10469 *: "Save Theme Settings" 10250 *: none
10251 lcd_bitmap: "Shuffle"
10470 </voice> 10252 </voice>
10471</phrase> 10253</phrase>
10472<phrase> 10254<phrase>
10473 id: LANG_USB_CHARGING 10255 id: LANG_SYSFONT_REPEAT
10474 desc: in Battery menu 10256 desc: in settings_menu
10475 user: 10257 user:
10476 <source> 10258 <source>
10477 *: "Charge During USB Connection" 10259 *: none
10260 lcd_bitmap: "Repeat"
10478 </source> 10261 </source>
10479 <dest> 10262 <dest>
10480 *: "Charge During USB Connection" 10263 *: none
10264 lcd_bitmap: "Repeat"
10481 </dest> 10265 </dest>
10482 <voice> 10266 <voice>
10483 *: "Charge During U S B Connection" 10267 *: none
10268 lcd_bitmap: "Repeat"
10484 </voice> 10269 </voice>
10485</phrase> 10270</phrase>
10486<phrase> 10271<phrase>
10487 id: LANG_ID3_ALBUMARTIST 10272 id: LANG_SYSFONT_ALL
10488 desc: in tag viewer 10273 desc: repeat playlist once all songs have completed
10489 user: 10274 user:
10490 <source> 10275 <source>
10491 *: "[Album Artist]" 10276 *: none
10277 lcd_bitmap: "All"
10492 </source> 10278 </source>
10493 <dest> 10279 <dest>
10494 *: "[Album Artist]" 10280 *: none
10281 lcd_bitmap: "All"
10495 </dest> 10282 </dest>
10496 <voice> 10283 <voice>
10497 *: "" 10284 *: none
10285 lcd_bitmap: "All"
10498 </voice> 10286 </voice>
10499</phrase> 10287</phrase>
10500<phrase> 10288<phrase>
10501 id: LANG_ID3_COMMENT 10289 id: LANG_SYSFONT_REPEAT_ONE
10502 desc: in tag viewer 10290 desc: repeat one song
10503 user: 10291 user:
10504 <source> 10292 <source>
10505 *: "[Comment]" 10293 *: none
10294 lcd_bitmap: "One"
10506 </source> 10295 </source>
10507 <dest> 10296 <dest>
10508 *: "[Comment]" 10297 *: none
10298 lcd_bitmap: "One"
10509 </dest> 10299 </dest>
10510 <voice> 10300 <voice>
10511 *: "" 10301 *: none
10302 lcd_bitmap: "One"
10512 </voice> 10303 </voice>
10513</phrase> 10304</phrase>
10514<phrase> 10305<phrase>
10515 id: LANG_CUESHEET 10306 id: LANG_SYSFONT_REPEAT_AB
10516 desc: 10307 desc: repeat range from point A to B
10517 user: 10308 user:
10518 <source> 10309 <source>
10519 *: "Cuesheet" 10310 *: none
10311 lcd_bitmap: "A-B"
10520 </source> 10312 </source>
10521 <dest> 10313 <dest>
10522 *: "Cuesheet" 10314 *: none
10315 lcd_bitmap: "A-B"
10523 </dest> 10316 </dest>
10524 <voice> 10317 <voice>
10525 *: "Cuesheet" 10318 *: none
10319 lcd_bitmap: "A-B"
10526 </voice> 10320 </voice>
10527</phrase> 10321</phrase>
10528<phrase> 10322<phrase>
10529 id: LANG_CUESHEET_ENABLE 10323 id: LANG_SYSFONT_FILTER
10530 desc: cuesheet support option 10324 desc: setting name for dir filter
10531 user: 10325 user:
10532 <source> 10326 <source>
10533 *: "Cuesheet Support" 10327 *: none
10328 lcd_bitmap: "Show Files"
10534 </source> 10329 </source>
10535 <dest> 10330 <dest>
10536 *: "Cuesheet Support" 10331 *: none
10332 lcd_bitmap: "Show Files"
10537 </dest> 10333 </dest>
10538 <voice> 10334 <voice>
10539 *: "Cuesheet Support" 10335 *: none
10336 lcd_bitmap: "Show Files"
10540 </voice> 10337 </voice>
10541</phrase> 10338</phrase>
10542<phrase> 10339<phrase>
10543 id: LANG_FM_MENU 10340 id: LANG_SYSFONT_FILTER_SUPPORTED
10544 desc: fm menu title 10341 desc: show all file types supported by Rockbox
10545 user: 10342 user:
10546 <source> 10343 <source>
10547 *: "FM Radio Menu" 10344 *: none
10345 lcd_bitmap: "Supported"
10548 </source> 10346 </source>
10549 <dest> 10347 <dest>
10550 *: "FM Radio Menu" 10348 *: none
10349 lcd_bitmap: "Supported"
10551 </dest> 10350 </dest>
10552 <voice> 10351 <voice>
10553 *: "FM Radio Menu" 10352 *: none
10353 lcd_bitmap: "Supported"
10554 </voice> 10354 </voice>
10555</phrase> 10355</phrase>
10556<phrase> 10356<phrase>
10557 id: LANG_DIR_BROWSER 10357 id: LANG_SYSFONT_FILTER_MUSIC
10558 desc: in root menu 10358 desc: show only music-related files
10559 user: 10359 user:
10560 <source> 10360 <source>
10561 *: "Files" 10361 *: none
10362 lcd_bitmap: "Music"
10562 </source> 10363 </source>
10563 <dest> 10364 <dest>
10564 *: "Files" 10365 *: none
10366 lcd_bitmap: "Music"
10565 </dest> 10367 </dest>
10566 <voice> 10368 <voice>
10567 *: "Files" 10369 *: none
10370 lcd_bitmap: "Music"
10568 </voice> 10371 </voice>
10569</phrase> 10372</phrase>
10570<phrase> 10373<phrase>
10571 id: LANG_SETTINGS_MENU 10374 id: LANG_SYSFONT_FILTER_PLAYLIST
10572 desc: in root menu 10375 desc: show only playlist
10573 user: 10376 user:
10574 <source> 10377 <source>
10575 *: "Settings" 10378 *: none
10379 lcd_bitmap: "Playlists"
10576 </source> 10380 </source>
10577 <dest> 10381 <dest>
10578 *: "Settings" 10382 *: none
10383 lcd_bitmap: "Playlists"
10579 </dest> 10384 </dest>
10580 <voice> 10385 <voice>
10581 *: "Settings" 10386 *: none
10387 lcd_bitmap: "Playlists"
10582 </voice> 10388 </voice>
10583</phrase> 10389</phrase>
10584<phrase> 10390<phrase>
10585 id: LANG_NOW_PLAYING 10391 id: LANG_SYSFONT_FLIP_DISPLAY
10586 desc: in root menu 10392 desc: in settings_menu, option to turn display+buttos by 180 degreed
10587 user: 10393 user:
10588 <source> 10394 <source>
10589 *: "Now Playing" 10395 *: none
10396 lcd_bitmap: "Upside Down"
10590 </source> 10397 </source>
10591 <dest> 10398 <dest>
10592 *: "Now Playing" 10399 *: none
10400 lcd_bitmap: "Upside Down"
10593 </dest> 10401 </dest>
10594 <voice> 10402 <voice>
10595 *: "Now Playing" 10403 *: none
10404 lcd_bitmap: "Upside Down"
10596 </voice> 10405 </voice>
10597</phrase> 10406</phrase>
10598<phrase> 10407<phrase>
10599 id: LANG_RESUME_PLAYBACK 10408 id: LANG_SYSFONT_SCROLL_BAR
10600 desc: in root menu 10409 desc: display menu, F3 substitute
10601 user: 10410 user:
10602 <source> 10411 <source>
10603 *: "Resume Playback" 10412 *: none
10413 lcd_bitmap: "Scroll Bar"
10604 </source> 10414 </source>
10605 <dest> 10415 <dest>
10606 *: "Resume Playback" 10416 *: none
10417 lcd_bitmap: "Scroll Bar"
10607 </dest> 10418 </dest>
10608 <voice> 10419 <voice>
10609 *: "Resume Playback" 10420 *: none
10421 lcd_bitmap: "Scroll Bar"
10610 </voice> 10422 </voice>
10611</phrase> 10423</phrase>
10612<phrase> 10424<phrase>
10613 id: LANG_START_SCREEN 10425 id: LANG_SYSFONT_STATUS_BAR
10614 desc: in root menu setting 10426 desc: display menu, F3 substitute
10615 user: 10427 user:
10616 <source> 10428 <source>
10617 *: "Start Screen" 10429 *: none
10430 lcd_bitmap: "Status Bar"
10618 </source> 10431 </source>
10619 <dest> 10432 <dest>
10620 *: "Start Screen" 10433 *: none
10434 lcd_bitmap: "Status Bar"
10621 </dest> 10435 </dest>
10622 <voice> 10436 <voice>
10623 *: "Start Screen" 10437 *: none
10438 lcd_bitmap: "Status Bar"
10624 </voice> 10439 </voice>
10625</phrase> 10440</phrase>
10626<phrase> 10441<phrase>
10627 id: LANG_ROCKBOX_TITLE 10442 id: LANG_SYSFONT_MODE
10628 desc: in root menu 10443 desc: in wps F2 pressed
10629 user: 10444 user:
10630 <source> 10445 <source>
10631 *: "Rockbox" 10446 *: none
10447 lcd_bitmap: "Mode:"
10632 </source> 10448 </source>
10633 <dest> 10449 <dest>
10634 *: "Rockbox" 10450 *: none
10451 lcd_bitmap: "Mode:"
10635 </dest> 10452 </dest>
10636 <voice> 10453 <voice>
10637 *: "Rockbox" 10454 *: none
10455 lcd_bitmap: ""
10638 </voice> 10456 </voice>
10639</phrase> 10457</phrase>
10640<phrase> 10458<phrase>
10641 id: LANG_MAIN_MENU 10459 id: LANG_SYSFONT_DIRBROWSE_F1
10642 desc: in root menu setting 10460 desc: in dir browser, F1 button bar text /* there appears to be a bug that makes these strings not be included in the right build if they are excluded from any... */
10643 user: 10461 user:
10644 <source> 10462 <source>
10645 *: "Main Menu" 10463 *: none
10464 recorder_pad: "Menu"
10646 </source> 10465 </source>
10647 <dest> 10466 <dest>
10648 *: "Main Menu" 10467 *: none
10468 recorder_pad: "Menu"
10649 </dest> 10469 </dest>
10650 <voice> 10470 <voice>
10651 *: "Main Menu" 10471 *: none
10472 recorder_pad: ""
10652 </voice> 10473 </voice>
10653</phrase> 10474</phrase>
10654<phrase> 10475<phrase>
10655 id: LANG_PREVIOUS_SCREEN 10476 id: LANG_SYSFONT_DIRBROWSE_F2
10656 desc: in root menu setting 10477 desc: in dir browser, F2 button bar text
10657 user: 10478 user:
10658 <source> 10479 <source>
10659 *: "Previous Screen" 10480 *: none
10481 recorder_pad: "Option"
10660 </source> 10482 </source>
10661 <dest> 10483 <dest>
10662 *: "Previous Screen" 10484 *: none
10485 recorder_pad: "Option"
10663 </dest> 10486 </dest>
10664 <voice> 10487 <voice>
10665 *: "Previous Screen" 10488 *: none
10489 recorder_pad: ""
10666 </voice> 10490 </voice>
10667</phrase> 10491</phrase>
10668<phrase> 10492<phrase>
10669 id: LANG_ALARM_WAKEUP_SCREEN 10493 id: LANG_SYSFONT_DIRBROWSE_F3
10670 desc: in alarm menu setting 10494 desc: in dir browser, F3 button bar text
10671 user: 10495 user:
10672 <source> 10496 <source>
10673 *: "Alarm Wake up Screen" 10497 *: none
10498 recorder_pad: "LCD"
10674 </source> 10499 </source>
10675 <dest> 10500 <dest>
10676 *: "Alarm Wake up Screen" 10501 *: none
10502 recorder_pad: "LCD"
10677 </dest> 10503 </dest>
10678 <voice> 10504 <voice>
10679 *: "Alarm Wake up Screen" 10505 *: none
10506 recorder_pad: ""
10680 </voice> 10507 </voice>
10681</phrase> 10508</phrase>
10682<phrase> 10509<phrase>
10683 id: LANG_BUILDING_DATABASE 10510 id: LANG_SYSFONT_DISK_FULL
10684 desc: splash database building progress 10511 desc: in recording screen
10685 user: 10512 user:
10686 <source> 10513 <source>
10687 *: "Building database... %d found (OFF to return)" 10514 *: none
10688 h100,h120,h300: "Building database... %d found (STOP to return)" 10515 recording: "The disk is full. Press STOP to continue."
10689 ipod*: "Building database... %d found (PLAY/PAUSE to return)"
10690 x5: "Building database... %d found (Long PLAY to return)"
10691 h10,h10_5gb: "Building database... %d found (PREV to return)"
10692 e200: "Building database... %d found (PREV to return)"
10693 </source> 10516 </source>
10694 <dest> 10517 <dest>
10695 *: "Building database... %d found (OFF to return)" 10518 *: none
10696 h100,h120,h300: "Building database... %d found (STOP to return)" 10519 recording: "The disk is full. Press STOP to continue."
10697 ipod*: "Building database... %d found (PLAY/PAUSE to return)"
10698 x5: "Building database... %d found (Long PLAY to return)"
10699 h10,h10_5gb: "Building database... %d found (PREV to return)"
10700 e200: "Building database... %d found (PREV to return)"
10701 </dest> 10520 </dest>
10702 <voice> 10521 <voice>
10703 *: "" 10522 *: none
10523 recording: ""
10704 </voice> 10524 </voice>
10705</phrase> 10525</phrase>
10706<phrase> 10526<phrase>
10707 id: LANG_ONPLAY_MENU_TITLE 10527 id: LANG_SYSFONT_VOLUME
10708 desc: title for the onplay menus 10528 desc: in sound_settings
10709 user: 10529 user:
10710 <source> 10530 <source>
10711 *: "Context Menu" 10531 *: none
10532 recording: "Volume"
10712 </source> 10533 </source>
10713 <dest> 10534 <dest>
10714 *: "Context Menu" 10535 *: none
10536 recording: "Volume"
10715 </dest> 10537 </dest>
10716 <voice> 10538 <voice>
10717 *: "Context Menu" 10539 *: none
10540 recording: "Volume"
10718 </voice> 10541 </voice>
10719</phrase> 10542</phrase>
10720<phrase> 10543<phrase>
10721 id: LANG_BUTTONLIGHT_TIMEOUT 10544 id: LANG_SYSFONT_CHANNEL_STEREO
10722 desc: in settings_menu 10545 desc: in sound_settings
10723 user: 10546 user:
10724 <source> 10547 <source>
10725 *: "" 10548 *: none
10726 e200: "Wheel Light Timeout" 10549 recording: "Stereo"
10727 gigabeatf: "Button Light Timeout"
10728 </source> 10550 </source>
10729 <dest> 10551 <dest>
10730 *: "" 10552 *: none
10731 e200: "Wheel Light Timeout" 10553 recording: "Stereo"
10732 gigabeatf: "Button Light Timeout"
10733 </dest> 10554 </dest>
10734 <voice> 10555 <voice>
10735 *: "" 10556 *: none
10736 e200: "Wheel Light Timeout" 10557 recording: "Stereo"
10737 gigabeatf: "Button Light Timeout"
10738 </voice> 10558 </voice>
10739</phrase> 10559</phrase>
10740<phrase> 10560<phrase>
10741 id: LANG_BUTTONLIGHT_BRIGHTNESS 10561 id: LANG_SYSFONT_CHANNEL_MONO
10742 desc: in settings_menu 10562 desc: in sound_settings
10743 user: 10563 user:
10744 <source> 10564 <source>
10745 *: "" 10565 *: none
10746 gigabeatf: "Button Light Brightness" 10566 recording: "Mono"
10747 </source> 10567 </source>
10748 <dest> 10568 <dest>
10749 *: "" 10569 *: none
10750 gigabeatf: "Button Light Brightness" 10570 recording: "Mono"
10751 </dest> 10571 </dest>
10752 <voice> 10572 <voice>
10753 *: "" 10573 *: none
10754 gigabeatf: "Button Light Brightness" 10574 recording: "Mono"
10755 </voice> 10575 </voice>
10756</phrase> 10576</phrase>
10757<phrase> 10577<phrase>
10758 id: LANG_PLAYLISTVIEWER_SETTINGS 10578 id: LANG_SYSFONT_RECORDING_QUALITY
10759 desc: title for the playlist viewer settings menus 10579 desc: in the recording settings
10760 user: 10580 user:
10761 <source> 10581 <source>
10762 *: "Playlist Viewer Settings" 10582 *: none
10583 recording_hwcodec: "Quality"
10763 </source> 10584 </source>
10764 <dest> 10585 <dest>
10765 *: "Playlist Viewer Settings" 10586 *: none
10587 recording_hwcodec: "Quality"
10766 </dest> 10588 </dest>
10767 <voice> 10589 <voice>
10768 *: "Playlist Viewer Settings" 10590 *: none
10591 recording_hwcodec: "Quality"
10769 </voice> 10592 </voice>
10770</phrase> 10593</phrase>
10771<phrase> 10594<phrase>
10772 id: LANG_BROWSE_CUESHEET 10595 id: LANG_SYSFONT_RECORDING_FREQUENCY
10773 desc: 10596 desc: in the recording settings
10774 user: 10597 user:
10775 <source> 10598 <source>
10776 *: "Browse Cuesheet" 10599 *: none
10600 recording: "Frequency"
10777 </source> 10601 </source>
10778 <dest> 10602 <dest>
10779 *: "Browse Cuesheet" 10603 *: none
10604 recording: "Frequency"
10780 </dest> 10605 </dest>
10781 <voice> 10606 <voice>
10782 *: "Browse Cuesheet" 10607 *: none
10608 recording: "Frequency"
10783 </voice> 10609 </voice>
10784</phrase> 10610</phrase>
10785<phrase> 10611<phrase>
10786 id: LANG_COPYING 10612 id: LANG_SYSFONT_RECORDING_SOURCE
10787 desc: 10613 desc: in the recording settings
10788 user: 10614 user:
10789 <source> 10615 <source>
10790 *: "Copying..." 10616 *: none
10617 recording: "Source"
10791 </source> 10618 </source>
10792 <dest> 10619 <dest>
10793 *: "Copying..." 10620 *: none
10621 recording: "Source"
10794 </dest> 10622 </dest>
10795 <voice> 10623 <voice>
10796 *: "Copying" 10624 *: none
10625 recording: "Source"
10797 </voice> 10626 </voice>
10798</phrase> 10627</phrase>
10799<phrase> 10628<phrase>
10800 id: LANG_DELETING 10629 id: LANG_SYSFONT_RECORDING_SRC_MIC
10801 desc: 10630 desc: in the recording settings
10802 user: 10631 user:
10803 <source> 10632 <source>
10804 *: "Deleting..." 10633 *: none
10634 recording: "Int. Mic"
10805 </source> 10635 </source>
10806 <dest> 10636 <dest>
10807 *: "Deleting..." 10637 *: none
10638 recording: "Int. Mic"
10808 </dest> 10639 </dest>
10809 <voice> 10640 <voice>
10810 *: "Deleting" 10641 *: none
10642 recording: "Internal Microphone"
10811 </voice> 10643 </voice>
10812</phrase> 10644</phrase>
10813<phrase> 10645<phrase>
10814 id: LANG_MOVING 10646 id: LANG_SYSFONT_LINE_IN
10815 desc: 10647 desc: in the recording settings
10816 user: 10648 user:
10817 <source> 10649 <source>
10818 *: "Moving..." 10650 *: none
10651 recording: "Line In"
10819 </source> 10652 </source>
10820 <dest> 10653 <dest>
10821 *: "Moving..." 10654 *: none
10655 recording: "Line In"
10822 </dest> 10656 </dest>
10823 <voice> 10657 <voice>
10824 *: "Moving" 10658 *: none
10659 recording: "Line In"
10825 </voice> 10660 </voice>
10826</phrase> 10661</phrase>
10827<phrase> 10662<phrase>
10828 id: LANG_BOOKMARK_SELECT_BOOKMARK 10663 id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
10829 desc: bookmark selection list title 10664 desc: in the recording settings
10830 user: 10665 user:
10831 <source> 10666 <source>
10832 *: "Select Bookmark" 10667 *: none
10668 recording: "Digital"
10833 </source> 10669 </source>
10834 <dest> 10670 <dest>
10835 *: "Select Bookmark" 10671 *: none
10672 recording: "Digital"
10836 </dest> 10673 </dest>
10837 <voice> 10674 <voice>
10838 *: "Select Bookmark" 10675 *: none
10676 recording: "Digital"
10839 </voice> 10677 </voice>
10840</phrase> 10678</phrase>
10841<phrase> 10679<phrase>
10842 id: LANG_BOOKMARK_DONT_RESUME 10680 id: LANG_SYSFONT_CHANNELS
10843 desc: top item in the list when asking user about bookmark auto load 10681 desc: in the recording settings
10844 user: 10682 user:
10845 <source> 10683 <source>
10846 *: "<Don't Resume>" 10684 *: none
10685 recording: "Channels"
10847 </source> 10686 </source>
10848 <dest> 10687 <dest>
10849 *: "<Don't Resume>" 10688 *: none
10689 recording: "Channels"
10850 </dest> 10690 </dest>
10851 <voice> 10691 <voice>
10852 *: "Do Not Resume" 10692 *: none
10693 recording: "Channels"
10853 </voice> 10694 </voice>
10854</phrase> 10695</phrase>
10855<phrase> 10696<phrase>
10856 id: LANG_BOOKMARK_SHUFFLE 10697 id: LANG_SYSFONT_RECORD_TRIGGER
10857 desc: bookmark selection list, bookmark enables shuffle 10698 desc: in recording settings_menu
10858 user: 10699 user:
10859 <source> 10700 <source>
10860 *: ", Shuffle" 10701 *: none
10702 recording: "Trigger"
10861 </source> 10703 </source>
10862 <dest> 10704 <dest>
10863 *: ", Shuffle" 10705 *: none
10706 recording: "Trigger"
10864 </dest> 10707 </dest>
10865 <voice> 10708 <voice>
10866 *: "" 10709 *: none
10710 recording: "Trigger"
10867 </voice> 10711 </voice>
10868</phrase> 10712</phrase>
10869<phrase> 10713<phrase>
10870 id: LANG_BOOKMARK_INVALID 10714 id: LANG_SYSFONT_RECORDING_TIME
10871 desc: bookmark selection list, bookmark couldn't be parsed 10715 desc: Display of recorded time
10872 user: 10716 user:
10873 <source> 10717 <source>
10874 *: "<Invalid Bookmark>" 10718 *: none
10719 recording: "Time:"
10875 </source> 10720 </source>
10876 <dest> 10721 <dest>
10877 *: "<Invalid Bookmark>" 10722 *: none
10723 recording: "Time:"
10878 </dest> 10724 </dest>
10879 <voice> 10725 <voice>
10880 *: "Invalid Bookmark" 10726 *: none
10727 recording: ""
10881 </voice> 10728 </voice>
10882</phrase> 10729</phrase>
10883<phrase> 10730<phrase>
10884 id: LANG_BOOKMARK_CONTEXT_MENU 10731 id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
10885 desc: bookmark selection list context menu 10732 desc: Display of record timer interval setting, on the record screen
10886 user: 10733 user:
10887 <source> 10734 <source>
10888 *: "Bookmark Actions" 10735 *: none
10736 recording: "Split Time:"
10889 </source> 10737 </source>
10890 <dest> 10738 <dest>
10891 *: "Bookmark Actions" 10739 *: none
10740 recording: "Split Time:"
10892 </dest> 10741 </dest>
10893 <voice> 10742 <voice>
10894 *: "Bookmark Actions" 10743 *: none
10744 recording: ""
10895 </voice> 10745 </voice>
10896</phrase> 10746</phrase>
10897<phrase> 10747<phrase>
10898 id: LANG_BOOKMARK_CONTEXT_RESUME 10748 id: LANG_SYSFONT_RECORDING_SIZE
10899 desc: bookmark context menu, resume this bookmark 10749 desc: Display of recorded file size
10900 user: 10750 user:
10901 <source> 10751 <source>
10902 *: "Resume" 10752 *: none
10753 recording: "Size:"
10903 </source> 10754 </source>
10904 <dest> 10755 <dest>
10905 *: "Resume" 10756 *: none
10757 recording: "Size:"
10906 </dest> 10758 </dest>
10907 <voice> 10759 <voice>
10908 *: "Resume" 10760 *: none
10761 recording: ""
10909 </voice> 10762 </voice>
10910</phrase> 10763</phrase>
10911<phrase> 10764<phrase>
10912 id: LANG_BOOKMARK_CONTEXT_DELETE 10765 id: LANG_SYSFONT_RECORD_PRERECORD
10913 desc: bookmark context menu, delete this bookmark 10766 desc: in recording and radio screen
10914 user: 10767 user:
10915 <source> 10768 <source>
10916 *: "Delete" 10769 *: none
10770 recording: "Pre-Recording"
10917 </source> 10771 </source>
10918 <dest> 10772 <dest>
10919 *: "Delete" 10773 *: none
10774 recording: "Pre-Recording"
10920 </dest> 10775 </dest>
10921 <voice> 10776 <voice>
10922 *: "Delete" 10777 *: none
10778 recording: ""
10923 </voice> 10779 </voice>
10924</phrase> 10780</phrase>
10925<phrase> 10781<phrase>
10926 id: VOICE_BOOKMARK_SELECT_INDEX_TEXT 10782 id: LANG_SYSFONT_RECORDING_LEFT
10927 desc: voice only, used in the bookmark list to label index number 10783 desc: in the recording screen
10928 user: 10784 user:
10929 <source> 10785 <source>
10930 *: "" 10786 *: none
10787 recording: "Gain Left"
10931 </source> 10788 </source>
10932 <dest> 10789 <dest>
10933 *: "" 10790 *: none
10791 recording: "Gain Left"
10934 </dest> 10792 </dest>
10935 <voice> 10793 <voice>
10936 *: "Index" 10794 *: none
10795 recording: ""
10937 </voice> 10796 </voice>
10938</phrase> 10797</phrase>
10939<phrase> 10798<phrase>
10940 id: VOICE_BOOKMARK_SELECT_TIME_TEXT 10799 id: LANG_SYSFONT_RECORDING_RIGHT
10941 desc: voice only, used in the bookmark select list to label elapsed time 10800 desc: in the recording screen
10942 user: 10801 user:
10943 <source> 10802 <source>
10944 *: "" 10803 *: none
10804 recording: "Gain Right"
10945 </source> 10805 </source>
10946 <dest> 10806 <dest>
10947 *: "" 10807 *: none
10808 recording: "Gain Right"
10948 </dest> 10809 </dest>
10949 <voice> 10810 <voice>
10950 *: "Time" 10811 *: none
10812 recording: ""
10951 </voice> 10813 </voice>
10952</phrase> 10814</phrase>
10953<phrase> 10815<phrase>
10954 id: LANG_LISTACCEL_START_DELAY 10816 id: LANG_SYSFONT_SPLIT_SIZE
10955 desc: Delay before list starts accelerating 10817 desc: in record timesplit options
10956 user:
10957 <source> 10818 <source>
10958 *: "List Acceleration Start Delay" 10819 *: none
10959 e200: "" 10820 recording: "Split Filesize"
10960 </source> 10821 </source>
10961 <dest> 10822 <dest>
10962 *: "List Acceleration Start Delay" 10823 *: none
10963 e200: "" 10824 recording: "Split Filesize"
10964 </dest> 10825 </dest>
10965 <voice> 10826 <voice>
10966 *: "List Acceleration Start Delay" 10827 *: none
10967 e200: "" 10828 recording: "Split Filesize"
10968 </voice> 10829 </voice>
10969</phrase> 10830</phrase>
10970<phrase> 10831<phrase>
10971 id: LANG_LISTACCEL_ACCEL_SPEED 10832 id: LANG_SYSFONT_RECORDING_FILENAME
10972 desc: list acceleration speed 10833 desc: Filename header in recording screen
10973 user: 10834 user:
10974 <source> 10835 <source>
10975 *: "List Acceleration Speed" 10836 *: none
10976 e200: "" 10837 recording: "Filename:"
10977 </source> 10838 </source>
10978 <dest> 10839 <dest>
10979 *: "List Acceleration Speed" 10840 *: none
10980 e200: "" 10841 recording: "Filename:"
10981 </dest> 10842 </dest>
10982 <voice> 10843 <voice>
10983 *: "List Acceleration Speed" 10844 *: none
10984 e200: "" 10845 recording: ""
10985 </voice> 10846 </voice>
10986</phrase> 10847</phrase>
10987<phrase> 10848<phrase>
10988 id: LANG_VOICE_DIR_TALK 10849 id: LANG_SYSFONT_RECORDING_AGC_PRESET
10989 desc: Item of voice menu, whether to use directory .talk clips 10850 desc: automatic gain control in recording screen
10990 user:
10991 <source> 10851 <source>
10992 *: "Use Directory .talk Clips" 10852 *: none
10853 agc: "AGC"
10993 </source> 10854 </source>
10994 <dest> 10855 <dest>
10995 *: "Use Directory .talk Clips" 10856 *: none
10857 agc: "AGC"
10996 </dest> 10858 </dest>
10997 <voice> 10859 <voice>
10998 *: "Use Directory .talk Clips" 10860 *: none
10861 agc: "AGC"
10999 </voice> 10862 </voice>
11000</phrase> 10863</phrase>
11001<phrase> 10864<phrase>
11002 id: LANG_VOICE_FILE_TALK 10865 id: LANG_SYSFONT_AGC_SAFETY
11003 desc: Item of voice menu, whether to use file .talk clips 10866 desc: AGC preset
11004 user:
11005 <source> 10867 <source>
11006 *: "Use File .talk Clips" 10868 *: none
10869 agc: "Safety (clip)"
11007 </source> 10870 </source>
11008 <dest> 10871 <dest>
11009 *: "Use File .talk Clips" 10872 *: none
10873 agc: "Safety (clip)"
11010 </dest> 10874 </dest>
11011 <voice> 10875 <voice>
11012 *: "Use File .talk Clips" 10876 *: none
10877 agc: "Safety (clip)"
11013 </voice> 10878 </voice>
11014</phrase> 10879</phrase>
11015<phrase> 10880<phrase>
11016 id: LANG_SET_AS_REC_DIR 10881 id: LANG_SYSFONT_AGC_LIVE
11017 desc: 10882 desc: AGC preset
11018 user:
11019 <source> 10883 <source>
11020 *: "Set As Recording Directory" 10884 *: none
10885 agc: "Live (slow)"
11021 </source> 10886 </source>
11022 <dest> 10887 <dest>
11023 *: "Set As Recording Directory" 10888 *: none
10889 agc: "Live (slow)"
11024 </dest> 10890 </dest>
11025 <voice> 10891 <voice>
11026 *: "Set As Recording Directory" 10892 *: none
10893 agc: "Live (slow)"
11027 </voice> 10894 </voice>
11028</phrase> 10895</phrase>
11029<phrase> 10896<phrase>
11030 id: LANG_CLEAR_REC_DIR 10897 id: LANG_SYSFONT_AGC_DJSET
11031 desc: 10898 desc: AGC preset
11032 user:
11033 <source> 10899 <source>
11034 *: "Clear Recording Directory" 10900 *: none
10901 agc: "DJ-Set (slow)"
11035 </source> 10902 </source>
11036 <dest> 10903 <dest>
11037 *: "Clear Recording Directory" 10904 *: none
10905 agc: "DJ-Set (slow)"
11038 </dest> 10906 </dest>
11039 <voice> 10907 <voice>
11040 *: "Clear Recording Directory" 10908 *: none
10909 agc: "DJ set (slow)"
11041 </voice> 10910 </voice>
11042</phrase> 10911</phrase>
11043<phrase> 10912<phrase>
11044 id: LANG_REC_DIR_NOT_WRITABLE 10913 id: LANG_SYSFONT_AGC_MEDIUM
11045 desc: 10914 desc: AGC preset
11046 user:
11047 <source> 10915 <source>
11048 *: "Can't write to recording directory" 10916 *: none
10917 agc: "Medium"
11049 </source> 10918 </source>
11050 <dest> 10919 <dest>
11051 *: "Can't write to recording directory" 10920 *: none
10921 agc: "Medium"
11052 </dest> 10922 </dest>
11053 <voice> 10923 <voice>
11054 *: "Can't write to recording directory" 10924 *: none
10925 agc: "Medium"
11055 </voice> 10926 </voice>
11056</phrase> 10927</phrase>
11057<phrase> 10928<phrase>
11058 id: LANG_ID3_DISCNUM 10929 id: LANG_SYSFONT_AGC_VOICE
11059 desc: in tag viewer 10930 desc: AGC preset
11060 user:
11061 <source> 10931 <source>
11062 *: "[Discnum]" 10932 *: none
10933 agc: "Voice (fast)"
11063 </source> 10934 </source>
11064 <dest> 10935 <dest>
11065 *: "[Discnum]" 10936 *: none
10937 agc: "Voice (fast)"
11066 </dest> 10938 </dest>
11067 <voice> 10939 <voice>
11068 *: "" 10940 *: none
10941 agc: "Voice (fast)"
11069 </voice> 10942 </voice>
11070</phrase> 10943</phrase>
11071<phrase> 10944<phrase>
11072 id: LANG_ADD_TO_FAVES 10945 id: LANG_SYSFONT_RECORDING_AGC_MAXGAIN
11073 desc: 10946 desc: AGC maximum gain in recording screen
11074 user:
11075 <source> 10947 <source>
11076 *: "Add to shortcuts" 10948 *: none
10949 agc: "AGC max. gain"
11077 </source> 10950 </source>
11078 <dest> 10951 <dest>
11079 *: "Add to shortcuts" 10952 *: none
10953 agc: "AGC max. gain"
11080 </dest> 10954 </dest>
11081 <voice> 10955 <voice>
11082 *: "Add to shortcuts" 10956 *: none
10957 agc: "AGC maximum gain"
11083 </voice> 10958 </voice>
11084</phrase> 10959</phrase>
10960
diff --git a/apps/language.c b/apps/language.c
index d374fa18ea..3a4d0b354e 100644
--- a/apps/language.c
+++ b/apps/language.c
@@ -45,14 +45,15 @@ int lang_load(const char *filename)
45 int fsize; 45 int fsize;
46 int fd = open(filename, O_RDONLY); 46 int fd = open(filename, O_RDONLY);
47 int retcode=0; 47 int retcode=0;
48 unsigned char lang_header[2]; 48 unsigned char lang_header[3];
49 if(fd == -1) 49 if(fd == -1)
50 return 1; 50 return 1;
51 fsize = filesize(fd) - 2; 51 fsize = filesize(fd) - 2;
52 if(fsize <= MAX_LANGUAGE_SIZE) { 52 if(fsize <= MAX_LANGUAGE_SIZE) {
53 read(fd, lang_header, 2); 53 read(fd, lang_header, 3);
54 if((lang_header[0] == LANGUAGE_COOKIE) && 54 if((lang_header[0] == LANGUAGE_COOKIE) &&
55 (lang_header[1] == LANGUAGE_VERSION)) { 55 (lang_header[1] == LANGUAGE_VERSION) &&
56 (lang_header[2] == TARGET_ID)) {
56 read(fd, language_buffer, MAX_LANGUAGE_SIZE); 57 read(fd, language_buffer, MAX_LANGUAGE_SIZE);
57 unsigned char *ptr = language_buffer; 58 unsigned char *ptr = language_buffer;
58 int id; 59 int id;
diff --git a/apps/language.h b/apps/language.h
index 7aa055248f..31713fb481 100644
--- a/apps/language.h
+++ b/apps/language.h
@@ -22,7 +22,7 @@
22 22
23/* both these must match the two initial bytes in the binary lang file */ 23/* both these must match the two initial bytes in the binary lang file */
24#define LANGUAGE_COOKIE 0x1a 24#define LANGUAGE_COOKIE 0x1a
25#define LANGUAGE_VERSION 0x03 25#define LANGUAGE_VERSION 0x04
26 26
27/* Initialize language array with the builtin strings */ 27/* Initialize language array with the builtin strings */
28void lang_init(void); 28void lang_init(void);
diff --git a/apps/main.c b/apps/main.c
index 2dd90ef5fe..c15cb39d3d 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -151,7 +151,7 @@ static int init_dircache(bool preinit)
151 { 151 {
152 /* This will be in default language, settings are not 152 /* This will be in default language, settings are not
153 applied yet. Not really any easy way to fix that. */ 153 applied yet. Not really any easy way to fix that. */
154 gui_syncsplash(0, str(LANG_DIRCACHE_BUILDING)); 154 gui_syncsplash(0, str(LANG_SCANNING_DISK));
155 clear = true; 155 clear = true;
156 } 156 }
157 157
@@ -169,7 +169,7 @@ static int init_dircache(bool preinit)
169 { 169 {
170 if (global_status.dircache_size <= 0) 170 if (global_status.dircache_size <= 0)
171 { 171 {
172 gui_syncsplash(0, str(LANG_DIRCACHE_BUILDING)); 172 gui_syncsplash(0, str(LANG_SCANNING_DISK));
173 clear = true; 173 clear = true;
174 } 174 }
175 result = dircache_build(global_status.dircache_size); 175 result = dircache_build(global_status.dircache_size);
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c
index 3248f10f0e..d16ef6912d 100644
--- a/apps/menus/eq_menu.c
+++ b/apps/menus/eq_menu.c
@@ -281,8 +281,8 @@ static int draw_eq_slider(struct screen * screen, int x, int y,
281#if NB_SCREENS > 1 281#if NB_SCREENS > 1
282 if (screen->screen_type == SCREEN_REMOTE) { 282 if (screen->screen_type == SCREEN_REMOTE) {
283 if (mode == GAIN) { 283 if (mode == GAIN) {
284 screen->putsxy(current_x, y + 2, str(LANG_EQUALIZER_BAND_GAIN)); 284 screen->putsxy(current_x, y + 2, str(LANG_GAIN));
285 screen->getstringsize(str(LANG_EQUALIZER_BAND_GAIN), &w, &h); 285 screen->getstringsize(str(LANG_GAIN), &w, &h);
286 } else if (mode == CUTOFF) { 286 } else if (mode == CUTOFF) {
287 screen->putsxy(current_x, y + 2, str(LANG_EQUALIZER_BAND_CUTOFF)); 287 screen->putsxy(current_x, y + 2, str(LANG_EQUALIZER_BAND_CUTOFF));
288 screen->getstringsize(str(LANG_EQUALIZER_BAND_CUTOFF), &w, &h); 288 screen->getstringsize(str(LANG_EQUALIZER_BAND_CUTOFF), &w, &h);
@@ -454,7 +454,7 @@ bool eq_menu_graphical(void)
454 voice_unit = UNIT_DB; 454 voice_unit = UNIT_DB;
455 455
456 snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), 456 snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
457 str(LANG_SYSFONT_EQUALIZER_BAND_GAIN)); 457 str(LANG_SYSFONT_GAIN));
458 458
459 screens[SCREEN_MAIN].putsxy(2, y, buf); 459 screens[SCREEN_MAIN].putsxy(2, y, buf);
460 } else if (mode == CUTOFF) { 460 } else if (mode == CUTOFF) {
@@ -596,7 +596,7 @@ static bool eq_save_preset(void)
596 break; 596 break;
597 } 597 }
598 else { 598 else {
599 gui_syncsplash(HZ, str(LANG_MENU_SETTING_CANCEL)); 599 gui_syncsplash(HZ, str(LANG_CANCEL));
600 return false; 600 return false;
601 } 601 }
602 } 602 }
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c
index 7891a5c8a8..9529d93027 100644
--- a/apps/menus/main_menu.c
+++ b/apps/menus/main_menu.c
@@ -67,12 +67,12 @@ int browse_folder(void *param)
67 67
68static int reset_settings(void) 68static int reset_settings(void)
69{ 69{
70 unsigned char *lines[]={str(LANG_RESET_ASK_RECORDER)}; 70 unsigned char *lines[]={str(LANG_RESET_ASK)};
71 unsigned char *yes_lines[]={ 71 unsigned char *yes_lines[]={
72 str(LANG_RESET_DONE_SETTING), 72 str(LANG_SETTINGS),
73 str(LANG_RESET_DONE_CLEAR) 73 str(LANG_RESET_DONE_CLEAR)
74 }; 74 };
75 unsigned char *no_lines[]={yes_lines[0], str(LANG_RESET_DONE_CANCEL)}; 75 unsigned char *no_lines[]={yes_lines[0], str(LANG_CANCEL)};
76 struct text_message message={(char **)lines, 1}; 76 struct text_message message={(char **)lines, 1};
77 struct text_message yes_message={(char **)yes_lines, 2}; 77 struct text_message yes_message={(char **)yes_lines, 2};
78 struct text_message no_message={(char **)no_lines, 2}; 78 struct text_message no_message={(char **)no_lines, 2};
@@ -186,9 +186,11 @@ static bool show_info(void)
186 talk_value(battery_level(), UNIT_PERCENT, true); 186 talk_value(battery_level(), UNIT_PERCENT, true);
187#if CONFIG_CHARGING >= CHARGING_MONITOR 187#if CONFIG_CHARGING >= CHARGING_MONITOR
188 if (charge_state == CHARGING) 188 if (charge_state == CHARGING)
189 talk_id(LANG_BATTERY_CHARGE, true); 189 talk_id(LANG_BATTERY_CHARGE, true);
190#if CONFIG_CHARGING == CHARGING_CONTROL
190 else if (charge_state == TOPOFF) 191 else if (charge_state == TOPOFF)
191 talk_id(LANG_BATTERY_TOPOFF_CHARGE, true); 192 talk_id(LANG_BATTERY_TOPOFF_CHARGE, true);
193#endif
192 else if (charge_state == TRICKLE) 194 else if (charge_state == TRICKLE)
193 talk_id(LANG_BATTERY_TRICKLE_CHARGE, true); 195 talk_id(LANG_BATTERY_TRICKLE_CHARGE, true);
194#endif 196#endif
@@ -252,13 +254,9 @@ static bool show_info(void)
252 int integer = buflen / 1000; 254 int integer = buflen / 1000;
253 int decimal = buflen % 1000; 255 int decimal = buflen % 1000;
254 256
255#ifdef HAVE_LCD_CHARCELLS 257 snprintf(s, sizeof(s), (char *)str(LANG_BUFFER_STAT),
256 snprintf(s, sizeof(s), (char *)str(LANG_BUFFER_STAT_PLAYER),
257 integer, decimal); 258 integer, decimal);
258#else 259
259 snprintf(s, sizeof(s), (char *)str(LANG_BUFFER_STAT_RECORDER),
260 integer, decimal);
261#endif
262 FOR_NB_SCREENS(i) 260 FOR_NB_SCREENS(i)
263 screens[i].puts_scroll(0, y, (unsigned char *)s); 261 screens[i].puts_scroll(0, y, (unsigned char *)s);
264 y++; 262 y++;
@@ -341,7 +339,7 @@ static bool show_info(void)
341 339
342#ifndef SIMULATOR 340#ifndef SIMULATOR
343 case ACTION_STD_OK: 341 case ACTION_STD_OK:
344 gui_syncsplash(0, str(LANG_DIRCACHE_BUILDING)); 342 gui_syncsplash(0, str(LANG_SCANNING_DISK));
345 fat_recalc_free(IF_MV(0)); 343 fat_recalc_free(IF_MV(0));
346#ifdef HAVE_MULTIVOLUME 344#ifdef HAVE_MULTIVOLUME
347 if (fat_ismounted(1)) 345 if (fat_ismounted(1))
@@ -359,7 +357,7 @@ static bool show_info(void)
359 } 357 }
360 return false; 358 return false;
361} 359}
362MENUITEM_FUNCTION(show_info_item, 0, ID2P(LANG_INFO_MENU), 360MENUITEM_FUNCTION(show_info_item, 0, ID2P(LANG_ROCKBOX_INFO),
363 (menu_function)show_info, NULL, NULL, Icon_NOICON); 361 (menu_function)show_info, NULL, NULL, Icon_NOICON);
364 362
365 363
@@ -406,7 +404,7 @@ MENUITEM_FUNCTION(simulate_usb_item, 0, ID2P(LANG_USB),
406 (menu_function)simulate_usb, NULL, NULL, Icon_NOICON); 404 (menu_function)simulate_usb, NULL, NULL, Icon_NOICON);
407#endif 405#endif
408 406
409MAKE_MENU(info_menu, ID2P(LANG_INFO), 0, Icon_Questionmark, 407MAKE_MENU(info_menu, ID2P(LANG_SYSTEM), 0, Icon_Questionmark,
410 &show_info_item, &show_credits_item, &show_runtime_item, 408 &show_info_item, &show_credits_item, &show_runtime_item,
411 &sleep_timer_call, &debug_menu_item 409 &sleep_timer_call, &debug_menu_item
412#ifdef SIMULATOR 410#ifdef SIMULATOR
@@ -440,7 +438,7 @@ int mainmenu_callback(int action,const struct menu_item_ex *this_item)
440#else 438#else
441#define mainmenu_callback NULL 439#define mainmenu_callback NULL
442#endif 440#endif
443MAKE_MENU(main_menu_, ID2P(LANG_SETTINGS_MENU), mainmenu_callback, 441MAKE_MENU(main_menu_, ID2P(LANG_SETTINGS), mainmenu_callback,
444 Icon_Submenu_Entered, 442 Icon_Submenu_Entered,
445 &sound_settings, 443 &sound_settings,
446 &settings_menu_item, &manage_settings, &browse_themes, 444 &settings_menu_item, &manage_settings, &browse_themes,
diff --git a/apps/menus/playback_menu.c b/apps/menus/playback_menu.c
index c1de862cd0..17e54d7771 100644
--- a/apps/menus/playback_menu.c
+++ b/apps/menus/playback_menu.c
@@ -167,7 +167,7 @@ MENUITEM_SETTING(cuesheet, &global_settings.cuesheet, cuesheet_callback);
167MENUITEM_SETTING(unplug_mode, &global_settings.unplug_mode, NULL); 167MENUITEM_SETTING(unplug_mode, &global_settings.unplug_mode, NULL);
168MENUITEM_SETTING(unplug_rw, &global_settings.unplug_rw, NULL); 168MENUITEM_SETTING(unplug_rw, &global_settings.unplug_rw, NULL);
169MENUITEM_SETTING(unplug_autoresume, &global_settings.unplug_autoresume, NULL); 169MENUITEM_SETTING(unplug_autoresume, &global_settings.unplug_autoresume, NULL);
170MAKE_MENU(unplug_menu, ID2P(LANG_UNPLUG), 0, Icon_NOICON, 170MAKE_MENU(unplug_menu, ID2P(LANG_HEADPHONE_UNPLUG), 0, Icon_NOICON,
171 &unplug_mode, &unplug_rw, &unplug_autoresume); 171 &unplug_mode, &unplug_rw, &unplug_autoresume);
172#endif 172#endif
173 173
diff --git a/apps/menus/playlist_menu.c b/apps/menus/playlist_menu.c
index b942dab3ee..d66a71caba 100644
--- a/apps/menus/playlist_menu.c
+++ b/apps/menus/playlist_menu.c
@@ -75,10 +75,10 @@ MENUITEM_FUNCTION(catalog, 0, ID2P(LANG_CATALOG),
75MENUITEM_SETTING(recursive_dir_insert, &global_settings.recursive_dir_insert, NULL); 75MENUITEM_SETTING(recursive_dir_insert, &global_settings.recursive_dir_insert, NULL);
76MENUITEM_SETTING(warn_on_erase, &global_settings.warnon_erase_dynplaylist, NULL); 76MENUITEM_SETTING(warn_on_erase, &global_settings.warnon_erase_dynplaylist, NULL);
77 77
78MAKE_MENU(playlist_settings, ID2P(LANG_PLAYLIST_MENU), NULL, 78MAKE_MENU(playlist_settings, ID2P(LANG_PLAYLISTS), NULL,
79 Icon_Playlist, 79 Icon_Playlist,
80 &recursive_dir_insert, &warn_on_erase); 80 &recursive_dir_insert, &warn_on_erase);
81MAKE_MENU(playlist_options, ID2P(LANG_PLAYLIST_MENU), NULL, 81MAKE_MENU(playlist_options, ID2P(LANG_PLAYLISTS), NULL,
82 Icon_Playlist, 82 Icon_Playlist,
83 &create_playlist_item, &view_playlist, &save_playlist, &catalog); 83 &create_playlist_item, &view_playlist, &save_playlist, &catalog);
84 84
diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c
index 3fdaa02f3d..d53d42ddfa 100644
--- a/apps/menus/recording_menu.c
+++ b/apps/menus/recording_menu.c
@@ -76,7 +76,7 @@ static int recsource_func(void)
76 HAVE_MIC_REC_([AUDIO_SRC_MIC] 76 HAVE_MIC_REC_([AUDIO_SRC_MIC]
77 = { STR(LANG_RECORDING_SRC_MIC) },) 77 = { STR(LANG_RECORDING_SRC_MIC) },)
78 HAVE_LINE_REC_([AUDIO_SRC_LINEIN] 78 HAVE_LINE_REC_([AUDIO_SRC_LINEIN]
79 = { STR(LANG_RECORDING_SRC_LINE) },) 79 = { STR(LANG_LINE_IN) },)
80 HAVE_SPDIF_REC_([AUDIO_SRC_SPDIF] 80 HAVE_SPDIF_REC_([AUDIO_SRC_SPDIF]
81 = { STR(LANG_RECORDING_SRC_DIGITAL) },) 81 = { STR(LANG_RECORDING_SRC_DIGITAL) },)
82 HAVE_FMRADIO_REC_([AUDIO_SRC_FMRADIO] 82 HAVE_FMRADIO_REC_([AUDIO_SRC_FMRADIO]
@@ -217,7 +217,7 @@ static int recchannels_func(void)
217 [CHN_MODE_MONO] = { STR(LANG_CHANNEL_MONO) } 217 [CHN_MODE_MONO] = { STR(LANG_CHANNEL_MONO) }
218 }; 218 };
219#if CONFIG_CODEC == MAS3587F 219#if CONFIG_CODEC == MAS3587F
220 return set_option(str(LANG_RECORDING_CHANNELS), 220 return set_option(str(LANG_CHANNELS),
221 &global_settings.rec_channels, INT, 221 &global_settings.rec_channels, INT,
222 names, CHN_NUM_MODES, NULL ); 222 names, CHN_NUM_MODES, NULL );
223#endif /* CONFIG_CODEC == MAS3587F */ 223#endif /* CONFIG_CODEC == MAS3587F */
@@ -245,7 +245,7 @@ static int recchannels_func(void)
245 245
246 make_options_from_indexes(names, table, n_opts, opts); 246 make_options_from_indexes(names, table, n_opts, opts);
247 247
248 ret = set_option(str(LANG_RECORDING_CHANNELS), &rec_channels, 248 ret = set_option(str(LANG_CHANNELS), &rec_channels,
249 INT, opts, n_opts, NULL ); 249 INT, opts, n_opts, NULL );
250 250
251 if (!ret) 251 if (!ret)
@@ -254,7 +254,7 @@ static int recchannels_func(void)
254 return ret; 254 return ret;
255#endif /* CONFIG_CODEC == SWCODEC */ 255#endif /* CONFIG_CODEC == SWCODEC */
256} 256}
257MENUITEM_FUNCTION(recchannels, 0, ID2P(LANG_RECORDING_CHANNELS), 257MENUITEM_FUNCTION(recchannels, 0, ID2P(LANG_CHANNELS),
258 recchannels_func, NULL, NULL, Icon_Menu_setting); 258 recchannels_func, NULL, NULL, Icon_Menu_setting);
259 259
260#if CONFIG_CODEC == SWCODEC 260#if CONFIG_CODEC == SWCODEC
@@ -438,7 +438,7 @@ bool rectrigger(void)
438 static const unsigned char *trigger_modes[] = { 438 static const unsigned char *trigger_modes[] = {
439 ID2P(LANG_OFF), 439 ID2P(LANG_OFF),
440 ID2P(LANG_RECORD_TRIG_NOREARM), 440 ID2P(LANG_RECORD_TRIG_NOREARM),
441 ID2P(LANG_RECORD_TRIG_REARM) 441 ID2P(LANG_REPEAT)
442 }; 442 };
443 443
444#define PRERECORD_TIMES_COUNT 31 444#define PRERECORD_TIMES_COUNT 31
@@ -452,18 +452,18 @@ bool rectrigger(void)
452#define TRIGGER_TYPE_COUNT 3 452#define TRIGGER_TYPE_COUNT 3
453 static const unsigned char *trigger_types[] = { 453 static const unsigned char *trigger_types[] = {
454 ID2P(LANG_RECORD_TRIGGER_STOP), 454 ID2P(LANG_RECORD_TRIGGER_STOP),
455 ID2P(LANG_RECORD_TRIGGER_PAUSE), 455 ID2P(LANG_PAUSE),
456 ID2P(LANG_RECORD_TRIGGER_NEWFILESTP), 456 ID2P(LANG_RECORD_TRIGGER_NEWFILESTP),
457 }; 457 };
458 458
459 static const unsigned char *option_name[] = { 459 static const unsigned char *option_name[] = {
460 [TRIGGER_MODE] = ID2P(LANG_RECORD_TRIGGER_MODE), 460 [TRIGGER_MODE] = ID2P(LANG_RECORD_TRIGGER),
461 [TRIGGER_TYPE] = ID2P(LANG_RECORD_TRIGGER_TYPE), 461 [TRIGGER_TYPE] = ID2P(LANG_RECORD_TRIGGER_TYPE),
462 [PRERECORD_TIME] = ID2P(LANG_RECORD_PRERECORD_TIME), 462 [PRERECORD_TIME] = ID2P(LANG_RECORD_PRERECORD_TIME),
463 [START_THRESHOLD] = ID2P(LANG_RECORD_START_THRESHOLD), 463 [START_THRESHOLD] = ID2P(LANG_RECORD_START_THRESHOLD),
464 [START_DURATION] = ID2P(LANG_RECORD_MIN_DURATION), 464 [START_DURATION] = ID2P(LANG_MIN_DURATION),
465 [STOP_THRESHOLD] = ID2P(LANG_RECORD_STOP_THRESHOLD), 465 [STOP_THRESHOLD] = ID2P(LANG_RECORD_STOP_THRESHOLD),
466 [STOP_POSTREC] = ID2P(LANG_RECORD_STOP_POSTREC), 466 [STOP_POSTREC] = ID2P(LANG_MIN_DURATION),
467 [STOP_GAP] = ID2P(LANG_RECORD_STOP_GAP) 467 [STOP_GAP] = ID2P(LANG_RECORD_STOP_GAP)
468 }; 468 };
469 469
@@ -637,7 +637,7 @@ bool rectrigger(void)
637 637
638 switch (button) { 638 switch (button) {
639 case ACTION_STD_CANCEL: 639 case ACTION_STD_CANCEL:
640 gui_syncsplash(50, str(LANG_MENU_SETTING_CANCEL)); 640 gui_syncsplash(50, str(LANG_CANCEL));
641 global_settings.rec_start_thres = old_start_thres; 641 global_settings.rec_start_thres = old_start_thres;
642 global_settings.rec_start_duration = old_start_duration; 642 global_settings.rec_start_duration = old_start_duration;
643 global_settings.rec_prerecord_time = old_prerecord_time; 643 global_settings.rec_prerecord_time = old_prerecord_time;
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c
index cd2950665c..1e09abed5d 100644
--- a/apps/menus/settings_menu.c
+++ b/apps/menus/settings_menu.c
@@ -228,7 +228,7 @@ static int timedate_set(void)
228 tm.tm_year = YEAR-1900; 228 tm.tm_year = YEAR-1900;
229 } 229 }
230 230
231 result = (int)set_time_screen(str(LANG_TIME), &tm); 231 result = (int)set_time_screen(str(LANG_SET_TIME), &tm);
232 232
233 if(tm.tm_year != -1) { 233 if(tm.tm_year != -1) {
234 set_time(&tm); 234 set_time(&tm);
@@ -236,7 +236,7 @@ static int timedate_set(void)
236 return result; 236 return result;
237} 237}
238 238
239MENUITEM_FUNCTION(time_set, 0, ID2P(LANG_TIME), 239MENUITEM_FUNCTION(time_set, 0, ID2P(LANG_SET_TIME),
240 timedate_set, NULL, NULL, Icon_NOICON); 240 timedate_set, NULL, NULL, Icon_NOICON);
241MENUITEM_SETTING(timeformat, &global_settings.timeformat, NULL); 241MENUITEM_SETTING(timeformat, &global_settings.timeformat, NULL);
242MAKE_MENU(time_menu, ID2P(LANG_TIME_MENU), 0, Icon_NOICON, &time_set, &timeformat); 242MAKE_MENU(time_menu, ID2P(LANG_TIME_MENU), 0, Icon_NOICON, &time_set, &timeformat);
diff --git a/apps/onplay.c b/apps/onplay.c
index eb03b0781b..1e539e9d85 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -295,7 +295,7 @@ MENUITEM_FUNCTION(playlist_save_item, 0, ID2P(LANG_SAVE_DYNAMIC_PLAYLIST),
295 save_playlist, NULL, NULL, Icon_Playlist); 295 save_playlist, NULL, NULL, Icon_Playlist);
296MENUITEM_FUNCTION(reshuffle_item, 0, ID2P(LANG_SHUFFLE_PLAYLIST), 296MENUITEM_FUNCTION(reshuffle_item, 0, ID2P(LANG_SHUFFLE_PLAYLIST),
297 shuffle_playlist, NULL, NULL, Icon_Playlist); 297 shuffle_playlist, NULL, NULL, Icon_Playlist);
298MAKE_ONPLAYMENU( wps_playlist_menu, ID2P(LANG_PLAYLIST_MENU), 298MAKE_ONPLAYMENU( wps_playlist_menu, ID2P(LANG_PLAYLIST),
299 NULL, Icon_Playlist, 299 NULL, Icon_Playlist,
300 &playlist_viewer_item, &search_playlist_item, 300 &playlist_viewer_item, &search_playlist_item,
301 &playlist_save_item, &reshuffle_item 301 &playlist_save_item, &reshuffle_item
@@ -373,7 +373,7 @@ MENUITEM_FUNCTION(view_playlist_item, 0, ID2P(LANG_VIEW),
373 view_playlist, NULL, 373 view_playlist, NULL,
374 treeplaylist_callback, Icon_Playlist); 374 treeplaylist_callback, Icon_Playlist);
375 375
376MAKE_ONPLAYMENU( tree_playlist_menu, ID2P(LANG_PLAYLIST_MENU), 376MAKE_ONPLAYMENU( tree_playlist_menu, ID2P(LANG_PLAYLIST),
377 treeplaylist_callback, Icon_Playlist, 377 treeplaylist_callback, Icon_Playlist,
378 378
379 /* view */ 379 /* view */
@@ -502,7 +502,7 @@ static int remove_dir(char* dirname, int len)
502#endif 502#endif
503 if(ACTION_STD_CANCEL == get_action(CONTEXT_STD,TIMEOUT_NOBLOCK)) 503 if(ACTION_STD_CANCEL == get_action(CONTEXT_STD,TIMEOUT_NOBLOCK))
504 { 504 {
505 gui_syncsplash(HZ, str(LANG_MENU_SETTING_CANCEL)); 505 gui_syncsplash(HZ, str(LANG_CANCEL));
506 result = -1; 506 result = -1;
507 break; 507 break;
508 } 508 }
@@ -1032,6 +1032,7 @@ MENUITEM_FUNCTION(view_cue_item, 0, ID2P(LANG_BROWSE_CUESHEET),
1032/* CONTEXT_WPS items */ 1032/* CONTEXT_WPS items */
1033MENUITEM_FUNCTION(browse_id3_item, 0, ID2P(LANG_MENU_SHOW_ID3_INFO), 1033MENUITEM_FUNCTION(browse_id3_item, 0, ID2P(LANG_MENU_SHOW_ID3_INFO),
1034 browse_id3, NULL, NULL, Icon_NOICON); 1034 browse_id3, NULL, NULL, Icon_NOICON);
1035/* NOTE: the LANG_MENU_SET_RATING string has been removed from english.lang */
1035#ifdef HAVE_PITCHSCREEN 1036#ifdef HAVE_PITCHSCREEN
1036MENUITEM_FUNCTION(pitch_screen_item, 0, ID2P(LANG_PITCH), 1037MENUITEM_FUNCTION(pitch_screen_item, 0, ID2P(LANG_PITCH),
1037 pitch_screen, NULL, NULL, Icon_Audio); 1038 pitch_screen, NULL, NULL, Icon_Audio);
diff --git a/apps/playlist.c b/apps/playlist.c
index 39d7cc1e3d..caf5856ae8 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -484,7 +484,7 @@ static int add_indices_to_playlist(struct playlist_info* playlist,
484 lcd_setmargins(0, 0); 484 lcd_setmargins(0, 0);
485#endif 485#endif
486 486
487 gui_syncsplash(0, str(LANG_PLAYLIST_LOAD)); 487 gui_syncsplash(0, str(LANG_WAIT));
488 488
489 if (!buffer) 489 if (!buffer)
490 { 490 {
@@ -1668,13 +1668,7 @@ static void display_playlist_count(int count, const unsigned char *fmt)
1668 lcd_setmargins(0, 0); 1668 lcd_setmargins(0, 0);
1669#endif 1669#endif
1670 1670
1671 gui_syncsplash(0, fmt, count, 1671 gui_syncsplash(0, fmt, count, str(LANG_OFF_ABORT));
1672#if CONFIG_KEYPAD == PLAYER_PAD
1673 str(LANG_STOP_ABORT)
1674#else
1675 str(LANG_OFF_ABORT)
1676#endif
1677 );
1678} 1672}
1679 1673
1680/* 1674/*
@@ -1997,12 +1991,7 @@ int playlist_resume(void)
1997 { 1991 {
1998 gui_syncsplash(0, str(LANG_LOADING_PERCENT), 1992 gui_syncsplash(0, str(LANG_LOADING_PERCENT),
1999 (total_read+count)*100/control_file_size, 1993 (total_read+count)*100/control_file_size,
2000#if CONFIG_KEYPAD == PLAYER_PAD 1994 str(LANG_OFF_ABORT));
2001 str(LANG_STOP_ABORT)
2002#else
2003 str(LANG_OFF_ABORT)
2004#endif
2005 );
2006 if (action_userabort(TIMEOUT_NOBLOCK)) 1995 if (action_userabort(TIMEOUT_NOBLOCK))
2007 { 1996 {
2008 /* FIXME: 1997 /* FIXME:
diff --git a/apps/playlist_catalog.c b/apps/playlist_catalog.c
index 353bd61173..266da7cc6f 100644
--- a/apps/playlist_catalog.c
+++ b/apps/playlist_catalog.c
@@ -320,12 +320,7 @@ static int display_playlists(char* playlist, bool view)
320static void display_insert_count(int count) 320static void display_insert_count(int count)
321{ 321{
322 gui_syncsplash(0, str(LANG_PLAYLIST_INSERT_COUNT), count, 322 gui_syncsplash(0, str(LANG_PLAYLIST_INSERT_COUNT), count,
323#if CONFIG_KEYPAD == PLAYER_PAD 323 str(LANG_OFF_ABORT));
324 str(LANG_STOP_ABORT)
325#else
326 str(LANG_OFF_ABORT)
327#endif
328 );
329} 324}
330 325
331/* Add specified track into playlist. Callback from directory insert */ 326/* Add specified track into playlist. Callback from directory insert */
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index 09d6e48614..14cca7caf9 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -430,7 +430,7 @@ static int onplay_menu(int index)
430 int result, ret = 0; 430 int result, ret = 0;
431 struct playlist_entry * current_track= 431 struct playlist_entry * current_track=
432 playlist_buffer_get_track(&viewer.buffer, index); 432 playlist_buffer_get_track(&viewer.buffer, index);
433 MENUITEM_STRINGLIST(menu_items, ID2P(LANG_PLAYLIST_MENU), NULL, 433 MENUITEM_STRINGLIST(menu_items, ID2P(LANG_PLAYLIST), NULL,
434 ID2P(LANG_REMOVE), ID2P(LANG_MOVE), 434 ID2P(LANG_REMOVE), ID2P(LANG_MOVE),
435 ID2P(LANG_CATALOG_ADD_TO), ID2P(LANG_CATALOG_ADD_TO_NEW)); 435 ID2P(LANG_CATALOG_ADD_TO), ID2P(LANG_CATALOG_ADD_TO_NEW));
436 bool current = (current_track->index == viewer.current_playing_track); 436 bool current = (current_track->index == viewer.current_playing_track);
@@ -569,7 +569,7 @@ bool playlist_viewer_ex(char* filename)
569 &playlist_callback_icons:NULL); 569 &playlist_callback_icons:NULL);
570 gui_synclist_set_nb_items(&playlist_lists, viewer.num_tracks); 570 gui_synclist_set_nb_items(&playlist_lists, viewer.num_tracks);
571 gui_synclist_select_item(&playlist_lists, viewer.selected_track); 571 gui_synclist_select_item(&playlist_lists, viewer.selected_track);
572 gui_synclist_set_title(&playlist_lists, str(LANG_PLAYLIST_MENU), Icon_Playlist); 572 gui_synclist_set_title(&playlist_lists, str(LANG_PLAYLIST), Icon_Playlist);
573 gui_synclist_draw(&playlist_lists); 573 gui_synclist_draw(&playlist_lists);
574 while (!exit) 574 while (!exit)
575 { 575 {
@@ -577,7 +577,7 @@ bool playlist_viewer_ex(char* filename)
577 if (global_status.resume_index == -1) 577 if (global_status.resume_index == -1)
578 { 578 {
579 /* Play has stopped */ 579 /* Play has stopped */
580 gui_syncsplash(HZ, str(LANG_END_PLAYLIST_RECORDER)); 580 gui_syncsplash(HZ, str(LANG_END_PLAYLIST));
581 goto exit; 581 goto exit;
582 } 582 }
583 583
@@ -635,8 +635,8 @@ bool playlist_viewer_ex(char* filename)
635 ret_val = playlist_move(viewer.playlist, viewer.move_track, 635 ret_val = playlist_move(viewer.playlist, viewer.move_track,
636 current_track->index); 636 current_track->index);
637 if (ret_val < 0) 637 if (ret_val < 0)
638 gui_syncsplash(HZ, str(LANG_MOVE_FAILED)); 638 gui_syncsplash(HZ, (unsigned char *)"%s %s",
639 639 str(LANG_MOVE), str(LANG_FAILED));
640 update_playlist(true); 640 update_playlist(true);
641 viewer.move_track = -1; 641 viewer.move_track = -1;
642 } 642 }
@@ -749,12 +749,7 @@ bool search_playlist(void)
749 for (i=0;(i<playlist_count)&&(found_indicies_count<MAX_PLAYLIST_ENTRIES);i++) 749 for (i=0;(i<playlist_count)&&(found_indicies_count<MAX_PLAYLIST_ENTRIES);i++)
750 { 750 {
751 gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG),found_indicies_count, 751 gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG),found_indicies_count,
752#if CONFIG_KEYPAD == PLAYER_PAD 752 str(LANG_OFF_ABORT));
753 str(LANG_STOP_ABORT)
754#else
755 str(LANG_OFF_ABORT)
756#endif
757 );
758 if (action_userabort(TIMEOUT_NOBLOCK)) 753 if (action_userabort(TIMEOUT_NOBLOCK))
759 { 754 {
760 if (!found_indicies_count) 755 if (!found_indicies_count)
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index 24996bb92b..fb178ace47 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -496,7 +496,7 @@ int radio_screen(void)
496 496
497#ifdef HAS_BUTTONBAR 497#ifdef HAS_BUTTONBAR
498 gui_buttonbar_set(&buttonbar, str(LANG_BUTTONBAR_MENU), 498 gui_buttonbar_set(&buttonbar, str(LANG_BUTTONBAR_MENU),
499 str(LANG_FM_BUTTONBAR_PRESETS), str(LANG_FM_BUTTONBAR_RECORD)); 499 str(LANG_PRESET), str(LANG_FM_BUTTONBAR_RECORD));
500#endif 500#endif
501 501
502#ifndef HAVE_NOISY_IDLE_MODE 502#ifndef HAVE_NOISY_IDLE_MODE
@@ -680,7 +680,7 @@ int radio_screen(void)
680 } 680 }
681#ifdef HAS_BUTTONBAR 681#ifdef HAS_BUTTONBAR
682 gui_buttonbar_set(&buttonbar, str(LANG_BUTTONBAR_MENU), 682 gui_buttonbar_set(&buttonbar, str(LANG_BUTTONBAR_MENU),
683 str(LANG_FM_BUTTONBAR_PRESETS), 683 str(LANG_PRESET),
684 str(LANG_FM_BUTTONBAR_RECORD)); 684 str(LANG_FM_BUTTONBAR_RECORD));
685#endif 685#endif
686 update_screen = true; 686 update_screen = true;
@@ -713,7 +713,7 @@ int radio_screen(void)
713#ifdef HAS_BUTTONBAR 713#ifdef HAS_BUTTONBAR
714 gui_buttonbar_set(&buttonbar, 714 gui_buttonbar_set(&buttonbar,
715 str(LANG_BUTTONBAR_MENU), 715 str(LANG_BUTTONBAR_MENU),
716 str(LANG_FM_BUTTONBAR_PRESETS), 716 str(LANG_PRESET),
717 str(LANG_FM_BUTTONBAR_RECORD)); 717 str(LANG_FM_BUTTONBAR_RECORD));
718#endif 718#endif
719 update_screen = true; 719 update_screen = true;
@@ -858,8 +858,8 @@ int radio_screen(void)
858 FOR_NB_SCREENS(i) 858 FOR_NB_SCREENS(i)
859 screens[i].puts_scroll(0, top_of_screen + 2, buf); 859 screens[i].puts_scroll(0, top_of_screen + 2, buf);
860 860
861 snprintf(buf, 128, "%s %s", str(LANG_FM_TUNE_MODE), 861 snprintf(buf, 128, "%s %s", str(LANG_MODE),
862 radio_mode ? str(LANG_RADIO_PRESET_MODE) : 862 radio_mode ? str(LANG_PRESET) :
863 str(LANG_RADIO_SCAN_MODE)); 863 str(LANG_RADIO_SCAN_MODE));
864 FOR_NB_SCREENS(i) 864 FOR_NB_SCREENS(i)
865 screens[i].puts_scroll(0, top_of_screen + 3, buf); 865 screens[i].puts_scroll(0, top_of_screen + 3, buf);
@@ -1223,7 +1223,7 @@ int radio_preset_callback(int action, const struct menu_item_ex *this_item)
1223 return action; 1223 return action;
1224 (void)this_item; 1224 (void)this_item;
1225} 1225}
1226MAKE_MENU(handle_radio_preset_menu, ID2P(LANG_FM_BUTTONBAR_PRESETS), 1226MAKE_MENU(handle_radio_preset_menu, ID2P(LANG_PRESET),
1227 radio_preset_callback, Icon_NOICON, &radio_edit_preset_item, 1227 radio_preset_callback, Icon_NOICON, &radio_edit_preset_item,
1228 &radio_delete_preset_item); 1228 &radio_delete_preset_item);
1229/* present a list of preset stations */ 1229/* present a list of preset stations */
@@ -1255,7 +1255,7 @@ static int handle_radio_presets(void)
1255 gui_buttonbar_draw(&buttonbar); 1255 gui_buttonbar_draw(&buttonbar);
1256#endif 1256#endif
1257 gui_synclist_init(&lists, presets_get_name, NULL, false, 1); 1257 gui_synclist_init(&lists, presets_get_name, NULL, false, 1);
1258 gui_synclist_set_title(&lists, str(LANG_FM_BUTTONBAR_PRESETS), NOICON); 1258 gui_synclist_set_title(&lists, str(LANG_PRESET), NOICON);
1259 gui_synclist_set_icon_callback(&lists, NULL); 1259 gui_synclist_set_icon_callback(&lists, NULL);
1260 gui_synclist_set_nb_items(&lists, num_presets); 1260 gui_synclist_set_nb_items(&lists, num_presets);
1261 gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset); 1261 gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset);
@@ -1318,8 +1318,8 @@ char* get_mode_text(int selected_item, void * data, char *buffer)
1318{ 1318{
1319 (void)selected_item; 1319 (void)selected_item;
1320 (void)data; 1320 (void)data;
1321 snprintf(buffer, MAX_PATH, "%s %s", str(LANG_FM_TUNE_MODE), 1321 snprintf(buffer, MAX_PATH, "%s %s", str(LANG_MODE),
1322 radio_mode ? str(LANG_RADIO_PRESET_MODE) : 1322 radio_mode ? str(LANG_PRESET) :
1323 str(LANG_RADIO_SCAN_MODE)); 1323 str(LANG_RADIO_SCAN_MODE));
1324 return buffer; 1324 return buffer;
1325} 1325}
@@ -1455,7 +1455,7 @@ static int fm_recording_settings(void)
1455#endif /* HAVE_RECORDING */ 1455#endif /* HAVE_RECORDING */
1456 1456
1457#ifdef FM_RECORDING_SCREEN 1457#ifdef FM_RECORDING_SCREEN
1458MENUITEM_FUNCTION(recscreen_item, 0, ID2P(LANG_RECORDING_MENU), 1458MENUITEM_FUNCTION(recscreen_item, 0, ID2P(LANG_RECORDING),
1459 fm_recording_screen, NULL, NULL, Icon_Recording); 1459 fm_recording_screen, NULL, NULL, Icon_Recording);
1460#endif 1460#endif
1461#ifdef FM_RECORDING_SETTINGS 1461#ifdef FM_RECORDING_SETTINGS
@@ -1463,7 +1463,7 @@ MENUITEM_FUNCTION(recsettings_item, 0, ID2P(LANG_RECORDING_SETTINGS),
1463 fm_recording_settings, NULL, NULL, Icon_Recording); 1463 fm_recording_settings, NULL, NULL, Icon_Recording);
1464#endif 1464#endif
1465#ifndef FM_PRESET 1465#ifndef FM_PRESET
1466MENUITEM_FUNCTION(radio_presets_item, 0, ID2P(LANG_FM_BUTTONBAR_PRESETS), 1466MENUITEM_FUNCTION(radio_presets_item, 0, ID2P(LANG_PRESET),
1467 handle_radio_presets, NULL, NULL, Icon_NOICON); 1467 handle_radio_presets, NULL, NULL, Icon_NOICON);
1468#endif 1468#endif
1469#ifndef FM_PRESET_ADD 1469#ifndef FM_PRESET_ADD
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 8bcc3ee9af..68528c71c0 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -1529,7 +1529,7 @@ bool recording_screen(bool no_source)
1529 if(global_settings.rec_source == AUDIO_SRC_MIC) 1529 if(global_settings.rec_source == AUDIO_SRC_MIC)
1530 { 1530 {
1531 /* Draw MIC recording gain */ 1531 /* Draw MIC recording gain */
1532 snprintf(buf, sizeof(buf), "%s:%s", str(LANG_SYSFONT_RECORDING_GAIN), 1532 snprintf(buf, sizeof(buf), "%s:%s", str(LANG_SYSFONT_GAIN),
1533 fmt_gain(SOUND_MIC_GAIN, 1533 fmt_gain(SOUND_MIC_GAIN,
1534 global_settings.rec_mic_gain, 1534 global_settings.rec_mic_gain,
1535 buf2, sizeof(buf2))); 1535 buf2, sizeof(buf2)));
@@ -1921,12 +1921,12 @@ static bool f2_rec_screen(void)
1921 1921
1922 FOR_NB_SCREENS(i) 1922 FOR_NB_SCREENS(i)
1923 { 1923 {
1924 screens[i].getstringsize(str(LANG_SYSFONT_RECORDING_CHANNELS), &w, &h); 1924 screens[i].getstringsize(str(LANG_SYSFONT_CHANNELS), &w, &h);
1925 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2, 1925 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2,
1926 str(LANG_SYSFONT_RECORDING_CHANNELS)); 1926 str(LANG_SYSFONT_CHANNELS));
1927 screens[i].getstringsize(str(LANG_SYSFONT_F2_MODE), &w, &h); 1927 screens[i].getstringsize(str(LANG_SYSFONT_MODE), &w, &h);
1928 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h, 1928 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h,
1929 str(LANG_SYSFONT_F2_MODE)); 1929 str(LANG_SYSFONT_MODE));
1930 screens[i].getstringsize(ptr, &w, &h); 1930 screens[i].getstringsize(ptr, &w, &h);
1931 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2, ptr); 1931 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2, ptr);
1932 screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastForward], 1932 screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastForward],
@@ -1999,7 +1999,7 @@ static bool f3_rec_screen(void)
1999 char *src_str[] = 1999 char *src_str[] =
2000 { 2000 {
2001 str(LANG_SYSFONT_RECORDING_SRC_MIC), 2001 str(LANG_SYSFONT_RECORDING_SRC_MIC),
2002 str(LANG_SYSFONT_RECORDING_SRC_LINE), 2002 str(LANG_SYSFONT_LINE_IN),
2003 str(LANG_SYSFONT_RECORDING_SRC_DIGITAL) 2003 str(LANG_SYSFONT_RECORDING_SRC_DIGITAL)
2004 }; 2004 };
2005 struct audio_recording_options rec_options; 2005 struct audio_recording_options rec_options;
diff --git a/apps/root_menu.c b/apps/root_menu.c
index b395705adb..df59b1b846 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -315,14 +315,14 @@ char *get_wps_item_name(int selected_item, void * data, char *buffer)
315MENUITEM_RETURNVALUE_DYNTEXT(wps_item, GO_TO_WPS, NULL, get_wps_item_name, 315MENUITEM_RETURNVALUE_DYNTEXT(wps_item, GO_TO_WPS, NULL, get_wps_item_name,
316 NULL, Icon_Playback_menu); 316 NULL, Icon_Playback_menu);
317#ifdef HAVE_RECORDING 317#ifdef HAVE_RECORDING
318MENUITEM_RETURNVALUE(rec, ID2P(LANG_RECORDING_MENU), GO_TO_RECSCREEN, 318MENUITEM_RETURNVALUE(rec, ID2P(LANG_RECORDING), GO_TO_RECSCREEN,
319 NULL, Icon_Recording); 319 NULL, Icon_Recording);
320#endif 320#endif
321#if CONFIG_TUNER 321#if CONFIG_TUNER
322MENUITEM_RETURNVALUE(fm, ID2P(LANG_FM_RADIO), GO_TO_FM, 322MENUITEM_RETURNVALUE(fm, ID2P(LANG_FM_RADIO), GO_TO_FM,
323 item_callback, Icon_Radio_screen); 323 item_callback, Icon_Radio_screen);
324#endif 324#endif
325MENUITEM_RETURNVALUE(menu_, ID2P(LANG_SETTINGS_MENU), GO_TO_MAINMENU, 325MENUITEM_RETURNVALUE(menu_, ID2P(LANG_SETTINGS), GO_TO_MAINMENU,
326 NULL, Icon_Submenu_Entered); 326 NULL, Icon_Submenu_Entered);
327MENUITEM_RETURNVALUE(bookmarks, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS), 327MENUITEM_RETURNVALUE(bookmarks, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS),
328 GO_TO_RECENTBMARKS, item_callback, 328 GO_TO_RECENTBMARKS, item_callback,
diff --git a/apps/screens.c b/apps/screens.c
index b2436f00f1..1f0939ab8d 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -398,7 +398,7 @@ static void pitch_screen_draw(struct screen *display, int pitch, int pitch_mode)
398 398
399 if (display->nb_lines < 4) /* very small screen, just show the pitch value */ 399 if (display->nb_lines < 4) /* very small screen, just show the pitch value */
400 { 400 {
401 w = snprintf((char *)buf, sizeof(buf), "%s: %d.%d%%",str(LANG_SYSFONT_PITCH), 401 w = snprintf((char *)buf, sizeof(buf), "%s: %d.%d%%",str(LANG_PITCH),
402 pitch / 10, pitch % 10 ); 402 pitch / 10, pitch % 10 );
403 display->putsxy((display->width-(w*display->char_width))/2, 403 display->putsxy((display->width-(w*display->char_width))/2,
404 display->nb_lines/2,buf); 404 display->nb_lines/2,buf);
@@ -408,9 +408,9 @@ static void pitch_screen_draw(struct screen *display, int pitch, int pitch_mode)
408 408
409 /* UP: Pitch Up */ 409 /* UP: Pitch Up */
410 if (pitch_mode == PITCH_MODE_ABSOLUTE) { 410 if (pitch_mode == PITCH_MODE_ABSOLUTE) {
411 ptr = str(LANG_SYSFONT_PITCH_UP); 411 ptr = str(LANG_PITCH_UP);
412 } else { 412 } else {
413 ptr = str(LANG_SYSFONT_PITCH_UP_SEMITONE); 413 ptr = str(LANG_PITCH_UP_SEMITONE);
414 } 414 }
415 display->getstringsize(ptr,&w,&h); 415 display->getstringsize(ptr,&w,&h);
416 display->putsxy((display->width-w)/2, 0, ptr); 416 display->putsxy((display->width-w)/2, 0, ptr);
@@ -419,9 +419,9 @@ static void pitch_screen_draw(struct screen *display, int pitch, int pitch_mode)
419 419
420 /* DOWN: Pitch Down */ 420 /* DOWN: Pitch Down */
421 if (pitch_mode == PITCH_MODE_ABSOLUTE) { 421 if (pitch_mode == PITCH_MODE_ABSOLUTE) {
422 ptr = str(LANG_SYSFONT_PITCH_DOWN); 422 ptr = str(LANG_PITCH_DOWN);
423 } else { 423 } else {
424 ptr = str(LANG_SYSFONT_PITCH_DOWN_SEMITONE); 424 ptr = str(LANG_PITCH_DOWN_SEMITONE);
425 } 425 }
426 display->getstringsize(ptr,&w,&h); 426 display->getstringsize(ptr,&w,&h);
427 display->putsxy((display->width-w)/2, display->height - h, ptr); 427 display->putsxy((display->width-w)/2, display->height - h, ptr);
@@ -443,7 +443,7 @@ static void pitch_screen_draw(struct screen *display, int pitch, int pitch_mode)
443 w+1, (display->height-h)/2, 7, 8); 443 w+1, (display->height-h)/2, 7, 8);
444 444
445 /* "Pitch" */ 445 /* "Pitch" */
446 snprintf((char *)buf, sizeof(buf), str(LANG_SYSFONT_PITCH)); 446 snprintf((char *)buf, sizeof(buf), str(LANG_PITCH));
447 display->getstringsize(buf,&w,&h); 447 display->getstringsize(buf,&w,&h);
448 display->putsxy((display->width-w)/2, (display->height/2)-h, buf); 448 display->putsxy((display->width-w)/2, (display->height/2)-h, buf);
449 /* "XX.X%" */ 449 /* "XX.X%" */
@@ -654,14 +654,14 @@ bool quick_screen_quick(int button_enter)
654 [1]={ STR(LANG_SYSFONT_ON) } 654 [1]={ STR(LANG_SYSFONT_ON) }
655 }; 655 };
656 static const struct opt_items bottom_items[] = { 656 static const struct opt_items bottom_items[] = {
657 [SHOW_ALL]={ STR(LANG_SYSFONT_FILTER_ALL) }, 657 [SHOW_ALL]={ STR(LANG_SYSFONT_ALL) },
658 [SHOW_SUPPORTED]={ STR(LANG_SYSFONT_FILTER_SUPPORTED) }, 658 [SHOW_SUPPORTED]={ STR(LANG_SYSFONT_FILTER_SUPPORTED) },
659 [SHOW_MUSIC]={ STR(LANG_SYSFONT_FILTER_MUSIC) }, 659 [SHOW_MUSIC]={ STR(LANG_SYSFONT_FILTER_MUSIC) },
660 [SHOW_PLAYLIST]={ STR(LANG_SYSFONT_FILTER_PLAYLIST) }, 660 [SHOW_PLAYLIST]={ STR(LANG_SYSFONT_FILTER_PLAYLIST) },
661 }; 661 };
662 static const struct opt_items right_items[] = { 662 static const struct opt_items right_items[] = {
663 [REPEAT_OFF]={ STR(LANG_SYSFONT_OFF) }, 663 [REPEAT_OFF]={ STR(LANG_SYSFONT_OFF) },
664 [REPEAT_ALL]={ STR(LANG_SYSFONT_REPEAT_ALL) }, 664 [REPEAT_ALL]={ STR(LANG_SYSFONT_ALL) },
665 [REPEAT_ONE]={ STR(LANG_SYSFONT_REPEAT_ONE) }, 665 [REPEAT_ONE]={ STR(LANG_SYSFONT_REPEAT_ONE) },
666 [REPEAT_SHUFFLE]={ STR(LANG_SYSFONT_SHUFFLE) }, 666 [REPEAT_SHUFFLE]={ STR(LANG_SYSFONT_SHUFFLE) },
667#ifdef AB_REPEAT_ENABLE 667#ifdef AB_REPEAT_ENABLE
@@ -1014,7 +1014,7 @@ bool set_time_screen(const char* title, struct tm *tm)
1014 1014
1015 /* print help text */ 1015 /* print help text */
1016 if (screens[s].nb_lines > 4) 1016 if (screens[s].nb_lines > 4)
1017 screens[s].puts(0, 4, str(LANG_TIME_SET)); 1017 screens[s].puts(0, 4, str(LANG_TIME_SET_BUTTON));
1018 if (screens[s].nb_lines > 5) 1018 if (screens[s].nb_lines > 5)
1019 screens[s].puts(0, 5, str(LANG_TIME_REVERT)); 1019 screens[s].puts(0, 5, str(LANG_TIME_REVERT));
1020 screens[s].update(); 1020 screens[s].update();
diff --git a/apps/settings.c b/apps/settings.c
index 958c410af8..7815bdb81c 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -536,11 +536,11 @@ int settings_save( void )
536 { 536 {
537 screens[i].clear_display(); 537 screens[i].clear_display();
538#ifdef HAVE_LCD_CHARCELLS 538#ifdef HAVE_LCD_CHARCELLS
539 screens[i].puts(0, 0, str(LANG_SETTINGS_SAVE_PLAYER)); 539 screens[i].puts(0, 0, str(LANG_SETTINGS_SAVE_FAILED));
540 screens[i].puts(0, 1, str(LANG_SETTINGS_BATTERY_PLAYER)); 540 screens[i].puts(0, 1, str(LANG_SETTINGS_PARTITION));
541#else 541#else
542 screens[i].puts(4, 2, str(LANG_SETTINGS_SAVE_RECORDER)); 542 screens[i].puts(4, 2, str(LANG_SETTINGS_SAVE_FAILED));
543 screens[i].puts(2, 4, str(LANG_SETTINGS_BATTERY_RECORDER)); 543 screens[i].puts(2, 4, str(LANG_SETTINGS_PARTITION));
544 screens[i].update(); 544 screens[i].update();
545#endif 545#endif
546 } 546 }
@@ -575,7 +575,7 @@ bool settings_save_config(int options)
575 break; 575 break;
576 } 576 }
577 else { 577 else {
578 gui_syncsplash(HZ, str(LANG_MENU_SETTING_CANCEL)); 578 gui_syncsplash(HZ, str(LANG_CANCEL));
579 return false; 579 return false;
580 } 580 }
581 } 581 }
diff --git a/apps/settings_list.c b/apps/settings_list.c
index f5ebe18987..881a998978 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -387,8 +387,8 @@ const struct settings_list settings[] = {
387 OFFON_SETTING(0, superbass, LANG_SUPERBASS, false, "superbass", set_superbass), 387 OFFON_SETTING(0, superbass, LANG_SUPERBASS, false, "superbass", set_superbass),
388#endif 388#endif
389 389
390 CHOICE_SETTING(0,channel_config,LANG_CHANNEL,0,"channels", 390 CHOICE_SETTING(0,channel_config,LANG_CHANNEL_CONFIGURATION,0,"channels",
391 "stereo,mono,custom,mono left,mono right,karaoke", 391 "stereo,mono,custom,mono left,mono right,karaoke",
392 sound_set_channels, 392 sound_set_channels,
393 6, ID2P(LANG_CHANNEL_STEREO), ID2P(LANG_CHANNEL_MONO), 393 6, ID2P(LANG_CHANNEL_STEREO), ID2P(LANG_CHANNEL_MONO),
394 ID2P(LANG_CHANNEL_CUSTOM), ID2P(LANG_CHANNEL_LEFT), 394 ID2P(LANG_CHANNEL_CUSTOM), ID2P(LANG_CHANNEL_LEFT),
@@ -412,7 +412,7 @@ const struct settings_list settings[] = {
412#else 412#else
413 4, 413 4,
414#endif 414#endif
415 ID2P(LANG_OFF), ID2P(LANG_REPEAT_ALL), ID2P(LANG_REPEAT_ONE), ID2P(LANG_SHUFFLE) 415 ID2P(LANG_OFF), ID2P(LANG_ALL), ID2P(LANG_REPEAT_ONE), ID2P(LANG_SHUFFLE)
416#ifdef AB_REPEAT_ENABLE 416#ifdef AB_REPEAT_ENABLE
417 ,ID2P(LANG_REPEAT_AB) 417 ,ID2P(LANG_REPEAT_AB)
418#endif 418#endif
@@ -440,9 +440,13 @@ const struct settings_list settings[] = {
440#endif 440#endif
441#endif /* HAVE_BACKLIGHT */ 441#endif /* HAVE_BACKLIGHT */
442#ifdef HAVE_LCD_BITMAP 442#ifdef HAVE_LCD_BITMAP
443#ifdef HAVE_LCD_INVERT
443 BOOL_SETTING(0, invert, LANG_INVERT, false ,"invert", off_on, 444 BOOL_SETTING(0, invert, LANG_INVERT, false ,"invert", off_on,
444 LANG_INVERT_LCD_INVERSE, LANG_INVERT_LCD_NORMAL, lcd_set_invert_display), 445 LANG_INVERT_LCD_INVERSE, LANG_NORMAL, lcd_set_invert_display),
446#endif
447#ifdef HAVE_LCD_FLIP
445 OFFON_SETTING(0,flip_display, LANG_FLIP_DISPLAY, false,"flip display", NULL), 448 OFFON_SETTING(0,flip_display, LANG_FLIP_DISPLAY, false,"flip display", NULL),
449#endif
446 /* display */ 450 /* display */
447 BOOL_SETTING(F_TEMPVAR, invert_cursor, LANG_INVERT_CURSOR, true ,"invert cursor", off_on, 451 BOOL_SETTING(F_TEMPVAR, invert_cursor, LANG_INVERT_CURSOR, true ,"invert cursor", off_on,
448 LANG_INVERT_CURSOR_BAR, LANG_INVERT_CURSOR_POINTER, NULL), 452 LANG_INVERT_CURSOR_BAR, LANG_INVERT_CURSOR_POINTER, NULL),
@@ -458,9 +462,11 @@ const struct settings_list settings[] = {
458 CHOICE_SETTING(0, battery_display, LANG_BATTERY_DISPLAY, 0, 462 CHOICE_SETTING(0, battery_display, LANG_BATTERY_DISPLAY, 0,
459 "battery display", graphic_numeric, NULL, 2, 463 "battery display", graphic_numeric, NULL, 2,
460 ID2P(LANG_DISPLAY_GRAPHIC), ID2P(LANG_DISPLAY_NUMERIC)), 464 ID2P(LANG_DISPLAY_GRAPHIC), ID2P(LANG_DISPLAY_NUMERIC)),
465#if CONFIG_RTC
461 CHOICE_SETTING(0, timeformat, LANG_TIMEFORMAT, 0, 466 CHOICE_SETTING(0, timeformat, LANG_TIMEFORMAT, 0,
462 "time format", "24hour,12hour", NULL, 2, 467 "time format", "24hour,12hour", NULL, 2,
463 ID2P(LANG_24_HOUR_CLOCK), ID2P(LANG_12_HOUR_CLOCK)), 468 ID2P(LANG_24_HOUR_CLOCK), ID2P(LANG_12_HOUR_CLOCK)),
469#endif
464#endif /* HAVE_LCD_BITMAP */ 470#endif /* HAVE_LCD_BITMAP */
465 OFFON_SETTING(0,show_icons, LANG_SHOW_ICONS ,true,"show icons", NULL), 471 OFFON_SETTING(0,show_icons, LANG_SHOW_ICONS ,true,"show icons", NULL),
466 /* system */ 472 /* system */
@@ -515,7 +521,7 @@ const struct settings_list settings[] = {
515 "remote contrast", UNIT_INT, MIN_REMOTE_CONTRAST_SETTING, 521 "remote contrast", UNIT_INT, MIN_REMOTE_CONTRAST_SETTING,
516 MAX_REMOTE_CONTRAST_SETTING, 1, NULL, NULL, lcd_remote_set_contrast), 522 MAX_REMOTE_CONTRAST_SETTING, 1, NULL, NULL, lcd_remote_set_contrast),
517 BOOL_SETTING(0, remote_invert, LANG_INVERT, false ,"remote invert", off_on, 523 BOOL_SETTING(0, remote_invert, LANG_INVERT, false ,"remote invert", off_on,
518 LANG_INVERT_LCD_INVERSE, LANG_INVERT_LCD_NORMAL, lcd_remote_set_invert_display), 524 LANG_INVERT_LCD_INVERSE, LANG_NORMAL, lcd_remote_set_invert_display),
519 OFFON_SETTING(0,remote_flip_display, LANG_FLIP_DISPLAY, 525 OFFON_SETTING(0,remote_flip_display, LANG_FLIP_DISPLAY,
520 false,"remote flip display", NULL), 526 false,"remote flip display", NULL),
521 INT_SETTING_W_CFGVALS(F_FLIPLIST, remote_backlight_timeout, LANG_BACKLIGHT, 6, 527 INT_SETTING_W_CFGVALS(F_FLIPLIST, remote_backlight_timeout, LANG_BACKLIGHT, 6,
@@ -640,8 +646,8 @@ const struct settings_list settings[] = {
640#endif /* HAVE_FLASH_STORAGE */ 646#endif /* HAVE_FLASH_STORAGE */
641 /* browser */ 647 /* browser */
642 CHOICE_SETTING(0, dirfilter, LANG_FILTER, SHOW_SUPPORTED, "show files", 648 CHOICE_SETTING(0, dirfilter, LANG_FILTER, SHOW_SUPPORTED, "show files",
643 "all,supported,music,playlists", NULL, 4, ID2P(LANG_FILTER_ALL), 649 "all,supported,music,playlists", NULL, 4, ID2P(LANG_ALL),
644 ID2P(LANG_FILTER_SUPPORTED), ID2P(LANG_FILTER_MUSIC), ID2P(LANG_FILTER_PLAYLIST)), 650 ID2P(LANG_FILTER_SUPPORTED), ID2P(LANG_FILTER_MUSIC), ID2P(LANG_PLAYLISTS)),
645 OFFON_SETTING(0,sort_case,LANG_SORT_CASE,false,"sort case",NULL), 651 OFFON_SETTING(0,sort_case,LANG_SORT_CASE,false,"sort case",NULL),
646 OFFON_SETTING(0,browse_current,LANG_FOLLOW,false,"follow playlist",NULL), 652 OFFON_SETTING(0,browse_current,LANG_FOLLOW,false,"follow playlist",NULL),
647 OFFON_SETTING(0,playlist_viewer_icons,LANG_SHOW_ICONS,true, 653 OFFON_SETTING(0,playlist_viewer_icons,LANG_SHOW_ICONS,true,
@@ -653,17 +659,17 @@ const struct settings_list settings[] = {
653 ID2P(LANG_DISPLAY_TRACK_NAME_ONLY), ID2P(LANG_DISPLAY_FULL_PATH)), 659 ID2P(LANG_DISPLAY_TRACK_NAME_ONLY), ID2P(LANG_DISPLAY_FULL_PATH)),
654 CHOICE_SETTING(0, recursive_dir_insert, LANG_RECURSE_DIRECTORY , RECURSE_OFF, 660 CHOICE_SETTING(0, recursive_dir_insert, LANG_RECURSE_DIRECTORY , RECURSE_OFF,
655 "recursive directory insert", off_on_ask, NULL , 3 , 661 "recursive directory insert", off_on_ask, NULL , 3 ,
656 ID2P(LANG_OFF), ID2P(LANG_ON), ID2P(LANG_RESUME_SETTING_ASK)), 662 ID2P(LANG_OFF), ID2P(LANG_ON), ID2P(LANG_ASK)),
657 /* bookmarks */ 663 /* bookmarks */
658 CHOICE_SETTING(0, autocreatebookmark, LANG_BOOKMARK_SETTINGS_AUTOCREATE, 664 CHOICE_SETTING(0, autocreatebookmark, LANG_BOOKMARK_SETTINGS_AUTOCREATE,
659 BOOKMARK_NO, "autocreate bookmarks", 665 BOOKMARK_NO, "autocreate bookmarks",
660 "off,on,ask,recent only - on,recent only - ask", NULL, 5, 666 "off,on,ask,recent only - on,recent only - ask", NULL, 5,
661 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), 667 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES),
662 ID2P(LANG_RESUME_SETTING_ASK), ID2P(LANG_BOOKMARK_SETTINGS_RECENT_ONLY_YES), 668 ID2P(LANG_ASK), ID2P(LANG_BOOKMARK_SETTINGS_RECENT_ONLY_YES),
663 ID2P(LANG_BOOKMARK_SETTINGS_RECENT_ONLY_ASK)), 669 ID2P(LANG_BOOKMARK_SETTINGS_RECENT_ONLY_ASK)),
664 CHOICE_SETTING(0, autoloadbookmark, LANG_BOOKMARK_SETTINGS_AUTOLOAD, 670 CHOICE_SETTING(0, autoloadbookmark, LANG_BOOKMARK_SETTINGS_AUTOLOAD,
665 BOOKMARK_NO, "autoload bookmarks", off_on_ask, NULL, 3, 671 BOOKMARK_NO, "autoload bookmarks", off_on_ask, NULL, 3,
666 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), ID2P(LANG_RESUME_SETTING_ASK)), 672 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), ID2P(LANG_ASK)),
667 CHOICE_SETTING(0, usemrb, LANG_BOOKMARK_SETTINGS_MAINTAIN_RECENT_BOOKMARKS, 673 CHOICE_SETTING(0, usemrb, LANG_BOOKMARK_SETTINGS_MAINTAIN_RECENT_BOOKMARKS,
668 BOOKMARK_NO, "use most-recent-bookmarks", "off,on,unique only", NULL, 3, 674 BOOKMARK_NO, "use most-recent-bookmarks", "off,on,unique only", NULL, 3,
669 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), 675 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES),
@@ -764,14 +770,14 @@ const struct settings_list settings[] = {
764 TALK_ID(512, UNIT_MB), TALK_ID(650, UNIT_MB), TALK_ID(700, UNIT_MB), 770 TALK_ID(512, UNIT_MB), TALK_ID(650, UNIT_MB), TALK_ID(700, UNIT_MB),
765 TALK_ID(1024, UNIT_MB), TALK_ID(1536, UNIT_MB), TALK_ID(1792, UNIT_MB)), 771 TALK_ID(1024, UNIT_MB), TALK_ID(1536, UNIT_MB), TALK_ID(1792, UNIT_MB)),
766 {F_T_INT|F_RECSETTING, &global_settings.rec_channels, 772 {F_T_INT|F_RECSETTING, &global_settings.rec_channels,
767 LANG_RECORDING_CHANNELS, INT(0), 773 LANG_CHANNELS, INT(0),
768 "rec channels","stereo,mono",UNUSED}, 774 "rec channels","stereo,mono",UNUSED},
769 CHOICE_SETTING(F_RECSETTING, rec_split_type, LANG_SPLIT_TYPE, 0 , 775 CHOICE_SETTING(F_RECSETTING, rec_split_type, LANG_SPLIT_TYPE, 0 ,
770 "rec split type", "Split, Stop", NULL, 2, 776 "rec split type", "Split, Stop", NULL, 2,
771 ID2P(LANG_START_NEW_FILE), ID2P(LANG_STOP_RECORDING)), 777 ID2P(LANG_START_NEW_FILE), ID2P(LANG_STOP_RECORDING)),
772 CHOICE_SETTING(F_RECSETTING, rec_split_method, LANG_SPLIT_MEASURE, 0 , 778 CHOICE_SETTING(F_RECSETTING, rec_split_method, LANG_SPLIT_MEASURE, 0 ,
773 "rec split method", "Time,Filesize", NULL, 2, 779 "rec split method", "Time,Filesize", NULL, 2,
774 ID2P(LANG_REC_TIME), ID2P(LANG_REC_SIZE)), 780 ID2P(LANG_TIME), ID2P(LANG_REC_SIZE)),
775 {F_T_INT|F_RECSETTING, &global_settings.rec_source, 781 {F_T_INT|F_RECSETTING, &global_settings.rec_source,
776 LANG_RECORDING_SOURCE, INT(0), 782 LANG_RECORDING_SOURCE, INT(0),
777 "rec source", 783 "rec source",
@@ -790,13 +796,10 @@ const struct settings_list settings[] = {
790 CHOICE_SETTING(F_RECSETTING, cliplight, LANG_CLIP_LIGHT, 0 , 796 CHOICE_SETTING(F_RECSETTING, cliplight, LANG_CLIP_LIGHT, 0 ,
791 "cliplight", "off,main,both,remote", NULL, 797 "cliplight", "off,main,both,remote", NULL,
792#ifdef HAVE_REMOTE_LCD 798#ifdef HAVE_REMOTE_LCD
793 4, 799 4, ID2P(LANG_OFF), ID2P(LANG_MAIN_UNIT), ID2P(LANG_REMOTE_MAIN),
800 ID2P(LANG_REMOTE_UNIT)
794#else 801#else
795 2, 802 2, ID2P(LANG_OFF), ID2P(LANG_ON)
796#endif
797 ID2P(LANG_OFF), ID2P(LANG_MAIN_UNIT)
798#ifdef HAVE_REMOTE_LCD
799 , ID2P(LANG_REMOTE_MAIN), ID2P(LANG_REMOTE_UNIT)
800#endif 803#endif
801 ), 804 ),
802 {F_T_INT|F_RECSETTING,&global_settings.cliplight,LANG_CLIP_LIGHT,INT(0), 805 {F_T_INT|F_RECSETTING,&global_settings.cliplight,LANG_CLIP_LIGHT,INT(0),
@@ -804,7 +807,7 @@ const struct settings_list settings[] = {
804#endif 807#endif
805#ifdef DEFAULT_REC_MIC_GAIN 808#ifdef DEFAULT_REC_MIC_GAIN
806 {F_T_INT|F_RECSETTING,&global_settings.rec_mic_gain, 809 {F_T_INT|F_RECSETTING,&global_settings.rec_mic_gain,
807 LANG_RECORDING_GAIN,INT(DEFAULT_REC_MIC_GAIN), 810 LANG_GAIN,INT(DEFAULT_REC_MIC_GAIN),
808 "rec mic gain",NULL,UNUSED}, 811 "rec mic gain",NULL,UNUSED},
809#endif /* DEFAULT_REC_MIC_GAIN */ 812#endif /* DEFAULT_REC_MIC_GAIN */
810#ifdef DEFAULT_REC_LEFT_GAIN 813#ifdef DEFAULT_REC_LEFT_GAIN
@@ -855,16 +858,16 @@ const struct settings_list settings[] = {
855 LANG_RECORD_STOP_THRESHOLD,INT(-45), 858 LANG_RECORD_STOP_THRESHOLD,INT(-45),
856 "trigger stop threshold",NULL,UNUSED}, 859 "trigger stop threshold",NULL,UNUSED},
857 {F_T_INT|F_RECSETTING,&global_settings.rec_start_duration, 860 {F_T_INT|F_RECSETTING,&global_settings.rec_start_duration,
858 LANG_RECORD_MIN_DURATION,INT(0), 861 LANG_MIN_DURATION,INT(0),
859 "trigger start duration",trig_durations_conf,UNUSED}, 862 "trigger start duration",trig_durations_conf,UNUSED},
860 {F_T_INT|F_RECSETTING,&global_settings.rec_stop_postrec, 863 {F_T_INT|F_RECSETTING,&global_settings.rec_stop_postrec,
861 LANG_RECORD_STOP_POSTREC,INT(2), 864 LANG_MIN_DURATION,INT(2),
862 "trigger stop postrec",trig_durations_conf,UNUSED}, 865 "trigger stop postrec",trig_durations_conf,UNUSED},
863 {F_T_INT|F_RECSETTING,&global_settings.rec_stop_gap, 866 {F_T_INT|F_RECSETTING,&global_settings.rec_stop_gap,
864 LANG_RECORD_STOP_GAP,INT(1), 867 LANG_RECORD_STOP_GAP,INT(1),
865 "trigger min gap",trig_durations_conf,UNUSED}, 868 "trigger min gap",trig_durations_conf,UNUSED},
866 {F_T_INT|F_RECSETTING,&global_settings.rec_trigger_mode, 869 {F_T_INT|F_RECSETTING,&global_settings.rec_trigger_mode,
867 LANG_RECORD_TRIGGER_MODE,INT(0), 870 LANG_RECORD_TRIGGER,INT(0),
868 "trigger mode","off,once,repeat",UNUSED}, 871 "trigger mode","off,once,repeat",UNUSED},
869#endif /* HAVE_RECORDING */ 872#endif /* HAVE_RECORDING */
870 873
@@ -961,19 +964,19 @@ const struct settings_list settings[] = {
961 UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, 964 UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP,
962 eq_q_format, NULL, NULL), 965 eq_q_format, NULL, NULL),
963 /* -240..240 (or -24db to +24db) */ 966 /* -240..240 (or -24db to +24db) */
964 INT_SETTING(0, eq_band0_gain, LANG_EQUALIZER_BAND_GAIN, 0, "eq band 0 gain", 967 INT_SETTING(0, eq_band0_gain, LANG_GAIN, 0, "eq band 0 gain",
965 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP, 968 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP,
966 eq_gain_format, NULL, NULL), 969 eq_gain_format, NULL, NULL),
967 INT_SETTING(0, eq_band1_gain, LANG_EQUALIZER_BAND_GAIN, 0, "eq band 1 gain", 970 INT_SETTING(0, eq_band1_gain, LANG_GAIN, 0, "eq band 1 gain",
968 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP, 971 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP,
969 eq_gain_format, NULL, NULL), 972 eq_gain_format, NULL, NULL),
970 INT_SETTING(0, eq_band2_gain, LANG_EQUALIZER_BAND_GAIN, 0, "eq band 2 gain", 973 INT_SETTING(0, eq_band2_gain, LANG_GAIN, 0, "eq band 2 gain",
971 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP, 974 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP,
972 eq_gain_format, NULL, NULL), 975 eq_gain_format, NULL, NULL),
973 INT_SETTING(0, eq_band3_gain, LANG_EQUALIZER_BAND_GAIN, 0, "eq band 3 gain", 976 INT_SETTING(0, eq_band3_gain, LANG_GAIN, 0, "eq band 3 gain",
974 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP, 977 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP,
975 eq_gain_format, NULL, NULL), 978 eq_gain_format, NULL, NULL),
976 INT_SETTING(0, eq_band4_gain, LANG_EQUALIZER_BAND_GAIN, 0, "eq band 4 gain", 979 INT_SETTING(0, eq_band4_gain, LANG_GAIN, 0, "eq band 4 gain",
977 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP, 980 UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP,
978 eq_gain_format, NULL, NULL), 981 eq_gain_format, NULL, NULL),
979 982
@@ -993,9 +996,10 @@ const struct settings_list settings[] = {
993 OFFON_SETTING(0,tagcache_autoupdate, 996 OFFON_SETTING(0,tagcache_autoupdate,
994 LANG_TAGCACHE_AUTOUPDATE,false,"tagcache_autoupdate",NULL), 997 LANG_TAGCACHE_AUTOUPDATE,false,"tagcache_autoupdate",NULL),
995#endif 998#endif
996#ifdef HAVE_LCD_BITMAP
997 CHOICE_SETTING(0, default_codepage, LANG_DEFAULT_CODEPAGE, 0, 999 CHOICE_SETTING(0, default_codepage, LANG_DEFAULT_CODEPAGE, 0,
998 "default codepage", /* The order must match with that in unicode.c */ 1000 "default codepage",
1001#ifdef HAVE_LCD_BITMAP
1002 /* The order must match with that in unicode.c */
999 "iso8859-1,iso8859-7,iso8859-8,cp1251,iso8859-11,cp1256," 1003 "iso8859-1,iso8859-7,iso8859-8,cp1251,iso8859-11,cp1256,"
1000 "iso8859-9,iso8859-2,sjis,gb2312,ksx1001,big5,utf-8", 1004 "iso8859-9,iso8859-2,sjis,gb2312,ksx1001,big5,utf-8",
1001 set_codepage, 13, 1005 set_codepage, 13,
@@ -1007,15 +1011,13 @@ const struct settings_list settings[] = {
1007 ID2P(LANG_CODEPAGE_KOREAN), ID2P(LANG_CODEPAGE_TRADITIONAL), 1011 ID2P(LANG_CODEPAGE_KOREAN), ID2P(LANG_CODEPAGE_TRADITIONAL),
1008 ID2P(LANG_CODEPAGE_UTF8)), 1012 ID2P(LANG_CODEPAGE_UTF8)),
1009#else /* !HAVE_LCD_BITMAP */ 1013#else /* !HAVE_LCD_BITMAP */
1010 CHOICE_SETTING(0, default_codepage, LANG_DEFAULT_CODEPAGE, 0, 1014 /* The order must match with that in unicode.c */
1011 "default codepage", /* The order must match with that in unicode.c */
1012 "iso8859-1,iso8859-7,cp1251,iso8859-9,iso8859-2,utf-8", 1015 "iso8859-1,iso8859-7,cp1251,iso8859-9,iso8859-2,utf-8",
1013 set_codepage, 6, 1016 set_codepage, 6,
1014 ID2P(LANG_CODEPAGE_LATIN1), ID2P(LANG_CODEPAGE_GREEK), 1017 ID2P(LANG_CODEPAGE_LATIN1), ID2P(LANG_CODEPAGE_GREEK),
1015 ID2P(LANG_CODEPAGE_CYRILLIC), ID2P(LANG_CODEPAGE_TURKISH), 1018 ID2P(LANG_CODEPAGE_CYRILLIC), ID2P(LANG_CODEPAGE_TURKISH),
1016 ID2P(LANG_CODEPAGE_LATIN_EXTENDED), ID2P(LANG_CODEPAGE_UTF8)), 1019 ID2P(LANG_CODEPAGE_LATIN_EXTENDED), ID2P(LANG_CODEPAGE_UTF8)),
1017#endif 1020#endif
1018
1019 OFFON_SETTING(0,warnon_erase_dynplaylist, 1021 OFFON_SETTING(0,warnon_erase_dynplaylist,
1020 LANG_WARN_ERASEDYNPLAYLIST_MENU,false, 1022 LANG_WARN_ERASEDYNPLAYLIST_MENU,false,
1021 "warn when erasing dynamic playlist",NULL), 1023 "warn when erasing dynamic playlist",NULL),
@@ -1025,7 +1027,7 @@ const struct settings_list settings[] = {
1025 CHOICE_SETTING(0, backlight_on_button_hold, 1027 CHOICE_SETTING(0, backlight_on_button_hold,
1026 LANG_BACKLIGHT_ON_BUTTON_HOLD, 0, "backlight on button hold", 1028 LANG_BACKLIGHT_ON_BUTTON_HOLD, 0, "backlight on button hold",
1027 "normal,off,on", backlight_set_on_button_hold, 3, 1029 "normal,off,on", backlight_set_on_button_hold, 3,
1028 ID2P(LANG_BACKLIGHT_ON_BUTTON_HOLD_NORMAL), ID2P(LANG_OFF), ID2P(LANG_ON)), 1030 ID2P(LANG_NORMAL), ID2P(LANG_OFF), ID2P(LANG_ON)),
1029#endif 1031#endif
1030 1032
1031#ifdef HAVE_LCD_SLEEP 1033#ifdef HAVE_LCD_SLEEP
@@ -1047,7 +1049,7 @@ const struct settings_list settings[] = {
1047 "eq hardware band 0 cutoff", "80Hz,105Hz,135Hz,175Hz", NULL, 4, 1049 "eq hardware band 0 cutoff", "80Hz,105Hz,135Hz,175Hz", NULL, 4,
1048 TALK_ID(80, UNIT_HERTZ), TALK_ID(105, UNIT_HERTZ), 1050 TALK_ID(80, UNIT_HERTZ), TALK_ID(105, UNIT_HERTZ),
1049 TALK_ID(135, UNIT_HERTZ), TALK_ID(175, UNIT_HERTZ)), 1051 TALK_ID(135, UNIT_HERTZ), TALK_ID(175, UNIT_HERTZ)),
1050 INT_SETTING(0, eq_hw_band0_gain, LANG_EQUALIZER_BAND_GAIN, 0, 1052 INT_SETTING(0, eq_hw_band0_gain, LANG_GAIN, 0,
1051 "eq hardware band 0 gain", UNIT_DB, EQ_HW_GAIN_MIN, 1053 "eq hardware band 0 gain", UNIT_DB, EQ_HW_GAIN_MIN,
1052 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL), 1054 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL),
1053 1055
@@ -1059,7 +1061,7 @@ const struct settings_list settings[] = {
1059 "eq hardware band 1 bandwidth", "narrow,wide", NULL, 2, 1061 "eq hardware band 1 bandwidth", "narrow,wide", NULL, 2,
1060 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW), 1062 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW),
1061 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE)), 1063 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE)),
1062 INT_SETTING(0, eq_hw_band1_gain, LANG_EQUALIZER_BAND_GAIN, 0, 1064 INT_SETTING(0, eq_hw_band1_gain, LANG_GAIN, 0,
1063 "eq hardware band 1 gain", UNIT_DB, EQ_HW_GAIN_MIN, 1065 "eq hardware band 1 gain", UNIT_DB, EQ_HW_GAIN_MIN,
1064 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL), 1066 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL),
1065 1067
@@ -1071,7 +1073,7 @@ const struct settings_list settings[] = {
1071 "eq hardware band 2 bandwidth", "narrow,wide", NULL, 2, 1073 "eq hardware band 2 bandwidth", "narrow,wide", NULL, 2,
1072 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW), 1074 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW),
1073 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE)), 1075 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE)),
1074 INT_SETTING(0, eq_hw_band2_gain, LANG_EQUALIZER_BAND_GAIN, 0, 1076 INT_SETTING(0, eq_hw_band2_gain, LANG_GAIN, 0,
1075 "eq hardware band 2 gain", UNIT_DB, EQ_HW_GAIN_MIN, 1077 "eq hardware band 2 gain", UNIT_DB, EQ_HW_GAIN_MIN,
1076 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL), 1078 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL),
1077 1079
@@ -1083,7 +1085,7 @@ const struct settings_list settings[] = {
1083 "eq hardware band 3 bandwidth", "narrow,wide", NULL, 2, 1085 "eq hardware band 3 bandwidth", "narrow,wide", NULL, 2,
1084 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW), 1086 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW),
1085 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE)), 1087 ID2P(LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE)),
1086 INT_SETTING(0, eq_hw_band3_gain, LANG_EQUALIZER_BAND_GAIN, 0, 1088 INT_SETTING(0, eq_hw_band3_gain, LANG_GAIN, 0,
1087 "eq hardware band 3 gain", UNIT_DB, EQ_HW_GAIN_MIN, 1089 "eq hardware band 3 gain", UNIT_DB, EQ_HW_GAIN_MIN,
1088 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL), 1090 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL),
1089 1091
@@ -1091,7 +1093,7 @@ const struct settings_list settings[] = {
1091 "eq hardware band 4 cutoff", "5.3kHz,6.9kHz,9kHz,11.7kHz", NULL, 4, 1093 "eq hardware band 4 cutoff", "5.3kHz,6.9kHz,9kHz,11.7kHz", NULL, 4,
1092 TALK_ID(5300, UNIT_HERTZ), TALK_ID(6900, UNIT_HERTZ), 1094 TALK_ID(5300, UNIT_HERTZ), TALK_ID(6900, UNIT_HERTZ),
1093 TALK_ID(9000, UNIT_HERTZ), TALK_ID(11700, UNIT_HERTZ)), 1095 TALK_ID(9000, UNIT_HERTZ), TALK_ID(11700, UNIT_HERTZ)),
1094 INT_SETTING(0, eq_hw_band4_gain, LANG_EQUALIZER_BAND_GAIN, 0, 1096 INT_SETTING(0, eq_hw_band4_gain, LANG_GAIN, 0,
1095 "eq hardware band 4 gain", UNIT_DB, EQ_HW_GAIN_MIN, 1097 "eq hardware band 4 gain", UNIT_DB, EQ_HW_GAIN_MIN,
1096 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL), 1098 EQ_HW_GAIN_MAX, EQ_HW_GAIN_STEP, eq_hw_gain_format, NULL, NULL),
1097#endif 1099#endif
@@ -1100,7 +1102,7 @@ const struct settings_list settings[] = {
1100 "hold_lr_for_scroll_in_list",NULL), 1102 "hold_lr_for_scroll_in_list",NULL),
1101 CHOICE_SETTING(0, show_path_in_browser, LANG_SHOW_PATH, SHOW_PATH_OFF, 1103 CHOICE_SETTING(0, show_path_in_browser, LANG_SHOW_PATH, SHOW_PATH_OFF,
1102 "show path in browser", "off,current directory,full path", NULL, 3, 1104 "show path in browser", "off,current directory,full path", NULL, 3,
1103 ID2P(LANG_OFF), ID2P(LANG_SHOW_PATH_CURRENT), ID2P(LANG_SHOW_PATH_FULL)), 1105 ID2P(LANG_OFF), ID2P(LANG_SHOW_PATH_CURRENT), ID2P(LANG_DISPLAY_FULL_PATH)),
1104 1106
1105#ifdef HAVE_AGC 1107#ifdef HAVE_AGC
1106 {F_T_INT,&global_settings.rec_agc_preset_mic,LANG_RECORD_AGC_PRESET,INT(1), 1108 {F_T_INT,&global_settings.rec_agc_preset_mic,LANG_RECORD_AGC_PRESET,INT(1),
@@ -1120,16 +1122,16 @@ const struct settings_list settings[] = {
1120 CHOICE_SETTING(0, remote_backlight_on_button_hold, 1122 CHOICE_SETTING(0, remote_backlight_on_button_hold,
1121 LANG_BACKLIGHT_ON_BUTTON_HOLD, 0, "remote backlight on button hold", 1123 LANG_BACKLIGHT_ON_BUTTON_HOLD, 0, "remote backlight on button hold",
1122 "normal,off,on", remote_backlight_set_on_button_hold, 3, 1124 "normal,off,on", remote_backlight_set_on_button_hold, 3,
1123 ID2P(LANG_BACKLIGHT_ON_BUTTON_HOLD_NORMAL), ID2P(LANG_OFF), ID2P(LANG_ON)), 1125 ID2P(LANG_NORMAL), ID2P(LANG_OFF), ID2P(LANG_ON)),
1124#endif 1126#endif
1125#endif 1127#endif
1126#ifdef HAVE_HEADPHONE_DETECTION 1128#ifdef HAVE_HEADPHONE_DETECTION
1127 CHOICE_SETTING(0, unplug_mode, LANG_UNPLUG, 0, 1129 CHOICE_SETTING(0, unplug_mode, LANG_HEADPHONE_UNPLUG, 0,
1128 "pause on headphone unplug", "off,pause,pause and resume", NULL, 3, 1130 "pause on headphone unplug", "off,pause,pause and resume", NULL, 3,
1129 ID2P(LANG_OFF), ID2P(LANG_PAUSE), ID2P(LANG_UNPLUG_RESUME)), 1131 ID2P(LANG_OFF), ID2P(LANG_PAUSE), ID2P(LANG_HEADPHONE_UNPLUG_RESUME)),
1130 INT_SETTING(0, unplug_rw, LANG_UNPLUG_RW, 0, "rewind duration on pause", 1132 INT_SETTING(0, unplug_rw, LANG_HEADPHONE_UNPLUG_RW, 0, "rewind duration on pause",
1131 UNIT_SEC, 0, 15, 1, NULL, NULL,NULL) , 1133 UNIT_SEC, 0, 15, 1, NULL, NULL,NULL) ,
1132 OFFON_SETTING(0,unplug_autoresume,LANG_UNPLUG_DISABLE_AUTORESUME,false, 1134 OFFON_SETTING(0,unplug_autoresume,LANG_HEADPHONE_UNPLUG_RESUME,false,
1133 "disable autoresume if phones not present",NULL), 1135 "disable autoresume if phones not present",NULL),
1134#endif 1136#endif
1135#if CONFIG_TUNER 1137#if CONFIG_TUNER
@@ -1192,7 +1194,7 @@ const struct settings_list settings[] = {
1192#endif 1194#endif
1193 ID2P(LANG_PREVIOUS_SCREEN), ID2P(LANG_MAIN_MENU), 1195 ID2P(LANG_PREVIOUS_SCREEN), ID2P(LANG_MAIN_MENU),
1194 ID2P(LANG_DIR_BROWSER), ID2P(LANG_TAGCACHE), 1196 ID2P(LANG_DIR_BROWSER), ID2P(LANG_TAGCACHE),
1195 ID2P(LANG_RESUME_PLAYBACK), ID2P(LANG_SETTINGS_MENU), 1197 ID2P(LANG_RESUME_PLAYBACK), ID2P(LANG_SETTINGS),
1196#ifdef HAVE_RECORDING 1198#ifdef HAVE_RECORDING
1197 ID2P(LANG_RECORDING), 1199 ID2P(LANG_RECORDING),
1198#endif 1200#endif
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 06150c1f26..22b7125701 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -916,12 +916,7 @@ static bool show_search_progress(bool init, int count)
916 if (current_tick - last_tick > HZ/4) 916 if (current_tick - last_tick > HZ/4)
917 { 917 {
918 gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG), count, 918 gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG), count,
919#if CONFIG_KEYPAD == PLAYER_PAD 919 str(LANG_OFF_ABORT));
920 str(LANG_STOP_ABORT)
921#else
922 str(LANG_OFF_ABORT)
923#endif
924 );
925 if (action_userabort(TIMEOUT_NOBLOCK)) 920 if (action_userabort(TIMEOUT_NOBLOCK))
926 return false; 921 return false;
927 last_tick = current_tick; 922 last_tick = current_tick;
@@ -1604,7 +1599,7 @@ bool tagtree_insert_selection_playlist(int position, bool queue)
1604 } 1599 }
1605 1600
1606 if (tc->filesindir <= 0) 1601 if (tc->filesindir <= 0)
1607 gui_syncsplash(HZ, str(LANG_END_PLAYLIST_PLAYER)); 1602 gui_syncsplash(HZ, str(LANG_END_PLAYLIST));
1608 else 1603 else
1609 { 1604 {
1610 logf("insert_all_playlist"); 1605 logf("insert_all_playlist");
diff --git a/apps/talk.c b/apps/talk.c
index 1610fa95ec..89ab3901c4 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -95,6 +95,7 @@ struct clip_entry /* one entry of the index table */
95struct voicefile /* file format of our voice file */ 95struct voicefile /* file format of our voice file */
96{ 96{
97 int version; /* version of the voicefile */ 97 int version; /* version of the voicefile */
98 int target_id; /* the rockbox target the file was made for */
98 int table; /* offset to index table, (=header size) */ 99 int table; /* offset to index table, (=header size) */
99 int id1_max; /* number of "normal" clips contained in above index */ 100 int id1_max; /* number of "normal" clips contained in above index */
100 int id2_max; /* number of "voice only" clips contained in above index */ 101 int id2_max; /* number of "voice only" clips contained in above index */
@@ -197,6 +198,11 @@ static void load_voicefile(void)
197 { 198 {
198 p_voicefile = (struct voicefile*)audiobuf; 199 p_voicefile = (struct voicefile*)audiobuf;
199 200
201 if (p_voicefile->target_id != TARGET_ID)
202 {
203 logf("Incompatible voice file (wrong target)");
204 goto load_err;
205 }
200#if CONFIG_CODEC != SWCODEC 206#if CONFIG_CODEC != SWCODEC
201 /* MASCODEC: now use audiobuf for voice then thumbnail */ 207 /* MASCODEC: now use audiobuf for voice then thumbnail */
202 p_thumbnail = audiobuf + file_size; 208 p_thumbnail = audiobuf + file_size;
diff --git a/apps/tree.c b/apps/tree.c
index 9341f81421..e795cb9b0f 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -1330,10 +1330,10 @@ void tree_restore(void)
1330 FOR_NB_SCREENS(i) 1330 FOR_NB_SCREENS(i)
1331 { 1331 {
1332 screens[i].putsxy((LCD_WIDTH/2) - 1332 screens[i].putsxy((LCD_WIDTH/2) -
1333 ((strlen(str(LANG_DIRCACHE_BUILDING)) * 1333 ((strlen(str(LANG_SCANNING_DISK)) *
1334 screens[i].char_width)/2), 1334 screens[i].char_width)/2),
1335 LCD_HEIGHT-screens[i].char_height*3, 1335 LCD_HEIGHT-screens[i].char_height*3,
1336 str(LANG_DIRCACHE_BUILDING)); 1336 str(LANG_SCANNING_DISK));
1337 gui_textarea_update(&screens[i]); 1337 gui_textarea_update(&screens[i]);
1338 } 1338 }
1339 1339