Index: tools/genlang
===================================================================
--- tools/genlang (revision 12584)
+++ tools/genlang (working copy)
@@ -11,7 +11,7 @@
#
# binary version for the binary lang file
-my $langversion = 3; # 3 was the latest one used in the v1 format
+my $langversion = 4; # 3 was the latest one used in the v1 format
# A note for future users and readers: The original v1 language system allowed
# the build to create and use a different language than english built-in. We
Index: apps/playlist.c
===================================================================
--- apps/playlist.c (revision 12584)
+++ apps/playlist.c (working copy)
@@ -484,7 +484,7 @@
lcd_setmargins(0, 0);
#endif
- gui_syncsplash(0, true, str(LANG_PLAYLIST_LOAD));
+ gui_syncsplash(0, true, str(LANG_WAIT));
if (!buffer)
{
@@ -1663,13 +1663,7 @@
lcd_setmargins(0, 0);
#endif
- gui_syncsplash(0, true, fmt, count,
-#if CONFIG_KEYPAD == PLAYER_PAD
- str(LANG_STOP_ABORT)
-#else
- str(LANG_OFF_ABORT)
-#endif
- );
+ gui_syncsplash(0, true, fmt, count, str(LANG_OFF_ABORT));
}
/*
@@ -1991,12 +1985,7 @@
{
gui_syncsplash(0, true, str(LANG_LOADING_PERCENT),
(total_read+count)*100/control_file_size,
-#if CONFIG_KEYPAD == PLAYER_PAD
- str(LANG_STOP_ABORT)
-#else
- str(LANG_OFF_ABORT)
-#endif
- );
+ str(LANG_OFF_ABORT));
if (action_userabort(TIMEOUT_NOBLOCK))
{
/* FIXME:
Index: apps/screens.c
===================================================================
--- apps/screens.c (revision 12584)
+++ apps/screens.c (working copy)
@@ -392,7 +392,7 @@
if (display->nb_lines < 4) /* very small screen, just show the pitch value */
{
- w = snprintf((char *)buf, sizeof(buf), "%s: %d.%d%%",str(LANG_SYSFONT_PITCH),
+ w = snprintf((char *)buf, sizeof(buf), "%s: %d.%d%%",str(LANG_PITCH),
pitch / 10, pitch % 10 );
display->putsxy((display->width-(w*display->char_width))/2,
display->nb_lines/2,buf);
@@ -402,9 +402,9 @@
/* UP: Pitch Up */
if (pitch_mode == PITCH_MODE_ABSOLUTE) {
- ptr = str(LANG_SYSFONT_PITCH_UP);
+ ptr = str(LANG_PITCH_UP);
} else {
- ptr = str(LANG_SYSFONT_PITCH_UP_SEMITONE);
+ ptr = str(LANG_PITCH_UP_SEMITONE);
}
display->getstringsize(ptr,&w,&h);
display->putsxy((display->width-w)/2, 0, ptr);
@@ -413,9 +413,9 @@
/* DOWN: Pitch Down */
if (pitch_mode == PITCH_MODE_ABSOLUTE) {
- ptr = str(LANG_SYSFONT_PITCH_DOWN);
+ ptr = str(LANG_PITCH_DOWN);
} else {
- ptr = str(LANG_SYSFONT_PITCH_DOWN_SEMITONE);
+ ptr = str(LANG_PITCH_DOWN_SEMITONE);
}
display->getstringsize(ptr,&w,&h);
display->putsxy((display->width-w)/2, display->height - h, ptr);
@@ -437,7 +437,7 @@
w+1, (display->height-h)/2, 7, 8);
/* "Pitch" */
- snprintf((char *)buf, sizeof(buf), str(LANG_SYSFONT_PITCH));
+ snprintf((char *)buf, sizeof(buf), str(LANG_PITCH));
display->getstringsize(buf,&w,&h);
display->putsxy((display->width-w)/2, (display->height/2)-h, buf);
/* "XX.X%" */
@@ -650,14 +650,14 @@
[1]={ STR(LANG_SYSFONT_ON) }
};
static const struct opt_items bottom_items[] = {
- [SHOW_ALL]={ STR(LANG_SYSFONT_FILTER_ALL) },
+ [SHOW_ALL]={ STR(LANG_SYSFONT_ALL) },
[SHOW_SUPPORTED]={ STR(LANG_SYSFONT_FILTER_SUPPORTED) },
[SHOW_MUSIC]={ STR(LANG_SYSFONT_FILTER_MUSIC) },
[SHOW_PLAYLIST]={ STR(LANG_SYSFONT_FILTER_PLAYLIST) },
};
static const struct opt_items right_items[] = {
[REPEAT_OFF]={ STR(LANG_SYSFONT_OFF) },
- [REPEAT_ALL]={ STR(LANG_SYSFONT_REPEAT_ALL) },
+ [REPEAT_ALL]={ STR(LANG_SYSFONT_ALL) },
[REPEAT_ONE]={ STR(LANG_SYSFONT_REPEAT_ONE) },
[REPEAT_SHUFFLE]={ STR(LANG_SYSFONT_SHUFFLE) },
#ifdef AB_REPEAT_ENABLE
@@ -992,7 +992,7 @@
line_height);
lcd_set_drawmode(DRMODE_SOLID);
- lcd_puts(0, 4, str(LANG_TIME_SET));
+ lcd_puts(0, 4, str(LANG_TIME_SET_BUTTON));
lcd_puts(0, 5, str(LANG_TIME_REVERT));
#ifdef HAVE_LCD_BITMAP
gui_syncstatusbar_draw(&statusbars, true);
@@ -1134,7 +1134,7 @@
LANG_ID3_LENGTH,
LANG_ID3_PLAYLIST,
LANG_ID3_BITRATE,
- LANG_ID3_FRECUENCY,
+ LANG_ID3_FREQUENCY,
#if CONFIG_CODEC == SWCODEC
LANG_ID3_TRACK_GAIN,
LANG_ID3_ALBUM_GAIN,
@@ -1206,7 +1206,7 @@
id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) "");
info=buffer;
break;
- case 11:/*LANG_ID3_FRECUENCY*/
+ case 11:/*LANG_ID3_FREQUENCY*/
snprintf(buffer, MAX_PATH, "%ld Hz", id3->frequency);
info=buffer;
break;
@@ -1255,6 +1255,7 @@
}
#if 0 /* Currently unused */
+ / * NOTE: the LANG_RATING string has been removed from english.lang */
bool set_rating(void)
{
struct mp3entry* id3 = audio_current_track();
Index: apps/main_menu.c
===================================================================
--- apps/main_menu.c (revision 12584)
+++ apps/main_menu.c (working copy)
@@ -92,7 +92,7 @@
/* recording menu */
static const struct menu_item items[] = {
- { ID2P(LANG_RECORDING_MENU), rec_menu_recording_screen },
+ { ID2P(LANG_RECORDING), rec_menu_recording_screen },
{ ID2P(LANG_RECORDING_SETTINGS), recording_settings},
};
@@ -152,13 +152,13 @@
items[i++].function = rec_menu;
#endif
- items[i].desc = ID2P(LANG_PLAYLIST_MENU);
+ items[i].desc = ID2P(LANG_PLAYLISTS);
items[i++].function = playlist_menu;
items[i].desc = ID2P(LANG_PLUGINS);
items[i++].function = plugin_browse;
- items[i].desc = ID2P(LANG_INFO);
+ items[i].desc = ID2P(LANG_SYSTEM);
items[i++].function = info_menu;
#ifdef HAVE_LCD_CHARCELLS
Index: apps/action.c
===================================================================
--- apps/action.c (revision 12584)
+++ apps/action.c (working copy)
@@ -131,7 +131,7 @@
{
last_button = BUTTON_NONE;
keys_locked = false;
- gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_OFF_PLAYER));
+ gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_OFF));
return ACTION_REDRAW;
}
else
@@ -140,7 +140,7 @@
#endif
{
if ((button&BUTTON_REL))
- gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON_PLAYER));
+ gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON));
return ACTION_REDRAW;
}
}
@@ -180,7 +180,7 @@
unlock_combo = button;
keys_locked = true;
action_signalscreenchange();
- gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON_PLAYER));
+ gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON));
button_clear_queue();
return ACTION_REDRAW;
Index: apps/recorder/radio.c
===================================================================
--- apps/recorder/radio.c (revision 12584)
+++ apps/recorder/radio.c (working copy)
@@ -471,7 +471,7 @@
#ifdef HAS_BUTTONBAR
gui_buttonbar_set(&buttonbar, str(LANG_BUTTONBAR_MENU),
- str(LANG_FM_BUTTONBAR_PRESETS), str(LANG_FM_BUTTONBAR_RECORD));
+ str(LANG_PRESET), str(LANG_FM_BUTTONBAR_RECORD));
#endif
cpu_idle_mode(true);
@@ -698,7 +698,7 @@
}
#ifdef HAS_BUTTONBAR
gui_buttonbar_set(&buttonbar, str(LANG_BUTTONBAR_MENU),
- str(LANG_FM_BUTTONBAR_PRESETS),
+ str(LANG_PRESET),
str(LANG_FM_BUTTONBAR_RECORD));
#endif
update_screen = true;
@@ -729,7 +729,7 @@
#ifdef HAS_BUTTONBAR
gui_buttonbar_set(&buttonbar,
str(LANG_BUTTONBAR_MENU),
- str(LANG_FM_BUTTONBAR_PRESETS),
+ str(LANG_PRESET),
str(LANG_FM_BUTTONBAR_RECORD));
#endif
update_screen = true;
@@ -866,8 +866,8 @@
FOR_NB_SCREENS(i)
screens[i].puts_scroll(0, top_of_screen + 2, buf);
- snprintf(buf, 128, "%s %s", str(LANG_FM_TUNE_MODE),
- radio_mode ? str(LANG_RADIO_PRESET_MODE) :
+ snprintf(buf, 128, "%s %s", str(LANG_MODE),
+ radio_mode ? str(LANG_PRESET) :
str(LANG_RADIO_SCAN_MODE));
FOR_NB_SCREENS(i)
screens[i].puts_scroll(0, top_of_screen + 3, buf);
@@ -1216,7 +1216,7 @@
return ACTION_EXIT_AFTER_THIS_MENUITEM;
return action;
}
-MAKE_MENU(handle_radio_preset_menu, ID2P(LANG_FM_BUTTONBAR_PRESETS),
+MAKE_MENU(handle_radio_preset_menu, ID2P(LANG_PRESET),
radio_preset_callback, Icon_NOICON, &radio_edit_preset_item,
&radio_delete_preset_item);
/* present a list of preset stations */
@@ -1248,7 +1248,7 @@
gui_buttonbar_draw(&buttonbar);
#endif
gui_synclist_init(&lists, presets_get_name, NULL, false, 1);
- gui_synclist_set_title(&lists, str(LANG_FM_BUTTONBAR_PRESETS), NOICON);
+ gui_synclist_set_title(&lists, str(LANG_PRESET), NOICON);
gui_synclist_set_icon_callback(&lists, NULL);
gui_synclist_set_nb_items(&lists, num_presets);
gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset);
@@ -1322,8 +1322,8 @@
{
(void)selected_item;
(void)data;
- snprintf(buffer, MAX_PATH, "%s %s", str(LANG_FM_TUNE_MODE),
- radio_mode ? str(LANG_RADIO_PRESET_MODE) :
+ snprintf(buffer, MAX_PATH, "%s %s", str(LANG_MODE),
+ radio_mode ? str(LANG_PRESET) :
str(LANG_RADIO_SCAN_MODE));
return buffer;
}
@@ -1433,7 +1433,7 @@
return ret;
}
-MENUITEM_FUNCTION(recscreen_item, ID2P(LANG_RECORDING_MENU),
+MENUITEM_FUNCTION(recscreen_item, ID2P(LANG_RECORDING),
fm_recording_screen, NULL, Icon_NOICON);
#endif /* defined(HAVE_FMRADIO_IN) && CONFIG_CODEC == SWCODEC */
@@ -1461,7 +1461,7 @@
#endif /* HAVE_RECORDING */
#endif /* SIMULATOR */
#ifndef FM_PRESET
-MENUITEM_FUNCTION(radio_presets_item, ID2P(LANG_FM_BUTTONBAR_PRESETS),
+MENUITEM_FUNCTION(radio_presets_item, ID2P(LANG_PRESET),
handle_radio_presets, NULL, Icon_NOICON);
#endif
#ifndef FM_PRESET_ADD
Index: apps/recorder/recording.c
===================================================================
--- apps/recorder/recording.c (revision 12584)
+++ apps/recorder/recording.c (working copy)
@@ -1468,7 +1468,7 @@
if(global_settings.rec_source == AUDIO_SRC_MIC)
{
/* Draw MIC recording gain */
- snprintf(buf, sizeof(buf), "%s:%s", str(LANG_SYSFONT_RECORDING_GAIN),
+ snprintf(buf, sizeof(buf), "%s:%s", str(LANG_SYSFONT_GAIN),
fmt_gain(SOUND_MIC_GAIN,
global_settings.rec_mic_gain,
buf2, sizeof(buf2)));
@@ -1858,12 +1858,12 @@
FOR_NB_SCREENS(i)
{
- screens[i].getstringsize(str(LANG_SYSFONT_RECORDING_CHANNELS), &w, &h);
+ screens[i].getstringsize(str(LANG_SYSFONT_CHANNELS), &w, &h);
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2,
- str(LANG_SYSFONT_RECORDING_CHANNELS));
- screens[i].getstringsize(str(LANG_SYSFONT_F2_MODE), &w, &h);
+ str(LANG_SYSFONT_CHANNELS));
+ screens[i].getstringsize(str(LANG_SYSFONT_MODE), &w, &h);
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h,
- str(LANG_SYSFONT_F2_MODE));
+ str(LANG_SYSFONT_MODE));
screens[i].getstringsize(ptr, &w, &h);
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2, ptr);
screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastForward],
@@ -1936,7 +1936,7 @@
char *src_str[] =
{
str(LANG_SYSFONT_RECORDING_SRC_MIC),
- str(LANG_SYSFONT_RECORDING_SRC_LINE),
+ str(LANG_SYSFONT_LINE_IN),
str(LANG_SYSFONT_RECORDING_SRC_DIGITAL)
};
struct audio_recording_options rec_options;
Index: apps/language.h
===================================================================
--- apps/language.h (revision 12584)
+++ apps/language.h (working copy)
@@ -22,7 +22,7 @@
/* both these must match the two initial bytes in the binary lang file */
#define LANGUAGE_COOKIE 0x1a
-#define LANGUAGE_VERSION 0x03
+#define LANGUAGE_VERSION 0x04
/* Initialize language array with the builtin strings */
void lang_init(void);
Index: apps/Makefile
===================================================================
--- apps/Makefile (revision 12584)
+++ apps/Makefile (working copy)
@@ -195,9 +195,25 @@
include $(TOOLSDIR)/make.inc
-$(OBJDIR)/lang.o: lang/$(LANGUAGE).lang
- @mkdir -p $(dir $@)
- $(call PRINTS,GENLANG)perl -s $(TOOLSDIR)/genlang -p=$(BUILDDIR)/lang -t=$(ARCHOS) $<
+# apps/features.txt is a file that (is preprocessed and) lists named features
+# based on defines in the config-*.h files. The named features will be passed
+# to genlang and thus (translated) phrases can be used based on those names.
+#
+$(OBJDIR)/features: features.txt
+ $(SILENT)cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
+ $(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \
+ grep -v "^\#" > $@; \
+ echo "" >/dev/null
+
+$(OBJDIR)/lang.o: lang/$(LANGUAGE).lang $(OBJDIR)/features
+ $(SILENT)mkdir -p `dirname $@`
+ $(SILENT)for f in `cat $(OBJDIR)/features`; do \
+ if test -n "$$feat"; then \
+ feat="$$feat:"; \
+ fi; \
+ feat="$$feat$$f"; \
+ done; \
+ perl -s $(TOOLSDIR)/genlang -p=$(BUILDDIR)/lang -t=$(ARCHOS):$$feat $<
$(call PRINTS,CC lang.c)$(CC) $(CFLAGS) -c $(BUILDDIR)/lang.c -o $@
clean:
Index: apps/tree.c
===================================================================
--- apps/tree.c (revision 12584)
+++ apps/tree.c (working copy)
@@ -134,7 +134,7 @@
{ "kbd", TREE_ATTR_KBD, Icon_Keyboard, VOICE_EXT_KBD },
#endif
{ "bmark",TREE_ATTR_BMARK, Icon_Bookmark, VOICE_EXT_BMARK },
- { "cue", TREE_ATTR_CUE, Icon_Bookmark, LANG_CUESHEET },
+ { "cue", TREE_ATTR_CUE, Icon_Bookmark, VOICE_EXT_CUESHEET },
#ifdef BOOTFILE_EXT
{ BOOTFILE_EXT, TREE_ATTR_MOD, Icon_Firmware, VOICE_EXT_AJZ },
#endif /* #ifndef SIMULATOR */
@@ -1391,10 +1391,10 @@
FOR_NB_SCREENS(i)
{
screens[i].putsxy((LCD_WIDTH/2) -
- ((strlen(str(LANG_DIRCACHE_BUILDING)) *
+ ((strlen(str(LANG_SCANNING_DISK)) *
screens[i].char_width)/2),
LCD_HEIGHT-screens[i].char_height*3,
- str(LANG_DIRCACHE_BUILDING));
+ str(LANG_SCANNING_DISK));
gui_textarea_update(&screens[i]);
}
Index: apps/lang/english.lang
===================================================================
--- apps/lang/english.lang (revision 12585)
+++ apps/lang/english.lang (working copy)
@@ -29,6 +29,47 @@
# when doing updates etc, while the ones are used when this file is
# used to simply get the full set of english strings for a particular target.
#
+# All phrases have a default string like: *: "default" that will be used if no
+# other string matches for the particular model you build the language for. If
+# you want a particular string for the iriver h300 series you'd write it like:
+# h300: "h300-specific string" (and of couse use the default string too on the
+# line below). If your string isn't used for all targets set the default to
+# none like: *: NONE this will not include the string for target that will not
+# need it (see apps/features.txt for available categories that can be used
+# instead of the target name, for example: swcodec: "swcodec-specific string".
+#
+#
+# The target names used are picked from the configure script and are set in the
+# ARCHOS variable in the root makefile. Currently, they are:
+# Target Target string
+# Archos
+# Player/Studio player
+# Recorder recorder
+# FM Recorder fmrecorder
+# Recorder V2 recorderv2
+# Ondio SP ondiosp
+# Ondio FM ondiofm
+# iriver
+# H100/H110/H115 h100
+# H120/H140 h120
+# H320/H340 h300
+# H10 h10
+# IFP 7XX ifp7xx
+# iaudio
+# X5 x5
+# ipod
+# All iPods ipod*
+# 4G Color/Photo ipodcolor
+# Nano ipodnano
+# Video (5G) ipodvideo
+# 3G ipod3g
+# 4G gray ipod4g
+# mini ipodmini
+# mini 2G ipodmini2g
+# Toshiba
+# Gigabeat Fxx gigabeatf
+#
+
id: LANG_SET_BOOL_YES
desc: bool true representation
@@ -86,7 +127,7 @@
- id: LANG_RESUME_SETTING_ASK
+ id: LANG_ASK
desc: in settings_menu
user:
@@ -114,1271 +155,1365 @@
- id: LANG_WAIT
- desc: general please wait splash
+ id: LANG_NORMAL
+ desc: in settings_menu
user:
- *: "Loading..."
+ *: "Normal"
- *: "Loading..."
+ *: "Normal"
- *: ""
+ *: "Normal"
- id: LANG_CONFIRM_SHUTDOWN
- desc: in shutdown screen
+ id: LANG_GAIN
+ desc: Generic string for gain used in EQ menu and recording screen
user:
- *: "Press OFF to shut down"
+ *: "Gain"
- *: "Press OFF to shut down"
+ *: "Gain"
- *: ""
+ *: "Gain"
- id: LANG_SHUTTINGDOWN
- desc: in main menu
+ id: LANG_WAIT
+ desc: general please wait splash
user:
- *: "Shutting down..."
+ *: "Loading..."
- *: "Shutting down..."
+ *: "Loading..."
*: ""
- id: LANG_RESTARTING_PLAYBACK
- desc: splash screen displayed when pcm buffer size is changed
+ id: LANG_LOADING_PERCENT
+ desc: splash number of percents loaded
user:
- *: "Restarting playback..."
+ *: "Loading... %d%% done (%s)"
- *: "Restarting playback..."
+ *: "Loading... %d%% done (%s)"
*: ""
- id: LANG_REMOVE_MMC
- desc: before acknowledging usb in case an MMC is inserted (Ondio)
+ id: LANG_SCANNING_DISK
+ desc: when booting up and rebuilding the cache and calculating free space
user:
- *: "Please remove inserted MMC"
+ *: "Scanning disk..."
- *: "Please remove inserted MMC"
+ *: "Scanning disk..."
- *: "Please remove multimedia card"
+ *: ""
- id: LANG_MENU_SETTING_CANCEL
- desc: Visual confirmation of canceling a changed setting
+ id: LANG_SHUTTINGDOWN
+ desc: in main menu
user:
- *: "Canceled"
+ *: "Shutting down..."
- *: "Cancelled"
+ *: "Shutting down..."
*: ""
- id: LANG_FAILED
- desc: Something failed. To be appended after actions
+ id: LANG_PLAYLIST_SHUFFLE
+ desc: displayed on screen while shuffling a playlist
user:
- *: "Failed"
+ *: "Shuffling..."
- *: "Failed"
+ *: "Shuffling..."
*: ""
- id: LANG_BOOKMARK_MENU_RECENT_BOOKMARKS
- desc: in the main menu
+ id: LANG_CANCEL
+ desc: Visual confirmation of canceling a changed setting
user:
- *: "Recent Bookmarks"
+ *: "Cancelled"
- *: "Recent Bookmarks"
+ *: "Cancelled"
- *: "Recent Bookmarks"
+ *: ""
- id: LANG_SOUND_SETTINGS
- desc: in the main menu
+ id: LANG_FAILED
+ desc: Something failed. To be appended after actions
user:
- *: "Sound Settings"
+ *: "Failed"
- *: "Sound Settings"
+ *: "Failed"
- *: "Sound Settings"
+ *: ""
- id: LANG_GENERAL_SETTINGS
- desc: in the main menu
+ id: LANG_CHANNELS
+ desc: in sound_settings
user:
- *: "General Settings"
+ *: "Channels"
- *: "General Settings"
+ *: "Channels"
- *: "General Settings"
+ *: "Channels"
- id: LANG_MANAGE_MENU
- desc: in the main menu
+ id: LANG_RESET_ASK
+ desc: confirm to reset settings
user:
- *: "Manage Settings"
+ *: "Are You Sure?"
- *: "Manage Settings"
+ *: "Are You Sure?"
- *: "Manage Settings"
+ *: ""
- id: LANG_CUSTOM_THEME
- desc: in the main menu
+ id: LANG_CONFIRM_WITH_BUTTON
+ desc: Generic string to use to confirm
user:
- *: "Browse Themes"
+ *: "PLAY = Yes"
+ h100,h120,h300: "NAVI = Yes"
+ ipod*: "SELECT = Yes"
+ x5: "SELECT = Yes"
+ h10: "NEXT = Yes"
+ player: "(PLAY/STOP)"
- *: "Browse Themes"
+ *: "PLAY = Yes"
+ h100,h120,h300: "NAVI = Yes"
+ ipod*: "SELECT = Yes"
+ x5: "SELECT = Yes"
+ h10: "NEXT = Yes"
+ player: "(PLAY/STOP)"
- *: "Browse Themes"
+ *: ""
- id: LANG_FM_RADIO
- desc: in the main menu
+ id: LANG_CANCEL_WITH_ANY
+ desc: Generic string to use to cancel
user:
- *: "FM Radio"
+ *: "Any Other = No"
- *: "FM Radio"
+ *: "Any Other = No"
- *: "FM Radio"
+ *: ""
- id: LANG_RECORDING
- desc: in the main menu
+ id: LANG_ROCKBOX_TITLE
+ desc: main menu title
user:
- *: "Recording"
+ *: "Rockbox"
- *: "Recording"
+ *: "Rockbox"
- *: "Recording"
+ *: "Rockbox"
- id: LANG_PLAYLIST_MENU
+ id: LANG_BOOKMARK_MENU_RECENT_BOOKMARKS
desc: in the main menu
user:
- *: "Playlist"
+ *: "Recent Bookmarks"
- *: "Playlist"
+ *: "Recent Bookmarks"
- *: "Playlist"
+ *: "Recent Bookmarks"
- id: LANG_PLUGINS
- desc: in the main menu
+ id: LANG_DIR_BROWSER
+ desc: main menu title
user:
- *: "Plugins"
+ *: "Files"
- *: "Plugins"
+ *: "Files"
- *: "Plugins"
+ *: "Files"
- id: LANG_INFO
- desc: in the main menu
+ id: LANG_TAGCACHE
+ desc: in the main menu and the settings menu
user:
- *: "System"
+ *: "Database"
- *: "System"
+ *: "Database"
- *: "System"
+ *: "Database"
- id: LANG_SHUTDOWN
- desc: in main menu
+ id: LANG_NOW_PLAYING
+ desc: in the main menu
user:
- *: "Shut down"
+ *: "Now Playing"
- *: "Shut down"
+ *: "Now Playing"
- *: "Shut down"
+ *: "Now Playing"
- id: LANG_VOLUME
- desc: in sound_settings
+ id: LANG_RESUME_PLAYBACK
+ desc: in the main menu
user:
- *: "Volume"
+ *: "Resume Playback"
- *: "Volume"
+ *: "Resume Playback"
- *: "Volume"
+ *: "Resume Playback"
- id: LANG_BASS
- desc: in sound_settings
+ id: LANG_SETTINGS
+ desc: in main menu and visual confirmation after settings reset
user:
- *: "Bass"
+ *: "Settings"
- *: "Bass"
+ *: "Settings"
- *: "Bass"
+ *: "Settings"
- id: LANG_TREBLE
- desc: in sound_settings
+ id: LANG_RECORDING
+ desc: in the main menu
user:
- *: "Treble"
+ *: NONE
+ recording: "Recording"
- *: "Treble"
+ *: NONE
+ recording: "Recording"
- *: "Treble"
+ *: NONE
+ recording: "Recording"
- id: LANG_BALANCE
- desc: in sound_settings
+ id: LANG_FM_RADIO
+ desc: in the main menu
user:
- *: "Balance"
+ *: NONE
+ radio: "FM Radio"
- *: "Balance"
+ *: NONE
+ radio: "FM Radio"
- *: "Balance"
+ *: NONE
+ radio: "FM Radio"
- id: LANG_CHANNEL_MENU
- desc: in sound_settings
+ id: LANG_PLAYLISTS
+ desc: in the main menu and file vew setting
user:
- *: "Channels"
+ *: "Playlists"
- *: "Channels"
+ *: "Playlists"
- *: "Channels"
+ *: "Playlists"
- id: LANG_CHANNEL
- desc: in sound_settings
+ id: LANG_PLUGINS
+ desc: in the main menu
user:
- *: "Channel Configuration"
+ *: "Plugins"
- *: "Channel Configuration"
+ *: "Plugins"
- *: ""
+ *: "Plugins"
- id: LANG_CHANNEL_STEREO
- desc: in sound_settings
+ id: LANG_SYSTEM
+ desc: in the main menu ang settings menu
user:
- *: "Stereo"
+ *: "System"
- *: "Stereo"
+ *: "System"
- *: "Stereo"
+ *: "System"
- id: LANG_CHANNEL_MONO
- desc: in sound_settings
+ id: LANG_BOOKMARK_SELECT_LIST_BOOKMARKS
+ desc: From the auto-load screen, allows user to list all bookmarks
user:
- *: "Mono"
+ *: "Down = List"
- *: "Mono"
+ *: "Down = List"
- *: "Mono"
+ *: ""
- id: LANG_CHANNEL_CUSTOM
- desc: in sound_settings
+ id: LANG_BOOKMARK_SELECT_EXIT
+ desc: From the bookmark list screen, allows user to exit
user:
- *: "Custom"
+ *: "OFF = Exit"
+ h100,h120,h300: "STOP = Exit"
+ ipod*: "PLAY/PAUSE = Exit"
+ x5: "RECORD = Exit"
+ h10: "PREV = Exit"
- *: "Custom"
+ *: "OFF = Exit"
+ h100,h120,h300: "STOP = Exit"
+ ipod*: "PLAY/PAUSE = Exit"
+ x5: "RECORD = Exit"
+ h10: "PREV = Exit"
- *: "Custom"
+ *: ""
- id: LANG_CHANNEL_LEFT
- desc: in sound_settings
+ id: LANG_BOOKMARK
+ desc: Used on the bookmark select window to label bookmark number
user:
- *: "Mono Left"
+ *: "Bookmark"
- *: "Mono Left"
+ *: "Bookmark"
- *: "Mono Left"
+ *: ""
- id: LANG_CHANNEL_RIGHT
- desc: in sound_settings
+ id: LANG_BOOKMARK_SELECT_INDEX_TEXT
+ desc: Used on the bookmark select window to label index number
user:
- *: "Mono Right"
+ *: "Index"
- *: "Mono Right"
+ *: "Index"
- *: "Mono Right"
+ *: "Index"
- id: LANG_CHANNEL_KARAOKE
- desc: in sound_settings
+ id: LANG_BOOKMARK_SELECT_PLAY
+ desc: Used on the bookmark select window to indicated the play option
user:
- *: "Karaoke"
+ *: "PLAY = Select"
+ h100,h120,h300: "NAVI = Select"
+ ipod*: "SELECT = Select"
+ x5: "SELECT = Select"
+ h10: "NEXT = Select"
- *: "Karaoke"
+ *: "PLAY = Select"
+ h100,h120,h300: "NAVI = Select"
+ ipod*: "SELECT = Select"
+ x5: "SELECT = Select"
+ h10: "NEXT = Select"
- *: "Karaoke"
+ *: ""
- id: LANG_STEREO_WIDTH
- desc: in sound_settings
+ id: LANG_BOOKMARK_SELECT_DELETE
+ desc: Used on the bookmark select window to indicated the bookmark delete option
user:
- *: "Stereo Width"
+ *: "ON+Play = Delete"
+ h100,h120,h300: "RECORD = Delete"
+ ipod*: "Long MENU = Delete"
+ x5: "Long RECORD = Delete"
+ h10: "REWIND = Delete"
- *: "Stereo Width"
+ *: "ON+Play = Delete"
+ h100,h120,h300: "RECORD = Delete"
+ ipod*: "Long MENU = Delete"
+ x5: "Long RECORD = Delete"
+ h10: "REWIND = Delete"
- *: "Stereo Width"
+ *: ""
- id: LANG_LOUDNESS
- desc: in sound_settings
+ id: LANG_BOOKMARK_AUTOLOAD_QUERY
+ desc: prompt for user to decide to create a bookmark
user:
- *: "Loudness"
+ *: "Load Last Bookmark?"
- *: "Loudness"
+ *: "Load Last Bookmark?"
- *: "Loudness"
+ *: ""
- id: LANG_AUTOVOL
- desc: in sound_settings
+ id: LANG_AUTO_BOOKMARK_QUERY
+ desc: prompt for user to decide to create an bookmark
user:
- *: "Auto Volume"
+ *: "Create a Bookmark?"
- *: "Auto Volume"
+ *: "Create a Bookmark?"
- *: "Auto Volume"
+ *: ""
- id: LANG_DECAY
- desc: in sound_settings
+ id: LANG_BOOKMARK_CREATE_SUCCESS
+ desc: Indicates bookmark was successfully created
user:
- *: "AV Decay Time"
+ *: "Bookmark Created"
- *: "AV Decay Time"
+ *: "Bookmark Created"
*: ""
- id: LANG_SUPERBASS
- desc: in sound settings
+ id: LANG_BOOKMARK_CREATE_FAILURE
+ desc: Indicates bookmark was not created
user:
- *: "Super Bass"
+ *: "Bookmark Failed!"
- *: "Super Bass"
+ *: "Bookmark Failed!"
- *: "Super Bass"
+ *: ""
- id: LANG_MDB_ENABLE
- desc: in sound settings
+ id: LANG_BOOKMARK_LOAD_EMPTY
+ desc: Indicates bookmark was empty
user:
- *: "MDB Enable"
+ *: "Bookmark Empty"
- *: "MDB Enable"
+ *: "Bookmark Empty"
- *: "MDB Enable"
+ *: ""
- id: LANG_MDB_STRENGTH
- desc: in sound settings
+ id: LANG_SOUND_SETTINGS
+ desc: in the main menu
user:
- *: "MDB Strength"
+ *: "Sound Settings"
- *: "MDB Strength"
+ *: "Sound Settings"
- *: "MDB Strength"
+ *: "Sound Settings"
- id: LANG_MDB_HARMONICS
- desc: in sound settings
+ id: LANG_VOLUME
+ desc: in sound_settings
user:
- *: "MDB Harmonics"
+ *: "Volume"
- *: "MDB Harmonics"
+ *: "Volume"
- *: "MDB Harmonics"
+ *: "Volume"
- id: LANG_MDB_CENTER
- desc: in sound settings
+ id: LANG_BASS
+ desc: in sound_settings
user:
- *: "MDB Center Frequency"
+ *: "Bass"
- *: "MDB Center Frequency"
+ *: "Bass"
- *: "MDB Center Frequency"
+ *: "Bass"
- id: LANG_MDB_SHAPE
- desc: in sound settings
+ id: LANG_TREBLE
+ desc: in sound_settings
user:
- *: "MDB Shape"
+ *: "Treble"
- *: "MDB Shape"
+ *: "Treble"
- *: "MDB Shape"
+ *: "Treble"
- id: LANG_CROSSFEED
- desc: in sound settings
+ id: LANG_BALANCE
+ desc: in sound_settings
user:
- *: "Crossfeed"
+ *: "Balance"
- *: "Crossfeed"
+ *: "Balance"
- *: "Crossfeed"
+ *: "Balance"
- id: LANG_EQUALIZER
- desc: in the sound settings menu
+ id: LANG_CHANNEL
+ desc: in sound_settings
user:
- *: "Equalizer"
+ *: "Channel Configuration"
- *: "Equalizer"
+ *: "Channel Configuration"
- *: "Equalizer"
+ *: ""
- id: LANG_PLAYBACK
- desc: in settings_menu()
+ id: LANG_CHANNEL_STEREO
+ desc: in sound_settings
user:
- *: "Playback"
+ *: "Stereo"
- *: "Playback"
+ *: "Stereo"
- *: "Playback"
+ *: "Stereo"
- id: LANG_FILE
- desc: in settings_menu()
+ id: LANG_CHANNEL_MONO
+ desc: in sound_settings
user:
- *: "File View"
+ *: "Mono"
- *: "File View"
+ *: "Mono"
- *: "File View"
+ *: "Mono"
- id: LANG_DISPLAY
- desc: in settings_menu()
+ id: LANG_CHANNEL_CUSTOM
+ desc: in sound_settings
user:
- *: "Display"
+ *: "Custom"
- *: "Display"
+ *: "Custom"
- *: "Display"
+ *: "Custom"
- id: LANG_SYSTEM
- desc: in settings_menu()
+ id: LANG_CHANNEL_LEFT
+ desc: in sound_settings
user:
- *: "System"
+ *: "Mono Left"
- *: "System"
+ *: "Mono Left"
- *: "System"
+ *: "Mono Left"
- id: LANG_BOOKMARK_SETTINGS
- desc: in general settings
+ id: LANG_CHANNEL_RIGHT
+ desc: in sound_settings
user:
- *: "Bookmarking"
+ *: "Mono Right"
- *: "Bookmarking"
+ *: "Mono Right"
- *: "Bookmarking"
+ *: "Mono Right"
- id: LANG_LANGUAGE
- desc: in settings_menu
+ id: LANG_CHANNEL_KARAOKE
+ desc: in sound_settings
user:
- *: "Language"
+ *: "Karaoke"
- *: "Language"
+ *: "Karaoke"
- *: "Language"
+ *: "Karaoke"
- id: LANG_VOICE
- desc: root of voice menu
+ id: LANG_STEREO_WIDTH
+ desc: in sound_settings
user:
- *: "Voice"
+ *: "Stereo Width"
- *: "Voice"
+ *: "Stereo Width"
- *: "Voice"
+ *: "Stereo Width"
- id: LANG_CUSTOM_CFG
- desc: in setting_menu()
+ id: LANG_CROSSFEED
+ desc: in sound settings
user:
- *: "Browse .cfg files"
+ *: NONE
+ swcodec: "Crossfeed"
- *: "Browse .cfg files"
+ *: NONE
+ swcodec: "Crossfeed"
- *: "Browse configuration files"
+ *: NONE
+ swcodec: "Crossfeed"
- id: LANG_FIRMWARE
- desc: DEPRECATED
+ id: LANG_CROSSFEED_DIRECT_GAIN
+ desc: in crossfeed settings
user:
- *: ""
+ *: NONE
+ swcodec: "Direct Gain"
- *: deprecated
+ *: NONE
+ swcodec: "Direct Gain"
- *: ""
+ *: NONE
+ swcodec: "Direct gain"
- id: LANG_RESET
- desc: in system_settings_menu()
- user:
+ id: LANG_CROSSFEED_CROSS_GAIN
+ desc: in crossfeed settings
- *: "Reset Settings"
+ *: NONE
+ swcodec: "Cross Gain"
- *: "Reset Settings"
+ *: NONE
+ swcodec: "Cross Gain"
- *: "Reset Settings"
+ *: NONE
+ swcodec: "Cross gain"
- id: LANG_RESET_ASK_RECORDER
- desc: confirm to reset settings
- user:
+ id: LANG_CROSSFEED_HF_ATTENUATION
+ desc: in crossfeed settings
- *: "Are You Sure?"
+ *: NONE
+ swcodec: "High-Frequency Attenuation"
- *: "Are You Sure?"
+ *: NONE
+ swcodec: "High-Frequency Attenuation"
- *: ""
+ *: NONE
+ swcodec: "High-frequency attenuation"
- id: LANG_CONFIRM_WITH_PLAY_RECORDER
- desc: Generic recorder string to use to confirm
- user:
+ id: LANG_CROSSFEED_HF_CUTOFF
+ desc: in crossfeed settings
- *: "PLAY = Yes"
- h100,h120,h300: "NAVI = Yes"
- ipod*: "SELECT = Yes"
- x5: "SELECT = Yes"
- h10: "NEXT = Yes"
+ *: NONE
+ swcodec: "High-Frequency Cutoff"
- *: "PLAY = Yes"
- h100,h120,h300: "NAVI = Yes"
- ipod*: "SELECT = Yes"
- x5: "SELECT = Yes"
- h10: "NEXT = Yes"
+ *: NONE
+ swcodec: "High-Frequency Cutoff"
- *: ""
+ *: NONE
+ swcodec: "High-frequency cutoff"
- id: LANG_CANCEL_WITH_ANY_RECORDER
- desc: Generic recorder string to use to cancel
+ id: LANG_EQUALIZER
+ desc: in the sound settings menu
user:
- *: "Any Other = No"
+ *: NONE
+ swcodec: "Equalizer"
- *: "Any Other = No"
+ *: NONE
+ swcodec: "Equalizer"
- *: ""
+ *: NONE
+ swcodec: "Equalizer"
- id: LANG_RESET_DONE_SETTING
- desc: visual confirmation after settings reset
+ id: LANG_EQUALIZER_ENABLED
+ desc: in the equalizer settings menu
user:
- *: "Settings"
+ *: NONE
+ swcodec: "Enable EQ"
- *: "Settings"
+ *: NONE
+ swcodec: "Enable EQ"
- *: ""
+ *: NONE
+ swcodec: "Enable equalizer"
- id: LANG_RESET_DONE_CLEAR
- desc: visual confirmation after settings reset
+ id: LANG_EQUALIZER_GRAPHICAL
+ desc: in the equalizer settings menu
user:
- *: "Cleared"
+ *: NONE
+ swcodec: "Graphical EQ"
- *: "Cleared"
+ *: NONE
+ swcodec: "Graphical EQ"
- *: ""
+ *: NONE
+ swcodec: "Graphical equalizer"
- id: LANG_RESET_DONE_CANCEL
- desc: Visual confirmation of cancelation
+ id: LANG_EQUALIZER_PRECUT
+ desc: in eq settings
user:
- *: "Canceled"
+ *: NONE
+ swcodec: "Precut"
- *: "Cancelled"
+ *: NONE
+ swcodec: "Precut"
- *: ""
+ *: NONE
+ swcodec: "Pre-cut"
- id: LANG_SAVE_SETTINGS
- desc: in system_settings_menu()
+ id: LANG_EQUALIZER_GAIN
+ desc: in the equalizer settings menu
user:
- *: "Write .cfg file"
+ *: NONE
+ swcodec: "Simple EQ Settings"
- *: "Write .cfg file"
+ *: NONE
+ swcodec: "Simple EQ Settings"
- *: "Write configuration file"
+ *: NONE
+ swcodec: "Simple equalizer settings"
- id: LANG_SETTINGS_SAVE_PLAYER
- desc: displayed if save settings has failed
+ id: LANG_EQUALIZER_ADVANCED
+ desc: in the equalizer settings menu
user:
- *: "Save Failed"
+ *: NONE
+ swcodec: "Advanced EQ Settings"
- *: "Save Failed"
+ *: NONE
+ swcodec: "Advanced EQ Settings"
- *: ""
+ *: NONE
+ swcodec: "Advanced equalizer settings"
- id: LANG_SETTINGS_BATTERY_PLAYER
- desc: if save settings has failed
+ id: LANG_EQUALIZER_SAVE
+ desc: in the equalizer settings menu
user:
- *: "Partition?"
+ *: NONE
+ swcodec: "Save EQ Preset"
- *: "Partition?"
+ *: NONE
+ swcodec: "Save EQ Preset"
- *: ""
+ *: NONE
+ swcodec: "Save equalizer preset"
- id: LANG_SETTINGS_SAVE_RECORDER
- desc: displayed if save settings has failed
+ id: LANG_EQUALIZER_BROWSE
+ desc: in the equalizer settings menu
user:
- *: "Save Failed"
+ *: NONE
+ swcodec: "Browse EQ Presets"
- *: "Save Failed"
+ *: NONE
+ swcodec: "Browse EQ Presets"
- *: ""
+ *: NONE
+ swcodec: "Browse equalizer presets"
- id: LANG_SETTINGS_BATTERY_RECORDER
- desc: if save settings has failed
+ id: LANG_EQUALIZER_EDIT_MODE
+ desc: in the equalizer settings menu
user:
- *: "No partition?"
+ *: NONE
+ swcodec: "Edit mode: %s"
- *: "No partition?"
+ *: NONE
+ swcodec: "Edit mode: %s"
- *: ""
+ *: NONE
+ swcodec: ""
- id: LANG_RECORDING_MENU
- desc: in the recording sub menu
- user:
-
- *: "Recording"
-
-
- *: "Recording"
-
-
- *: "Recording"
-
-
-
- id: LANG_RECORDING_SETTINGS
- desc: in the main menu
- user:
-
- *: "Recording Settings"
-
-
- *: "Recording Settings"
-
-
- *: "Recording Settings"
-
-
-
- id: LANG_EQUALIZER_ENABLED
+ id: LANG_EQUALIZER_GAIN_ITEM
desc: in the equalizer settings menu
user:
- *: "Enable EQ"
+ *: NONE
+ swcodec: "%d Hz Band Gain"
- *: "Enable EQ"
+ *: NONE
+ swcodec: "%d Hz Band Gain"
- *: "Enable equalizer"
+ *: NONE
+ swcodec: ""
- id: LANG_EQUALIZER_GRAPHICAL
+ id: LANG_EQUALIZER_BAND_LOW_SHELF
desc: in the equalizer settings menu
user:
- *: "Graphical EQ"
+ *: NONE
+ swcodec: "Low Shelf Filter"
- *: "Graphical EQ"
+ *: NONE
+ swcodec: "Low Shelf Filter"
- *: "Graphical equalizer"
+ *: NONE
+ swcodec: "Low shelf filter"
- id: LANG_EQUALIZER_PRECUT
- desc: in eq settings
- user:
-
- *: "Precut"
-
-
- *: "Precut"
-
-
- *: "Pre-cut"
-
-
-
- id: LANG_EQUALIZER_GAIN
+ id: LANG_EQUALIZER_BAND_PEAK
desc: in the equalizer settings menu
user:
- *: "Simple EQ Settings"
+ *: NONE
+ swcodec: "Peak Filter %d"
- *: "Simple EQ Settings"
+ *: NONE
+ swcodec: "Peak Filter %d"
- *: "Simple equalizer settings"
+ *: NONE
+ swcodec: "Peak filter"
- id: LANG_EQUALIZER_ADVANCED
+ id: LANG_EQUALIZER_BAND_HIGH_SHELF
desc: in the equalizer settings menu
user:
- *: "Advanced EQ Settings"
+ *: NONE
+ swcodec: "High Shelf Filter"
- *: "Advanced EQ Settings"
+ *: NONE
+ swcodec: "High Shelf Filter"
- *: "Advanced equalizer settings"
+ *: NONE
+ swcodec: "High shelf filter"
- id: LANG_EQUALIZER_SAVE
+ id: LANG_EQUALIZER_BAND_CUTOFF
desc: in the equalizer settings menu
user:
- *: "Save EQ Preset"
+ *: NONE
+ swcodec: "Cutoff Frequency"
- *: "Save EQ Preset"
+ *: NONE
+ swcodec: "Cutoff Frequency"
- *: "Save equalizer preset"
+ *: NONE
+ swcodec: "Cutoff Frequency"
- id: LANG_EQUALIZER_BROWSE
+ id: LANG_EQUALIZER_BAND_CENTER
desc: in the equalizer settings menu
user:
- *: "Browse EQ Presets"
+ *: NONE
+ swcodec: "Center Frequency"
- *: "Browse EQ Presets"
+ *: NONE
+ swcodec: "Center Frequency"
- *: "Browse equalizer presets"
+ *: NONE
+ swcodec: "Center frequency"
- id: LANG_EQUALIZER_EDIT_MODE
+ id: LANG_EQUALIZER_BAND_Q
desc: in the equalizer settings menu
user:
- *: "Edit mode: %s"
+ *: NONE
+ swcodec: "Q"
- *: "Edit mode: %s"
+ *: NONE
+ swcodec: "Q"
- *: ""
+ *: NONE
+ swcodec: "Q"
- id: LANG_EQUALIZER_GAIN_ITEM
- desc: in the equalizer settings menu
+ id: LANG_EQUALIZER_HARDWARE
+ desc: in the sound settings menu
user:
- *: "%d Hz Band Gain"
+ *: NONE
+ ipodvideo: "Hardware Equalizer"
- *: "%d Hz Band Gain"
+ *: NONE
+ ipodvideo: "Hardware Equalizer"
- *: ""
+ *: NONE
+ ipodvideo: "Hardware equalizer"
- id: LANG_EQUALIZER_BAND_LOW_SHELF
+ id: LANG_EQUALIZER_HARDWARE_ENABLED
desc: in the equalizer settings menu
user:
- *: "Low Shelf Filter"
+ *: NONE
+ ipodvideo: "Enable Hardware EQ"
- *: "Low Shelf Filter"
+ *: NONE
+ ipodvideo: "Enable Hardware EQ"
- *: "Low shelf filter"
+ *: NONE
+ ipodvideo: "Enable hardware equalizer"
- id: LANG_EQUALIZER_BAND_PEAK
+ id: LANG_EQUALIZER_BANDWIDTH
desc: in the equalizer settings menu
user:
- *: "Peak Filter %d"
+ *: NONE
+ ipodvideo: "Bandwidth"
- *: "Peak Filter %d"
+ *: NONE
+ ipodvideo: "Bandwidth"
- *: "Peak filter"
+ *: NONE
+ ipodvideo: "Bandwidth"
- id: LANG_EQUALIZER_BAND_HIGH_SHELF
+ id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW
desc: in the equalizer settings menu
user:
- *: "High Shelf Filter"
+ *: NONE
+ ipodvideo: "Narrow"
- *: "High Shelf Filter"
+ *: NONE
+ ipodvideo: "Narrow"
- *: "High shelf filter"
+ *: NONE
+ ipodvideo: "Narrow"
- id: LANG_EQUALIZER_BAND_CUTOFF
+ id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE
desc: in the equalizer settings menu
user:
- *: "Cutoff Frequency"
+ *: NONE
+ ipodvideo: "Wide"
- *: "Cutoff Frequency"
+ *: NONE
+ ipodvideo: "Wide"
- *: "Cutoff Frequency"
+ *: NONE
+ ipodvideo: "Wide"
- id: LANG_EQUALIZER_BAND_CENTER
- desc: in the equalizer settings menu
+ id: LANG_DITHERING
+ desc: in the sound settings menu
user:
- *: "Center Frequency"
+ *: NONE
+ swcodec: "Dithering"
- *: "Center Frequency"
+ *: NONE
+ swcodec: "Dithering"
- *: "Center frequency"
+ *: NONE
+ swcodec: "Dithering"
- id: LANG_EQUALIZER_BAND_Q
- desc: in the equalizer settings menu
+ id: LANG_LOUDNESS
+ desc: in sound_settings
user:
- *: "Q"
+ *: NONE
+ hwcodec: "Loudness"
- *: "Q"
+ *: NONE
+ hwcodec: "Loudness"
- *: "Q"
+ *: NONE
+ hwcodec: "Loudness"
- id: LANG_EQUALIZER_BAND_GAIN
- desc: in the equalizer settings menu
+ id: LANG_AUTOVOL
+ desc: in sound_settings
user:
- *: "Gain"
+ *: NONE
+ hwcodec: "Auto Volume"
- *: "Gain"
+ *: NONE
+ hwcodec: "Auto Volume"
- *: "Gain"
+ *: NONE
+ hwcodec: "Auto Volume"
- id: LANG_CREATE_PLAYLIST
- desc: Menu option for creating a playlist
+ id: LANG_DECAY
+ desc: in sound_settings
user:
- *: "Create Playlist"
+ *: NONE
+ hwcodec: "AV Decay Time"
- *: "Create Playlist"
+ *: NONE
+ hwcodec: "AV Decay Time"
- *: "Create Playlist"
+ *: NONE
+ hwcodec: ""
- id: LANG_VIEW_DYNAMIC_PLAYLIST
- desc: in playlist menu.
+ id: LANG_SUPERBASS
+ desc: in sound settings
user:
- *: "View Current Playlist"
+ *: NONE
+ hwcodec: "Super Bass"
- *: "View Current Playlist"
+ *: NONE
+ hwcodec: "Super Bass"
- *: "View Current Playlist"
+ hwcodec: "Super Bass"
- id: LANG_SAVE_DYNAMIC_PLAYLIST
- desc: in playlist menu.
+ id: LANG_MDB_ENABLE
+ desc: in sound settings
user:
- *: "Save Current Playlist"
+ *: NONE
+ hwcodec: "MDB Enable"
- *: "Save Current Playlist"
+ *: NONE
+ hwcodec: "MDB Enable"
- *: "Save Current Playlist"
+ *: NONE
+ hwcodec: "MDB Enable"
- id: LANG_RECURSE_DIRECTORY
- desc: In playlist menu
+ id: LANG_MDB_STRENGTH
+ desc: in sound settings
user:
- *: "Recursively Insert Directories"
+ *: NONE
+ hwcodec: "MDB Strength"
- *: "Recursively Insert Directories"
+ *: NONE
+ hwcodec: "MDB Strength"
- *: "Recursively Insert Directories"
+ *: NONE
+ hwcodec: "MDB Strength"
- id: LANG_WARN_ERASEDYNPLAYLIST_MENU
- desc: in playlist options menu, option to warn when erasing dynamic playlist
+ id: LANG_MDB_HARMONICS
+ desc: in sound settings
user:
- *: "Warn When Erasing Dynamic Playlist"
+ *: NONE
+ hwcodec: "MDB Harmonics"
- *: "Warn When Erasing Dynamic Playlist"
+ *: NONE
+ hwcodec: "MDB Harmonics"
- *: "Warn When Erasing Dynamic Playlist"
+ *: NONE
+ hwcodec: "MDB Harmonics"
- id: LANG_INFO_MENU
- desc: in the info menu
+ id: LANG_MDB_CENTER
+ desc: in sound settings
user:
- *: "Rockbox Info"
+ *: NONE
+ hwcodec: "MDB Center Frequency"
- *: "Rockbox Info"
+ *: NONE
+ hwcodec: "MDB Center Frequency"
- *: "Rockbox Info"
+ *: NONE
+ hwcodec: "MDB Center Frequency"
- id: LANG_VERSION
- desc: in the info menu
+ id: LANG_MDB_SHAPE
+ desc: in sound settings
user:
- *: "Version"
+ *: NONE
+ hwcodec: "MDB Shape"
- *: "Version"
+ *: NONE
+ hwcodec: "MDB Shape"
- *: "Version"
+ *: NONE
+ hwcodec: "MDB Shape"
- id: LANG_DEBUG
- desc: in the info menu
+ id: LANG_GENERAL_SETTINGS
+ desc: in the main menu
user:
- *: "Debug (Keep Out!)"
+ *: "General Settings"
- *: "Debug (Keep Out!)"
+ *: "General Settings"
- *: "Debug, keep out!"
+ *: "General Settings"
- id: LANG_USB
- desc: in the info menu
+ id: LANG_PLAYBACK
+ desc: in settings_menu()
user:
- *: "USB (Sim)"
+ *: "Playback"
- *: "USB (Sim)"
+ *: "Playback"
- *: ""
+ *: "Playback"
@@ -1410,8 +1545,8 @@
- id: LANG_REPEAT_ALL
- desc: repeat playlist once all songs have completed
+ id: LANG_ALL
+ desc: generic string used both in dir file filter and repeat mode selection
user:
*: "All"
@@ -1466,34 +1601,48 @@
- id: LANG_RESUME
- desc: DEPRECATED
+ id: LANG_WIND_MENU
+ desc: in the playback sub menu
user:
- *: ""
+ *: "Fast-Forward/Rewind"
- *: deprecated
+ *: "Fast-Forward/Rewind"
- *: ""
+ *: "Fast forward and Rewind"
- id: LANG_WIND_MENU
- desc: in the playback sub menu
+ id: LANG_FFRW_STEP
+ desc: in settings_menu
user:
- *: "Fast-Forward/Rewind"
+ *: "FF/RW Min Step"
- *: "Fast-Forward/Rewind"
+ *: "FF/RW Min Step"
- *: "Fast forward and Rewind"
+ *: "Minimum Step"
+ id: LANG_FFRW_ACCEL
+ desc: in settings_menu
+ user:
+
+ *: "FF/RW Accel"
+
+
+ *: "FF/RW Accel"
+
+
+ *: "Acceleration"
+
+
+
id: LANG_MP3BUFFER_MARGIN
desc: MP3 buffer margin time
user:
@@ -1540,1839 +1689,1454 @@
desc: in playback settings
user:
- *: "Crossfade"
+ *: NONE
+ swcodec: "Crossfade"
- *: "Crossfade"
+ *: NONE
+ swcodec: "Crossfade"
- *: "Crossfade"
+ *: NONE
+ swcodec: "Crossfade"
- id: LANG_REPLAYGAIN
- desc: in replaygain
+ id: LANG_CROSSFADE_ENABLE
+ desc: in crossfade settings menu
user:
- *: "Replaygain"
+ *: NONE
+ swcodec: "Enable Crossfade"
- *: "Replaygain"
+ *: NONE
+ swcodec: "Enable Crossfade"
- *: "Replaygain"
+ *: NONE
+ swcodec: "Enable Crossfade"
- id: LANG_BEEP
- desc: in playback settings
+ id: LANG_TRACKSKIP
+ desc: in crossfade settings
user:
- *: "Beep Volume"
+ *: NONE
+ swcodec: "Track Skip Only"
- *: "Beep Volume"
+ *: NONE
+ swcodec: "Track Skip Only"
- *: "Beep Volume"
+ *: NONE
+ swcodec: "Track Skip Only"
- id: LANG_WEAK
- desc: in beep volume in playback settings
+ id: LANG_SHUFFLE_TRACKSKIP
+ desc: in settings_menu
user:
- *: "Weak"
+ *: NONE
+ swcodec: "Shuffle and Track Skip"
- *: "Weak"
+ *: NONE
+ swcodec: "Shuffle and Track Skip"
- *: "Weak"
+ *: NONE
+ swcodec: "Shuffle and Track Skip"
- id: LANG_MODERATE
- desc: in beep volume in playback settings
+ id: LANG_CROSSFADE_FADE_IN_DELAY
+ desc: in crossfade settings menu
user:
- *: "Moderate"
+ *: NONE
+ swcodec: "Fade-In Delay"
- *: "Moderate"
+ *: NONE
+ swcodec: "Fade-In Delay"
- *: "Moderate"
+ *: NONE
+ swcodec: "Fade-In Delay"
- id: LANG_STRONG
- desc: in beep volume in playback settings
+ id: LANG_CROSSFADE_FADE_IN_DURATION
+ desc: in crossfade settings menu
user:
- *: "Strong"
+ *: NONE
+ swcodec: "Fade-In Duration"
- *: "Strong"
+ *: NONE
+ swcodec: "Fade-In Duration"
- *: "Strong"
+ *: NONE
+ swcodec: "Fade-In Duration"
- id: LANG_SPDIF_ENABLE
- desc: in playback settings menu. enable/disable the optical out
+ id: LANG_CROSSFADE_FADE_OUT_DELAY
+ desc: in crossfade settings menu
user:
- *: "Optical Output"
+ *: NONE
+ swcodec: "Fade-Out Delay"
- *: "Optical Output"
+ *: NONE
+ swcodec: "Fade-Out Delay"
- *: "Optical Output"
+ *: NONE
+ swcodec: "Fade-Out Delay"
- id: LANG_ID3_ORDER
- desc: in playback settings screen
+ id: LANG_CROSSFADE_FADE_OUT_DURATION
+ desc: in crossfade settings menu
user:
- *: "ID3 Tag Priority"
+ *: NONE
+ swcodec: "Fade-Out Duration"
- *: "ID3 Tag Priority"
+ *: NONE
+ swcodec: "Fade-Out Duration"
- *: "ID3 Tag Priority"
+ *: NONE
+ swcodec: "Fade-Out Duration"
- id: LANG_ID3_V1_FIRST
- desc: in playback settings screen
+ id: LANG_CROSSFADE_FADE_OUT_MODE
+ desc: in crossfade settings menu
user:
- *: "V1 then V2"
+ *: NONE
+ swcodec: "Fade-Out Mode"
- *: "V1 then V2"
+ *: NONE
+ swcodec: "Fade-Out Mode"
- *: "Version 1 then version 2"
+ *: NONE
+ swcodec: "Fade-Out Mode"
- id: LANG_ID3_V2_FIRST
- desc: in playback settings screen
+ id: LANG_MIX
+ desc: in playback settings, crossfade option
user:
- *: "V2 then V1"
+ *: NONE
+ swcodec: "Mix"
- *: "V2 then V1"
+ *: NONE
+ swcodec: "Mix"
- *: "Version 2 then version 1"
+ *: NONE
+ swcodec: "Mix"
- id: LANG_NEXT_FOLDER
- desc: in settings_menu. Should we allow move to next/prev folder from last/first track of current one
+ id: LANG_REPLAYGAIN
+ desc: in replaygain
user:
- *: "Auto-Change Directory"
+ *: NONE
+ swcodec: "Replaygain"
- *: "Auto-Change Directory"
+ *: NONE
+ swcodec: "Replaygain"
- *: "Auto-Change Directory"
+ *: NONE
+ swcodec: "Replaygain"
- id: LANG_TAGCACHE
- desc: in settings menu
+ id: LANG_REPLAYGAIN_ENABLE
+ desc: in replaygain
user:
- *: "Database"
+ *: NONE
+ swcodec: "Enable Replaygain"
- *: "Database"
+ *: NONE
+ swcodec: "Enable Replaygain"
- *: "Database"
+ *: NONE
+ swcodec: "Enable Replaygain"
- id: LANG_TAGCACHE_DISK
- desc:
+ id: LANG_REPLAYGAIN_NOCLIP
+ desc: in replaygain
user:
- *: ""
+ *: NONE
+ swcodec: "Prevent Clipping"
- *: ""
+ *: NONE
+ swcodec: "Prevent Clipping"
- *: ""
+ *: NONE
+ swcodec: "Prevent Clipping"
- id: LANG_TAGCACHE_RAM
- desc: in tag cache settings
+ id: LANG_REPLAYGAIN_MODE
+ desc: in replaygain
user:
- *: "Load to RAM"
+ *: NONE
+ swcodec: "Replaygain Type"
- *: "Load to RAM"
+ *: NONE
+ swcodec: "Replaygain Type"
- *: "Load to RAM"
+ *: NONE
+ swcodec: "Replaygain Type"
- id: LANG_TAGCACHE_FORCE_UPDATE
- desc: in tag cache settings
+ id: LANG_ALBUM_GAIN
+ desc: in replaygain
user:
- *: "Initialize now"
+ *: NONE
+ swcodec: "Album Gain"
- *: "Initialize now"
+ *: NONE
+ swcodec: "Album Gain"
- *: "Initialize now"
+ *: NONE
+ swcodec: "Album Gain"
- id: LANG_TAGCACHE_FORCE_UPDATE_SPLASH
- desc: in tag cache settings
+ id: LANG_TRACK_GAIN
+ desc: in replaygain
user:
- *: "Updating in background"
+ *: NONE
+ swcodec: "Track Gain"
- *: "Updating in background"
+ *: NONE
+ swcodec: "Track Gain"
- *: ""
+ *: NONE
+ swcodec: "Track Gain"
- id: LANG_TAGCACHE_INIT
- desc: while initializing tagcache on boot
+ id: LANG_SHUFFLE_GAIN
+ desc: use track gain if shuffle mode is on, album gain otherwise
user:
- *: "Committing database"
+ *: NONE
+ swcodec: "Track Gain if Shuffling"
- *: "Committing database"
+ *: NONE
+ swcodec: "Track Gain if Shuffling"
- *: ""
+ *: NONE
+ swcodec: "Track Gain if Shuffling"
- id: LANG_RUNTIMEDB_ACTIVE
- desc: in settings_menu.
+ id: LANG_REPLAYGAIN_PREAMP
+ desc: in replaygain settings
user:
- *: "Gather Runtime Data (experimental)"
+ *: NONE
+ swcodec: "Pre-amp"
- *: "Gather Runtime Data (experimental)"
+ *: NONE
+ swcodec: "Pre-amp"
- *: "Gather Runtime Data"
+ *: NONE
+ swcodec: "Preamp"
- id: LANG_SORT_CASE
- desc: in settings_menu
+ id: LANG_BEEP
+ desc: in playback settings
user:
- *: "Sort Case Sensitive"
+ *: NONE
+ swcodec: "Beep Volume"
- *: "Sort Case Sensitive"
+ *: NONE
+ swcodec: "Beep Volume"
- *: "Sort Case Sensitive"
+ *: NONE
+ swcodec: "Beep Volume"
- id: LANG_SORT_DIR
- desc: browser sorting setting
+ id: LANG_WEAK
+ desc: in beep volume in playback settings
user:
- *: "Sort Directories"
+ *: NONE
+ swcodec: "Weak"
- *: "Sort Directories"
+ *: NONE
+ swcodec: "Weak"
- *: "sort directories"
+ *: NONE
+ swcodec: "Weak"
- id: LANG_SORT_FILE
- desc: browser sorting setting
+ id: LANG_MODERATE
+ desc: in beep volume in playback settings
user:
- *: "Sort Files"
+ *: NONE
+ swcodec: "Moderate"
- *: "Sort Files"
+ *: NONE
+ swcodec: "Moderate"
- *: "sort files"
+ *: NONE
+ swcodec: "Moderate"
- id: LANG_SORT_ALPHA
- desc: browser sorting setting
+ id: LANG_STRONG
+ desc: in beep volume in playback settings
user:
- *: "Alphabetical"
+ *: NONE
+ swcodec: "Strong"
- *: "Alphabetical"
+ *: NONE
+ swcodec: "Strong"
- *: "Alphabetical"
+ *: NONE
+ swcodec: "Strong"
- id: LANG_SORT_DATE
- desc: browser sorting setting
+ id: LANG_SPDIF_ENABLE
+ desc: in playback settings menu. enable/disable the optical out
user:
- *: "By Date"
+ *: NONE
+ spdif_power: "Optical Output"
- *: "By Date"
+ *: NONE
+ spdif_power: "Optical Output"
- *: "By Date"
+ *: NONE
+ spdif_power: "Optical Output"
- id: LANG_SORT_DATE_REVERSE
- desc: browser sorting setting
+ id: LANG_ID3_ORDER
+ desc: in playback settings screen
user:
- *: "By Newest Date"
+ *: "ID3 Tag Priority"
- *: "By Newest Date"
+ *: "ID3 Tag Priority"
- *: "By Newest Date"
+ *: "ID3 Tag Priority"
- id: LANG_SORT_TYPE
- desc: browser sorting setting
+ id: LANG_ID3_V1_FIRST
+ desc: in playback settings screen
user:
- *: "By Type"
+ *: "V1 then V2"
- *: "By Type"
+ *: "V1 then V2"
- *: "By Type"
+ *: "Version 1 then version 2"
- id: LANG_FILTER
- desc: setting name for dir filter
+ id: LANG_ID3_V2_FIRST
+ desc: in playback settings screen
user:
- *: "Show Files"
+ *: "V2 then V1"
- *: "Show Files"
+ *: "V2 then V1"
- *: "Show Files"
+ *: "Version 2 then version 1"
- id: LANG_FILTER_ALL
- desc: show all files
+ id: LANG_NEXT_FOLDER
+ desc: in settings_menu. Should we allow move to next/prev folder from last/first track of current one
user:
- *: "All"
+ *: "Auto-Change Directory"
- *: "All"
+ *: "Auto-Change Directory"
- *: "All"
+ *: "Auto-Change Directory"
- id: LANG_FILTER_SUPPORTED
- desc: show all file types supported by Rockbox
- user:
+ id: LANG_RANDOM
+ desc: random folder
- *: "Supported"
+ *: "Random"
- *: "Supported"
+ *: "Random"
- *: "Supported"
+ *: "Random"
- id: LANG_FILTER_MUSIC
- desc: show only music-related files
+ id: LANG_AUDIOSCROBBLER
+ desc: "Last.fm Log" in the playback menu
user:
- *: "Music"
+ *: "Last.fm Log"
- *: "Music"
+ *: "Last.fm Log"
- *: "Music"
+ *: "Last.fm Log"
- id: LANG_FILTER_PLAYLIST
- desc: show only playlist
+ id: LANG_CUESHEET_ENABLE
+ desc: cuesheet support option
user:
- *: "Playlists"
+ *: "Cuesheet Support"
- *: "Playlists"
+ *: "Cuesheet Support"
- *: "Playlists"
+ *: "Cuesheet Support"
- id: LANG_FILTER_ID3DB
- desc: show ID3 Database
+ id: LANG_HEADPHONE_UNPLUG
+ desc: in settings_menu.
user:
- *: "Database"
+ *: NONE
+ headphone_detection: "Pause on Headphone Unplug"
- *: "Database"
+ *: NONE
+ headphone_detection: "Pause on Headphone Unplug"
- *: "Database"
+ *: NONE
+ headphone_detection: "Pause on Headphone Unplug"
- id: LANG_FOLLOW
- desc: in settings_menu
+ id: LANG_HEADPHONE_UNPLUG_RESUME
+ desc: in pause_phones_menu.
user:
- *: "Follow Playlist"
+ *: NONE
+ headphone_detection: "Pause and Resume"
- *: "Follow Playlist"
+ *: NONE
+ headphone_detection: "Pause and Resume"
- *: "Follow Playlist"
+ *: NONE
+ headphone_detection: "Pause and Resume"
- id: LANG_SHOW_ICONS
- desc: in settings_menu
+ id: LANG_HEADPHONE_UNPLUG_RW
+ desc: in pause_phones_menu.
user:
- *: "Show Icons"
+ *: NONE
+ headphone_detection: "Duration to Rewind"
- *: "Show Icons"
+ *: NONE
+ headphone_detection: "Duration to Rewind"
- *: "Show Icons"
+ *: NONE
+ headphone_detection: "Duration to Rewind"
- id: LANG_CUSTOM_FONT
- desc: in setting_menu()
+ id: LANG_HEADPHONE_UNPLUG_DISABLE_AUTORESUME
+ desc: in pause_phones_menu.
user:
- *: "Browse Fonts"
+ *: NONE
+ headphone_detection: "Disable resume on startup if phones unplugged"
- *: "Browse Fonts"
+ *: NONE
+ headphone_detection: "Disable resume on startup if phones unplugged"
- *: "Browse Fonts"
+ *: NONE
+ headphone_detection: "Disable resume on startup if phones unplugged"
- id: LANG_WHILE_PLAYING
+ id: LANG_FILE
desc: in settings_menu()
user:
- *: "Browse .wps files"
+ *: "File View"
- *: "Browse .wps files"
+ *: "File View"
- *: "Browse while-playing-screen files"
+ *: "File View"
- id: LANG_REMOTE_WHILE_PLAYING
- desc: in settings_menu()
+ id: LANG_SORT_CASE
+ desc: in settings_menu
user:
- *: "Browse .rwps files"
+ *: "Sort Case Sensitive"
- *: "Browse .rwps files"
+ *: "Sort Case Sensitive"
- *: "Browse remote while-playing-screen files"
+ *: "Sort Case Sensitive"
- id: LANG_LCD_MENU
- desc: in the display sub menu
+ id: LANG_SORT_DIR
+ desc: browser sorting setting
user:
- *: "LCD Settings"
+ *: "Sort Directories"
- *: "LCD Settings"
+ *: "Sort Directories"
- *: "LCD Settings"
+ *: "sort directories"
- id: LANG_LCD_REMOTE_MENU
- desc: in the display sub menu
+ id: LANG_SORT_FILE
+ desc: browser sorting setting
user:
- *: "Remote-LCD Settings"
+ *: "Sort Files"
- *: "Remote-LCD Settings"
+ *: "Sort Files"
- *: "Remote LCD settings"
+ *: "sort files"
- id: LANG_SCROLL_MENU
- desc: in display_settings_menu()
+ id: LANG_SORT_ALPHA
+ desc: browser sorting setting
user:
- *: "Scrolling"
+ *: "Alphabetical"
- *: "Scrolling"
+ *: "Alphabetical"
- *: "Scrolling"
+ *: "Alphabetical"
- id: LANG_BARS_MENU
- desc: in the display sub menu
+ id: LANG_SORT_DATE
+ desc: browser sorting setting
user:
- *: "Status-/Scrollbar"
+ *: "By Date"
- *: "Status-/Scrollbar"
+ *: "By Date"
- *: "Status- and Scrollbar"
+ *: "By Date"
- id: LANG_PM_MENU
- desc: in the display menu
+ id: LANG_SORT_DATE_REVERSE
+ desc: browser sorting setting
user:
- *: "Peak Meter"
+ *: "By Newest Date"
- *: "Peak Meter"
+ *: "By Newest Date"
- *: "Peak Meter"
+ *: "By Newest Date"
- id: LANG_DEFAULT_CODEPAGE
- desc: default encoding used with id3 tags
+ id: LANG_SORT_TYPE
+ desc: browser sorting setting
user:
- *: "Default Codepage"
+ *: "By Type"
- *: "Default Codepage"
+ *: "By Type"
- *: "Default codepage"
+ *: "By Type"
- id: LANG_CODEPAGE_LATIN1
- desc: in codepage setting menu
+ id: LANG_FILTER
+ desc: setting name for dir filter
user:
- *: "Latin1 (ISO-8859-1)"
+ *: "Show Files"
- *: "Latin1 (ISO-8859-1)"
+ *: "Show Files"
- *: "Latin 1"
+ *: "Show Files"
- id: LANG_CODEPAGE_GREEK
- desc: in codepage setting menu
+ id: LANG_FILTER_SUPPORTED
+ desc: show all file types supported by Rockbox
user:
- *: "Greek (ISO-8859-7)"
+ *: "Supported"
- *: "Greek (ISO-8859-7)"
+ *: "Supported"
- *: "Greek"
+ *: "Supported"
- id: LANG_CODEPAGE_HEBREW
- desc: in codepage setting menu
+ id: LANG_FILTER_MUSIC
+ desc: show only music-related files
user:
- *: "Hebrew (ISO-8859-8)"
+ *: "Music"
- *: "Hebrew (ISO-8859-8)"
+ *: "Music"
- *: "Hebrew"
+ *: "Music"
- id: LANG_CODEPAGE_CYRILLIC
- desc: in codepage setting menu
- user:
-
- *: "Cyrillic (CP1251)"
-
-
- *: "Cyrillic (CP1251)"
-
-
- *: "Cyrillic"
-
-
-
- id: LANG_CODEPAGE_THAI
- desc: in codepage setting menu
- user:
-
- *: "Thai (ISO-8859-11)"
-
-
- *: "Thai (ISO-8859-11)"
-
-
- *: "Thai"
-
-
-
- id: LANG_CODEPAGE_ARABIC
- desc: in codepage setting menu
- user:
-
- *: "Arabic (CP1256)"
-
-
- *: "Arabic (CP1256)"
-
-
- *: "Arabic"
-
-
-
- id: LANG_CODEPAGE_TURKISH
- desc: in codepage setting menu
- user:
-
- *: "Turkish (ISO-8859-9)"
-
-
- *: "Turkish (ISO-8859-9)"
-
-
- *: "Turkish"
-
-
-
- id: LANG_CODEPAGE_LATIN_EXTENDED
- desc: in codepage setting menu
- user:
-
- *: "Latin Extended (ISO-8859-2)"
-
-
- *: "Latin Extended (ISO-8859-2)"
-
-
- *: "Latin extended"
-
-
-
- id: LANG_CODEPAGE_JAPANESE
- desc: in codepage setting menu
- user:
-
- *: "Japanese (SJIS)"
-
-
- *: "Japanese (SJIS)"
-
-
- *: "Japanese"
-
-
-
- id: LANG_CODEPAGE_SIMPLIFIED
- desc: in codepage setting menu
- user:
-
- *: "Simp. Chinese (GB2312)"
-
-
- *: "Simp. Chinese (GB2312)"
-
-
- *: "Simplified Chinese"
-
-
-
- id: LANG_CODEPAGE_KOREAN
- desc: in codepage setting menu
- user:
-
- *: "Korean (KSX1001)"
-
-
- *: "Korean (KSX1001)"
-
-
- *: "Korean"
-
-
-
- id: LANG_CODEPAGE_TRADITIONAL
- desc: in codepage setting menu
- user:
-
- *: "Trad. Chinese (BIG5)"
-
-
- *: "Trad. Chinese (BIG5)"
-
-
- *: "Traditional Chinese"
-
-
-
- id: LANG_CODEPAGE_UTF8
- desc: in codepage setting menu
- user:
-
- *: "Unicode (UTF-8)"
-
-
- *: "Unicode (UTF-8)"
-
-
- *: "Unicode"
-
-
-
- id: LANG_BATTERY_MENU
- desc: in the system sub menu
- user:
-
- *: "Battery"
-
-
- *: "Battery"
-
-
- *: "Battery"
-
-
-
- id: LANG_DISK_MENU
- desc: in the system sub menu
- user:
-
- *: "Disk"
-
-
- *: "Disk"
-
-
- *: "Disk"
-
-
-
- id: LANG_TIME_MENU
- desc: in the system sub menu
- user:
-
- *: "Time & Date"
-
-
- *: "Time & Date"
-
-
- *: "Time and Date"
-
-
-
- id: LANG_POWEROFF_IDLE
+ id: LANG_FOLLOW
desc: in settings_menu
user:
- *: "Idle Poweroff"
+ *: "Follow Playlist"
- *: "Idle Poweroff"
+ *: "Follow Playlist"
- *: "Idle Poweroff"
+ *: "Follow Playlist"
- id: LANG_SLEEP_TIMER
- desc: sleep timer setting
- user:
-
- *: "Sleep Timer"
-
-
- *: "Sleep Timer"
-
-
- *: "Sleep Timer"
-
-
-
- id: LANG_ALARM_MOD_ALARM_MENU
- desc: The name of the additional entry in the main menu for the RTC alarm mod.
- user:
-
- *: "Wake-Up Alarm"
-
-
- *: "Wake-Up Alarm"
-
-
- *: "Wake-Up Alarm"
-
-
-
- id: LANG_LIMITS_MENU
- desc: in the system sub menu
- user:
-
- *: "Limits"
-
-
- *: "Limits"
-
-
- *: "Limits"
-
-
-
- id: LANG_LINE_IN
+ id: LANG_SHOW_PATH
desc: in settings_menu
user:
- *: "Line In"
+ *: "Show Path"
- *: "Line In"
+ *: "Show Path"
- *: "Line In"
+ *: "Show Path"
- id: LANG_CAR_ADAPTER_MODE
- desc: Displayed for setting car adapter mode to on/off
+ id: LANG_SHOW_PATH_CURRENT
+ desc: in show path menu
user:
- *: "Car Adapter Mode"
+ *: "Current Directory Only"
- *: "Car Adapter Mode"
+ *: "Current Directory Only"
- *: "Car Adapter Mode"
+ *: "Current Directory Only"
- id: LANG_BOOKMARK_SETTINGS_AUTOCREATE
- desc: prompt for user to decide to create an bookmark
+ id: LANG_DISPLAY_FULL_PATH
+ desc: track display options
user:
- *: "Bookmark on Stop"
+ *: "Full Path"
- *: "Bookmark on Stop"
+ *: "Full Path"
- *: "Bookmark on Stop"
+ *: "Full Path"
- id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_YES
- desc: Save in recent bookmarks only
+ id: LANG_TAGCACHE_RAM
+ desc: in tag cache settings
user:
- *: "Yes - Recent only"
+ *: NONE
+ tc_ramcache: "Load to RAM"
- *: "Yes - Recent only"
+ *: NONE
+ tc_ramcache: "Load to RAM"
- *: "Yes - Recent only"
+ *: NONE
+ tc_ramcache: "Load to RAM"
- id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_ASK
- desc: Save in recent bookmarks only
+ id: LANG_TAGCACHE_AUTOUPDATE
+ desc: in tag cache settings
user:
- *: "Ask - Recent only"
+ *: "Auto Update"
- *: "Ask - Recent only"
+ *: "Auto Update"
- *: "Ask - Recent only"
+ *: "Auto Update"
- id: LANG_BOOKMARK_SETTINGS_AUTOLOAD
- desc: prompt for user to decide to create a bookmark
+ id: LANG_TAGCACHE_FORCE_UPDATE
+ desc: in tag cache settings
user:
- *: "Load Last Bookmark"
+ *: "Initialize now"
- *: "Load Last Bookmark"
+ *: "Initialize now"
- *: "Load Last Bookmark"
+ *: "Initialize now"
- id: LANG_BOOKMARK_SETTINGS_MAINTAIN_RECENT_BOOKMARKS
- desc: Configuration option to maintain a list of recent bookmarks
+ id: LANG_TAGCACHE_UPDATE
+ desc: in tag cache settings
user:
- *: "Maintain a List of Recent Bookmarks?"
+ *: "Update Now"
- *: "Maintain a List of Recent Bookmarks?"
+ *: "Update Now"
- *: "Maintain a List of Recent Bookmarks?"
+ *: "Update Now"
- id: LANG_BOOKMARK_SETTINGS_UNIQUE_ONLY
- desc: Save only on bookmark for each playlist in recent bookmarks
+ id: LANG_RUNTIMEDB_ACTIVE
+ desc: in settings_menu.
user:
- *: "Unique only"
+ *: "Gather Runtime Data (experimental)"
- *: "Unique only"
+ *: "Gather Runtime Data (experimental)"
- *: "Unique only"
+ *: "Gather Runtime Data"
- id: LANG_VOICE_MENU
- desc: item of voice menu, enable/disable the voice UI
+ id: LANG_TAGCACHE_EXPORT
+ desc: in tag cache settings
user:
- *: "Voice Menus"
+ *: "Export Modifications"
- *: "Voice Menus"
+ *: "Export Modifications"
- *: "Voice Menus"
+ *: "Export Modifications"
- id: LANG_VOICE_DIR
- desc: item of voice menu, set the "talkbox" mode for directories
+ id: LANG_TAGCACHE_IMPORT
+ desc: in tag cache settings
user:
- *: "Voice Directories"
+ *: "Import Modifications"
- *: "Voice Directories"
+ *: "Import Modifications"
- *: "Voice Directories"
+ *: "Import Modifications"
- id: LANG_VOICE_FILE
- desc: item of voice menu, set the voive mode for files
+ id: LANG_TAGCACHE_FORCE_UPDATE_SPLASH
+ desc: in tag cache settings
user:
- *: "Voice Filenames"
+ *: "Updating in background"
- *: "Voice Filenames"
+ *: "Updating in background"
- *: "Voice Filenames"
+ *: ""
- id: LANG_VOICE_NUMBER
- desc: "talkbox" mode for files+directories
+ id: LANG_TAGCACHE_INIT
+ desc: while initializing tagcache on boot
user:
- *: "Numbers"
+ *: "Committing database"
- *: "Numbers"
+ *: "Committing database"
- *: "Numbers"
+ *: ""
- id: LANG_VOICE_SPELL
- desc: "talkbox" mode for files+directories
- user:
+ id: LANG_TAGCACHE_BUSY
+ desc: when trying to shutdown and tagcache is committing
- *: "Spell"
+ *: "Database is not ready"
- *: "Spell"
+ *: "Database is not ready"
- *: "Spell"
+ *: "Database is not ready"
- id: LANG_VOICE_DIR_HOVER
- desc: "talkbox" mode for directories + files
+ id: LANG_TAGNAVI_ALL_TRACKS
+ desc: "" entry in tag browser
user:
- *: ".talk mp3 clip"
+ *: ""
- *: ".talk mp3 clip"
+ *: ""
- *: "talk mp3 clip"
+ *: "All tracks"
- id: LANG_RECORDING_QUALITY
- desc: in the recording settings
+ id: LANG_DISPLAY
+ desc: in settings_menu()
user:
- *: "Quality"
+ *: "Display"
- *: "Quality"
+ *: "Display"
- *: "Quality"
+ *: "Display"
- id: LANG_RECORDING_FREQUENCY
- desc: in the recording settings
+ id: LANG_CUSTOM_FONT
+ desc: in setting_menu()
user:
- *: "Frequency"
+ *: "Browse Fonts"
- *: "Frequency"
+ *: "Browse Fonts"
- *: "Frequency"
+ *: "Browse Fonts"
- id: LANG_RECORDING_SOURCE
- desc: in the recording settings
+ id: LANG_WHILE_PLAYING
+ desc: in settings_menu()
user:
- *: "Source"
+ *: "Browse .wps files"
- *: "Source"
+ *: "Browse .wps files"
- *: "Source"
+ *: "Browse while-playing-screen files"
- id: LANG_RECORDING_SRC_MIC
- desc: in the recording settings
+ id: LANG_REMOTE_WHILE_PLAYING
+ desc: in settings_menu()
user:
- *: "Mic"
- h100,h120,h300: "Internal Mic"
+ *: NONE
+ remote: "Browse .rwps files"
- *: "Mic"
- h100,h120,h300: "Internal Mic"
+ *: NONE
+ remote: "Browse .rwps files"
- *: "Microphone"
- h100,h120,h300: "Internal Microphone"
+ *: NONE
+ remote: "Browse remote while-playing-screen files"
- id: LANG_RECORDING_SRC_LINE
- desc: in the recording settings
+ id: LANG_LCD_MENU
+ desc: in the display sub menu
user:
- *: "Line In"
+ *: "LCD Settings"
- *: "Line In"
+ *: "LCD Settings"
- *: "Line In"
+ *: "LCD Settings"
- id: LANG_RECORDING_SRC_DIGITAL
- desc: in the recording settings
+ id: LANG_BACKLIGHT
+ desc: in settings_menu
user:
- *: "Digital"
+ *: "Backlight"
- *: "Digital"
+ *: "Backlight"
- *: "Digital"
+ *: "Backlight"
- id: LANG_RECORDING_CHANNELS
- desc: in the recording settings
+ id: LANG_BACKLIGHT_ON_WHEN_CHARGING
+ desc: in display_settings_menu, backlight timeout with charger connected
user:
- *: "Channels"
+ *: "Backlight (While Plugged In)"
- *: "Channels"
+ *: "Backlight (While Plugged In)"
- *: "Channels"
+ *: "Backlight (While Plugged In)"
- id: LANG_RECORDING_EDITABLE
- desc: Editable recordings setting
+ id: LANG_BACKLIGHT_ON_BUTTON_HOLD
+ desc: in lcd settings
user:
- *: "Independent Frames"
+ *: "Backlight (On Hold Key)"
- *: "Independent Frames"
+ *: "Backlight (On Hold Key)"
- *: "Independent Frames"
+ *: "Backlight on hold key"
- id: LANG_RECORD_TIMESPLIT
- desc: Record split menu
+ id: LANG_CAPTION_BACKLIGHT
+ desc: in settings_menu
user:
- *: "File Split Options"
+ *: "Caption Backlight"
- *: "File Split Options"
+ *: "Caption Backlight"
- *: "File Split Options"
+ *: "Caption Backlight"
- id: LANG_RECORD_PRERECORD_TIME
- desc: in recording settings_menu
+ id: LANG_BACKLIGHT_FADE_IN
+ desc: in settings_menu
user:
- *: "Prerecord Time"
+ *: NONE
+ backlight_fade: "Backlight Fade In"
- *: "Prerecord Time"
+ *: NONE
+ backlight_fade: "Backlight Fade In"
- *: "Pre-Record time"
+ *: NONE
+ backlight_fade: "Backlight Fade In"
- id: LANG_RECORD_DIRECTORY
- desc: in recording settings_menu
+ id: LANG_BACKLIGHT_FADE_OUT
+ desc: in settings_menu
user:
- *: "Directory"
+ *: NONE
+ backlight_fade: "Backlight Fade Out"
- *: "Directory"
+ *: NONE
+ backlight_fade: "Backlight Fade Out"
- *: "Directory"
+ *: NONE
+ backlight_fade: "Backlight Fade Out"
- id: LANG_RECORD_CURRENT_DIR
- desc: in recording directory options
+ id: LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS
+ desc: Backlight behaviour setting
user:
- *: "Current Directory"
+ *: "First Keypress Enables Backlight Only"
- *: "Current Directory"
+ *: "First Keypress Enables Backlight Only"
- *: "Current directory"
+ *: "First Keypress Enables Backlight Only"
- id: LANG_RECORD_STARTUP
- desc: DEPRECATED
+ id: LANG_LCD_SLEEP_AFTER_BACKLIGHT_OFF
+ desc: In display settings, time to switch LCD chip into power saving state
user:
- *: ""
+ *: NONE
+ lcd_sleep: "Sleep (After Backlight Off)"
- *: deprecated
+ *: NONE
+ lcd_sleep: "Sleep (After Backlight Off)"
- *: ""
+ *: NONE
+ lcd_sleep: "Sleep after backlight off"
- id: LANG_RECORD_TRIGGER
- desc: in recording settings_menu
+ id: LANG_NEVER
+ desc: in lcd settings
user:
- *: "Trigger"
+ *: NONE
+ lcd_sleep: "Never"
- *: "Trigger"
+ *: NONE
+ lcd_sleep: "Never"
- *: "Trigger"
+ *: NONE
+ lcd_sleep: "Never"
- id: LANG_CLIP_LIGHT
- desc: in record settings menu.
+ id: LANG_BRIGHTNESS
+ desc: in settings_menu
user:
- *: "Clipping Light"
+ *: NONE
+ backlight_brightness: "Brightness"
- *: "Clipping Light"
+ *: NONE
+ backlight_brightness: "Brightness"
- *: "Clipping Light"
+ *: NONE
+ backlight_brightness: "Brightness"
- id: LANG_MAIN_UNIT
- desc: in record settings menu.
- user:
-
- *: "Main Unit Only"
-
-
- *: "Main Unit Only"
-
-
- *: "Main unit only"
-
-
-
- id: LANG_REMOTE_UNIT
- desc: in record settings menu.
- user:
-
- *: "Remote Unit Only"
-
-
- *: "Remote Unit Only"
-
-
- *: "Remote unit only"
-
-
-
- id: LANG_REMOTE_MAIN
- desc: in record settings menu.
- user:
-
- *: "Main and Remote Unit"
-
-
- *: "Main and Remote Unit"
-
-
- *: "Main and remote unit"
-
-
-
- id: LANG_FFRW_STEP
+ id: LANG_CONTRAST
desc: in settings_menu
user:
- *: "FF/RW Min Step"
+ *: "Contrast"
- *: "FF/RW Min Step"
+ *: "Contrast"
- *: "Minimum Step"
+ *: "Contrast"
- id: LANG_FFRW_ACCEL
+ id: LANG_INVERT
desc: in settings_menu
user:
- *: "FF/RW Accel"
+ *: NONE
+ lcd_invert: "LCD Mode"
- *: "FF/RW Accel"
+ *: NONE
+ lcd_invert: "LCD Mode"
- *: "Acceleration"
+ *: NONE
+ lcd_invert: "LCD Mode"
- id: LANG_CROSSFADE_ENABLE
- desc: in crossfade settings menu
- user:
-
- *: "Enable Crossfade"
-
-
- *: "Enable Crossfade"
-
-
- *: "Enable Crossfade"
-
-
-
- id: LANG_TRACKSKIP
- desc: in crossfade settings
- user:
-
- *: "Track Skip Only"
-
-
- *: "Track Skip Only"
-
-
- *: "Track Skip Only"
-
-
-
- id: LANG_CROSSFADE_FADE_IN_DELAY
- desc: in crossfade settings menu
- user:
-
- *: "Fade-In Delay"
-
-
- *: "Fade-In Delay"
-
-
- *: "Fade-In Delay"
-
-
-
- id: LANG_CROSSFADE_FADE_IN_DURATION
- desc: in crossfade settings menu
- user:
-
- *: "Fade-In Duration"
-
-
- *: "Fade-In Duration"
-
-
- *: "Fade-In Duration"
-
-
-
- id: LANG_CROSSFADE_FADE_OUT_DELAY
- desc: in crossfade settings menu
- user:
-
- *: "Fade-Out Delay"
-
-
- *: "Fade-Out Delay"
-
-
- *: "Fade-Out Delay"
-
-
-
- id: LANG_CROSSFADE_FADE_OUT_DURATION
- desc: in crossfade settings menu
- user:
-
- *: "Fade-Out Duration"
-
-
- *: "Fade-Out Duration"
-
-
- *: "Fade-Out Duration"
-
-
-
- id: LANG_CROSSFADE_FADE_OUT_MODE
- desc: in crossfade settings menu
- user:
-
- *: "Fade-Out Mode"
-
-
- *: "Fade-Out Mode"
-
-
- *: "Fade-Out Mode"
-
-
-
- id: LANG_MIX
- desc: in playback settings, crossfade option
- user:
-
- *: "Mix"
-
-
- *: "Mix"
-
-
- *: "Mix"
-
-
-
- id: LANG_REPLAYGAIN_ENABLE
- desc: in replaygain
- user:
-
- *: "Enable Replaygain"
-
-
- *: "Enable Replaygain"
-
-
- *: "Enable Replaygain"
-
-
-
- id: LANG_REPLAYGAIN_NOCLIP
- desc: in replaygain
- user:
-
- *: "Prevent Clipping"
-
-
- *: "Prevent Clipping"
-
-
- *: "Prevent Clipping"
-
-
-
- id: LANG_REPLAYGAIN_MODE
- desc: in replaygain
- user:
-
- *: "Replaygain Type"
-
-
- *: "Replaygain Type"
-
-
- *: "Replaygain Type"
-
-
-
- id: LANG_ALBUM_GAIN
- desc: in replaygain
- user:
-
- *: "Album Gain"
-
-
- *: "Album Gain"
-
-
- *: "Album Gain"
-
-
-
- id: LANG_TRACK_GAIN
- desc: in replaygain
- user:
-
- *: "Track Gain"
-
-
- *: "Track Gain"
-
-
- *: "Track Gain"
-
-
-
- id: LANG_SHUFFLE_GAIN
- desc: use track gain if shuffle mode is on, album gain otherwise
- user:
-
- *: "Track Gain if Shuffling"
-
-
- *: "Track Gain if Shuffling"
-
-
- *: "Track Gain if Shuffling"
-
-
-
- id: LANG_REPLAYGAIN_PREAMP
- desc: in replaygain settings
- user:
-
- *: "Pre-amp"
-
-
- *: "Pre-amp"
-
-
- *: "Preamp"
-
-
-
- id: LANG_BACKLIGHT
+ id: LANG_INVERT_LCD_INVERSE
desc: in settings_menu
user:
- *: "Backlight"
+ *: NONE
+ lcd_invert: "Inverse"
- *: "Backlight"
+ *: NONE
+ lcd_invert: "Inverse"
- *: "Backlight"
+ *: NONE
+ lcd_invert: "Inverse"
- id: LANG_BACKLIGHT_ON_WHEN_CHARGING
- desc: in display_settings_menu, backlight timeout with charger connected
+ id: LANG_FLIP_DISPLAY
+ desc: in settings_menu, option to turn display+buttos by 180 degreed
user:
- *: "Backlight (While Plugged In)"
+ *: NONE
+ lcd_flip: "Upside Down"
- *: "Backlight (While Plugged In)"
+ *: NONE
+ lcd_flip: "Upside Down"
- *: "Backlight (While Plugged In)"
+ *: NONE
+ lcd_flip: "Upside Down"
- id: LANG_CAPTION_BACKLIGHT
+ id: LANG_INVERT_CURSOR
desc: in settings_menu
user:
- *: "Caption Backlight"
+ *: "Line Selector"
- *: "Caption Backlight"
+ *: "Line Selector"
- *: "Caption Backlight"
+ *: "Line Selector"
- id: LANG_BACKLIGHT_FADE_IN
+ id: LANG_INVERT_CURSOR_POINTER
desc: in settings_menu
user:
- *: "Backlight Fade In"
+ *: "Pointer"
- *: "Backlight Fade In"
+ *: "Pointer"
- *: "Backlight Fade In"
+ *: "Pointer"
- id: LANG_BACKLIGHT_FADE_OUT
+ id: LANG_INVERT_CURSOR_BAR
desc: in settings_menu
user:
- *: "Backlight Fade Out"
+ *: "Bar (Inverse)"
- *: "Backlight Fade Out"
+ *: "Bar (Inverse)"
- *: "Backlight Fade Out"
+ *: "Inverse Bar"
- id: LANG_BRIGHTNESS
- desc: in settings_menu
+ id: LANG_CLEAR_BACKDROP
+ desc: text for LCD settings menu
user:
- *: "Brightness"
+ *: NONE
+ lcd_color: "Clear Backdrop"
- *: "Brightness"
+ *: NONE
+ lcd_color: "Clear Backdrop"
- *: "Brightness"
+ *: NONE
+ lcd_color: "Clear Backdrop"
- id: LANG_CONTRAST
- desc: in settings_menu
+ id: LANG_BACKGROUND_COLOR
+ desc: menu entry to set the background color
user:
- *: "Contrast"
+ *: NONE
+ lcd_color: "Background Colour"
- *: "Contrast"
+ *: NONE
+ lcd_color: "Background Colour"
- *: "Contrast"
+ *: NONE
+ lcd_color: "Background Colour"
- id: LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS
- desc: Backlight behaviour setting
+ id: LANG_FOREGROUND_COLOR
+ desc: menu entry to set the foreground color
user:
- *: "First Keypress Enables Backlight Only"
+ *: NONE
+ lcd_color: "Foreground Colour"
- *: "First Keypress Enables Backlight Only"
+ *: NONE
+ lcd_color: "Foreground Colour"
- *: "First Keypress Enables Backlight Only"
+ *: NONE
+ lcd_color: "Foreground Colour"
- id: LANG_INVERT
- desc: in settings_menu
+ id: LANG_RESET_COLORS
+ desc: menu
user:
- *: "LCD Mode"
+ *: NONE
+ lcd_color: "Reset Colours"
- *: "LCD Mode"
+ *: NONE
+ lcd_color: "Reset Colours"
- *: "LCD Mode"
+ *: NONE
+ lcd_color: "Reset Colours"
- id: LANG_INVERT_LCD_NORMAL
- desc: in settings_menu
+ id: LANG_COLOR_RGB_LABELS
+ desc: what to show for the 'R' 'G' 'B' ONE LETTER EACH
user:
- *: "Normal"
+ *: NONE
+ lcd_color: "RGB"
- *: "Normal"
+ *: NONE
+ lcd_color: "RGB"
- *: "Normal"
+ *: NONE
+ lcd_color: ""
- id: LANG_INVERT_LCD_INVERSE
- desc: in settings_menu
+ id: LANG_COLOR_RGB_VALUE
+ desc: in color screen
user:
- *: "Inverse"
+ *: NONE
+ lcd_color: "RGB: %02X%02X%02X"
- *: "Inverse"
+ *: NONE
+ lcd_color: "RGB: %02X%02X%02X"
- *: "Inverse"
+ *: NONE
+ lcd_color: ""
- id: LANG_FLIP_DISPLAY
- desc: in settings_menu, option to turn display+buttos by 180 degreed
+ id: LANG_COLOR_UNACCEPTABLE
+ desc: splash when user selects an invalid colour
user:
- *: "Upside Down"
+ *: NONE
+ lcd_color: "Invalid colour"
- *: "Upside Down"
+ *: NONE
+ lcd_color: "Invalid colour"
- *: "Upside Down"
+ *: NONE
+ lcd_color: ""
- id: LANG_INVERT_CURSOR
- desc: in settings_menu
+ id: LANG_LCD_REMOTE_MENU
+ desc: in the display sub menu
user:
- *: "Line Selector"
+ *: NONE
+ remote: "Remote-LCD Settings"
- *: "Line Selector"
+ *: NONE
+ remote: "Remote-LCD Settings"
- *: "Line Selector"
+ *: NONE
+ remote: "Remote LCD settings"
- id: LANG_INVERT_CURSOR_POINTER
- desc: in settings_menu
+ id: LANG_REDUCE_TICKING
+ desc: in remote lcd settings menu
user:
- *: "Pointer"
+ *: NONE
+ remote_ticking: "Reduce Ticking"
- *: "Pointer"
+ *: NONE
+ remote_ticking: "Reduce Ticking"
- *: "Pointer"
+ *: NONE
+ remote_ticking: "Reduce Ticking"
- id: LANG_INVERT_CURSOR_BAR
+ id: LANG_SHOW_ICONS
desc: in settings_menu
user:
- *: "Bar (Inverse)"
+ *: "Show Icons"
- *: "Bar (Inverse)"
+ *: "Show Icons"
- *: "Inverse Bar"
+ *: "Show Icons"
- id: LANG_CLEAR_BACKDROP
- desc: text for LCD settings menu
+ id: LANG_SCROLL_MENU
+ desc: in display_settings_menu()
user:
- *: "Clear Backdrop"
+ *: "Scrolling"
- *: "Clear Backdrop"
+ *: "Scrolling"
- *: "Clear Backdrop"
+ *: "Scrolling"
- id: LANG_BACKGROUND_COLOR
- desc: menu entry to set the background color
+ id: LANG_SCROLL
+ desc: in settings_menu
user:
- *: "Background Colour"
+ *: "Scroll Speed Setting Example"
- *: "Background Colour"
+ *: "Scroll Speed Setting Example"
- *: "Background Colour"
+ *: ""
- id: LANG_FOREGROUND_COLOR
- desc: menu entry to set the foreground color
- user:
-
- *: "Foreground Colour"
-
-
- *: "Foreground Colour"
-
-
- *: "Foreground Colour"
-
-
-
- id: LANG_RESET_COLORS
- desc: menu
- user:
-
- *: "Reset Colours"
-
-
- *: "Reset Colours"
-
-
- *: "Reset Colours"
-
-
-
- id: LANG_REDUCE_TICKING
- desc: in remote lcd settings menu
- user:
-
- *: "Reduce Ticking"
-
-
- *: "Reduce Ticking"
-
-
- *: "Reduce Ticking"
-
-
-
id: LANG_SCROLL_SPEED
desc: in display_settings_menu()
user:
@@ -3387,20 +3151,6 @@
- id: LANG_SCROLL
- desc: in settings_menu
- user:
-
- *: "Scroll Speed Setting Example"
-
-
- *: "Scroll Speed Setting Example"
-
-
- *: ""
-
-
-
id: LANG_SCROLL_DELAY
desc: Delay before scrolling
user:
@@ -3457,17 +3207,37 @@
+ id: LANG_REMOTE_SCROLL_SETS
+ desc: "Remote Scrolling Options" Submenu in "Scrolling Options" menu
+ user:
+
+ *: NONE
+ remote: "Remote Scrolling Options"
+
+
+ *: NONE
+ remote: "Remote Scrolling Options"
+
+
+ *: NONE
+ remote: "Remote Scrolling Options"
+
+
+
id: LANG_JUMP_SCROLL
desc: (player) menu altarnative for jump scroll
user:
- *: "Jump Scroll"
+ *: NONE
+ player: "Jump Scroll"
- *: "Jump Scroll"
+ *: NONE
+ player: "Jump Scroll"
- *: "Jump Scroll"
+ *: NONE
+ player: "Jump Scroll"
@@ -3475,13 +3245,16 @@
desc: (player) the jump scroll shall be done "one time"
user:
- *: "One time"
+ *: NONE
+ player: "One time"
- *: "One time"
+ *: NONE
+ player: "One time"
- *: "One time"
+ *: NONE
+ player: "One time"
@@ -3489,13 +3262,16 @@
desc: (player) Delay before making a jump scroll
user:
- *: "Jump Scroll Delay"
+ *: NONE
+ player: "Jump Scroll Delay"
- *: "Jump Scroll Delay"
+ *: NONE
+ player: "Jump Scroll Delay"
- *: "Jump Scroll Delay"
+ *: NONE
+ player: "Jump Scroll Delay"
@@ -3541,6 +3317,20 @@
+ id: LANG_BARS_MENU
+ desc: in the display sub menu
+ user:
+
+ *: "Status-/Scrollbar"
+
+
+ *: "Status-/Scrollbar"
+
+
+ *: "Status- and Scrollbar"
+
+
+
id: LANG_SCROLL_BAR
desc: display menu, F3 substitute
user:
@@ -3639,31 +3429,31 @@
- id: LANG_PM_RELEASE
- desc: in the peak meter menu
+ id: LANG_PM_MENU
+ desc: in the display menu
user:
- *: "Peak Release"
+ *: "Peak Meter"
- *: "Peak Release"
+ *: "Peak Meter"
- *: "Peak Release"
+ *: "Peak Meter"
- id: LANG_PM_UNITS_PER_READ
+ id: LANG_PM_CLIP_HOLD
desc: in the peak meter menu
user:
- *: "Units Per Read"
+ *: "Clip Hold Time"
- *: "Units Per Read"
+ *: "Clip Hold Time"
- *: "Units Per Read"
+ *: "Clip Hold Time"
@@ -3681,34 +3471,48 @@
- id: LANG_PM_CLIP_HOLD
+ id: LANG_PM_ETERNAL
desc: in the peak meter menu
user:
- *: "Clip Hold Time"
+ *: "Eternal"
- *: "Clip Hold Time"
+ *: "Eternal"
- *: "Clip Hold Time"
+ *: "Eternal"
- id: LANG_PM_ETERNAL
+ id: LANG_PM_RELEASE
desc: in the peak meter menu
user:
- *: "Eternal"
+ *: "Peak Release"
- *: "Eternal"
+ *: "Peak Release"
- *: "Eternal"
+ *: "Peak Release"
+ id: LANG_PM_UNITS_PER_READ
+ desc: in the peak meter menu
+ user:
+
+ *: "Units Per Read"
+
+
+ *: "Units Per Read"
+
+
+ *: "Units Per Read"
+
+
+
id: LANG_PM_SCALE
desc: in the peak meter menu
user:
@@ -3778,3963 +3582,4319 @@
*: "Maximum Of Range"
+
- id: LANG_BATTERY_CAPACITY
- desc: in settings_menu
+ id: LANG_DEFAULT_CODEPAGE
+ desc: default encoding used with id3 tags
user:
- *: "Battery Capacity"
+ *: "Default Codepage"
- *: "Battery Capacity"
+ *: "Default Codepage"
- *: "Battery Capacity"
+ *: "Default codepage"
- id: LANG_BATTERY_TYPE
- desc: in battery settings
+ id: LANG_CODEPAGE_LATIN1
+ desc: in codepage setting menu
user:
- *: "Battery Type"
+ *: "Latin1 (ISO-8859-1)"
- *: "Battery Type"
+ *: "Latin1 (ISO-8859-1)"
- *: "Battery type"
+ *: "Latin 1"
- id: LANG_BATTERY_TYPE_ALKALINE
- desc: in battery settings
+ id: LANG_CODEPAGE_GREEK
+ desc: in codepage setting menu
user:
- *: "Alkaline"
+ *: "Greek (ISO-8859-7)"
- *: "Alkaline"
+ *: "Greek (ISO-8859-7)"
- *: "Alkaline"
+ *: "Greek"
- id: LANG_BATTERY_TYPE_NIMH
- desc: in battery settings
+ id: LANG_CODEPAGE_HEBREW
+ desc: in codepage setting menu
user:
- *: "NiMH"
+ *: "Hebrew (ISO-8859-8)"
- *: "NiMH"
+ *: "Hebrew (ISO-8859-8)"
- *: "Nickel metal hydride"
+ *: "Hebrew"
- id: LANG_SPINDOWN
- desc: in settings_menu
+ id: LANG_CODEPAGE_CYRILLIC
+ desc: in codepage setting menu
user:
- *: "Disk Spindown"
+ *: "Cyrillic (CP1251)"
- *: "Disk Spindown"
+ *: "Cyrillic (CP1251)"
- *: "Disk Spindown"
+ *: "Cyrillic"
- id: LANG_POWEROFF
- desc: DEPRECATED
+ id: LANG_CODEPAGE_THAI
+ desc: in codepage setting menu
user:
- *: ""
+ *: "Thai (ISO-8859-11)"
- *: deprecated
+ *: "Thai (ISO-8859-11)"
- *: ""
+ *: "Thai"
- id: LANG_DIRCACHE_ENABLE
- desc: in directory cache settings
+ id: LANG_CODEPAGE_ARABIC
+ desc: in codepage setting menu
user:
- *: "Directory Cache"
+ *: "Arabic (CP1256)"
- *: "Directory Cache"
+ *: "Arabic (CP1256)"
- *: "Directory Cache"
+ *: "Arabic"
- id: LANG_DIRCACHE_REBOOT
- desc: DEPRECATED
+ id: LANG_CODEPAGE_TURKISH
+ desc: in codepage setting menu
user:
- *: ""
+ *: "Turkish (ISO-8859-9)"
- *: ""
+ *: "Turkish (ISO-8859-9)"
- *: ""
+ *: "Turkish"
- id: LANG_DIRCACHE_BUILDING
- desc: when booting up and rebuilding the cache
+ id: LANG_CODEPAGE_LATIN_EXTENDED
+ desc: in codepage setting menu
user:
- *: "Scanning disk..."
+ *: "Latin Extended (ISO-8859-2)"
- *: "Scanning disk..."
+ *: "Latin Extended (ISO-8859-2)"
- *: ""
+ *: "Latin extended"
- id: LANG_TIME
- desc: in settings_menu
+ id: LANG_CODEPAGE_JAPANESE
+ desc: in codepage setting menu
user:
- *: "Set Time/Date"
+ *: "Japanese (SJIS)"
- *: "Set Time/Date"
+ *: "Japanese (SJIS)"
- *: "Set Time and Date"
+ *: "Japanese"
- id: LANG_TIMEFORMAT
- desc: select the time format of time in status bar
+ id: LANG_CODEPAGE_SIMPLIFIED
+ desc: in codepage setting menu
user:
- *: "Time Format"
+ *: "Simp. Chinese (GB2312)"
- *: "Time Format"
+ *: "Simp. Chinese (GB2312)"
- *: "Time Format"
+ *: "Simplified Chinese"
- id: LANG_12_HOUR_CLOCK
- desc: option for 12 hour clock
+ id: LANG_CODEPAGE_KOREAN
+ desc: in codepage setting menu
user:
- *: "12 Hour Clock"
+ *: "Korean (KSX1001)"
- *: "12 Hour Clock"
+ *: "Korean (KSX1001)"
- *: "12 Hour Clock"
+ *: "Korean"
- id: LANG_24_HOUR_CLOCK
- desc: option for 24 hour clock
+ id: LANG_CODEPAGE_TRADITIONAL
+ desc: in codepage setting menu
user:
- *: "24 Hour Clock"
+ *: "Trad. Chinese (BIG5)"
- *: "24 Hour Clock"
+ *: "Trad. Chinese (BIG5)"
- *: "24 Hour Clock"
+ *: "Traditional Chinese"
- id: LANG_MAX_FILES_IN_DIR
- desc: in settings_menu
+ id: LANG_CODEPAGE_UTF8
+ desc: in codepage setting menu
user:
- *: "Max Files in Dir Browser"
+ *: "Unicode (UTF-8)"
- *: "Max Files in Dir Browser"
+ *: "Unicode (UTF-8)"
- *: "Maximum files in directory browser"
+ *: "Unicode"
- id: LANG_MAX_FILES_IN_PLAYLIST
- desc: in settings_menu
+ id: LANG_START_SCREEN
+ desc: in the system sub menu
user:
- *: "Max Playlist Size"
+ *: "Start Screen"
- *: "Max Playlist Size"
+ *: "Start Screen"
- *: "Maximum playlist size"
+ *: "Start Screen"
- id: LANG_PLAYLIST
- desc: Used when you need to say playlist, also voiced
+ id: LANG_MAIN_MENU
+ desc: in start screen setting
user:
- *: "Playlist"
+ *: "Main Menu"
- *: "Playlist"
+ *: "Main Menu"
- *: "Playlist"
+ *: "Main Menu"
- id: LANG_BOOKMARK_MENU
- desc: Text on main menu to get to bookmark commands
+ id: LANG_PREVIOUS_SCREEN
+ desc: in start screen setting
user:
- *: "Bookmarks"
+ *: "Previous Screen"
- *: "Bookmarks"
+ *: "Previous Screen"
- *: "Bookmarks"
+ *: "Previous Screen"
- id: LANG_MENU_SHOW_ID3_INFO
- desc: Menu option to start tag viewer
+ id: LANG_BATTERY_MENU
+ desc: in the system sub menu
user:
- *: "Show ID3 Info"
+ *: "Battery"
- *: "Show ID3 Info"
+ *: "Battery"
- *: "Show ID3 Info"
+ *: "Battery"
- id: LANG_MENU_SET_RATING
- desc: in wps context menu
+ id: LANG_BATTERY_CAPACITY
+ desc: in settings_menu
user:
- *: "Set Song Rating"
+ *: "Battery Capacity"
- *: "Set Song Rating"
+ *: "Battery Capacity"
- *: "Set Song Rating"
+ *: "Battery Capacity"
- id: LANG_RATING
- desc: in set_rating
+ id: LANG_BATTERY_TYPE
+ desc: in battery settings
user:
- *: "Rating:"
+ *: NONE
+ battery_types: "Battery Type"
- *: "Rating:"
+ *: NONE
+ battery_types: "Battery Type"
- *: ""
+ *: NONE
+ battery_types: "Battery type"
- id: LANG_RENAME
- desc: The verb/action Rename
+ id: LANG_BATTERY_TYPE_ALKALINE
+ desc: in battery settings
user:
- *: "Rename"
+ *: NONE
+ battery_types: "Alkaline"
- *: "Rename"
+ *: NONE
+ battery_types: "Alkaline"
- *: "Rename"
+ *: NONE
+ battery_types: "Alkaline"
- id: LANG_CUT
- desc: The verb/action Cut
+ id: LANG_BATTERY_TYPE_NIMH
+ desc: in battery settings
user:
- *: "Cut"
+ *: NONE
+ battery_types: "NiMH"
- *: "Cut"
+ *: NONE
+ battery_types: "NiMH"
- *: "Cut"
+ *: NONE
+ battery_types: "Nickel metal hydride"
- id: LANG_COPY
- desc: The verb/action Copy
+ id: LANG_DISK_MENU
+ desc: in the system sub menu
user:
- *: "Copy"
+ *: "Disk"
- *: "Copy"
+ *: "Disk"
- *: "Copy"
+ *: "Disk"
- id: LANG_PASTE
- desc: The verb/action Paste
+ id: LANG_SPINDOWN
+ desc: in settings_menu
user:
- *: "Paste"
+ *: "Disk Spindown"
- *: "Paste"
+ *: "Disk Spindown"
- *: "Paste"
+ *: "Disk Spindown"
- id: LANG_REALLY_OVERWRITE
- desc: The verb/action Paste
+ id: LANG_DIRCACHE_ENABLE
+ desc: in directory cache settings
user:
- *: "File/directory exists. Overwrite?"
+ *: NONE
+ dircache: "Directory Cache"
- *: "File/directory exists. Overwrite?"
+ *: NONE
+ dircache: "Directory Cache"
- *: ""
+ *: NONE
+ dircache: "Directory Cache"
- id: LANG_DELETE
- desc: The verb/action Delete
+ id: LANG_TIME_MENU
+ desc: in the system sub menu
user:
- *: "Delete"
+ *: NONE
+ rtc: "Time & Date"
- *: "Delete"
+ *: NONE
+ rtc: "Time & Date"
- *: "Delete"
+ *: NONE
+ rtc: "Time and Date"
- id: LANG_SET_AS_BACKDROP
- desc: text for onplay menu entry
+ id: LANG_SET_TIME
+ desc: in settings_menu
user:
- *: "Set As Backdrop"
+ *: NONE
+ rtc: "Set Time/Date"
- *: "Set As Backdrop"
+ *: NONE
+ rtc: "Set Time/Date"
- *: "Set As Backdrop"
+ *: NONE
+ rtc: "Set Time and Date"
- id: LANG_DELETE_DIR
- desc: in on+play menu
+ id: LANG_TIMEFORMAT
+ desc: select the time format of time in status bar
user:
- *: "Delete Directory"
+ *: NONE
+ rtc: "Time Format"
- *: "Delete Directory"
+ *: NONE
+ rtc: "Time Format"
- *: "delete directory"
+ *: NONE
+ rtc: "Time Format"
- id: LANG_REALLY_DELETE
- desc: Really Delete?
+ id: LANG_12_HOUR_CLOCK
+ desc: option for 12 hour clock
user:
- *: "Delete?"
+ *: NONE
+ rtc: "12 Hour Clock"
- *: "Delete?"
+ *: NONE
+ rtc: "12 Hour Clock"
- *: ""
+ *: NONE
+ rtc: "12 Hour Clock"
- id: LANG_DELETED
- desc: A file has beed deleted
+ id: LANG_24_HOUR_CLOCK
+ desc: option for 24 hour clock
user:
- *: "Deleted"
+ *: NONE
+ rtc: "24 Hour Clock"
- *: "Deleted"
+ *: NONE
+ rtc: "24 Hour Clock"
- *: ""
+ *: NONE
+ rtc: "24 Hour Clock"
- id: LANG_ONPLAY_OPEN_WITH
- desc: Onplay open with
+ id: VOICE_CURRENT_TIME
+ desc: spoken only, for wall clock announce
user:
- *: "Open With..."
+ *: NONE
+ rtc: ""
- *: "Open With..."
+ *: NONE
+ rtc: ""
- *: "open with"
+ *: NONE
+ rtc: "Current time:"
- id: LANG_CREATE_DIR
- desc: in main menu
+ id: LANG_TIME_SET_BUTTON
+ desc: used in set_time()
user:
- *: "Create Directory"
+ *: NONE
+ rtc: "ON To Set"
+ h100,h120,h300: "NAVI = Set"
+ ipod*: "SELECT = Set"
+ x5: "SELECT = Set"
+ h10: "NEXT = Set"
- *: "Create Directory"
+ *: NONE
+ rtc: "ON To Set"
+ h100,h120,h300: "NAVI = Set"
+ ipod*: "SELECT = Set"
+ x5: "SELECT = Set"
+ h10: "NEXT = Set"
- *: "Create Directory"
+ *: NONE
+ rtc: ""
- id: LANG_PITCH
- desc: "pitch" in the pitch screen
+ id: LANG_TIME_REVERT
+ desc: used in set_time()
user:
- *: "Pitch"
+ *: NONE
+ rtc: "OFF To Revert"
+ h100,h120,h300: "STOP = Revert"
+ ipod*: "MENU = Revert"
+ x5: "RECORD = Revert"
+ h10: "PREV = Revert"
- *: "Pitch"
+ *: NONE
+ rtc: "OFF To Revert"
+ h100,h120,h300: "STOP = Revert"
+ ipod*: "MENU = Revert"
+ x5: "RECORD = Revert"
+ h10: "PREV = Revert"
- *: "Pitch"
+ *: NONE
+ rtc: ""
- id: LANG_VIEW
- desc: in on+play menu
+ id: LANG_WEEKDAY_SUNDAY
+ desc: Maximum 3-letter abbreviation for weekday
user:
- *: "View"
+ *: NONE
+ rtc: "Sun"
- *: "View"
+ *: NONE
+ rtc: "Sun"
- *: "View"
+ *: NONE
+ rtc: ""
- id: LANG_SHUFFLE_PLAYLIST
- desc: in playlist menu, reshuffles the order in which songs are played
+ id: LANG_WEEKDAY_MONDAY
+ desc: Maximum 3-letter abbreviation for weekday
user:
- *: "Reshuffle"
+ *: NONE
+ rtc: "Mon"
- *: "Reshuffle"
+ *: NONE
+ rtc: "Mon"
- *: "Reshuffle"
+ *: NONE
+ rtc: ""
- id: LANG_INSERT
- desc: in onplay menu. insert a track/playlist into dynamic playlist.
+ id: LANG_WEEKDAY_TUESDAY
+ desc: Maximum 3-letter abbreviation for weekday
user:
- *: "Insert"
+ *: NONE
+ rtc: "Tue"
- *: "Insert"
+ *: NONE
+ rtc: "Tue"
- *: "Insert"
+ *: NONE
+ rtc: ""
- id: LANG_INSERT_FIRST
- desc: in onplay menu. insert a track/playlist into dynamic playlist.
+ id: LANG_WEEKDAY_WEDNESDAY
+ desc: Maximum 3-letter abbreviation for weekday
user:
- *: "Insert next"
+ *: NONE
+ rtc: "Wed"
- *: "Insert next"
+ *: NONE
+ rtc: "Wed"
- *: "Insert next"
+ *: NONE
+ rtc: ""
- id: LANG_INSERT_LAST
- desc: in onplay menu. append a track/playlist into dynamic playlist.
+ id: LANG_WEEKDAY_THURSDAY
+ desc: Maximum 3-letter abbreviation for weekday
user:
- *: "Insert last"
+ *: NONE
+ rtc: "Thu"
- *: "Insert last"
+ *: NONE
+ rtc: "Thu"
- *: "Insert last"
+ *: NONE
+ rtc: ""
- id: LANG_INSERT_SHUFFLED
- desc: in onplay menu. insert a track/playlist randomly into dynamic playlist
+ id: LANG_WEEKDAY_FRIDAY
+ desc: Maximum 3-letter abbreviation for weekday
user:
- *: "Insert shuffled"
+ *: NONE
+ rtc: "Fri"
- *: "Insert shuffled"
+ *: NONE
+ rtc: "Fri"
- *: "Insert shuffled"
+ *: NONE
+ rtc: ""
- id: LANG_QUEUE
- desc: The verb/action Queue
+ id: LANG_WEEKDAY_SATURDAY
+ desc: Maximum 3-letter abbreviation for weekday
user:
- *: "Queue"
+ *: NONE
+ rtc: "Sat"
- *: "Queue"
+ *: NONE
+ rtc: "Sat"
- *: "Queue"
+ *: NONE
+ rtc: ""
- id: LANG_QUEUE_FIRST
- desc: in onplay menu. queue a track/playlist into dynamic playlist.
+ id: LANG_MONTH_JANUARY
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Queue next"
+ *: NONE
+ rtc: "Jan"
- *: "Queue next"
+ *: NONE
+ rtc: "Jan"
- *: "Queue next"
+ *: NONE
+ rtc: "January"
- id: LANG_QUEUE_LAST
- desc: in onplay menu. queue a track/playlist at end of playlist.
+ id: LANG_MONTH_FEBRUARY
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Queue last"
+ *: NONE
+ rtc: "Feb"
- *: "Queue last"
+ *: NONE
+ rtc: "Feb"
- *: "Queue last"
+ *: NONE
+ rtc: "February"
- id: LANG_QUEUE_SHUFFLED
- desc: in onplay menu. queue a track/playlist randomly into dynamic playlist
+ id: LANG_MONTH_MARCH
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Queue shuffled"
+ *: NONE
+ rtc: "Mar"
- *: "Queue shuffled"
+ *: NONE
+ rtc: "Mar"
- *: "Queue shuffled"
+ *: NONE
+ rtc: "March"
- id: LANG_SEARCH_IN_PLAYLIST
- desc: in playlist menu.
+ id: LANG_MONTH_APRIL
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Search In Playlist"
+ *: NONE
+ rtc: "Apr"
- *: "Search In Playlist"
+ *: NONE
+ rtc: "Apr"
- *: "Search In Playlist"
+ *: NONE
+ rtc: "April"
- id: LANG_PLAYLIST_SEARCH_MSG
- desc: splash number of tracks inserted
+ id: LANG_MONTH_MAY
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Searching... %d found (%s)"
+ *: NONE
+ rtc: "May"
- *: "Searching... %d found (%s)"
+ *: NONE
+ rtc: "May"
- *: ""
+ *: NONE
+ rtc: "May"
- id: LANG_BOOKMARK_MENU_CREATE
- desc: Used off of the bookmark menu to create a bookmark
+ id: LANG_MONTH_JUNE
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Create Bookmark"
+ *: NONE
+ rtc: "Jun"
- *: "Create Bookmark"
+ *: NONE
+ rtc: "Jun"
- *: "Create Bookmark"
+ *: NONE
+ rtc: "June"
- id: LANG_BOOKMARK_MENU_LIST
- desc: Used off of the bookmark menu to list available bookmarks for the currently playing directory or M3U
+ id: LANG_MONTH_JULY
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "List Bookmarks"
+ *: NONE
+ rtc: "Jul"
- *: "List Bookmarks"
+ *: NONE
+ rtc: "Jul"
- *: "List Bookmarks"
+ *: NONE
+ rtc: "July"
- id: LANG_ROCKBOX_INFO
- desc: displayed topmost on the info screen
+ id: LANG_MONTH_AUGUST
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Rockbox Info:"
+ *: NONE
+ rtc: "Aug"
- *: "Rockbox Info:"
+ *: NONE
+ rtc: "Aug"
- *: ""
+ *: NONE
+ rtc: "August"
- id: LANG_BUFFER_STAT_PLAYER
- desc: the buffer size player-screen width, %d MB %d fraction of MB
+ id: LANG_MONTH_SEPTEMBER
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Buf: %d.%03dMB"
+ *: NONE
+ rtc: "Sep"
- *: "Buf: %d.%03dMB"
+ *: NONE
+ rtc: "Sep"
- *: ""
+ *: NONE
+ rtc: "September"
- id: LANG_BUFFER_STAT_RECORDER
- desc: the buffer size recorder-screen width, %d MB %d fraction of MB
+ id: LANG_MONTH_OCTOBER
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Buffer: %d.%03dMB"
+ *: NONE
+ rtc: "Oct"
- *: "Buffer: %d.%03dMB"
+ *: NONE
+ rtc: "Oct"
- *: ""
+ *: NONE
+ rtc: "October"
- id: LANG_BATTERY_CHARGE
- desc: tells that the battery is charging, instead of battery level
+ id: LANG_MONTH_NOVEMBER
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Battery: Charging"
+ *: NONE
+ rtc: "Nov"
- *: "Battery: Charging"
+ *: NONE
+ rtc: "Nov"
- *: "Charging"
+ *: NONE
+ rtc: "November"
- id: LANG_BATTERY_TOPOFF_CHARGE
- desc: in info display, shows that top off charge is running
+ id: LANG_MONTH_DECEMBER
+ desc: Maximum 3-letter abbreviation for monthname
user:
- *: "Battery: Top-Off Chg"
+ *: NONE
+ rtc: "Dec"
- *: "Battery: Top-Off Chg"
+ *: NONE
+ rtc: "Dec"
- *: "Top off charge"
+ *: NONE
+ rtc: "December"
- id: LANG_BATTERY_TRICKLE_CHARGE
- desc: in info display, shows that trickle charge is running
+ id: LANG_POWEROFF_IDLE
+ desc: in settings_menu
user:
- *: "Battery: Trickle Chg"
+ *: "Idle Poweroff"
- *: "Battery: Trickle Chg"
+ *: "Idle Poweroff"
- *: "Trickle charge"
+ *: "Idle Poweroff"
- id: LANG_BATTERY_TIME
- desc: battery level in % and estimated time remaining
+ id: LANG_SLEEP_TIMER
+ desc: sleep timer setting
user:
- *: "Battery: %d%% %dh %dm"
- player,recorder,fmrecorder,recorderv2,ondiosp,ondiofm,ifp7xx: "%d%% %dh %dm"
- h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
+ *: "Sleep Timer"
- *: "Battery: %d%% %dh %dm"
- player,recorder,fmrecorder,recorderv2,ondiosp,ondiofm,ifp7xx: "%d%% %dh %dm"
- h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
+ *: "Sleep Timer"
- *: "Battery level"
+ *: "Sleep Timer"
- id: LANG_DISK_SIZE_INFO
- desc: disk size info
+ id: LANG_LIMITS_MENU
+ desc: in the system sub menu
user:
- *: "Disk:"
+ *: "Limits"
- *: "Disk:"
+ *: "Limits"
- *: ""
+ *: "Limits"
- id: LANG_DISK_FREE_INFO
- desc: disk size info
+ id: LANG_MAX_FILES_IN_DIR
+ desc: in settings_menu
user:
- *: "Free:"
+ *: "Max Files in Dir Browser"
- *: "Free:"
+ *: "Max Files in Dir Browser"
- *: "Free diskspace:"
+ *: "Maximum files in directory browser"
- id: LANG_DISK_NAME_INTERNAL
- desc: in info menu; name for internal disk with multivolume (keep short!)
+ id: LANG_MAX_FILES_IN_PLAYLIST
+ desc: in settings_menu
user:
- *: "Int:"
+ *: "Max Playlist Size"
- *: "Int:"
+ *: "Max Playlist Size"
- *: "Internal"
+ *: "Maximum playlist size"
- id: LANG_DISK_NAME_MMC
- desc: in info menu; name for external disk with multivolume (Ondio; keep short!)
+ id: LANG_CAR_ADAPTER_MODE
+ desc: Displayed for setting car adapter mode to on/off
user:
- *: "MMC:"
+ *: "Car Adapter Mode"
- *: "MMC:"
+ *: "Car Adapter Mode"
- *: "Multimedia card"
+ *: "Car Adapter Mode"
- id: VOICE_CURRENT_TIME
- desc: spoken only, for wall clock announce
+ id: LANG_ALARM_MOD_ALARM_MENU
+ desc: The name of the additional entry in the main menu for the RTC alarm mod.
user:
- *: ""
+ *: NONE
+ alarm: "Wake-Up Alarm"
- *: ""
+ *: NONE
+ alarm: "Wake-Up Alarm"
- *: "Current time:"
+ *: NONE
+ alarm: "Wake-Up Alarm"
- id: LANG_PITCH_UP
- desc: in wps
+ id: LANG_ALARM_MOD_TIME
+ desc: The current alarm time shown in the alarm menu for the RTC alarm mod.
user:
- *: "Pitch Up"
+ *: NONE
+ alarm: "Alarm Time: %02d:%02d"
- *: "Pitch Up"
+ *: NONE
+ alarm: "Alarm Time: %02d:%02d"
- *: ""
+ *: NONE
+ alarm: ""
- id: LANG_PITCH_DOWN
- desc: in wps
+ id: LANG_ALARM_MOD_TIME_TO_GO
+ desc: The time until the alarm will go off shown in the alarm menu for the RTC alarm mod.
user:
- *: "Pitch Down"
+ *: NONE
+ alarm: "Waking Up In %d:%02d"
- *: "Pitch Down"
+ *: NONE
+ alarm: "Waking Up In %d:%02d"
- *: ""
+ *: NONE
+ alarm: ""
- id: LANG_PAUSE
- desc: in wps
+ id: LANG_ALARM_MOD_SHUTDOWN
+ desc: The text that tells the user that the alarm time is ok and the device shuts off (for the RTC alarm mod).
user:
- *: "Pause"
+ *: NONE
+ alarm: "Alarm Set"
- *: "Pause"
+ *: NONE
+ alarm: "Alarm Set"
- *: ""
+ *: NONE
+ alarm: ""
- id: LANG_F2_MODE
- desc: in wps F2 pressed
+ id: LANG_ALARM_MOD_ERROR
+ desc: The text that tells that the time is incorrect (for the RTC alarm mod).
user:
- *: "Mode:"
+ *: NONE
+ alarm: "Alarm Time Is Too Soon!"
- *: "Mode:"
+ *: NONE
+ alarm: "Alarm Time Is Too Soon!"
- *: ""
+ *: NONE
+ alarm: ""
- id: LANG_F3_STATUS
- desc: in wps F3 pressed
+ id: LANG_ALARM_MOD_KEYS
+ desc: Shown key functions in alarm menu (for the RTC alarm mod).
user:
- *: "Status"
+ *: NONE
+ alarm: "PLAY=Set OFF=Cancel"
+ ipod*: "SELECT=Set MENU=Cancel"
- *: "Status"
+ *: NONE
+ alarm: "PLAY=Set OFF=Cancel"
+ ipod*: "SELECT=Set MENU=Cancel"
- *: ""
+ *: NONE
+ alarm,ipod*: ""
- id: LANG_F3_SCROLL
- desc: in wps F3 pressed
+ id: LANG_ALARM_MOD_DISABLE
+ desc: Announce that the RTC alarm has been turned off
user:
- *: "Scroll"
+ *: NONE
+ alarm: "Alarm Disabled"
- *: "Scroll"
+ *: NONE
+ alarm: "Alarm Disabled"
- *: ""
+ *: NONE
+ alarm: ""
- id: LANG_F3_BAR
- desc: in wps F3 pressed
+ id: LANG_BOOKMARK_SETTINGS
+ desc: in general settings
user:
- *: "Bar"
+ *: "Bookmarking"
- *: "Bar"
+ *: "Bookmarking"
- *: ""
+ *: "Bookmarking"
- id: LANG_BOOKMARK_SELECT_LIST_BOOKMARKS
- desc: From the auto-load screen, allows user to list all bookmarks
+ id: LANG_BOOKMARK_SETTINGS_AUTOCREATE
+ desc: prompt for user to decide to create an bookmark
user:
- *: "Down = List"
+ *: "Bookmark on Stop"
- *: "Down = List"
+ *: "Bookmark on Stop"
- *: ""
+ *: "Bookmark on Stop"
- id: LANG_BOOKMARK_SELECT_EXIT
- desc: From the bookmark list screen, allows user to exit
+ id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_YES
+ desc: Save in recent bookmarks only
user:
- *: "OFF = Exit"
- h100,h120,h300: "STOP = Exit"
- ipod*: "PLAY/PAUSE = Exit"
- x5: "RECORD = Exit"
- h10: "PREV = Exit"
+ *: "Yes - Recent only"
- *: "OFF = Exit"
- h100,h120,h300: "STOP = Exit"
- ipod*: "PLAY/PAUSE = Exit"
- x5: "RECORD = Exit"
- h10: "PREV = Exit"
+ *: "Yes - Recent only"
- *: ""
+ *: "Yes - Recent only"
- id: LANG_BOOKMARK_SELECT_BOOKMARK_TEXT
- desc: Used on the bookmark select window to label bookmark number
+ id: LANG_BOOKMARK_SETTINGS_RECENT_ONLY_ASK
+ desc: Save in recent bookmarks only
user:
- *: "Bookmark"
+ *: "Ask - Recent only"
- *: "Bookmark"
+ *: "Ask - Recent only"
- *: ""
+ *: "Ask - Recent only"
- id: LANG_BOOKMARK_SELECT_INDEX_TEXT
- desc: Used on the bookmark select window to label index number
+ id: LANG_BOOKMARK_SETTINGS_AUTOLOAD
+ desc: prompt for user to decide to create a bookmark
user:
- *: "Index"
+ *: "Load Last Bookmark"
- *: "Index"
+ *: "Load Last Bookmark"
- *: "Index"
+ *: "Load Last Bookmark"
- id: LANG_BOOKMARK_SELECT_TIME_TEXT
- desc: Used on the bookmark select window to label elapsed time
+ id: LANG_BOOKMARK_SETTINGS_MAINTAIN_RECENT_BOOKMARKS
+ desc: Configuration option to maintain a list of recent bookmarks
user:
- *: "Time"
+ *: "Maintain a List of Recent Bookmarks?"
- *: "Time"
+ *: "Maintain a List of Recent Bookmarks?"
- *: "Time"
+ *: "Maintain a List of Recent Bookmarks?"
- id: LANG_BOOKMARK_SELECT_PLAY
- desc: Used on the bookmark select window to indicated the play option
+ id: LANG_BOOKMARK_SETTINGS_UNIQUE_ONLY
+ desc: Save only on bookmark for each playlist in recent bookmarks
user:
- *: "PLAY = Select"
- h100,h120,h300: "NAVI = Select"
- ipod*: "SELECT = Select"
- x5: "SELECT = Select"
- h10: "NEXT = Select"
+ *: "Unique only"
- *: "PLAY = Select"
- h100,h120,h300: "NAVI = Select"
- ipod*: "SELECT = Select"
- x5: "SELECT = Select"
- h10: "NEXT = Select"
+ *: "Unique only"
- *: ""
+ *: "Unique only"
- id: LANG_BOOKMARK_SELECT_DELETE
- desc: Used on the bookmark select window to indicated the bookmark delete option
+ id: LANG_LANGUAGE
+ desc: in settings_menu
user:
- *: "ON+Play = Delete"
- h100,h120,h300: "RECORD = Delete"
- ipod*: "Long MENU = Delete"
- x5: "Long RECORD = Delete"
- h10: "REWIND = Delete"
+ *: "Language"
- *: "ON+Play = Delete"
- h100,h120,h300: "RECORD = Delete"
- ipod*: "Long MENU = Delete"
- x5: "Long RECORD = Delete"
- h10: "REWIND = Delete"
+ *: "Language"
- *: ""
+ *: "Language"
- id: LANG_BOOKMARK_AUTOLOAD_QUERY
- desc: prompt for user to decide to create a bookmark
+ id: LANG_LANGUAGE_LOADED
+ desc: shown when a language has been loaded from the dir browser
user:
- *: "Load Last Bookmark?"
+ *: "New Language"
- *: "Load Last Bookmark?"
+ *: "New Language"
*: ""
- id: LANG_AUTO_BOOKMARK_QUERY
- desc: prompt for user to decide to create an bookmark
+ id: LANG_VOICE
+ desc: root of voice menu
user:
- *: "Create a Bookmark?"
+ *: "Voice"
- *: "Create a Bookmark?"
+ *: "Voice"
- *: ""
+ *: "Voice"
- id: LANG_BOOKMARK_CREATE_SUCCESS
- desc: Indicates bookmark was successfully created
+ id: LANG_VOICE_MENU
+ desc: item of voice menu, enable/disable the voice UI
user:
- *: "Bookmark Created"
+ *: "Voice Menus"
- *: "Bookmark Created"
+ *: "Voice Menus"
- *: ""
+ *: "Voice Menus"
- id: LANG_BOOKMARK_CREATE_FAILURE
- desc: Indicates bookmark was not created
+ id: LANG_VOICE_DIR
+ desc: item of voice menu, set the "talkbox" mode for directories
user:
- *: "Bookmark Failed!"
+ *: "Voice Directories"
- *: "Bookmark Failed!"
+ *: "Voice Directories"
- *: ""
+ *: "Voice Directories"
- id: LANG_BOOKMARK_LOAD_EMPTY
- desc: Indicates bookmark was empty
+ id: LANG_VOICE_FILE
+ desc: item of voice menu, set the voive mode for files
user:
- *: "Bookmark Empty"
+ *: "Voice Filenames"
- *: "Bookmark Empty"
+ *: "Voice Filenames"
- *: ""
+ *: "Voice Filenames"
- id: LANG_TIME_SET
- desc: used in set_time()
+ id: LANG_VOICE_NUMBER
+ desc: "talkbox" mode for files+directories
user:
- *: "ON To Set"
- h100,h120,h300: "NAVI = Set"
- ipod*: "SELECT = Set"
- x5: "SELECT = Set"
- h10: "NEXT = Set"
+ *: "Numbers"
- *: "ON To Set"
- h100,h120,h300: "NAVI = Set"
- ipod*: "SELECT = Set"
- x5: "SELECT = Set"
- h10: "NEXT = Set"
+ *: "Numbers"
- *: ""
+ *: "Numbers"
- id: LANG_TIME_REVERT
- desc: used in set_time()
+ id: LANG_VOICE_SPELL
+ desc: "talkbox" mode for files+directories
user:
- *: "OFF To Revert"
- h100,h120,h300: "STOP = Revert"
- ipod*: "MENU = Revert"
- x5: "RECORD = Revert"
- h10: "PREV = Revert"
+ *: "Spell"
- *: "OFF To Revert"
- h100,h120,h300: "STOP = Revert"
- ipod*: "MENU = Revert"
- x5: "RECORD = Revert"
- h10: "PREV = Revert"
+ *: "Spell"
- *: ""
+ *: "Spell"
- id: LANG_KEYLOCK_ON_PLAYER
- desc: displayed when key lock is on
+ id: LANG_VOICE_DIR_HOVER
+ desc: "talkbox" mode for directories + files
user:
- *: "Key Lock ON"
+ *: ".talk mp3 clip"
- *: "Key Lock ON"
+ *: ".talk mp3 clip"
- *: ""
+ *: "talk mp3 clip"
- id: LANG_KEYLOCK_OFF_PLAYER
- desc: displayed when key lock is turned off
+ id: LANG_MANAGE_MENU
+ desc: in the main menu
user:
- *: "Key Lock OFF"
+ *: "Manage Settings"
- *: "Key Lock OFF"
+ *: "Manage Settings"
- *: ""
+ *: "Manage Settings"
- id: LANG_KEYLOCK_ON_RECORDER
- desc: displayed when key lock is on
+ id: LANG_CUSTOM_CFG
+ desc: in setting_menu()
user:
- *: "Keylock is ON"
+ *: "Browse .cfg files"
- *: "Keylock is ON"
+ *: "Browse .cfg files"
- *: ""
+ *: "Browse configuration files"
- id: LANG_KEYLOCK_OFF_RECORDER
- desc: displayed when key lock is turned off
+ id: LANG_SETTINGS_LOADED
+ desc: Feedback shown when a .cfg file is loaded
user:
- *: "Keylock is OFF"
+ *: "Settings Loaded"
- *: "Keylock is OFF"
+ *: "Settings Loaded"
*: ""
- id: LANG_RECORDING_TIME
- desc: Display of recorded time
+ id: LANG_RESET
+ desc: in system_settings_menu()
user:
- *: "Time:"
+ *: "Reset Settings"
- *: "Time:"
+ *: "Reset Settings"
- *: ""
+ *: "Reset Settings"
- id: LANG_RECORD_TIMESPLIT_REC
- desc: Display of record timer interval setting, on the record screen
+ id: LANG_RESET_DONE_CLEAR
+ desc: visual confirmation after settings reset
user:
- *: "Split Time:"
+ *: "Cleared"
- *: "Split Time:"
+ *: "Cleared"
*: ""
- id: LANG_RECORDING_SIZE
- desc: Display of recorded file size
+ id: LANG_SAVE_SETTINGS
+ desc: in system_settings_menu()
user:
- *: "Size:"
+ *: "Write .cfg file"
- *: "Size:"
+ *: "Write .cfg file"
- *: ""
+ *: "Write configuration file"
- id: LANG_RECORD_PRERECORD
- desc: in recording and radio screen
+ id: LANG_SETTINGS_SAVED
+ desc: Feedback shown when a .cfg file is saved
user:
- *: "Pre-Recording"
+ *: "Settings Saved"
- *: "Pre-Recording"
+ *: "Settings Saved"
*: ""
- id: LANG_RECORDING_GAIN
- desc: in the recording screen
+ id: LANG_SAVE_THEME
+ desc: save a theme file
user:
- *: "Gain"
+ *: "Save Theme Settings"
- *: "Gain"
+ *: "Save Theme Settings"
- *: ""
+ *: "Save Theme Settings"
- id: LANG_RECORDING_LEFT
- desc: in the recording screen
+ id: LANG_CUSTOM_THEME
+ desc: in the main menu
user:
- *: "Gain Left"
+ *: "Browse Themes"
- *: "Gain Left"
+ *: "Browse Themes"
- *: ""
+ *: "Browse Themes"
- id: LANG_RECORDING_RIGHT
- desc: in the recording screen
+ id: LANG_RECORDING_SETTINGS
+ desc: in the main menu
user:
- *: "Gain Right"
+ *: NONE
+ recording: "Recording Settings"
- *: "Gain Right"
+ *: NONE
+ recording: "Recording Settings"
- *: ""
+ *: NONE
+ recording: "Recording Settings"
- id: LANG_RECORDING_GAIN_ANALOG
- desc: in the recording screen
+ id: LANG_FM_MENU
+ desc: fm menu title
user:
- *: "A"
+ *: NONE
+ radio: "FM Radio Menu"
- *: "A"
+ *: NONE
+ radio: "FM Radio Menu"
- *: ""
+ *: NONE
+ radio: "FM Radio Menu"
- id: LANG_RECORDING_GAIN_DIGITAL
- desc: in the recording screen
+ id: LANG_FM_STATION
+ desc: in radio screen
user:
- *: "D"
+ *: NONE
+ radio: "Station: %d.%02d MHz"
- *: "D"
+ *: NONE
+ radio: "Station: %d.%02d MHz"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_DISK_FULL
- desc: in recording screen
+ id: LANG_FM_NO_PRESETS
+ desc: error when preset list is empty
user:
- *: "The disk is full. Press OFF to continue."
- h100,h120,h300: "The disk is full. Press STOP to continue."
+ *: NONE
+ radio: "No presets"
- *: "The disk is full. Press OFF to continue."
- h100,h120,h300: "The disk is full. Press STOP to continue."
+ *: NONE
+ radio: "No presets"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_RECORD_TRIGGER_MODE
- desc: in recording settings_menu
+ id: LANG_FM_ADD_PRESET
+ desc: in radio menu
user:
- *: "Trigger"
+ *: NONE
+ radio: "Add Preset"
- *: "Trigger"
+ *: NONE
+ radio: "Add Preset"
- *: ""
+ *: NONE
+ radio: "Add Preset"
- id: LANG_RECORD_TRIG_NOREARM
- desc: in recording settings_menu
+ id: LANG_FM_EDIT_PRESET
+ desc: in radio screen
user:
- *: "Once"
+ *: NONE
+ radio: "Edit Preset"
- *: "Once"
+ *: NONE
+ radio: "Edit Preset"
- *: ""
+ *: NONE
+ radio: "Edit Preset"
- id: LANG_RECORD_TRIG_REARM
- desc: in recording settings_menu
+ id: LANG_FM_DELETE_PRESET
+ desc: in radio screen
user:
- *: "Repeat"
+ *: NONE
+ radio: "Remove Preset"
- *: "Repeat"
+ *: NONE
+ radio: "Remove Preset"
- *: ""
+ *: NONE
+ radio: "Remove Preset"
- id: LANG_RECORD_START_THRESHOLD
- desc: in recording settings_menu
+ id: LANG_FM_PRESET_SAVE_FAILED
+ desc: in radio screen
user:
- *: "Start Above"
+ *: NONE
+ radio: "Preset Save Failed"
- *: "Start Above"
+ *: NONE
+ radio: "Preset Save Failed"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_RECORD_MIN_DURATION
- desc: in recording settings_menu
+ id: LANG_FM_NO_FREE_PRESETS
+ desc: in radio screen
user:
- *: "for at least"
+ *: NONE
+ radio: "The Preset List is Full"
- *: "for at least"
+ *: NONE
+ radio: "The Preset List is Full"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_RECORD_STOP_THRESHOLD
- desc: in recording settings_menu
+ id: LANG_BUTTONBAR_MENU
+ desc: in button bar
user:
- *: "Stop Below"
+ *: NONE
+ radio: "Menu"
- *: "Stop Below"
+ *: NONE
+ radio: "Menu"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_RECORD_STOP_POSTREC
- desc: in recording settings_menu
+ id: LANG_FM_BUTTONBAR_EXIT
+ desc: in radio screen
user:
- *: "for at least"
+ *: NONE
+ radio: "Exit"
- *: "for at least"
+ *: NONE
+ radio: "Exit"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_RECORD_STOP_GAP
- desc: in recording settings_menu
+ id: LANG_FM_BUTTONBAR_ACTION
+ desc: in radio screen
user:
- *: "Presplit Gap"
+ *: NONE
+ radio: "Action"
- *: "Presplit Gap"
+ *: NONE
+ radio: "Action"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_DB_INF
- desc: -inf db for values below measurement
+ id: LANG_PRESET
+ desc: in button bar and radio screen / menu
user:
- *: "-inf"
+ *: NONE
+ radio: "Preset"
- *: "-inf"
+ *: NONE
+ radio: "Preset"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_RECORD_TRIG_IDLE
- desc: waiting for threshold
+ id: LANG_FM_BUTTONBAR_ADD
+ desc: in radio screen
user:
- *: "Trigger Idle"
+ *: NONE
+ radio: "Add"
- *: "Trigger Idle"
+ *: NONE
+ radio: "Add"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_RECORD_TRIGGER_ACTIVE
- desc:
+ id: LANG_FM_BUTTONBAR_RECORD
+ desc: in radio screen
user:
- *: "Trigger Active"
+ *: NONE
+ radio: "Record"
- *: "Trigger Active"
+ *: NONE
+ radio: "Record"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_ALARM_MOD_TIME
- desc: The current alarm time shown in the alarm menu for the RTC alarm mod.
+ id: LANG_FM_MONO_MODE
+ desc: in radio screen
user:
- *: "Alarm Time: %02d:%02d"
+ *: NONE
+ radio: "Force mono"
- *: "Alarm Time: %02d:%02d"
+ *: NONE
+ radio: "Force mono"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_ALARM_MOD_TIME_TO_GO
- desc: The time until the alarm will go off shown in the alarm menu for the RTC alarm mod.
+ id: LANG_FM_FREEZE
+ desc: splash screen during freeze in radio mode
user:
- *: "Waking Up In %d:%02d"
+ *: NONE
+ radio: "Screen frozen!"
- *: "Waking Up In %d:%02d"
+ *: NONE
+ radio: "Screen frozen!"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_ALARM_MOD_SHUTDOWN
- desc: The text that tells the user that the alarm time is ok and the device shuts off (for the RTC alarm mod).
+ id: LANG_FM_SCAN_PRESETS
+ desc: in radio menu
user:
- *: "Alarm Set"
+ *: NONE
+ radio: "Auto-Scan Presets"
- *: "Alarm Set"
+ *: NONE
+ radio: "Auto-Scan Presets"
- *: ""
+ *: NONE
+ radio: "Auto scan presets"
- id: LANG_ALARM_MOD_ERROR
- desc: The text that tells that the time is incorrect (for the RTC alarm mod).
+ id: LANG_FM_CLEAR_PRESETS
+ desc: confirmation if presets can be cleared
user:
- *: "Alarm Time Is Too Soon!"
+ *: NONE
+ radio: "Clear Current Presets?"
- *: "Alarm Time Is Too Soon!"
+ *: NONE
+ radio: "Clear Current Presets?"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_ALARM_MOD_KEYS
- desc: Shown key functions in alarm menu (for the RTC alarm mod).
+ id: LANG_FM_SCANNING
+ desc: during auto scan
user:
- *: "PLAY=Set OFF=Cancel"
- ipod*: "SELECT=Set MENU=Cancel"
+ *: NONE
+ radio: "Scanning %d.%02d MHz"
- *: "PLAY=Set OFF=Cancel"
- ipod*: "SELECT=Set MENU=Cancel"
+ *: NONE
+ radio: "Scanning %d.%02d MHz"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_ALARM_MOD_DISABLE
- desc: Announce that the RTC alarm has been turned off
+ id: LANG_FM_DEFAULT_PRESET_NAME
+ desc: default preset name for auto scan mode
user:
- *: "Alarm Disabled"
+ *: NONE
+ radio: "%d.%02d MHz"
- *: "Alarm Disabled"
+ *: NONE
+ radio: "%d.%02d MHz"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_COLOR_RGB_LABELS
- desc: what to show for the 'R' 'G' 'B' ONE LETTER EACH
+ id: LANG_RADIO_SCAN_MODE
+ desc: in radio screen / menu
user:
- *: "RGB"
+ *: NONE
+ radio: "Scan"
- *: "RGB"
+ *: NONE
+ radio: "Scan"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_COLOR_RGB_VALUE
- desc: in color screen
+ id: LANG_FM_PRESET_LOAD
+ desc: load preset list in fm radio
user:
- *: "RGB: %02X%02X%02X"
+ *: NONE
+ radio: "Load Preset List"
- *: "RGB: %02X%02X%02X"
+ *: NONE
+ radio: "Load Preset List"
- *: ""
+ *: NONE
+ radio: "Load Preset List"
- id: LANG_COLOR_UNACCEPTABLE
- desc: splash when user selects an invalid colour
+ id: LANG_FM_PRESET_SAVE
+ desc: Save preset list in fm radio
user:
- *: "Invalid colour"
+ *: NONE
+ radio: "Save Preset List"
- *: "Invalid colour"
+ *: NONE
+ radio: "Save Preset List"
- *: ""
+ *: NONE
+ radio: "Save Preset List"
- id: LANG_ID3_TITLE
- desc: in tag viewer
+ id: LANG_FM_PRESET_CLEAR
+ desc: clear preset list in fm radio
user:
- *: "[Title]"
+ *: NONE
+ radio: "Clear Preset List"
- *: "[Title]"
+ *: NONE
+ radio: "Clear Preset List"
- *: ""
+ *: NONE
+ radio: "Clear Preset List"
- id: LANG_ID3_ARTIST
- desc: in tag viewer
+ id: LANG_FMR
+ desc: Used when you need to say Preset List, also voiced
user:
- *: "[Artist]"
+ *: NONE
+ radio: "Preset List"
- *: "[Artist]"
+ *: NONE
+ radio: "Preset List"
- *: ""
+ *: NONE
+ radio: "Preset List"
- id: LANG_ID3_ALBUM
- desc: in tag viewer
+ id: LANG_FM_FIRST_AUTOSCAN
+ desc: When you run the radio without an fmr file in settings
user:
- *: "[Album]"
+ *: NONE
+ radio: "No settings found. Autoscan?"
- *: "[Album]"
+ *: NONE
+ radio: "No settings found. Autoscan?"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_ID3_TRACKNUM
- desc: in tag viewer
+ id: LANG_FM_SAVE_CHANGES
+ desc: When you try to exit radio to confirm save
user:
- *: "[Tracknum]"
+ *: NONE
+ radio: "Save Changes?"
- *: "[Tracknum]"
+ *: NONE
+ radio: "Save Changes?"
- *: ""
+ *: NONE
+ radio: ""
- id: LANG_ID3_GENRE
- desc: in tag viewer
- user:
+ id: LANG_FM_REGION
+ desc: fm tuner region setting
- *: "[Genre]"
+ *: NONE
+ radio: "Region"
- *: "[Genre]"
+ *: NONE
+ radio: "Region"
- *: ""
+ *: NONE
+ radio: "Region"
- id: LANG_ID3_YEAR
- desc: in tag viewer
- user:
+ id: LANG_FM_EUROPE
+ desc: fm tuner region europe
- *: "[Year]"
+ *: NONE
+ radio: "Europe"
- *: "[Year]"
+ *: NONE
+ radio: "Europe"
- *: ""
+ *: NONE
+ radio: "Europe"
- id: LANG_ID3_LENGTH
- desc: in tag viewer
- user:
+ id: LANG_FM_US
+ desc: fm region us / canada
- *: "[Length]"
+ *: NONE
+ radio: "US / Canada"
- *: "[Length]"
+ *: NONE
+ radio: "US / Canada"
- *: ""
+ *: NONE
+ radio: "US / Canada"
- id: LANG_ID3_PLAYLIST
- desc: in tag viewer
- user:
+ id: LANG_FM_JAPAN
+ desc: fm region japan
- *: "[Playlist]"
+ *: NONE
+ radio: "Japan"
- *: "[Playlist]"
+ *: NONE
+ radio: "Japan"
- *: ""
+ *: NONE
+ radio: "Japan"
- id: LANG_ID3_BITRATE
- desc: in tag viewer
- user:
+ id: LANG_FM_KOREA
+ desc: fm region korea
- *: "[Bitrate]"
+ *: NONE
+ radio: "Korea"
- *: "[Bitrate]"
+ *: NONE
+ radio: "Korea"
- *: ""
+ *: NONE
+ radio: "Korea"
- id: LANG_UNIT_DB
- desc: in browse_id3
+ id: LANG_RECORDING_FORMAT
+ desc: audio format item in recording menu
user:
- *: "dB"
+ *: NONE
+ recording_swcodec: "Format"
- *: "dB"
+ *: NONE
+ recording_swcodec: "Format"
- *: ""
+ *: NONE
+ recording_swcodec: "Format"
- id: LANG_ID3_VBR
- desc: in browse_id3
+ id: LANG_AFMT_MPA_L3
+ desc: audio format description
user:
- *: " (VBR)"
+ *: NONE
+ recording_swcodec: "MPEG Layer 3"
- *: " (VBR)"
+ *: NONE
+ recording_swcodec: "MPEG Layer 3"
- *: ""
+ *: NONE
+ recording_swcodec: "MPEG Layer 3"
- id: LANG_ID3_FRECUENCY
- desc: in tag viewer
+ id: LANG_AFMT_PCM_WAV
+ desc: audio format description
user:
- *: "[Frequency]"
+ *: NONE
+ recording_swcodec: "PCM Wave"
- *: "[Frequency]"
+ *: NONE
+ recording_swcodec: "PCM Wave"
- *: ""
+ *: NONE
+ recording_swcodec: "PCM Wave"
- id: LANG_ID3_TRACK_GAIN
- desc: in tag viewer
+ id: LANG_AFMT_WAVPACK
+ desc: audio format description
user:
- *: "[Track Gain]"
+ *: NONE
+ recording_swcodec: "WavPack"
- *: "[Track Gain]"
+ *: NONE
+ recording_swcodec: "WavPack"
- *: ""
+ *: NONE
+ recording_swcodec: "WavPack"
- id: LANG_ID3_ALBUM_GAIN
- desc: in tag viewer
+ id: LANG_AFMT_AIFF
+ desc: audio format description
user:
- *: "[Album Gain]"
+ *: NONE
+ recording_swcodec: "AIFF"
- *: "[Album Gain]"
+ *: NONE
+ recording_swcodec: "AIFF"
- *: ""
+ *: NONE
+ recording_swcodec: "AIFF"
- id: LANG_ID3_PATH
- desc: in tag viewer
+ id: LANG_ENCODER_SETTINGS
+ desc: encoder settings
user:
- *: "[Path]"
+ *: NONE
+ recording_swcodec: "Encoder Settings"
- *: "[Path]"
+ *: NONE
+ recording_swcodec: "Encoder Settings"
- *: ""
+ *: NONE
+ recording_swcodec: "Encoder Settings"
- id: LANG_ID3_NO_INFO
- desc: in tag viewer
+ id: LANG_BITRATE
+ desc: bits-kilobits per unit time
user:
- *: ""
+ *: NONE
+ recording_swcodec: "Bitrate"
- *: ""
+ *: NONE
+ recording_swcodec: "Bitrate"
- *: ""
+ *: NONE
+ recording_swcodec: "Bitrate"
- id: LANG_WEEKDAY_SUNDAY
- desc: Maximum 3-letter abbreviation for weekday
+ id: LANG_NO_SETTINGS
+ desc: when something has settings in a certain context
user:
- *: "Sun"
+ *: NONE
+ recording_swcodec: "(No Settings)"
- *: "Sun"
+ *: NONE
+ recording_swcodec: "(No Settings)"
- *: ""
+ *: NONE
+ recording_swcodec: "No settings available"
- id: LANG_WEEKDAY_MONDAY
- desc: Maximum 3-letter abbreviation for weekday
+ id: LANG_RECORDING_QUALITY
+ desc: in the recording settings
user:
- *: "Mon"
+ *: NONE
+ recording_hwcodec: "Quality"
- *: "Mon"
+ *: NONE
+ recording_hwcodec: "Quality"
- *: ""
+ *: NONE
+ recording_hwcodec: "Quality"
- id: LANG_WEEKDAY_TUESDAY
- desc: Maximum 3-letter abbreviation for weekday
+ id: LANG_RECORDING_FREQUENCY
+ desc: in the recording settings
user:
- *: "Tue"
+ *: NONE
+ recording: "Frequency"
- *: "Tue"
+ *: NONE
+ recording: "Frequency"
- *: ""
+ *: NONE
+ recording: "Frequency"
- id: LANG_WEEKDAY_WEDNESDAY
- desc: Maximum 3-letter abbreviation for weekday
+ id: LANG_SOURCE_FREQUENCY
+ desc: when recording source frequency setting must follow source
user:
- *: "Wed"
+ *: NONE
+ recording: "(Same As Source)"
- *: "Wed"
+ *: NONE
+ recording: "(Same As Source)"
- *: ""
+ *: NONE
+ recording: "Same As Source"
- id: LANG_WEEKDAY_THURSDAY
- desc: Maximum 3-letter abbreviation for weekday
+ id: LANG_RECORDING_SOURCE
+ desc: in the recording settings
user:
- *: "Thu"
+ *: NONE
+ recording: "Source"
- *: "Thu"
+ *: NONE
+ recording: "Source"
- *: ""
+ *: NONE
+ recording: "Source"
- id: LANG_WEEKDAY_FRIDAY
- desc: Maximum 3-letter abbreviation for weekday
+ id: LANG_RECORDING_SRC_MIC
+ desc: in the recording settings
user:
- *: "Fri"
+ *: NONE
+ recording: "Microphone"
+ h100,h120,h300: "Internal Microphone"
- *: "Fri"
+ *: NONE
+ recording: "Microphone"
+ h100,h120,h300: "Internal Microphone"
- *: ""
+ *: NONE
+ recording: "Microphone"
+ h100,h120,h300: "Internal Microphone"
- id: LANG_WEEKDAY_SATURDAY
- desc: Maximum 3-letter abbreviation for weekday
+ id: LANG_RECORDING_SRC_DIGITAL
+ desc: in the recording settings
user:
- *: "Sat"
+ *: NONE
+ recording: "Digital"
- *: "Sat"
+ *: NONE
+ recording: "Digital"
- *: ""
+ *: NONE
+ recording: "Digital"
- id: LANG_MONTH_JANUARY
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_LINE_IN
+ desc: in the recording settings
user:
- *: "Jan"
+ *: "Line In"
- *: "Jan"
+ *: "Line In"
- *: "January"
+ *: "Line In"
- id: LANG_MONTH_FEBRUARY
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_RECORDING_EDITABLE
+ desc: Editable recordings setting
user:
- *: "Feb"
+ *: NONE
+ recording_hwcodec: "Independent Frames"
- *: "Feb"
+ *: NONE
+ recording_hwcodec: "Independent Frames"
- *: "February"
+ *: NONE
+ recording_hwcodec: "Independent Frames"
- id: LANG_MONTH_MARCH
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_RECORD_TIMESPLIT
+ desc: Record split menu
user:
- *: "Mar"
+ *: NONE
+ recording: "File Split Options"
- *: "Mar"
+ *: NONE
+ recording: "File Split Options"
- *: "March"
+ *: NONE
+ recording: "File Split Options"
- id: LANG_MONTH_APRIL
- desc: Maximum 3-letter abbreviation for monthname
- user:
+ id: LANG_SPLIT_MEASURE
+ desc: in record timesplit options
- *: "Apr"
+ *: NONE
+ recording: "Split Measure"
- *: "Apr"
+ *: NONE
+ recording: "Split Measure"
- *: "April"
+ *: NONE
+ recording: "Split Measure"
- id: LANG_MONTH_MAY
- desc: Maximum 3-letter abbreviation for monthname
- user:
+ id: LANG_SPLIT_TYPE
+ desc: in record timesplit options
- *: "May"
+ *: NONE
+ recording: "What to do when Splitting"
- *: "May"
+ *: NONE
+ recording: "What to do when Splitting"
- *: "May"
+ *: NONE
+ recording: "What to do when Splitting"
- id: LANG_MONTH_JUNE
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_START_NEW_FILE
+ desc: in record timesplit options
user:
- *: "Jun"
+ *: NONE
+ recording: "Start new file"
- *: "Jun"
+ *: NONE
+ recording: "Start new file"
- *: "June"
+ *: NONE
+ recording: "Start new file"
- id: LANG_MONTH_JULY
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_STOP_RECORDING
+ desc: in record timesplit options
user:
- *: "Jul"
+ *: NONE
+ recording: "Stop recording"
- *: "Jul"
+ *: NONE
+ recording: "Stop recording"
- *: "July"
+ *: NONE
+ recording: "Stop recording"
- id: LANG_MONTH_AUGUST
- desc: Maximum 3-letter abbreviation for monthname
- user:
+ id: LANG_SPLIT_TIME
+ desc: in record timesplit options
- *: "Aug"
+ *: NONE
+ recording: "Split Time"
- *: "Aug"
+ *: NONE
+ recording: "Split Time"
- *: "August"
+ *: NONE
+ recording: "Split Time"
- id: LANG_MONTH_SEPTEMBER
- desc: Maximum 3-letter abbreviation for monthname
- user:
+ id: LANG_SPLIT_SIZE
+ desc: in record timesplit options
- *: "Sep"
+ *: NONE
+ recording: "Split Filesize"
- *: "Sep"
+ *: NONE
+ recording: "Split Filesize"
- *: "September"
+ *: NONE
+ recording: "Split Filesize"
- id: LANG_MONTH_OCTOBER
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_REC_SIZE
+ desc: in record timesplit options
user:
- *: "Oct"
+ *: NONE
+ recording: "Filesize"
- *: "Oct"
+ *: NONE
+ recording: "Filesize"
- *: "October"
+ *: NONE
+ recording: "Filesize"
- id: LANG_MONTH_NOVEMBER
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_RECORD_PRERECORD_TIME
+ desc: in recording settings_menu
user:
- *: "Nov"
+ *: NONE
+ recording: "Prerecord Time"
- *: "Nov"
+ *: NONE
+ recording: "Prerecord Time"
- *: "November"
+ *: NONE
+ recording: "Pre-Record time"
- id: LANG_MONTH_DECEMBER
- desc: Maximum 3-letter abbreviation for monthname
+ id: LANG_RECORD_DIRECTORY
+ desc: in recording settings_menu
user:
- *: "Dec"
+ *: NONE
+ recording: "Directory"
- *: "Dec"
+ *: NONE
+ recording: "Directory"
- *: "December"
+ *: NONE
+ recording: "Directory"
- id: VOICE_ZERO
- desc: spoken only, for composing numbers
+ id: LANG_RECORD_CURRENT_DIR
+ desc: in recording directory options
user:
- *: ""
+ *: NONE
+ recording: "Current Directory"
- *: ""
+ *: NONE
+ recording: "Current Directory"
- *: "0"
+ *: NONE
+ recording: "Current directory"
- id: VOICE_ONE
- desc: spoken only, for composing numbers
+ id: LANG_CLIP_LIGHT
+ desc: in record settings menu.
user:
- *: ""
+ *: NONE
+ recording: "Clipping Light"
- *: ""
+ *: NONE
+ recording: "Clipping Light"
- *: "1"
+ *: NONE
+ recording: "Clipping Light"
- id: VOICE_TWO
- desc: spoken only, for composing numbers
+ id: LANG_MAIN_UNIT
+ desc: in record settings menu.
user:
- *: ""
+ *: NONE
+ remote: "Main Unit Only"
- *: ""
+ *: NONE
+ remote: "Main Unit Only"
- *: "2"
+ *: NONE
+ remote: "Main unit only"
- id: VOICE_THREE
- desc: spoken only, for composing numbers
+ id: LANG_REMOTE_UNIT
+ desc: in record settings menu.
user:
- *: ""
+ *: NONE
+ remote: "Remote Unit Only"
- *: ""
+ *: NONE
+ remote: "Remote Unit Only"
- *: "3"
+ *: NONE
+ remote: "Remote unit only"
- id: VOICE_FOUR
- desc: spoken only, for composing numbers
+ id: LANG_REMOTE_MAIN
+ desc: in record settings menu.
user:
- *: ""
+ *: NONE
+ remote: "Main and Remote Unit"
- *: ""
+ *: NONE
+ remote: "Main and Remote Unit"
- *: "4"
+ *: NONE
+ remote: "Main and remote unit"
- id: VOICE_FIFE
- desc: spoken only, for composing numbers
+ id: LANG_RECORD_TRIGGER
+ desc: in recording settings_menu
user:
- *: ""
+ *: NONE
+ recording: "Trigger"
- *: ""
+ *: NONE
+ recording: "Trigger"
- *: "5"
+ *: NONE
+ recording: "Trigger"
- id: VOICE_SIX
- desc: spoken only, for composing numbers
+ id: LANG_RECORD_TRIG_NOREARM
+ desc: in recording settings_menu
user:
- *: ""
+ *: NONE
+ recording: "Once"
- *: ""
+ *: NONE
+ recording: "Once"
- *: "6"
+ *: NONE
+ recording: ""
- id: VOICE_SEVEN
- desc: spoken only, for composing numbers
- user:
+ id: LANG_RECORD_TRIGGER_TYPE
+ desc: in recording trigger menu
- *: ""
+ *: NONE
+ recording: "Trigtype"
- *: ""
+ *: NONE
+ recording: "Trigtype"
- *: "7"
+ *: NONE
+ recording: "Trigtype"
- id: VOICE_EIGHT
- desc: spoken only, for composing numbers
- user:
+ id: LANG_RECORD_TRIGGER_NEWFILESTP
+ desc: trigger types
- *: ""
+ *: NONE
+ recording: "New file"
- *: ""
+ *: NONE
+ recording: "New file"
- *: "8"
+ *: NONE
+ recording: "New file"
- id: VOICE_NINE
- desc: spoken only, for composing numbers
- user:
+ id: LANG_RECORD_TRIGGER_STOP
+ desc: trigger types
- *: ""
+ *: NONE
+ recording: "Stop"
- *: ""
+ *: NONE
+ recording: "Stop"
- *: "9"
+ *: NONE
+ recording: "Stop"
- id: VOICE_TEN
- desc: spoken only, for composing numbers
+ id: LANG_RECORD_START_THRESHOLD
+ desc: in recording settings_menu
user:
- *: ""
+ *: NONE
+ recording: "Start Above"
- *: ""
+ *: NONE
+ recording: "Start Above"
- *: "10"
+ *: NONE
+ recording: ""
- id: VOICE_ELEVEN
- desc: spoken only, for composing numbers
+ id: LANG_MIN_DURATION
+ desc: in recording settings_menu
user:
- *: ""
+ *: NONE
+ recording: "for at least"
- *: ""
+ *: NONE
+ recording: "for at least"
- *: "11"
+ *: NONE
+ recording: ""
- id: VOICE_TWELVE
- desc: spoken only, for composing numbers
+ id: LANG_RECORD_STOP_THRESHOLD
+ desc: in recording settings_menu
user:
- *: ""
+ *: NONE
+ recording: "Stop Below"
- *: ""
+ *: NONE
+ recording: "Stop Below"
- *: "12"
+ *: NONE
+ recording: ""
- id: VOICE_THIRTEEN
- desc: spoken only, for composing numbers
+ id: LANG_RECORD_STOP_GAP
+ desc: in recording settings_menu
user:
- *: ""
+ *: NONE
+ recording: "Presplit Gap"
- *: ""
+ *: NONE
+ recording: "Presplit Gap"
- *: "13"
+ *: NONE
+ recording: ""
- id: VOICE_FOURTEEN
- desc: spoken only, for composing numbers
+ id: LANG_RECORD_PRERECORD
+ desc: in recording and radio screen
user:
- *: ""
+ *: NONE
+ recording: "Pre-Recording"
- *: ""
+ *: NONE
+ recording: "Pre-Recording"
- *: "14"
+ *: NONE
+ recording: ""
- id: VOICE_FIFTEEN
- desc: spoken only, for composing numbers
+ id: LANG_RECORDING_LEFT
+ desc: in the recording screen
user:
- *: ""
+ *: NONE
+ recording: "Gain Left"
- *: ""
+ *: NONE
+ recording: "Gain Left"
- *: "15"
+ *: NONE
+ recording: ""
- id: VOICE_SIXTEEN
- desc: spoken only, for composing numbers
+ id: LANG_RECORDING_RIGHT
+ desc: in the recording screen
user:
- *: ""
+ *: NONE
+ recording: "Gain Right"
- *: ""
+ *: NONE
+ recording: "Gain Right"
- *: "16"
+ *: NONE
+ recording: ""
- id: VOICE_SEVENTEEN
- desc: spoken only, for composing numbers
- user:
+ id: LANG_RECORD_AGC_PRESET
+ desc: automatic gain control in record settings
- *: ""
+ *: NONE
+ agc: "Automatic Gain Control"
- *: ""
+ *: NONE
+ agc: "Automatic Gain Control"
- *: "17"
+ *: NONE
+ agc: "Automatic gain control"
- id: VOICE_EIGHTEEN
- desc: spoken only, for composing numbers
- user:
+ id: LANG_AGC_SAFETY
+ desc: AGC preset
- *: ""
+ *: NONE
+ agc: "Safety (clip)"
- *: ""
+ *: NONE
+ agc: "Safety (clip)"
- *: "18"
+ *: NONE
+ agc: "Safety (clip)"
- id: VOICE_NINETEEN
- desc: spoken only, for composing numbers
- user:
+ id: LANG_AGC_LIVE
+ desc: AGC preset
- *: ""
+ *: NONE
+ agc: "Live (slow)"
- *: ""
+ *: NONE
+ agc: "Live (slow)"
- *: "19"
+ *: NONE
+ agc: "Live (slow)"
- id: VOICE_TWENTY
- desc: spoken only, for composing numbers
- user:
+ id: LANG_AGC_DJSET
+ desc: AGC preset
- *: ""
+ *: NONE
+ agc: "DJ-Set (slow)"
- *: ""
+ *: NONE
+ agc: "DJ-Set (slow)"
- *: "20"
+ *: NONE
+ agc: "DJ set (slow)"
- id: VOICE_THIRTY
- desc: spoken only, for composing numbers
- user:
+ id: LANG_AGC_MEDIUM
+ desc: AGC preset
- *: ""
+ *: NONE
+ agc: "Medium"
- *: ""
+ *: NONE
+ agc: "Medium"
- *: "30"
+ *: NONE
+ agc: "Medium"
- id: VOICE_FORTY
- desc: spoken only, for composing numbers
- user:
+ id: LANG_AGC_VOICE
+ desc: AGC preset
- *: ""
+ *: NONE
+ agc: "Voice (fast)"
- *: ""
+ *: NONE
+ agc: "Voice (fast)"
- *: "40"
+ *: NONE
+ agc: "Voice (fast)"
- id: VOICE_FIFTY
- desc: spoken only, for composing numbers
- user:
+ id: LANG_RECORD_AGC_CLIPTIME
+ desc: in record settings
- *: ""
+ *: NONE
+ agc: "AGC clip time"
- *: ""
+ *: NONE
+ agc: "AGC clip time"
- *: "50"
+ *: NONE
+ agc: "AGC clip time"
- id: VOICE_SIXTY
- desc: spoken only, for composing numbers
+ id: LANG_REMOTE_LCD_OFF
+ desc: Remote lcd off splash in recording screen
user:
- *: ""
+ *: NONE
+ remote: "Remote Display OFF"
- *: ""
+ *: NONE
+ remote: "Remote Display OFF"
- *: "60"
+ *: NONE
+ remote: "Remote Display OFF"
- id: VOICE_SEVENTY
- desc: spoken only, for composing numbers
+ id: LANG_REMOTE_LCD_ON
+ desc: Remote lcd off splash in recording screen
user:
- *: ""
+ *: NONE
+ remote: "(Vol- : Re-enable)"
- *: ""
+ *: NONE
+ remote: "(Vol- : Re-enable)"
- *: "70"
+ *: NONE
+ remote: "(Vol- : Re-enable)"
- id: VOICE_EIGHTY
- desc: spoken only, for composing numbers
+ id: LANG_CREATE_PLAYLIST
+ desc: Menu option for creating a playlist
user:
- *: ""
+ *: "Create Playlist"
- *: ""
+ *: "Create Playlist"
- *: "80"
+ *: "Create Playlist"
- id: VOICE_NINETY
- desc: spoken only, for composing numbers
+ id: LANG_VIEW_DYNAMIC_PLAYLIST
+ desc: in playlist menu.
user:
- *: ""
+ *: "View Current Playlist"
- *: ""
+ *: "View Current Playlist"
- *: "90"
+ *: "View Current Playlist"
- id: VOICE_HUNDRED
- desc: spoken only, for composing numbers
+ id: LANG_MOVE
+ desc: The verb/action Move
user:
- *: ""
+ *: "Move"
- *: ""
+ *: "Move"
- *: "hundred"
+ *: "Move"
- id: VOICE_THOUSAND
- desc: spoken only, for composing numbers
+ id: LANG_SHOW_INDICES
+ desc: in playlist viewer menu
user:
- *: ""
+ *: "Show Indices"
- *: ""
+ *: "Show Indices"
- *: "thousand"
+ *: "Show Indices"
- id: VOICE_MILLION
- desc: spoken only, for composing numbers
+ id: LANG_TRACK_DISPLAY
+ desc: in playlist viewer on+play menu
user:
- *: ""
+ *: "Track Display"
- *: ""
+ *: "Track Display"
- *: "million"
+ *: "Track Display"
- id: VOICE_BILLION
- desc: spoken only, for composing numbers
+ id: LANG_DISPLAY_TRACK_NAME_ONLY
+ desc: track display options
user:
- *: ""
+ *: "Track Name Only"
- *: ""
+ *: "Track Name Only"
- *: "billion"
+ *: "Track Name Only"
- id: VOICE_MINUS
- desc: spoken only, for composing numbers
+ id: LANG_REMOVE
+ desc: in playlist viewer on+play menu
user:
- *: ""
+ *: "Remove"
- *: ""
+ *: "Remove"
- *: "minus"
+ *: "Remove"
- id: VOICE_PLUS
- desc: spoken only, for composing numbers
+ id: LANG_SAVE_DYNAMIC_PLAYLIST
+ desc: in playlist menu.
user:
- *: ""
+ *: "Save Current Playlist"
- *: ""
+ *: "Save Current Playlist"
- *: "plus"
+ *: "Save Current Playlist"
- id: VOICE_MILLISECONDS
- desc: spoken only, a unit postfix
+ id: LANG_PLAYLIST_SAVE_COUNT
+ desc: splash number of tracks saved
user:
- *: ""
+ *: "Saved %d tracks (%s)"
- *: ""
+ *: "Saved %d tracks (%s)"
- *: "milliseconds"
+ *: ""
- id: VOICE_SECOND
- desc: spoken only, a unit postfix
+ id: LANG_CATALOG
+ desc: in onplay menu
user:
- *: ""
+ *: "Playlist Catalog"
- *: ""
+ *: "Playlist Catalog"
- *: "second"
+ *: "Playlist Catalog"
- id: VOICE_SECONDS
- desc: spoken only, a unit postfix
+ id: LANG_RECURSE_DIRECTORY
+ desc: In playlist menu
user:
- *: ""
+ *: "Recursively Insert Directories"
- *: ""
+ *: "Recursively Insert Directories"
- *: "seconds"
+ *: "Recursively Insert Directories"
- id: VOICE_MINUTE
- desc: spoken only, a unit postfix
+ id: LANG_RECURSE_DIRECTORY_QUESTION
+ desc: Asked from onplay screen
user:
- *: ""
+ *: "Recursively?"
- *: ""
+ *: "Recursively?"
- *: "minute"
+ *: ""
- id: VOICE_MINUTES
- desc: spoken only, a unit postfix
+ id: LANG_WARN_ERASEDYNPLAYLIST_MENU
+ desc: in playlist options menu, option to warn when erasing dynamic playlist
user:
- *: ""
+ *: "Warn When Erasing Dynamic Playlist"
- *: ""
+ *: "Warn When Erasing Dynamic Playlist"
- *: "minutes"
+ *: "Warn When Erasing Dynamic Playlist"
- id: VOICE_HOUR
- desc: spoken only, a unit postfix
+ id: LANG_WARN_ERASEDYNPLAYLIST_PROMPT
+ desc: prompt shown when about to erase a modified dynamic playlist
user:
- *: ""
+ *: "Erase dynamic playlist?"
- *: ""
+ *: "Erase dynamic playlist?"
- *: "hour"
+ *: ""
- id: VOICE_HOURS
- desc: spoken only, a unit postfix
+ id: LANG_SHUTDOWN
+ desc: in main menu
user:
- *: ""
+ *: NONE
+ player: "Shut down"
- *: ""
+ *: NONE
+ player: "Shut down"
- *: "hours"
+ *: NONE
+ player: "Shut down"
- id: VOICE_KHZ
- desc: spoken only, a unit postfix
+ id: LANG_ROCKBOX_INFO
+ desc: displayed topmost on the info screen and in the info menu
user:
- *: ""
+ *: "Rockbox Info"
- *: ""
+ *: "Rockbox Info"
- *: "kilohertz"
+ *: "Rockbox Info"
- id: VOICE_DB
- desc: spoken only, a unit postfix
+ id: LANG_BUFFER_STAT
+ desc: the buffer size, %d MB %d fraction of MB
user:
- *: ""
+ *: "Buffer: %d.%03dMB"
+ player: "Buf: %d.%03dMB"
- *: ""
+ player: "Buf: %d.%03dMB"
+ *: "Buffer: %d.%03dMB"
- *: "decibel"
+ *: ""
- id: VOICE_PERCENT
- desc: spoken only, a unit postfix
+ id: LANG_BATTERY_TIME
+ desc: battery level in % and estimated time remaining
user:
- *: ""
+ *: "Battery: %d%% %dh %dm"
+ player,recorder,fmrecorder,recorderv2,ondiosp,ondiofm,ifp7xx: "%d%% %dh %dm"
+ h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
- *: ""
+ *: "Battery: %d%% %dh %dm"
+ player,recorder,fmrecorder,recorderv2,ondiosp,ondiofm,ifp7xx: "%d%% %dh %dm"
+ h10,ipodmini,ipodmini2g: "Batt: %d%% %dh %dm"
- *: "percent"
+ *: "Battery level"
- id: VOICE_MILLIAMPHOURS
- desc: spoken only, a unit postfix
+ id: LANG_DISK_SIZE_INFO
+ desc: disk size info
user:
- *: ""
+ *: "Disk:"
- *: ""
+ *: "Disk:"
- *: "milli-amp hours"
+ *: ""
- id: VOICE_PIXEL
- desc: spoken only, a unit postfix
+ id: LANG_DISK_FREE_INFO
+ desc: disk size info
user:
- *: ""
+ *: "Free:"
- *: ""
+ *: "Free:"
- *: "pixel"
+ *: "Free diskspace:"
- id: VOICE_PER_SEC
- desc: spoken only, a unit postfix
+ id: LANG_DISK_NAME_INTERNAL
+ desc: in info menu; name for internal disk with multivolume (keep short!)
user:
- *: ""
+ *: NONE
+ multivolume: "Int:"
- *: ""
+ *: NONE
+ multivolume: "Int:"
- *: "per second"
+ *: NONE
+ multivolume: "Internal"
- id: VOICE_HERTZ
- desc: spoken only, a unit postfix
+ id: LANG_DISK_NAME_MMC
+ desc: in info menu; name for external disk with multivolume (Ondio; keep short!)
user:
- *: ""
+ *: NONE
+ ondio: "MMC:"
- *: ""
+ *: NONE
+ ondio: "MMC:"
- *: "hertz"
+ *: NONE
+ ondio: "Multimedia card"
- id: LANG_BYTE
- desc: a unit postfix
+ id: LANG_VERSION
+ desc: in the info menu
user:
- *: "B"
+ *: "Version"
- *: "B"
+ *: "Version"
- *: ""
+ *: "Version"
- id: LANG_KILOBYTE
- desc: a unit postfix, also voiced
+ id: LANG_RUNNING_TIME
+ desc: in run time screen
user:
- *: "KB"
+ *: "Running Time"
- *: "KB"
+ *: "Running Time"
- *: "kilobyte"
+ *: "Running Time"
- id: LANG_MEGABYTE
- desc: a unit postfix, also voiced
+ id: LANG_CURRENT_TIME
+ desc: in run time screen
user:
- *: "MB"
+ *: "Current Time"
- *: "MB"
+ *: "Current Time"
- *: "megabyte"
+ *: "Current Time"
- id: LANG_GIGABYTE
- desc: a unit postfix, also voiced
+ id: LANG_TOP_TIME
+ desc: in run time screen
user:
- *: "GB"
+ *: "Top Time"
- *: "GB"
+ *: "Top Time"
- *: "gigabyte"
+ *: "Top Time"
- id: LANG_POINT
- desc: decimal separator for composing numbers
+ id: LANG_CLEAR_TIME
+ desc: in run time screen
user:
- *: "."
+ *: "Clear Time?"
- *: "."
+ *: "Clear Time?"
- *: "point"
+ *: "Clear Time?"
- id: VOICE_CHAR_A
- desc: spoken only, for spelling
+ id: LANG_DEBUG
+ desc: in the info menu
user:
- *: ""
+ *: "Debug (Keep Out!)"
- *: ""
+ *: "Debug (Keep Out!)"
- *: "A"
+ *: "Debug, keep out!"
- id: VOICE_CHAR_B
- desc: spoken only, for spelling
+ id: LANG_USB
+ desc: in the info menu
user:
- *: ""
+ *: "USB (Sim)"
- *: ""
+ *: "USB (Sim)"
- *: "B"
+ *: ""
- id: VOICE_CHAR_C
- desc: spoken only, for spelling
+ id: LANG_PLAYLIST
+ desc: Used when you need to say playlist, also voiced
user:
- *: ""
+ *: "Playlist"
- *: ""
+ *: "Playlist"
- *: "C"
+ *: "Playlist"
- id: VOICE_CHAR_D
- desc: spoken only, for spelling
+ id: LANG_INSERT
+ desc: in onplay menu. insert a track/playlist into dynamic playlist.
user:
- *: ""
+ *: "Insert"
- *: ""
+ *: "Insert"
- *: "D"
+ *: "Insert"
- id: VOICE_CHAR_E
- desc: spoken only, for spelling
+ id: LANG_INSERT_FIRST
+ desc: in onplay menu. insert a track/playlist into dynamic playlist.
user:
- *: ""
+ *: "Insert next"
- *: ""
+ *: "Insert next"
- *: "E"
+ *: "Insert next"
- id: VOICE_CHAR_F
- desc: spoken only, for spelling
+ id: LANG_INSERT_LAST
+ desc: in onplay menu. append a track/playlist into dynamic playlist.
user:
- *: ""
+ *: "Insert last"
- *: ""
+ *: "Insert last"
- *: "F"
+ *: "Insert last"
- id: VOICE_CHAR_G
- desc: spoken only, for spelling
+ id: LANG_INSERT_SHUFFLED
+ desc: in onplay menu. insert a track/playlist randomly into dynamic playlist
user:
- *: ""
+ *: "Insert shuffled"
- *: ""
+ *: "Insert shuffled"
- *: "G"
+ *: "Insert shuffled"
- id: VOICE_CHAR_H
- desc: spoken only, for spelling
+ id: LANG_QUEUE
+ desc: The verb/action Queue
user:
- *: ""
+ *: "Queue"
- *: ""
+ *: "Queue"
- *: "H"
+ *: "Queue"
- id: VOICE_CHAR_I
- desc: spoken only, for spelling
+ id: LANG_QUEUE_FIRST
+ desc: in onplay menu. queue a track/playlist into dynamic playlist.
user:
- *: ""
+ *: "Queue next"
- *: ""
+ *: "Queue next"
- *: "I"
+ *: "Queue next"
- id: VOICE_CHAR_J
- desc: spoken only, for spelling
+ id: LANG_QUEUE_LAST
+ desc: in onplay menu. queue a track/playlist at end of playlist.
user:
- *: ""
+ *: "Queue last"
- *: ""
+ *: "Queue last"
- *: "J"
+ *: "Queue last"
- id: VOICE_CHAR_K
- desc: spoken only, for spelling
+ id: LANG_QUEUE_SHUFFLED
+ desc: in onplay menu. queue a track/playlist randomly into dynamic playlist
user:
- *: ""
+ *: "Queue shuffled"
- *: ""
+ *: "Queue shuffled"
- *: "K"
+ *: "Queue shuffled"
- id: VOICE_CHAR_L
- desc: spoken only, for spelling
+ id: LANG_REPLACE
+ desc: in onplay menu. Replace the current playlist with a new one.
user:
- *: ""
+ *: "Play Next"
- *: ""
+ *: "Play Next"
- *: "L"
+ *: "Play Next"
- id: VOICE_CHAR_M
- desc: spoken only, for spelling
+ id: LANG_PLAYLIST_INSERT_COUNT
+ desc: splash number of tracks inserted
user:
- *: ""
+ *: "Inserted %d tracks (%s)"
- *: ""
+ *: "Inserted %d tracks (%s)"
- *: "M"
+ *: ""
- id: VOICE_CHAR_N
- desc: spoken only, for spelling
+ id: LANG_PLAYLIST_QUEUE_COUNT
+ desc: splash number of tracks queued
user:
- *: ""
+ *: "Queued %d tracks (%s)"
- *: ""
+ *: "Queued %d tracks (%s)"
- *: "N"
+ *: ""
- id: VOICE_CHAR_O
- desc: spoken only, for spelling
+ id: LANG_VIEW
+ desc: in on+play menu
user:
- *: ""
+ *: "View"
- *: ""
+ *: "View"
- *: "O"
+ *: "View"
- id: VOICE_CHAR_P
- desc: spoken only, for spelling
+ id: LANG_SEARCH_IN_PLAYLIST
+ desc: in playlist menu.
user:
- *: ""
+ *: "Search In Playlist"
- *: ""
+ *: "Search In Playlist"
- *: "P"
+ *: "Search In Playlist"
- id: VOICE_CHAR_Q
- desc: spoken only, for spelling
+ id: LANG_PLAYLIST_SEARCH_MSG
+ desc: splash number of tracks inserted
user:
- *: ""
+ *: "Searching... %d found (%s)"
- *: ""
+ *: "Searching... %d found (%s)"
- *: "Q"
+ *: ""
- id: VOICE_CHAR_R
- desc: spoken only, for spelling
+ id: LANG_SHUFFLE_PLAYLIST
+ desc: in playlist menu, reshuffles the order in which songs are played
user:
- *: ""
+ *: "Reshuffle"
- *: ""
+ *: "Reshuffle"
- *: "R"
+ *: "Reshuffle"
- id: VOICE_CHAR_S
- desc: spoken only, for spelling
+ id: LANG_CATALOG_VIEW
+ desc: in onplay playlist catalog submenu
user:
- *: ""
+ *: "View Catalog"
- *: ""
+ *: "View Catalog"
- *: "S"
+ *: "View Catalog"
- id: VOICE_CHAR_T
- desc: spoken only, for spelling
+ id: LANG_CATALOG_ADD_TO
+ desc: in onplay playlist catalog submenu
user:
- *: ""
+ *: "Add to Playlist"
- *: ""
+ *: "Add to Playlist"
- *: "T"
+ *: "Add to Playlist"
- id: VOICE_CHAR_U
- desc: spoken only, for spelling
+ id: LANG_CATALOG_ADD_TO_NEW
+ desc: in onplay playlist catalog submenu
user:
- *: ""
+ *: "Add to New Playlist"
- *: ""
+ *: "Add to New Playlist"
- *: "U"
+ *: "Add to New Playlist"
- id: VOICE_CHAR_V
- desc: spoken only, for spelling
+ id: LANG_CATALOG_NO_DIRECTORY
+ desc: error message when playlist catalog directory doesn't exist
user:
- *: ""
+ *: "%s doesn't exist"
- *: ""
+ *: "%s doesn't exist"
- *: "V"
+ *: ""
- id: VOICE_CHAR_W
- desc: spoken only, for spelling
+ id: LANG_CATALOG_NO_PLAYLISTS
+ desc: error message when no playlists for playlist catalog
user:
- *: ""
+ *: "No Playlists"
- *: ""
+ *: "No Playlists"
- *: "W"
+ *: ""
- id: VOICE_CHAR_X
- desc: spoken only, for spelling
+ id: LANG_BOOKMARK_MENU
+ desc: Text on main menu to get to bookmark commands
user:
- *: ""
+ *: "Bookmarks"
- *: ""
+ *: "Bookmarks"
- *: "X"
+ *: "Bookmarks"
- id: VOICE_CHAR_Y
- desc: spoken only, for spelling
+ id: LANG_BOOKMARK_MENU_CREATE
+ desc: Used off of the bookmark menu to create a bookmark
user:
- *: ""
+ *: "Create Bookmark"
- *: ""
+ *: "Create Bookmark"
- *: "Y"
+ *: "Create Bookmark"
- id: VOICE_CHAR_Z
- desc: spoken only, for spelling
+ id: LANG_BOOKMARK_MENU_LIST
+ desc: Used off of the bookmark menu to list available bookmarks for the currently playing directory or M3U
user:
- *: ""
+ *: "List Bookmarks"
- *: ""
+ *: "List Bookmarks"
- *: "Z"
+ *: "List Bookmarks"
- id: VOICE_DOT
- desc: spoken only, for spelling
+ id: LANG_MENU_SHOW_ID3_INFO
+ desc: Menu option to start tag viewer
user:
- *: ""
+ *: "Show ID3 Info"
- *: ""
+ *: "Show ID3 Info"
- *: "dot"
+ *: "Show ID3 Info"
- id: VOICE_PAUSE
- desc: spoken only, for spelling, a split second of silence (difficult to author)
+ id: LANG_ID3_TITLE
+ desc: in tag viewer
user:
- *: ""
+ *: "[Title]"
- *: ""
+ *: "[Title]"
- *: " "
+ *: ""
- id: VOICE_FILE
- desc: spoken only, prefix for file number
+ id: LANG_ID3_ARTIST
+ desc: in tag viewer
user:
- *: ""
+ *: "[Artist]"
- *: ""
+ *: "[Artist]"
- *: "file"
+ *: ""
- id: VOICE_DIR
- desc: spoken only, prefix for directory number
+ id: LANG_ID3_ALBUM
+ desc: in tag viewer
user:
- *: ""
+ *: "[Album]"
- *: ""
+ *: "[Album]"
- *: "folder"
+ *: ""
- id: VOICE_EXT_MPA
- desc: spoken only, for file extension
+ id: LANG_ID3_TRACKNUM
+ desc: in tag viewer
user:
- *: ""
+ *: "[Tracknum]"
- *: ""
+ *: "[Tracknum]"
- *: "audio"
+ *: ""
- id: VOICE_EXT_CFG
- desc: spoken only, for file extension
+ id: LANG_ID3_GENRE
+ desc: in tag viewer
user:
- *: ""
+ *: "[Genre]"
- *: ""
+ *: "[Genre]"
- *: "configuration"
+ *: ""
- id: VOICE_EXT_WPS
- desc: spoken only, for file extension
+ id: LANG_ID3_YEAR
+ desc: in tag viewer
user:
- *: ""
+ *: "[Year]"
- *: ""
+ *: "[Year]"
- *: "while-playing-screen"
+ *: ""
- id: VOICE_EXT_TXT
- desc: spoken only, for file extension
+ id: LANG_ID3_LENGTH
+ desc: in tag viewer
user:
- *: ""
+ *: "[Length]"
- *: ""
+ *: "[Length]"
- *: "text"
+ *: ""
- id: VOICE_EXT_ROCK
- desc: spoken only, for file extension
+ id: LANG_ID3_PLAYLIST
+ desc: in tag viewer
user:
- *: ""
+ *: "[Playlist]"
- *: ""
+ *: "[Playlist]"
- *: "plugin"
+ *: ""
- id: VOICE_EXT_FONT
- desc: spoken only, for file extension
+ id: LANG_ID3_BITRATE
+ desc: in tag viewer
user:
- *: ""
+ *: "[Bitrate]"
- *: ""
+ *: "[Bitrate]"
- *: "font"
+ *: ""
- id: VOICE_EXT_BMARK
- desc: spoken only, for file extension and the word in general
+ id: LANG_ID3_ALBUMARTIST
+ desc: in tag viewer
user:
- *: ""
+ *: "[Album Artist]"
- *: ""
+ *: "[Album Artist]"
- *: "bookmark"
+ *: ""
- id: VOICE_EXT_UCL
- desc: spoken only, for file extension
+ id: LANG_ID3_COMMENT
+ desc: in tag viewer
user:
- *: ""
+ *: "[Comment]"
- *: ""
+ *: "[Comment]"
- *: "flash"
+ *: ""
- id: VOICE_EXT_AJZ
- desc: spoken only, for file extension
+ id: LANG_ID3_VBR
+ desc: in browse_id3
user:
- *: ""
+ *: " (VBR)"
- *: ""
+ *: " (VBR)"
- *: "firmware"
+ *: ""
- id: VOICE_EXT_RWPS
- desc: spoken only, for file extension
+ id: LANG_ID3_FREQUENCY
+ desc: in tag viewer
user:
- *: ""
+ *: "[Frequency]"
- *: ""
+ *: "[Frequency]"
- *: "remote while-playing-screen"
+ *: ""
- id: VOICE_EXT_KBD
- desc: spoken only, for file extension
+ id: LANG_ID3_TRACK_GAIN
+ desc: in tag viewer
user:
- *: ""
+ *: NONE
+ swcodec: "[Track Gain]"
- *: ""
+ *: NONE
+ swcodec: "[Track Gain]"
- *: "keyboard"
+ *: NONE
+ swcodec: ""
- id: LANG_PLAYLIST_LOAD
- desc: displayed on screen while loading a playlist
+ id: LANG_ID3_ALBUM_GAIN
+ desc: in tag viewer
user:
- *: "Loading..."
+ *: NONE
+ swcodec: "[Album Gain]"
- *: "Loading..."
+ *: NONE
+ swcodec: "[Album Gain]"
- *: ""
+ *: NONE
+ swcodec: ""
- id: LANG_PLAYLIST_SHUFFLE
- desc: displayed on screen while shuffling a playlist
+ id: LANG_ID3_PATH
+ desc: in tag viewer
user:
- *: "Shuffling..."
+ *: "[Path]"
- *: "Shuffling..."
+ *: "[Path]"
*: ""
- id: LANG_PLAYLIST_BUFFER_FULL
- desc: in playlist.indices() when playlist is full
+ id: LANG_ID3_NO_INFO
+ desc: in tag viewer
user:
- *: "Playlist Buffer Full"
+ *: ""
- *: "Playlist Buffer Full"
+ *: ""
*: ""
- id: LANG_END_PLAYLIST_PLAYER
- desc: when playlist has finished
+ id: LANG_RENAME
+ desc: The verb/action Rename
user:
- *: "End of List"
+ *: "Rename"
- *: "End of List"
+ *: "Rename"
- *: ""
+ *: "Rename"
- id: LANG_END_PLAYLIST_RECORDER
- desc: when playlist has finished
+ id: LANG_CUT
+ desc: The verb/action Cut
user:
- *: "End of Song List"
+ *: "Cut"
- *: "End of Song List"
+ *: "Cut"
- *: ""
+ *: "Cut"
- id: LANG_CREATING
- desc: Screen feedback during playlist creation
+ id: LANG_COPY
+ desc: The verb/action Copy
user:
- *: "Creating"
+ *: "Copy"
- *: "Creating"
+ *: "Copy"
- *: ""
+ *: "Copy"
- id: LANG_PLAYLIST_INSERT_COUNT
- desc: splash number of tracks inserted
+ id: LANG_PASTE
+ desc: The verb/action Paste
user:
- *: "Inserted %d tracks (%s)"
+ *: "Paste"
- *: "Inserted %d tracks (%s)"
+ *: "Paste"
- *: ""
+ *: "Paste"
- id: LANG_PLAYLIST_QUEUE_COUNT
- desc: splash number of tracks queued
+ id: LANG_REALLY_OVERWRITE
+ desc: The verb/action Paste
user:
- *: "Queued %d tracks (%s)"
+ *: "File/directory exists. Overwrite?"
- *: "Queued %d tracks (%s)"
+ *: "File/directory exists. Overwrite?"
*: ""
- id: LANG_PLAYLIST_SAVE_COUNT
- desc: splash number of tracks saved
+ id: LANG_DELETE
+ desc: The verb/action Delete
user:
- *: "Saved %d tracks (%s)"
+ *: "Delete"
- *: "Saved %d tracks (%s)"
+ *: "Delete"
- *: ""
+ *: "Delete"
- id: LANG_RECURSE_DIRECTORY_QUESTION
- desc: Asked from onplay screen
+ id: LANG_DELETE_DIR
+ desc: in on+play menu
user:
- *: "Recursively?"
+ *: "Delete Directory"
- *: "Recursively?"
+ *: "Delete Directory"
- *: ""
+ *: "delete directory"
- id: LANG_WARN_ERASEDYNPLAYLIST_PROMPT
- desc: prompt shown when about to erase a modified dynamic playlist
+ id: LANG_REALLY_DELETE
+ desc: Really Delete?
user:
- *: "Erase dynamic playlist?"
+ *: "Delete?"
- *: "Erase dynamic playlist?"
+ *: "Delete?"
*: ""
- id: LANG_NOTHING_TO_RESUME
- desc: Error message displayed when resume button pressed but no playlist
+ id: LANG_DELETED
+ desc: A file has beed deleted
user:
- *: "Nothing to resume"
+ *: "Deleted"
- *: "Nothing to resume"
+ *: "Deleted"
*: ""
- id: LANG_PLAYLIST_CONTROL_UPDATE_ERROR
- desc: Playlist error
+ id: LANG_SET_AS_BACKDROP
+ desc: text for onplay menu entry
user:
- *: "Error updating playlist control file"
+ *: NONE
+ lcd_color: "Set As Backdrop"
- *: "Error updating playlist control file"
+ *: NONE
+ lcd_color: "Set As Backdrop"
- *: ""
+ *: NONE
+ lcd_color: "Set As Backdrop"
- id: LANG_PLAYLIST_ACCESS_ERROR
- desc: Playlist error
+ id: LANG_BACKDROP_LOADED
+ desc: text for splash to indicate a new backdrop has been loaded successfully
user:
- *: "Error accessing playlist file"
+ *: NONE
+ lcd_color: "Backdrop Loaded"
- *: "Error accessing playlist file"
+ *: NONE
+ lcd_color: "Backdrop Loaded"
- *: ""
+ *: NONE
+ lcd_color: ""
- id: LANG_PLAYLIST_CONTROL_ACCESS_ERROR
- desc: Playlist error
+ id: LANG_BACKDROP_FAILED
+ desc: text for splash to indicate a failure to load a bitmap as backdrop
user:
- *: "Error accessing playlist control file"
+ *: NONE
+ lcd_color: "Backdrop Failed"
- *: "Error accessing playlist control file"
+ *: NONE
+ lcd_color: "Backdrop Failed"
- *: ""
+ *: NONE
+ lcd_color: ""
- id: LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR
- desc: Playlist error
+ id: LANG_ONPLAY_OPEN_WITH
+ desc: Onplay open with
user:
- *: "Error accessing directory"
+ *: "Open With..."
- *: "Error accessing directory"
+ *: "Open With..."
- *: ""
+ *: "open with"
- id: LANG_PLAYLIST_CONTROL_INVALID
- desc: Playlist resume error
+ id: LANG_CREATE_DIR
+ desc: in main menu
user:
- *: "Playlist control file is invalid"
+ *: "Create Directory"
- *: "Playlist control file is invalid"
+ *: "Create Directory"
- *: ""
+ *: "Create Directory"
- id: LANG_FM_STATION
- desc: in radio screen
+ id: LANG_PROPERTIES
+ desc: browser file/dir properties
user:
- *: "Station: %d.%02d MHz"
+ *: "Properties"
- *: "Station: %d.%02d MHz"
+ *: "Properties"
- *: ""
+ *: "Properties"
- id: LANG_FM_NO_PRESETS
- desc: error when preset list is empty
+ id: LANG_PITCH
+ desc: "pitch" in the pitch screen
user:
- *: "No presets"
+ *: NONE
+ pitchscreen: "Pitch"
- *: "No presets"
+ *: NONE
+ pitchscreen: "Pitch"
- *: ""
+ *: NONE
+ pitchscreen: "Pitch"
- id: LANG_FM_ADD_PRESET
- desc: in radio menu
+ id: LANG_PITCH_UP
+ desc: in wps
user:
- *: "Add Preset"
+ *: NONE
+ pitchscreen: "Pitch Up"
- *: "Add Preset"
+ *: NONE
+ pitchscreen: "Pitch Up"
- *: "Add Preset"
+ *: NONE
+ pitchscreen: ""
- id: LANG_FM_EDIT_PRESET
- desc: in radio screen
+ id: LANG_PITCH_DOWN
+ desc: in wps
user:
- *: "Edit Preset"
+ *: NONE
+ pitchscreen: "Pitch Down"
- *: "Edit Preset"
+ *: NONE
+ pitchscreen: "Pitch Down"
- *: "Edit Preset"
+ *: NONE
+ pitchscreen: ""
- id: LANG_FM_DELETE_PRESET
- desc: in radio screen
+ id: LANG_PITCH_UP_SEMITONE
+ desc: in wps
user:
- *: "Remove Preset"
+ *: NONE
+ pitchscreen: "Semitone Up"
- *: "Remove Preset"
+ *: NONE
+ pitchscreen: "Semitone Up"
- *: "Remove Preset"
+ *: NONE
+ pitchscreen: ""
- id: LANG_FM_PRESET_SAVE_FAILED
- desc: in radio screen
+ id: LANG_PITCH_DOWN_SEMITONE
+ desc: in wps
user:
- *: "Preset Save Failed"
+ *: NONE
+ pitchscreen: "Semitone Down"
- *: "Preset Save Failed"
+ *: NONE
+ pitchscreen: "Semitone Down"
- *: ""
+ *: NONE
+ pitchscreen: ""
- id: LANG_FM_NO_FREE_PRESETS
- desc: in radio screen
+ id: LANG_PLAYLIST_BUFFER_FULL
+ desc: in playlist.indices() when playlist is full
user:
- *: "The Preset List is Full"
+ *: "Playlist Buffer Full"
- *: "The Preset List is Full"
+ *: "Playlist Buffer Full"
*: ""
- id: LANG_BUTTONBAR_MENU
- desc: in button bar
+ id: LANG_END_PLAYLIST
+ desc: when playlist has finished
user:
- *: "Menu"
+ *: "End of Song List"
+ player: "End of List"
- *: "Menu"
+ *: "End of Song List"
+ player: "End of List"
*: ""
- id: LANG_FM_BUTTONBAR_EXIT
- desc: in radio screen
+ id: LANG_CREATING
+ desc: Screen feedback during playlist creation
user:
- *: "Exit"
+ *: "Creating"
- *: "Exit"
+ *: "Creating"
*: ""
- id: LANG_FM_BUTTONBAR_ACTION
- desc: in radio screen
+ id: LANG_NOTHING_TO_RESUME
+ desc: Error message displayed when resume button pressed but no playlist
user:
- *: "Action"
+ *: "Nothing to resume"
- *: "Action"
+ *: "Nothing to resume"
*: ""
- id: LANG_FM_BUTTONBAR_PRESETS
- desc: in button bar
+ id: LANG_PLAYLIST_CONTROL_UPDATE_ERROR
+ desc: Playlist error
user:
- *: "Preset"
+ *: "Error updating playlist control file"
- *: "Preset"
+ *: "Error updating playlist control file"
*: ""
- id: LANG_FM_BUTTONBAR_ADD
- desc: in radio screen
+ id: LANG_PLAYLIST_ACCESS_ERROR
+ desc: Playlist error
user:
- *: "Add"
+ *: "Error accessing playlist file"
- *: "Add"
+ *: "Error accessing playlist file"
*: ""
- id: LANG_FM_BUTTONBAR_RECORD
- desc: in radio screen
+ id: LANG_PLAYLIST_CONTROL_ACCESS_ERROR
+ desc: Playlist error
user:
- *: "Record"
+ *: "Error accessing playlist control file"
- *: "Record"
+ *: "Error accessing playlist control file"
*: ""
- id: LANG_FM_MONO_MODE
- desc: in radio screen
+ id: LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR
+ desc: Playlist error
user:
- *: "Force mono"
+ *: "Error accessing directory"
- *: "Force mono"
+ *: "Error accessing directory"
*: ""
- id: LANG_FM_FREEZE
- desc: splash screen during freeze in radio mode
+ id: LANG_PLAYLIST_CONTROL_INVALID
+ desc: Playlist resume error
user:
- *: "Screen frozen!"
+ *: "Playlist control file is invalid"
- *: "Screen frozen!"
+ *: "Playlist control file is invalid"
*: ""
- id: LANG_FM_SCAN_PRESETS
- desc: in radio menu
+ id: LANG_SETTINGS_SAVE_FAILED
+ desc: displayed if save settings has failed
user:
- *: "Auto-Scan Presets"
+ *: "Save Failed"
- *: "Auto-Scan Presets"
+ *: "Save Failed"
- *: "Auto scan presets"
-
-
-
- id: LANG_FM_CLEAR_PRESETS
- desc: confirmation if presets can be cleared
- user:
-
- *: "Clear Current Presets?"
-
-
- *: "Clear Current Presets?"
-
-
*: ""
- id: LANG_FM_SCANNING
- desc: during auto scan
+ id: LANG_SETTINGS_PARTITION
+ desc: if save settings has failed
user:
- *: "Scanning %d.%02d MHz"
+ *: "No partition?"
+ player: "Partition?"
- *: "Scanning %d.%02d MHz"
+ *: "No partition?"
+ player: "Partition?"
*: ""
- id: LANG_FM_DEFAULT_PRESET_NAME
- desc: default preset name for auto scan mode
+ id: LANG_PAUSE
+ desc: in wps and recording trigger menu
user:
- *: "%d.%02d MHz"
+ *: "Pause"
- *: "%d.%02d MHz"
+ *: "Pause"
- *: ""
+ *: "Pause"
- id: LANG_FM_TUNE_MODE
- desc: in radio screen / menu
+ id: LANG_MODE
+ desc: in wps F2 pressed and radio screen
user:
*: "Mode:"
@@ -7747,129 +7907,144 @@
- id: LANG_RADIO_SCAN_MODE
- desc: in radio screen / menu
+ id: LANG_TIME
+ desc: Used on the bookmark select window to label elapsed time
user:
- *: "Scan"
+ *: "Time"
- *: "Scan"
+ *: "Time"
- *: ""
+ *: "Time"
- id: LANG_RADIO_PRESET_MODE
- desc: in radio screen / menu
+ id: LANG_USB_CHARGING
+ desc: in Battery menu
user:
- *: "Preset"
+ *:NONE
+ usb_charging: "Charge During USB Connection"
- *: "Preset"
+ *: NONE
+ usb_charging: "Charge During USB Connection"
- *: ""
+ *: NONE
+ usb_charging: "Charge During U S B Connection"
- id: LANG_DIRBROWSE_F1
- desc: in dir browser, F1 button bar text
+ id: LANG_KEYLOCK_ON
+ desc: displayed when key lock is on
user:
- *: "Menu"
+ *: "Keylock is ON"
+ player: "Key Lock ON"
- *: "Menu"
+ *: "Keylock is ON"
+ player: "Key Lock ON"
*: ""
- id: LANG_DIRBROWSE_F2
- desc: in dir browser, F2 button bar text
+ id: LANG_KEYLOCK_OFF
+ desc: displayed when key lock is turned off
user:
- *: "Option"
+ *: "Keylock is OFF"
+ player: "Key Lock OFF"
- *: "Option"
+ *: "Keylock is OFF"
+ player: "Key Lock OFF"
*: ""
- id: LANG_DIRBROWSE_F3
- desc: in dir browser, F3 button bar text
+ id: LANG_RECORDING_TIME
+ desc: Display of recorded time
user:
- *: "LCD"
+ *: "Time:"
- *: "LCD"
+ *: "Time:"
*: ""
- id: LANG_SHOWDIR_BUFFER_FULL
- desc: in showdir(), displayed on screen when you reach buffer limit
+ id: LANG_DISK_FULL
+ desc: in recording screen
user:
- *: "Dir Buffer is Full!"
+ *: "The disk is full. Press OFF to continue."
+ recording: "The disk is full. Press STOP to continue."
- *: "Dir Buffer is Full!"
+ *: "The disk is full. Press OFF to continue."
+ recording: "The disk is full. Press STOP to continue."
*: ""
- id: LANG_LANGUAGE_LOADED
- desc: shown when a language has been loaded from the dir browser
+ id: LANG_DB_INF
+ desc: -inf db for values below measurement
user:
- *: "New Language"
+ *: "-inf"
- *: "New Language"
+ *: "-inf"
*: ""
- id: LANG_SETTINGS_LOADED
- desc: Feedback shown when a .cfg file is loaded
+ id: LANG_CONFIRM_SHUTDOWN
+ desc: in shutdown screen
user:
- *: "Settings Loaded"
+ *: NONE
+ recorder: "Press OFF to shut down"
- *: "Settings Loaded"
+ *: NONE
+ recorder: "Press OFF to shut down"
- *: ""
+ *: NONE
+ recorder: ""
- id: LANG_SETTINGS_SAVED
- desc: Feedback shown when a .cfg file is saved
+ id: LANG_REMOVE_MMC
+ desc: before acknowledging usb in case an MMC is inserted (Ondio)
user:
- *: "Settings Saved"
+ *: NONE
+ ondio: "Please remove inserted MMC"
- *: "Settings Saved"
+ *: NONE
+ ondio: "Please remove inserted MMC"
- *: ""
+ *: NONE
+ ondio: "Please remove multimedia card"
@@ -7906,14 +8081,14 @@
user:
*: "OFF to abort"
- h100,h120,h300: "STOP to abort"
+ player,h100,h120,h300: "STOP to abort"
ipod*: "PLAY/PAUSE to abort"
x5: "Long PLAY to abort"
h10: "PREV to abort"
*: "OFF to abort"
- h100,h120,h300: "STOP to abort"
+ player,h100,h120,h300: "STOP to abort"
ipod*: "PLAY/PAUSE to abort"
x5: "Long PLAY to abort"
h10: "PREV to abort"
@@ -7923,20 +8098,6 @@
- id: LANG_STOP_ABORT
- desc: Used on player models
- user:
-
- *: "STOP to abort"
-
-
- *: "STOP to abort"
-
-
- *: ""
-
-
-
id: LANG_NO_FILES
desc: in settings_menu
user:
@@ -7951,34 +8112,6 @@
- id: LANG_BACKDROP_LOADED
- desc: text for splash to indicate a new backdrop has been loaded successfully
- user:
-
- *: "Backdrop Loaded"
-
-
- *: "Backdrop Loaded"
-
-
- *: ""
-
-
-
- id: LANG_BACKDROP_FAILED
- desc: text for splash to indicate a failure to load a bitmap as backdrop
- user:
-
- *: "Backdrop Failed"
-
-
- *: "Backdrop Failed"
-
-
- *: ""
-
-
-
id: LANG_KEYBOARD_LOADED
desc: shown when a keyboard has been loaded from the dir browser
user:
@@ -7993,258 +8126,6 @@
- id: LANG_ID3DB_ARTISTS
- desc: ID3 virtual folder name
- user:
-
- *: "Artists"
-
-
- *: "Artists"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_ALBUMS
- desc: ID3 virtual folder name
- user:
-
- *: "Albums"
-
-
- *: "Albums"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_SONGS
- desc: ID3 virtual folder name
- user:
-
- *: "Songs"
-
-
- *: "Songs"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_GENRES
- desc: in tag cache
- user:
-
- *: "Genres"
-
-
- *: "Genres"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_SEARCH
- desc: ID3 virtual folder name
- user:
-
- *: "Search"
-
-
- *: "Search"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_SEARCH_ARTISTS
- desc: ID3 virtual folder name
- user:
-
- *: "Search Artists"
-
-
- *: "Search Artists"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_SEARCH_ALBUMS
- desc: ID3 virtual folder name
- user:
-
- *: "Search Albums"
-
-
- *: "Search Albums"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_SEARCH_SONGS
- desc: ID3 virtual folder name
- user:
-
- *: "Search Songs"
-
-
- *: "Search Songs"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_MATCHES
- desc: ID3 virtual folder name
- user:
-
- *: "Found %d matches"
-
-
- *: "Found %d matches"
-
-
- *: ""
-
-
-
- id: LANG_ID3DB_ALL_SONGS
- desc: ID3 virtual folder name
- user:
-
- *: ""
-
-
- *: ""
-
-
- *: ""
-
-
-
- id: LANG_MOVE
- desc: The verb/action Move
- user:
-
- *: "Move"
-
-
- *: "Move"
-
-
- *: "Move"
-
-
-
- id: LANG_MOVE_FAILED
- desc: Error message displayed in playlist viewer
- user:
-
- *: "Move Failed"
-
-
- *: "Move Failed"
-
-
- *: ""
-
-
-
- id: LANG_SHOW_INDICES
- desc: in playlist viewer menu
- user:
-
- *: "Show Indices"
-
-
- *: "Show Indices"
-
-
- *: "Show Indices"
-
-
-
- id: LANG_TRACK_DISPLAY
- desc: in playlist viewer on+play menu
- user:
-
- *: "Track Display"
-
-
- *: "Track Display"
-
-
- *: "Track Display"
-
-
-
- id: LANG_DISPLAY_TRACK_NAME_ONLY
- desc: track display options
- user:
-
- *: "Track Name Only"
-
-
- *: "Track Name Only"
-
-
- *: "Track Name Only"
-
-
-
- id: LANG_DISPLAY_FULL_PATH
- desc: track display options
- user:
-
- *: "Full Path"
-
-
- *: "Full Path"
-
-
- *: "Full Path"
-
-
-
- id: LANG_REMOVE
- desc: in playlist viewer on+play menu
- user:
-
- *: "Remove"
-
-
- *: "Remove"
-
-
- *: "Remove"
-
-
-
- id: LANG_FILE_OPTIONS
- desc: in playlist viewer on+play menu
- user:
-
- *: "File Options"
-
-
- *: "File Options"
-
-
- *: "File Options"
-
-
-
id: LANG_PLUGIN_CANT_OPEN
desc: Plugin open error message
user:
@@ -8343,1517 +8224,1481 @@
- id: LANG_FILETYPES_PLUGIN_NAME_LONG
- desc: Viewer plugin name too long
+ id: LANG_SHOWDIR_BUFFER_FULL
+ desc: in showdir(), displayed on screen when you reach buffer limit
user:
- *: "Plugin name too long"
+ *: "Dir Buffer is Full!"
- *: "Plugin name too long"
+ *: "Dir Buffer is Full!"
*: ""
- id: LANG_FILETYPES_STRING_BUFFER_EMPTY
- desc: Filetype string buffer empty
+ id: LANG_INVALID_FILENAME
+ desc: "invalid filename entered" error message
user:
- *: "Filetype string buffer empty"
+ *: "Invalid Filename!"
- *: "Filetype string buffer empty"
+ *: "Invalid Filename!"
- *: ""
+ *: "Invalid Filename"
- id: LANG_RESUME_CONFIRM_PLAYER
- desc: possible answers to resume question
+ id: LANG_FILETYPES_PLUGIN_NAME_LONG
+ desc: Viewer plugin name too long
user:
- *: "(PLAY/STOP)"
+ *: "Plugin name too long"
- *: "(PLAY/STOP)"
+ *: "Plugin name too long"
*: ""
- id: LANG_FM_PRESET_LOAD
- desc: load preset list in fm radio
+ id: LANG_FILETYPES_STRING_BUFFER_EMPTY
+ desc: Filetype string buffer empty
user:
- *: "Load Preset List"
+ *: "Filetype string buffer empty"
- *: "Load Preset List"
+ *: "Filetype string buffer empty"
- *: "Load Preset List"
+ *: ""
- id: LANG_FM_PRESET_SAVE
- desc: Save preset list in fm radio
+ id: LANG_RESTARTING_PLAYBACK
+ desc: splash screen displayed when pcm buffer size is changed
user:
- *: "Save Preset List"
+ *: NONE
+ swcodec: "Restarting playback..."
- *: "Save Preset List"
+ *: NONE
+ swcodec: "Restarting playback..."
- *: "Save Preset List"
+ *: NONE
+ swcodec: ""
- id: LANG_FM_PRESET_CLEAR
- desc: clear preset list in fm radio
+ id: LANG_PLEASE_REBOOT
+ desc: when activating an option that requires a reboot
user:
- *: "Clear Preset List"
+ *: "Please reboot to enable"
- *: "Clear Preset List"
+ *: "Please reboot to enable"
- *: "Clear Preset List"
+ *: ""
- id: LANG_FMR
- desc: Used when you need to say Preset List, also voiced
+ id: LANG_BATTERY_CHARGE
+ desc: tells that the battery is charging, instead of battery level
user:
- *: "Preset List"
+ *: "Battery: Charging"
- *: "Preset List"
+ *: "Battery: Charging"
- *: "Preset List"
+ *: "Charging"
- id: LANG_FM_FIRST_AUTOSCAN
- desc: When you run the radio without an fmr file in settings
+ id: LANG_BATTERY_TOPOFF_CHARGE
+ desc: in info display, shows that top off charge is running
user:
- *: "No settings found. Autoscan?"
+ *: "Battery: Top-Off Chg"
- *: "No settings found. Autoscan?"
+ *: "Battery: Top-Off Chg"
- *: ""
+ *: "Top off charge"
- id: LANG_FM_SAVE_CHANGES
- desc: When you try to exit radio to confirm save
+ id: LANG_BATTERY_TRICKLE_CHARGE
+ desc: in info display, shows that trickle charge is running
user:
- *: "Save Changes?"
+ *: "Battery: Trickle Chg"
- *: "Save Changes?"
+ *: "Battery: Trickle Chg"
- *: ""
+ *: "Trickle charge"
- id: LANG_PIXELS
- desc: In the settings menu
+ id: LANG_WARNING_BATTERY_LOW
+ desc: general warning
user:
- *: "pixels"
+ *: "WARNING! Low Battery!"
- *: "pixels"
+ *: "WARNING! Low Battery!"
- *: "pixels"
+ *: ""
- id: LANG_CROSSFEED_DIRECT_GAIN
- desc: in crossfeed settings
+ id: LANG_WARNING_BATTERY_EMPTY
+ desc: general warning
user:
- *: "Direct Gain"
+ *: "Battery empty! RECHARGE!"
- *: "Direct Gain"
+ *: "Battery empty! RECHARGE!"
- *: "Direct gain"
+ *: ""
- id: LANG_CROSSFEED_CROSS_GAIN
- desc: in crossfeed settings
+ id: VOICE_ZERO
+ desc: spoken only, for composing numbers
+ user:
- *: "Cross Gain"
+ *: ""
- *: "Cross Gain"
+ *: ""
- *: "Cross gain"
+ *: "0"
- id: LANG_CROSSFEED_HF_ATTENUATION
- desc: in crossfeed settings
+ id: VOICE_ONE
+ desc: spoken only, for composing numbers
+ user:
- *: "High-Frequency Attenuation"
+ *: ""
- *: "High-Frequency Attenuation"
+ *: ""
- *: "High-frequency attenuation"
+ *: "1"
- id: LANG_CROSSFEED_HF_CUTOFF
- desc: in crossfeed settings
+ id: VOICE_TWO
+ desc: spoken only, for composing numbers
+ user:
- *: "High-Frequency Cutoff"
+ *: ""
- *: "High-Frequency Cutoff"
+ *: ""
- *: "High-frequency cutoff"
+ *: "2"
- id: LANG_UNIT_HERTZ
- desc: in sound settings
+ id: VOICE_THREE
+ desc: spoken only, for composing numbers
+ user:
- *: "Hz"
-
-
- *: "Hz"
-
-
*: ""
-
-
-
- id: LANG_TAGCACHE_BUSY
- desc: when trying to shutdown and tagcache is committing
-
- *: "Database is not ready"
- *: "Database is not ready"
+ *: ""
- *: "Database is not ready"
+ *: "3"
- id: LANG_TAGNAVI_ALL_TRACKS
- desc: "" entry in tag browser
+ id: VOICE_FOUR
+ desc: spoken only, for composing numbers
user:
- *: ""
+ *: ""
- *: ""
+ *: ""
- *: "All tracks"
+ *: "4"
- id: LANG_INVALID_FILENAME
- desc: "invalid filename entered" error message
+ id: VOICE_FIFE
+ desc: spoken only, for composing numbers
user:
- *: "Invalid Filename!"
+ *: ""
- *: "Invalid Filename!"
+ *: ""
- *: "Invalid Filename"
+ *: "5"
- id: LANG_REMOTE_SCROLL_SETS
- desc: "Remote Scrolling Options" Submenu in "Scrolling Options" menu
+ id: VOICE_SIX
+ desc: spoken only, for composing numbers
user:
- *: "Remote Scrolling Options"
+ *: ""
- *: "Remote Scrolling Options"
+ *: ""
- *: "Remote Scrolling Options"
+ *: "6"
- id: LANG_TAGCACHE_UPDATE
- desc: in tag cache settings
+ id: VOICE_SEVEN
+ desc: spoken only, for composing numbers
user:
- *: "Update Now"
+ *: ""
- *: "Update Now"
+ *: ""
- *: "Update Now"
+ *: "7"
- id: LANG_TAGCACHE_AUTOUPDATE
- desc: in tag cache settings
+ id: VOICE_EIGHT
+ desc: spoken only, for composing numbers
user:
- *: "Auto Update"
+ *: ""
- *: "Auto Update"
+ *: ""
- *: "Auto Update"
+ *: "8"
- id: LANG_TAGCACHE_EXPORT
- desc: in tag cache settings
+ id: VOICE_NINE
+ desc: spoken only, for composing numbers
user:
- *: "Export Modifications"
+ *: ""
- *: "Export Modifications"
+ *: ""
- *: "Export Modifications"
+ *: "9"
- id: LANG_CATALOG
- desc: in onplay menu
+ id: VOICE_TEN
+ desc: spoken only, for composing numbers
user:
- *: "Playlist Catalog"
+ *: ""
- *: "Playlist Catalog"
+ *: ""
- *: "Playlist Catalog"
+ *: "10"
- id: LANG_CATALOG_ADD_TO
- desc: in onplay playlist catalog submenu
+ id: VOICE_ELEVEN
+ desc: spoken only, for composing numbers
user:
- *: "Add to Playlist"
+ *: ""
- *: "Add to Playlist"
+ *: ""
- *: "Add to Playlist"
+ *: "11"
- id: LANG_CATALOG_ADD_TO_NEW
- desc: in onplay playlist catalog submenu
+ id: VOICE_TWELVE
+ desc: spoken only, for composing numbers
user:
- *: "Add to New Playlist"
+ *: ""
- *: "Add to New Playlist"
+ *: ""
- *: "Add to New Playlist"
+ *: "12"
- id: LANG_CATALOG_VIEW
- desc: in onplay playlist catalog submenu
+ id: VOICE_THIRTEEN
+ desc: spoken only, for composing numbers
user:
- *: "View Catalog"
+ *: ""
- *: "View Catalog"
+ *: ""
- *: "View Catalog"
+ *: "13"
- id: LANG_CATALOG_NO_DIRECTORY
- desc: error message when playlist catalog directory doesn't exist
+ id: VOICE_FOURTEEN
+ desc: spoken only, for composing numbers
user:
- *: "%s doesn't exist"
+ *: ""
- *: "%s doesn't exist"
+ *: ""
- *: ""
+ *: "14"
- id: LANG_CATALOG_NO_PLAYLISTS
- desc: error message when no playlists for playlist catalog
+ id: VOICE_FIFTEEN
+ desc: spoken only, for composing numbers
user:
- *: "No Playlists"
+ *: ""
- *: "No Playlists"
+ *: ""
- *: ""
+ *: "15"
- id: LANG_TAGCACHE_IMPORT
- desc: in tag cache settings
+ id: VOICE_SIXTEEN
+ desc: spoken only, for composing numbers
user:
- *: "Import Modifications"
+ *: ""
- *: "Import Modifications"
+ *: ""
- *: "Import Modifications"
+ *: "16"
- id: LANG_SPLIT_MEASURE
- desc: in record timesplit options
+ id: VOICE_SEVENTEEN
+ desc: spoken only, for composing numbers
+ user:
- *: "Split Measure"
+ *: ""
- *: "Split Measure"
+ *: ""
- *: "Split Measure"
+ *: "17"
- id: LANG_SPLIT_TYPE
- desc: in record timesplit options
+ id: VOICE_EIGHTEEN
+ desc: spoken only, for composing numbers
+ user:
- *: "What to do when Splitting"
+ *: ""
- *: "What to do when Splitting"
+ *: ""
- *: "What to do when Splitting"
+ *: "18"
- id: LANG_SPLIT_TIME
- desc: in record timesplit options
+ id: VOICE_NINETEEN
+ desc: spoken only, for composing numbers
+ user:
- *: "Split Time"
+ *: ""
- *: "Split Time"
+ *: ""
- *: "Split Time"
+ *: "19"
- id: LANG_SPLIT_SIZE
- desc: in record timesplit options
+ id: VOICE_TWENTY
+ desc: spoken only, for composing numbers
+ user:
- *: "Split Filesize"
+ *: ""
- *: "Split Filesize"
+ *: ""
- *: "Split Filesize"
+ *: "20"
- id: LANG_REC_TIME
- desc: in record timesplit options
+ id: VOICE_THIRTY
+ desc: spoken only, for composing numbers
user:
- *: "Time"
+ *: ""
- *: "Time"
+ *: ""
- *: "Time"
+ *: "30"
- id: LANG_REC_SIZE
- desc: in record timesplit options
+ id: VOICE_FORTY
+ desc: spoken only, for composing numbers
user:
- *: "Filesize"
+ *: ""
- *: "Filesize"
+ *: ""
- *: "Filesize"
+ *: "40"
- id: LANG_START_NEW_FILE
- desc: in record timesplit options
+ id: VOICE_FIFTY
+ desc: spoken only, for composing numbers
user:
- *: "Start new file"
+ *: ""
- *: "Start new file"
+ *: ""
- *: "Start new file"
+ *: "50"
- id: LANG_STOP_RECORDING
- desc: in record timesplit options
+ id: VOICE_SIXTY
+ desc: spoken only, for composing numbers
user:
- *: "Stop recording"
+ *: ""
- *: "Stop recording"
+ *: ""
- *: "Stop recording"
+ *: "60"
- id: LANG_REMOTE_LCD_OFF
- desc: Remote lcd off splash
+ id: VOICE_SEVENTY
+ desc: spoken only, for composing numbers
user:
- *: "Remote Display OFF"
+ *: ""
- *: "Remote Display OFF"
+ *: ""
- *: "Remote Display OFF"
+ *: "70"
- id: LANG_REMOTE_LCD_ON
- desc: Remote lcd off splash
+ id: VOICE_EIGHTY
+ desc: spoken only, for composing numbers
user:
- *: "(Vol- : Re-enable)"
+ *: ""
- *: "(Vol- : Re-enable)"
+ *: ""
- *: "(Vol- : Re-enable)"
+ *: "80"
- id: LANG_BACKLIGHT_ON_BUTTON_HOLD_NORMAL
- desc: in lcd settings
+ id: VOICE_NINETY
+ desc: spoken only, for composing numbers
user:
- *: "Normal"
+ *: ""
- *: "Normal"
+ *: ""
- *: "Normal"
+ *: "90"
- id: LANG_BACKLIGHT_ON_BUTTON_HOLD
- desc: in lcd settings
+ id: VOICE_HUNDRED
+ desc: spoken only, for composing numbers
user:
- *: "Backlight (On Hold Key)"
+ *: ""
- *: "Backlight (On Hold Key)"
+ *: ""
- *: "Backlight on hold key"
+ *: "hundred"
- id: LANG_NEVER
- desc: in lcd settings
+ id: VOICE_THOUSAND
+ desc: spoken only, for composing numbers
user:
- *: "Never"
+ *: ""
- *: "Never"
+ *: ""
- *: "Never"
+ *: "thousand"
- id: LANG_LCD_SLEEP_AFTER_BACKLIGHT_OFF
- desc: In display settings, time to switch LCD chip into power saving state
+ id: VOICE_MILLION
+ desc: spoken only, for composing numbers
user:
- *: "Sleep (After Backlight Off)"
+ *: ""
- *: "Sleep (After Backlight Off)"
+ *: ""
- *: "Sleep after backlight off"
+ *: "million"
- id: LANG_SYSFONT_SET_BOOL_YES
- desc: bool true representation
+ id: VOICE_BILLION
+ desc: spoken only, for composing numbers
user:
- *: "Yes"
+ *: ""
- *: "Yes"
+ *: ""
- *: "Yes"
+ *: "billion"
- id: LANG_SYSFONT_SET_BOOL_NO
- desc: bool false representation
+ id: VOICE_MINUS
+ desc: spoken only, for composing numbers
user:
- *: "No"
+ *: ""
- *: "No"
+ *: ""
- *: "No"
+ *: "minus"
- id: LANG_SYSFONT_ON
- desc: Used in a lot of places
+ id: VOICE_PLUS
+ desc: spoken only, for composing numbers
user:
- *: "On"
+ *: ""
- *: "On"
+ *: ""
- *: "On"
+ *: "plus"
- id: LANG_SYSFONT_OFF
- desc: Used in a lot of places
+ id: VOICE_MILLISECONDS
+ desc: spoken only, a unit postfix
user:
- *: "Off"
+ *: ""
- *: "Off"
+ *: ""
- *: "Off"
+ *: "milliseconds"
- id: LANG_SYSFONT_VOLUME
- desc: in sound_settings
+ id: VOICE_SECOND
+ desc: spoken only, a unit postfix
user:
- *: "Volume"
+ *: ""
- *: "Volume"
+ *: ""
- *: "Volume"
+ *: "second"
- id: LANG_SYSFONT_CHANNEL_STEREO
- desc: in sound_settings
+ id: VOICE_SECONDS
+ desc: spoken only, a unit postfix
user:
- *: "Stereo"
+ *: ""
- *: "Stereo"
+ *: ""
- *: "Stereo"
+ *: "seconds"
- id: LANG_SYSFONT_CHANNEL_MONO
- desc: in sound_settings
+ id: VOICE_MINUTE
+ desc: spoken only, a unit postfix
user:
- *: "Mono"
+ *: ""
- *: "Mono"
+ *: ""
- *: "Mono"
+ *: "minute"
- id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
- desc: in the equalizer settings menu
+ id: VOICE_MINUTES
+ desc: spoken only, a unit postfix
user:
- *: "Edit mode: %s"
+ *: ""
- *: "Edit mode: %s"
+ *: ""
- *: ""
+ *: "minutes"
- id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
- desc: in the equalizer settings menu
+ id: VOICE_HOUR
+ desc: spoken only, a unit postfix
user:
- *: "Cutoff Frequency"
+ *: ""
- *: "Cutoff Frequency"
+ *: ""
- *: "Cutoff Frequency"
+ *: "hour"
- id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
- desc: in the equalizer settings menu
+ id: VOICE_HOURS
+ desc: spoken only, a unit postfix
user:
- *: "Gain"
+ *: ""
- *: "Gain"
+ *: ""
- *: "Gain"
+ *: "hours"
- id: LANG_SYSFONT_SHUFFLE
- desc: in settings_menu
+ id: VOICE_KHZ
+ desc: spoken only, a unit postfix
user:
- *: "Shuffle"
+ *: ""
- *: "Shuffle"
+ *: ""
- *: "Shuffle"
+ *: "kilohertz"
- id: LANG_SYSFONT_REPEAT
- desc: in settings_menu
+ id: VOICE_DB
+ desc: spoken only, a unit postfix
user:
- *: "Repeat"
+ *: ""
- *: "Repeat"
+ *: ""
- *: "Repeat"
+ *: "decibel"
- id: LANG_SYSFONT_REPEAT_ALL
- desc: repeat playlist once all songs have completed
+ id: VOICE_PERCENT
+ desc: spoken only, a unit postfix
user:
- *: "All"
+ *: ""
- *: "All"
+ *: ""
- *: "All"
+ *: "percent"
- id: LANG_SYSFONT_REPEAT_ONE
- desc: repeat one song
+ id: VOICE_MILLIAMPHOURS
+ desc: spoken only, a unit postfix
user:
- *: "One"
+ *: ""
- *: "One"
+ *: ""
- *: "One"
+ *: "milli-amp hours"
- id: LANG_SYSFONT_REPEAT_AB
- desc: repeat one song
+ id: VOICE_PIXEL
+ desc: spoken only, a unit postfix
user:
- *: "A-B"
+ *: ""
- *: "A-B"
+ *: ""
- *: "A-B"
+ *: "pixel"
- id: LANG_SYSFONT_FILTER
- desc: setting name for dir filter
+ id: VOICE_PER_SEC
+ desc: spoken only, a unit postfix
user:
- *: "Show Files"
+ *: ""
- *: "Show Files"
+ *: ""
- *: "Show Files"
+ *: "per second"
- id: LANG_SYSFONT_FILTER_ALL
- desc: show all files
+ id: VOICE_HERTZ
+ desc: spoken only, a unit postfix
user:
- *: "All"
+ *: ""
- *: "All"
+ *: ""
- *: "All"
+ *: "hertz"
- id: LANG_SYSFONT_FILTER_SUPPORTED
- desc: show all file types supported by Rockbox
+ id: LANG_BYTE
+ desc: a unit postfix
user:
- *: "Supported"
+ *: "B"
- *: "Supported"
+ *: "B"
- *: "Supported"
+ *: ""
- id: LANG_SYSFONT_FILTER_MUSIC
- desc: show only music-related files
+ id: LANG_KILOBYTE
+ desc: a unit postfix, also voiced
user:
- *: "Music"
+ *: "KB"
- *: "Music"
+ *: "KB"
- *: "Music"
+ *: "kilobyte"
- id: LANG_SYSFONT_FILTER_PLAYLIST
- desc: show only playlist
+ id: LANG_MEGABYTE
+ desc: a unit postfix, also voiced
user:
- *: "Playlists"
+ *: "MB"
- *: "Playlists"
+ *: "MB"
- *: "Playlists"
+ *: "megabyte"
- id: LANG_SYSFONT_FILTER_ID3DB
- desc: show ID3 Database
+ id: LANG_GIGABYTE
+ desc: a unit postfix, also voiced
user:
- *: "Database"
+ *: "GB"
- *: "Database"
+ *: "GB"
- *: "Database"
+ *: "gigabyte"
- id: LANG_SYSFONT_RECORDING_QUALITY
- desc: in the recording settings
+ id: VOICE_KBIT_PER_SEC
+ desc: spoken only, a unit postfix
user:
- *: "Quality"
+ *: ""
- *: "Quality"
+ *: ""
- *: "Quality"
+ *: "kilobits per second"
- id: LANG_SYSFONT_RECORDING_FREQUENCY
- desc: in the recording settings
+ id: LANG_POINT
+ desc: decimal separator for composing numbers
user:
- *: "Frequency"
+ *: "."
- *: "Frequency"
+ *: "."
- *: "Frequency"
+ *: "point"
- id: LANG_SYSFONT_RECORDING_SOURCE
- desc: in the recording settings
+ id: VOICE_CHAR_A
+ desc: spoken only, for spelling
user:
- *: "Source"
+ *: ""
- *: "Source"
+ *: ""
- *: "Source"
+ *: "A"
- id: LANG_SYSFONT_RECORDING_SRC_MIC
- desc: in the recording settings
+ id: VOICE_CHAR_B
+ desc: spoken only, for spelling
user:
- *: "Int. Mic"
+ *: ""
- *: "Int. Mic"
+ *: ""
- *: "Internal Microphone"
+ *: "B"
- id: LANG_SYSFONT_RECORDING_SRC_LINE
- desc: in the recording settings
+ id: VOICE_CHAR_C
+ desc: spoken only, for spelling
user:
- *: "Line In"
+ *: ""
- *: "Line In"
+ *: ""
- *: "Line In"
+ *: "C"
- id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
- desc: in the recording settings
+ id: VOICE_CHAR_D
+ desc: spoken only, for spelling
user:
- *: "Digital"
+ *: ""
- *: "Digital"
+ *: ""
- *: "Digital"
+ *: "D"
- id: LANG_SYSFONT_RECORDING_CHANNELS
- desc: in the recording settings
+ id: VOICE_CHAR_E
+ desc: spoken only, for spelling
user:
- *: "Channels"
+ *: ""
- *: "Channels"
+ *: ""
- *: "Channels"
+ *: "E"
- id: LANG_SYSFONT_RECORD_TRIGGER
- desc: in recording settings_menu
+ id: VOICE_CHAR_F
+ desc: spoken only, for spelling
user:
- *: "Trigger"
+ *: ""
- *: "Trigger"
+ *: ""
- *: "Trigger"
+ *: "F"
- id: LANG_SYSFONT_FLIP_DISPLAY
- desc: in settings_menu, option to turn display+buttos by 180 degreed
+ id: VOICE_CHAR_G
+ desc: spoken only, for spelling
user:
- *: "Upside Down"
+ *: ""
- *: "Upside Down"
+ *: ""
- *: "Upside Down"
+ *: "G"
- id: LANG_SYSFONT_SCROLL_BAR
- desc: display menu, F3 substitute
+ id: VOICE_CHAR_H
+ desc: spoken only, for spelling
user:
- *: "Scroll Bar"
+ *: ""
- *: "Scroll Bar"
+ *: ""
- *: "Scroll Bar"
+ *: "H"
- id: LANG_SYSFONT_STATUS_BAR
- desc: display menu, F3 substitute
+ id: VOICE_CHAR_I
+ desc: spoken only, for spelling
user:
- *: "Status Bar"
+ *: ""
- *: "Status Bar"
+ *: ""
- *: "Status Bar"
+ *: "I"
- id: LANG_SYSFONT_PITCH
- desc: "pitch" in the pitch screen
+ id: VOICE_CHAR_J
+ desc: spoken only, for spelling
user:
- *: "Pitch"
+ *: ""
- *: "Pitch"
+ *: ""
- *: "Pitch"
+ *: "J"
- id: LANG_SYSFONT_PITCH_UP
- desc: in wps
+ id: VOICE_CHAR_K
+ desc: spoken only, for spelling
user:
- *: "Pitch Up"
+ *: ""
- *: "Pitch Up"
+ *: ""
- *: ""
+ *: "K"
- id: LANG_SYSFONT_PITCH_DOWN
- desc: in wps
+ id: VOICE_CHAR_L
+ desc: spoken only, for spelling
user:
- *: "Pitch Down"
+ *: ""
- *: "Pitch Down"
+ *: ""
- *: ""
+ *: "L"
- id: LANG_SYSFONT_F2_MODE
- desc: in wps F2 pressed
+ id: VOICE_CHAR_M
+ desc: spoken only, for spelling
user:
- *: "Mode:"
+ *: ""
- *: "Mode:"
+ *: ""
- *: ""
+ *: "M"
- id: LANG_SYSFONT_RECORDING_TIME
- desc: Display of recorded time
+ id: VOICE_CHAR_N
+ desc: spoken only, for spelling
user:
- *: "Time:"
+ *: ""
- *: "Time:"
+ *: ""
- *: ""
+ *: "N"
- id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
- desc: Display of record timer interval setting, on the record screen
+ id: VOICE_CHAR_O
+ desc: spoken only, for spelling
user:
- *: "Split Time:"
+ *: ""
- *: "Split Time:"
+ *: ""
- *: ""
+ *: "O"
- id: LANG_SYSFONT_RECORDING_SIZE
- desc: Display of recorded file size
+ id: VOICE_CHAR_P
+ desc: spoken only, for spelling
user:
- *: "Size:"
+ *: ""
- *: "Size:"
+ *: ""
- *: ""
+ *: "P"
- id: LANG_SYSFONT_RECORD_PRERECORD
- desc: in recording and radio screen
+ id: VOICE_CHAR_Q
+ desc: spoken only, for spelling
user:
- *: "Pre-Recording"
+ *: ""
- *: "Pre-Recording"
+ *: ""
- *: ""
+ *: "Q"
- id: LANG_SYSFONT_RECORDING_GAIN
- desc: in the recording screen
+ id: VOICE_CHAR_R
+ desc: spoken only, for spelling
user:
- *: "Gain"
+ *: ""
- *: "Gain"
+ *: ""
- *: ""
+ *: "R"
- id: LANG_SYSFONT_RECORDING_LEFT
- desc: in the recording screen
+ id: VOICE_CHAR_S
+ desc: spoken only, for spelling
user:
- *: "Gain Left"
+ *: ""
- *: "Gain Left"
+ *: ""
- *: ""
+ *: "S"
- id: LANG_SYSFONT_RECORDING_RIGHT
- desc: in the recording screen
+ id: VOICE_CHAR_T
+ desc: spoken only, for spelling
user:
- *: "Gain Right"
+ *: ""
- *: "Gain Right"
+ *: ""
- *: ""
+ *: "T"
- id: LANG_SYSFONT_DISK_FULL
- desc: in recording screen
+ id: VOICE_CHAR_U
+ desc: spoken only, for spelling
user:
- *: "The disk is full. Press OFF to continue."
- h100,h120,h300: "The disk is full. Press STOP to continue."
+ *: ""
- *: "The disk is full. Press OFF to continue."
- h100,h120,h300: "The disk is full. Press STOP to continue."
+ *: ""
- *: ""
+ *: "U"
- id: LANG_SYSFONT_DIRBROWSE_F1
- desc: in dir browser, F1 button bar text
+ id: VOICE_CHAR_V
+ desc: spoken only, for spelling
user:
- *: "Menu"
+ *: ""
- *: "Menu"
+ *: ""
- *: ""
+ *: "V"
- id: LANG_SYSFONT_DIRBROWSE_F2
- desc: in dir browser, F2 button bar text
+ id: VOICE_CHAR_W
+ desc: spoken only, for spelling
user:
- *: "Option"
+ *: ""
- *: "Option"
+ *: ""
- *: ""
+ *: "W"
- id: LANG_SYSFONT_DIRBROWSE_F3
- desc: in dir browser, F3 button bar text
+ id: VOICE_CHAR_X
+ desc: spoken only, for spelling
user:
- *: "LCD"
-
-
- *: "LCD"
-
-
*: ""
-
-
-
- id: LANG_SYSFONT_SPLIT_SIZE
- desc: in record timesplit options
-
- *: "Split Filesize"
- *: "Split Filesize"
+ *: ""
- *: "Split Filesize"
+ *: "X"
- id: LANG_LOADING_PERCENT
- desc: splash number of percents loaded
+ id: VOICE_CHAR_Y
+ desc: spoken only, for spelling
user:
- *: "Loading... %d%% done (%s)"
+ *: ""
- *: "Loading... %d%% done (%s)"
+ *: ""
- *: ""
+ *: "Y"
- id: LANG_EQUALIZER_HARDWARE
- desc: in the sound settings menu
+ id: VOICE_CHAR_Z
+ desc: spoken only, for spelling
user:
- *: "Hardware Equalizer"
+ *: ""
- *: "Hardware Equalizer"
+ *: ""
- *: "Hardware equalizer"
+ *: "Z"
- id: LANG_EQUALIZER_HARDWARE_ENABLED
- desc: in the equalizer settings menu
+ id: VOICE_DOT
+ desc: spoken only, for spelling
user:
- *: "Enable Hardware EQ"
+ *: ""
- *: "Enable Hardware EQ"
+ *: ""
- *: "Enable hardware equalizer"
+ *: "dot"
- id: LANG_EQUALIZER_BANDWIDTH
- desc: in the equalizer settings menu
+ id: VOICE_PAUSE
+ desc: spoken only, for spelling, a split second of silence (difficult to author)
user:
- *: "Bandwidth"
+ *: ""
- *: "Bandwidth"
+ *: ""
- *: "Bandwidth"
+ *: " "
- id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_NARROW
- desc: in the equalizer settings menu
+ id: VOICE_FILE
+ desc: spoken only, prefix for file number
user:
- *: "Narrow"
+ *: ""
- *: "Narrow"
+ *: ""
- *: "Narrow"
+ *: "file"
- id: LANG_EQUALIZER_HARDWARE_BANDWIDTH_WIDE
- desc: in the equalizer settings menu
+ id: VOICE_DIR
+ desc: spoken only, prefix for directory number
user:
- *: "Wide"
+ *: ""
- *: "Wide"
+ *: ""
- *: "Wide"
+ *: "folder"
- id: LANG_SHOW_PATH
- desc: in settings_menu
+ id: VOICE_EXT_MPA
+ desc: spoken only, for file extension
user:
- *: "Show Path"
+ *: ""
- *: "Show Path"
+ *: ""
- *: "Show Path"
+ *: "audio"
- id: LANG_SHOW_PATH_CURRENT
- desc: in show path menu
+ id: VOICE_EXT_CFG
+ desc: spoken only, for file extension
user:
- *: "Current Directory Only"
+ *: ""
- *: "Current Directory Only"
+ *: ""
- *: "Current Directory Only"
+ *: "configuration"
- id: LANG_SHOW_PATH_FULL
- desc: in show path menu
+ id: VOICE_EXT_WPS
+ desc: spoken only, for file extension
user:
- *: "Full Path"
+ *: ""
- *: "Full Path"
+ *: ""
- *: "Full Path"
+ *: "while-playing-screen"
- id: LANG_RECORD_AGC_PRESET
- desc: automatic gain control in record settings
+ id: VOICE_EXT_TXT
+ desc: spoken only, for file extension
+ user:
- *: "Automatic Gain Control"
+ *: ""
- *: "Automatic Gain Control"
+ *: ""
- *: "Automatic gain control"
+ *: "text"
- id: LANG_AGC_SAFETY
- desc: AGC preset
+ id: VOICE_EXT_ROCK
+ desc: spoken only, for file extension
+ user:
- *: "Safety (clip)"
+ *: ""
- *: "Safety (clip)"
+ *: ""
- *: "Safety (clip)"
+ *: "plugin"
- id: LANG_AGC_LIVE
- desc: AGC preset
+ id: VOICE_EXT_FONT
+ desc: spoken only, for file extension
+ user:
- *: "Live (slow)"
+ *: ""
- *: "Live (slow)"
+ *: ""
- *: "Live (slow)"
+ *: "font"
- id: LANG_AGC_DJSET
- desc: AGC preset
+ id: VOICE_EXT_BMARK
+ desc: spoken only, for file extension and the word in general
+ user:
- *: "DJ-Set (slow)"
+ *: ""
- *: "DJ-Set (slow)"
+ *: ""
- *: "DJ set (slow)"
+ *: "bookmark"
- id: LANG_AGC_MEDIUM
- desc: AGC preset
+ id: VOICE_EXT_AJZ
+ desc: spoken only, for file extension
+ user:
- *: "Medium"
+ *: ""
- *: "Medium"
+ *: ""
- *: "Medium"
+ *: "firmware"
- id: LANG_AGC_VOICE
- desc: AGC preset
+ id: VOICE_EXT_RWPS
+ desc: spoken only, for file extension
+ user:
- *: "Voice (fast)"
+ *: ""
- *: "Voice (fast)"
+ *: ""
- *: "Voice (fast)"
+ *: "remote while-playing-screen"
- id: LANG_RECORD_AGC_CLIPTIME
- desc: in record settings
+ id: VOICE_EXT_KBD
+ desc: spoken only, for file extension
+ user:
- *: "AGC clip time"
+ *: ""
- *: "AGC clip time"
+ *: ""
- *: "AGC clip time"
+ *: "keyboard"
- id: LANG_SYSFONT_RECORDING_AGC_PRESET
- desc: automatic gain control in recording screen
-
- *: "AGC"
-
-
- *: "AGC"
-
-
- *: "AGC"
-
-
-
- id: LANG_RECORDING_AGC_MAXGAIN
- desc: AGC maximum gain in recording screen
-
- *: "AGC max. gain"
-
-
- *: "AGC max. gain"
-
-
- *: "AGC maximum gain"
-
-
-
- id: VOICE_KBIT_PER_SEC
- desc: spoken only, a unit postfix
+ id: VOICE_EXT_CUESHEET
+ desc:
user:
*: ""
@@ -9862,816 +9707,785 @@
*: ""
- *: "kilobits per second"
+ *: "cuesheet"
- id: LANG_SYSFONT_RECORDING_FILENAME
- desc: Filename header in recording screen
+ id: LANG_SYSFONT_SET_BOOL_YES
+ desc: bool true representation
user:
- *: "Filename:"
+ *: "Yes"
- *: "Filename:"
+ *: "Yes"
- *: ""
+ *: "Yes"
- id: LANG_UNPLUG
- desc: in settings_menu.
+ id: LANG_SYSFONT_SET_BOOL_NO
+ desc: bool false representation
user:
- *: "Pause on Headphone Unplug"
+ *: "No"
- *: "Pause on Headphone Unplug"
+ *: "No"
- *: "Pause on Headphone Unplug"
+ *: "No"
- id: LANG_UNPLUG_RESUME
- desc: in pause_phones_menu.
+ id: LANG_SYSFONT_ON
+ desc: Used in a lot of places
user:
- *: "Pause and Resume"
+ *: "On"
- *: "Pause and Resume"
+ *: "On"
- *: "Pause and Resume"
+ *: "On"
- id: LANG_UNPLUG_RW
- desc: in pause_phones_menu.
+ id: LANG_SYSFONT_OFF
+ desc: Used in a lot of places
user:
- *: "Duration to Rewind"
+ *: "Off"
- *: "Duration to Rewind"
+ *: "Off"
- *: "Duration to Rewind"
+ *: "Off"
- id: LANG_UNPLUG_DISABLE_AUTORESUME
- desc: in pause_phones_menu.
+ id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
+ desc: in the equalizer settings menu
user:
- *: "Disable resume on startup if phones unplugged"
+ *: NONE
+ swcodec: "Edit mode: %s"
- *: "Disable resume on startup if phones unplugged"
+ *: NONE
+ swcodec: "Edit mode: %s"
- *: "Disable resume on startup if phones unplugged"
+ *: NONE
+ swcodec: ""
- id: LANG_FM_REGION
- desc: fm tuner region setting
+ id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
+ desc: in the equalizer settings menu
+ user:
- *: "Region"
+ *: NONE
+ swcodec: "Cutoff Frequency"
- *: "Region"
+ *: NONE
+ swcodec: "Cutoff Frequency"
- *: "Region"
+ *: NONE
+ swcodec: "Cutoff Frequency"
- id: LANG_FM_EUROPE
- desc: fm tuner region europe
+ id: LANG_SYSFONT_GAIN
+ desc: in the equalizer settings menu
+ user:
- *: "Europe"
+ *: "Gain"
- *: "Europe"
+ *: "Gain"
- *: "Europe"
+ *: "Gain"
- id: LANG_FM_US
- desc: fm region us / canada
+ id: LANG_SYSFONT_SHUFFLE
+ desc: in settings_menu
+ user:
- *: "US / Canada"
+ *: "Shuffle"
- *: "US / Canada"
+ *: "Shuffle"
- *: "US / Canada"
+ *: "Shuffle"
- id: LANG_FM_JAPAN
- desc: fm region japan
-
- *: "Japan"
-
-
- *: "Japan"
-
-
- *: "Japan"
-
-
-
- id: LANG_FM_KOREA
- desc: fm region korea
-
- *: "Korea"
-
-
- *: "Korea"
-
-
- *: "Korea"
-
-
-
- id: LANG_RANDOM
- desc: random folder
-
- *: "Random"
-
-
- *: "Random"
-
-
- *: "Random"
-
-
-
- id: LANG_AUDIOSCROBBLER
- desc: "Last.fm Log" in the playback menu
+ id: LANG_SYSFONT_REPEAT
+ desc: in settings_menu
user:
- *: "Last.fm Log"
+ *: "Repeat"
- *: "Last.fm Log"
+ *: "Repeat"
- *: "Last.fm Log"
+ *: "Repeat"
- id: LANG_PLEASE_REBOOT
- desc: when activating an option that requires a reboot
+ id: LANG_SYSFONT_ALL
+ desc: repeat playlist once all songs have completed
user:
- *: "Please reboot to enable"
+ *: "All"
- *: "Please reboot to enable"
+ *: "All"
- *: ""
+ *: "All"
- id: LANG_DITHERING
- desc: in the sound settings menu
+ id: LANG_SYSFONT_REPEAT_ONE
+ desc: repeat one song
user:
- *: "Dithering"
+ *: "One"
- *: "Dithering"
+ *: "One"
- *: "Dithering"
+ *: "One"
- id: LANG_SYSFONT_PITCH_UP_SEMITONE
- desc: in wps
+ id: LANG_SYSFONT_REPEAT_AB
+ desc: repeat one song
user:
- *: "Semitone Up"
+ *: "A-B"
- *: "Semitone Up"
+ *: "A-B"
- *: ""
+ *: "A-B"
- id: LANG_SYSFONT_PITCH_DOWN_SEMITONE
- desc: in wps
+ id: LANG_SYSFONT_FILTER
+ desc: setting name for dir filter
user:
- *: "Semitone Down"
+ *: "Show Files"
- *: "Semitone Down"
+ *: "Show Files"
- *: ""
+ *: "Show Files"
- id: LANG_RECORDING_FORMAT
- desc: audio format item in recording menu
+ id: LANG_SYSFONT_FILTER_SUPPORTED
+ desc: show all file types supported by Rockbox
user:
- *: "Format"
+ *: "Supported"
- *: "Format"
+ *: "Supported"
- *: "Format"
+ *: "Supported"
- id: LANG_AFMT_MPA_L3
- desc: audio format description
+ id: LANG_SYSFONT_FILTER_MUSIC
+ desc: show only music-related files
user:
- *: "MPEG Layer 3"
+ *: "Music"
- *: "MPEG Layer 3"
+ *: "Music"
- *: "MPEG Layer 3"
+ *: "Music"
- id: LANG_AFMT_PCM_WAV
- desc: audio format description
+ id: LANG_SYSFONT_FILTER_PLAYLIST
+ desc: show only playlist
user:
- *: "PCM Wave"
+ *: "Playlists"
- *: "PCM Wave"
+ *: "Playlists"
- *: "PCM Wave"
+ *: "Playlists"
- id: LANG_AFMT_WAVPACK
- desc: audio format description
+ id: LANG_SYSFONT_FLIP_DISPLAY
+ desc: in settings_menu, option to turn display+buttos by 180 degreed
user:
- *: "WavPack"
+ *: "Upside Down"
- *: "WavPack"
+ *: "Upside Down"
- *: "WavPack"
+ *: "Upside Down"
- id: LANG_ENCODER_SETTINGS
- desc: encoder settings
+ id: LANG_SYSFONT_SCROLL_BAR
+ desc: display menu, F3 substitute
user:
- *: "Encoder Settings"
+ *: "Scroll Bar"
- *: "Encoder Settings"
+ *: "Scroll Bar"
- *: "Encoder Settings"
+ *: "Scroll Bar"
- id: LANG_NO_SETTINGS
- desc: when something has settings in a certain context
+ id: LANG_SYSFONT_STATUS_BAR
+ desc: display menu, F3 substitute
user:
- *: "(No Settings)"
+ *: "Status Bar"
- *: "(No Settings)"
+ *: "Status Bar"
- *: "No settings available"
+ *: "Status Bar"
- id: LANG_SOURCE_FREQUENCY
- desc: when recording source frequency setting must follow source
+ id: LANG_SYSFONT_MODE
+ desc: in wps F2 pressed
user:
- *: "(Same As Source)"
+ *: "Mode:"
- *: "(Same As Source)"
+ *: "Mode:"
- *: "Same As Source"
+ *: ""
- id: LANG_BITRATE
- desc: bits-kilobits per unit time
+ id: LANG_SYSFONT_DIRBROWSE_F1
+ desc: in dir browser, F1 button bar text
user:
- *: "Bitrate"
+ *: "Menu"
- *: "Bitrate"
+ *: "Menu"
- *: "Bitrate"
+ *: ""
- id: LANG_RECORD_TRIGGER_TYPE
- desc: in recording trigger menu
-
- *: "Trigtype"
-
-
- *: "Trigtype"
-
-
- *: "Trigtype"
-
-
-
- id: LANG_RECORD_TRIGGER_STOP
- desc: trigger types
-
- *: "Stop"
-
-
- *: "Stop"
-
-
- *: "Stop"
-
-
-
- id: LANG_RECORD_TRIGGER_PAUSE
- desc: trigger types
-
- *: "Pause"
-
-
- *: "Pause"
-
-
- *: "Pause"
-
-
-
- id: LANG_RECORD_TRIGGER_NEWFILESTP
- desc: trigger types
-
- *: "New file"
-
-
- *: "New file"
-
-
- *: "New file"
-
-
-
- id: LANG_WARNING_BATTERY_LOW
- desc: general warning
+ id: LANG_SYSFONT_DIRBROWSE_F2
+ desc: in dir browser, F2 button bar text
user:
- *: "WARNING! Low Battery!"
+ *: "Option"
- *: "WARNING! Low Battery!"
+ *: "Option"
*: ""
- id: LANG_WARNING_BATTERY_EMPTY
- desc: general warning
+ id: LANG_SYSFONT_DIRBROWSE_F3
+ desc: in dir browser, F3 button bar text
user:
- *: "Battery empty! RECHARGE!"
+ *: "LCD"
- *: "Battery empty! RECHARGE!"
+ *: "LCD"
*: ""
- id: LANG_AFMT_AIFF
- desc: audio format description
+ id: LANG_SYSFONT_DISK_FULL
+ desc: in recording screen
user:
- *: "AIFF"
+ *: NONE
+ recording: "The disk is full. Press STOP to continue."
- *: "AIFF"
+ *: NONE
+ recording: "The disk is full. Press STOP to continue."
- *: "AIFF"
+ *: NONE
+ recording: ""
- id: LANG_SYSFONT_AGC_SAFETY
- desc: AGC preset
+ id: LANG_SYSFONT_VOLUME
+ desc: in sound_settings
+ user:
- *: "Safety (clip)"
+ *: NONE
+ recording: "Volume"
- *: "Safety (clip)"
+ *: NONE
+ recording: "Volume"
- *: "Safety (clip)"
+ *: NONE
+ recording: "Volume"
- id: LANG_SYSFONT_AGC_LIVE
- desc: AGC preset
+ id: LANG_SYSFONT_CHANNEL_STEREO
+ desc: in sound_settings
+ user:
- *: "Live (slow)"
+ *: NONE
+ recording: "Stereo"
- *: "Live (slow)"
+ *: NONE
+ recording: "Stereo"
- *: "Live (slow)"
+ *: NONE
+ recording: "Stereo"
- id: LANG_SYSFONT_AGC_DJSET
- desc: AGC preset
+ id: LANG_SYSFONT_CHANNEL_MONO
+ desc: in sound_settings
+ user:
- *: "DJ-Set (slow)"
+ *: NONE
+ recording: "Mono"
- *: "DJ-Set (slow)"
+ *: NONE
+ recording: "Mono"
- *: "DJ set (slow)"
+ *: NONE
+ recording: "Mono"
- id: LANG_SYSFONT_AGC_MEDIUM
- desc: AGC preset
+ id: LANG_SYSFONT_RECORDING_QUALITY
+ desc: in the recording settings
+ user:
- *: "Medium"
+ *: NONE
+ recording: "Quality"
- *: "Medium"
+ *: NONE
+ recording: "Quality"
- *: "Medium"
+ *: NONE
+ recording: "Quality"
- id: LANG_SYSFONT_AGC_VOICE
- desc: AGC preset
-
- *: "Voice (fast)"
-
-
- *: "Voice (fast)"
-
-
- *: "Voice (fast)"
-
-
-
- id: LANG_SYSFONT_RECORDING_AGC_MAXGAIN
- desc: AGC maximum gain in recording screen
-
- *: "AGC max. gain"
-
-
- *: "AGC max. gain"
-
-
- *: "AGC maximum gain"
-
-
-
- id: LANG_PROPERTIES
- desc: browser file/dir properties
+ id: LANG_SYSFONT_RECORDING_FREQUENCY
+ desc: in the recording settings
user:
- *: "Properties"
+ *: NONE
+ recording: "Frequency"
- *: "Properties"
+ *: NONE
+ recording: "Frequency"
- *: "Properties"
+ *: NONE
+ recording: "Frequency"
- id: LANG_SHUFFLE_TRACKSKIP
- desc: in settings_menu
+ id: LANG_SYSFONT_RECORDING_SOURCE
+ desc: in the recording settings
user:
- *: "Shuffle and Track Skip"
+ *: NONE
+ recording: "Source"
- *: "Shuffle and Track Skip"
+ *: NONE
+ recording: "Source"
- *: "Shuffle and Track Skip"
+ *: NONE
+ recording: "Source"
- id: LANG_RUNNING_TIME
- desc: in run time screen
+ id: LANG_SYSFONT_RECORDING_SRC_MIC
+ desc: in the recording settings
user:
- *: "Running Time"
+ *: NONE
+ recording: "Int. Mic"
- *: "Running Time"
+ *: NONE
+ recording: "Int. Mic"
- *: "Running Time"
+ *: NONE
+ recording: "Internal Microphone"
- id: LANG_CURRENT_TIME
- desc: in run time screen
+ id: LANG_SYSFONT_LINE_IN
+ desc: in the recording settings
user:
- *: "Current Time"
+ *: NONE
+ recording: "Line In"
- *: "Current Time"
+ *: NONE
+ recording: "Line In"
- *: "Current Time"
+ *: NONE
+ recording: "Line In"
- id: LANG_TOP_TIME
- desc: in run time screen
+ id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
+ desc: in the recording settings
user:
- *: "Top Time"
+ *: NONE
+ recording: "Digital"
- *: "Top Time"
+ *: NONE
+ recording: "Digital"
- *: "Top Time"
+ *: NONE
+ recording: "Digital"
- id: LANG_CLEAR_TIME
- desc: in run time screen
+ id: LANG_SYSFONT_CHANNELS
+ desc: in the recording settings
user:
- *: "Clear Time?"
+ *: NONE
+ recording: "Channels"
- *: "Clear Time?"
+ *: NONE
+ recording: "Channels"
- *: "Clear Time?"
+ *: NONE
+ recording: "Channels"
- id: LANG_REPLACE
- desc: in onplay menu. Replace the current playlist with a new one.
+ id: LANG_SYSFONT_RECORD_TRIGGER
+ desc: in recording settings_menu
user:
- *: "Play Next"
+ *: NONE
+ recording: "Trigger"
- *: "Play Next"
+ *: NONE
+ recording: "Trigger"
- *: "Play Next"
+ *: NONE
+ recording: "Trigger"
- id: LANG_SAVE_THEME
- desc: save a theme file
+ id: LANG_SYSFONT_RECORDING_TIME
+ desc: Display of recorded time
user:
- *: "Save Theme Settings"
+ *: NONE
+ recording: "Time:"
- *: "Save Theme Settings"
+ *: NONE
+ recording: "Time:"
- *: "Save Theme Settings"
+ *: NONE
+ recording: ""
- id: LANG_USB_CHARGING
- desc: in Battery menu
+ id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
+ desc: Display of record timer interval setting, on the record screen
user:
- *: "Charge During USB Connection"
+ *: NONE
+ recording: "Split Time:"
- *: "Charge During USB Connection"
+ *: NONE
+ recording: "Split Time:"
- *: "Charge During U S B Connection"
+ *: NONE
+ recording: ""
- id: LANG_ID3_ALBUMARTIST
- desc: in tag viewer
+ id: LANG_SYSFONT_RECORDING_SIZE
+ desc: Display of recorded file size
user:
- *: "[Album Artist]"
+ *: NONE
+ recording: "Size:"
- *: "[Album Artist]"
+ *: NONE
+ recording: "Size:"
- *: ""
+ *: NONE
+ recording: ""
- id: LANG_ID3_COMMENT
- desc: in tag viewer
+ id: LANG_SYSFONT_RECORD_PRERECORD
+ desc: in recording and radio screen
user:
- *: "[Comment]"
+ *: NONE
+ recording: "Pre-Recording"
- *: "[Comment]"
+ *: NONE
+ recording: "Pre-Recording"
- *: ""
+ *: NONE
+ recording: ""
- id: LANG_CUESHEET
- desc:
+ id: LANG_SYSFONT_RECORDING_LEFT
+ desc: in the recording screen
user:
- *: "Cuesheet"
+ *: NONE
+ recording: "Gain Left"
- *: "Cuesheet"
+ *: NONE
+ recording: "Gain Left"
- *: "Cuesheet"
+ *: NONE
+ recording: ""
- id: LANG_CUESHEET_ENABLE
- desc: cuesheet support option
+ id: LANG_SYSFONT_RECORDING_RIGHT
+ desc: in the recording screen
user:
- *: "Cuesheet Support"
+ *: NONE
+ recording: "Gain Right"
- *: "Cuesheet Support"
+ *: NONE
+ recording: "Gain Right"
- *: "Cuesheet Support"
+ *: NONE
+ recording: ""
- id: LANG_FM_MENU
- desc: fm menu title
- user:
+ id: LANG_SYSFONT_SPLIT_SIZE
+ desc: in record timesplit options
- *: "FM Radio Menu"
+ *: NONE
+ recording: "Split Filesize"
- *: "FM Radio Menu"
+ *: NONE
+ recording: "Split Filesize"
- *: "FM Radio Menu"
+ *: NONE
+ recording: "Split Filesize"
- id: LANG_DIR_BROWSER
- desc: in root menu
+ id: LANG_SYSFONT_RECORDING_FILENAME
+ desc: Filename header in recording screen
user:
- *: "Files"
+ *: NONE
+ recording: "Filename:"
- *: "Files"
+ *: NONE
+ recording: "Filename:"
- *: "Files"
+ *: NONE
+ recording: ""
- id: LANG_SETTINGS_MENU
- desc: in root menu
- user:
+ id: LANG_SYSFONT_RECORDING_AGC_PRESET
+ desc: automatic gain control in recording screen
- *: "Settings"
+ *: NONE
+ agc: "AGC"
- *: "Settings"
+ *: NONE
+ agc: "AGC"
- *: "Settings"
+ *: NONE
+ agc: "AGC"
- id: LANG_NOW_PLAYING
- desc: in root menu
- user:
+ id: LANG_SYSFONT_AGC_SAFETY
+ desc: AGC preset
- *: "Now Playing"
+ *: NONE
+ agc: "Safety (clip)"
- *: "Now Playing"
+ *: NONE
+ agc: "Safety (clip)"
- *: "Now Playing"
+ *: NONE
+ agc: "Safety (clip)"
- id: LANG_RESUME_PLAYBACK
- desc: in root menu
- user:
+ id: LANG_SYSFONT_AGC_LIVE
+ desc: AGC preset
- *: "Resume Playback"
+ *: NONE
+ agc: "Live (slow)"
- *: "Resume Playback"
+ *: NONE
+ agc: "Live (slow)"
- *: "Resume Playback"
+ *: NONE
+ agc: "Live (slow)"
- id: LANG_START_SCREEN
- desc: in root menu setting
- user:
+ id: LANG_SYSFONT_AGC_DJSET
+ desc: AGC preset
- *: "Start Screen"
+ *: NONE
+ agc: "DJ-Set (slow)"
- *: "Start Screen"
+ *: NONE
+ agc: "DJ-Set (slow)"
- *: "Start Screen"
+ *: NONE
+ agc: "DJ set (slow)"
- id: LANG_ROCKBOX_TITLE
- desc: in root menu
- user:
+ id: LANG_SYSFONT_AGC_MEDIUM
+ desc: AGC preset
- *: "Rockbox"
+ *: NONE
+ agc: "Medium"
- *: "Rockbox"
+ *: NONE
+ agc: "Medium"
- *: "Rockbox"
+ *: NONE
+ agc: "Medium"
- id: LANG_MAIN_MENU
- desc: in root menu setting
- user:
+ id: LANG_SYSFONT_AGC_VOICE
+ desc: AGC preset
- *: "Main Menu"
+ *: NONE
+ agc: "Voice (fast)"
- *: "Main Menu"
+ *: NONE
+ agc: "Voice (fast)"
- *: "Main Menu"
+ *: NONE
+ agc: "Voice (fast)"
- id: LANG_PREVIOUS_SCREEN
- desc: in root menu setting
- user:
+ id: LANG_SYSFONT_RECORDING_AGC_MAXGAIN
+ desc: AGC maximum gain in recording screen
- *: "Previous Screen"
+ *: NONE
+ agc: "AGC max. gain"
- *: "Previous Screen"
+ *: NONE
+ agc: "AGC max. gain"
- *: "Previous Screen"
+ *: NONE
+ agc: "AGC maximum gain"
Index: apps/settings.c
===================================================================
--- apps/settings.c (revision 12584)
+++ apps/settings.c (working copy)
@@ -570,11 +570,11 @@
{
screens[i].clear_display();
#ifdef HAVE_LCD_CHARCELLS
- screens[i].puts(0, 0, str(LANG_SETTINGS_SAVE_PLAYER));
- screens[i].puts(0, 1, str(LANG_SETTINGS_BATTERY_PLAYER));
+ screens[i].puts(0, 0, str(LANG_SETTINGS_SAVE_FAILED));
+ screens[i].puts(0, 1, str(LANG_SETTINGS_PARTITION));
#else
- screens[i].puts(4, 2, str(LANG_SETTINGS_SAVE_RECORDER));
- screens[i].puts(2, 4, str(LANG_SETTINGS_BATTERY_RECORDER));
+ screens[i].puts(4, 2, str(LANG_SETTINGS_SAVE_FAILED));
+ screens[i].puts(2, 4, str(LANG_SETTINGS_PARTITION));
screens[i].update();
#endif
}
@@ -596,7 +596,7 @@
break;
}
else {
- gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL));
+ gui_syncsplash(HZ, true, str(LANG_CANCEL));
return false;
}
}
@@ -1155,7 +1155,7 @@
{
if (*(int*)variable != oldvalue)
{
- gui_syncsplash(HZ/2,true,str(LANG_MENU_SETTING_CANCEL));
+ gui_syncsplash(HZ/2,true,str(LANG_CANCEL));
*(int*)variable = oldvalue;
}
}
@@ -1163,7 +1163,7 @@
{
if (*(bool*)variable != (bool)oldvalue)
{
- gui_syncsplash(HZ/2,true,str(LANG_MENU_SETTING_CANCEL));
+ gui_syncsplash(HZ/2,true,str(LANG_CANCEL));
*(bool*)variable = (bool)oldvalue;
}
}
Index: apps/onplay.c
===================================================================
--- apps/onplay.c (revision 12584)
+++ apps/onplay.c (working copy)
@@ -454,7 +454,7 @@
#endif
if(ACTION_STD_CANCEL == get_action(CONTEXT_STD,TIMEOUT_NOBLOCK))
{
- gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL));
+ gui_syncsplash(HZ, true, str(LANG_CANCEL));
result = -1;
break;
}
@@ -920,6 +920,7 @@
items[i].desc = ID2P(LANG_MENU_SHOW_ID3_INFO);
items[i].function = browse_id3;
i++;
+/* NOTE: the LANG_MENU_SET_RATING string has been removed from english.lang */
/* if(rundb_initialized)
{
items[i].desc = ID2P(LANG_MENU_SET_RATING);
Index: apps/gui/gwps-common.c
===================================================================
--- apps/gui/gwps-common.c (revision 12584)
+++ apps/gui/gwps-common.c (working copy)
@@ -2492,12 +2492,11 @@
if (!wps_state.id3 && !(audio_status() & AUDIO_STATUS_PLAY))
{
global_status.resume_index = -1;
-#ifdef HAVE_LCD_CHARCELLS
- gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
-#else
+#ifdef HAVE_LCD_BITMAP
gui_syncstatusbar_draw(&statusbars, true);
- gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_RECORDER));
#endif
+ gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST));
+
return true;
}
else
@@ -2639,17 +2638,11 @@
FOR_NB_SCREENS(i)
gui_wps[i].display->stop_scroll();
-#ifdef HAVE_LCD_CHARCELLS
if(locked)
- s = str(LANG_KEYLOCK_ON_PLAYER);
+ s = str(LANG_KEYLOCK_ON);
else
- s = str(LANG_KEYLOCK_OFF_PLAYER);
-#else
- if(locked)
- s = str(LANG_KEYLOCK_ON_RECORDER);
- else
- s = str(LANG_KEYLOCK_OFF_RECORDER);
-#endif
+ s = str(LANG_KEYLOCK_OFF);
+
gui_syncsplash(HZ, true, s);
}
Index: apps/gui/yesno.c
===================================================================
--- apps/gui/yesno.c (revision 12584)
+++ apps/gui/yesno.c (working copy)
@@ -39,8 +39,10 @@
{
if(nb_lines+line_shift+3<=display->nb_lines)
nb_lines++;
- display->puts(0, nb_lines+line_shift, str(LANG_CONFIRM_WITH_PLAY_RECORDER));
- display->puts(0, nb_lines+line_shift+1, str(LANG_CANCEL_WITH_ANY_RECORDER));
+ display->puts(0, nb_lines+line_shift, str(LANG_CONFIRM_WITH_BUTTON));
+#ifdef HAVE_LCD_BITMAP
+ display->puts(0, nb_lines+line_shift+1, str(LANG_CANCEL_WITH_ANY));
+#endif
}
gui_textarea_update(display);
}
Index: apps/menus/settings_menu.c
===================================================================
--- apps/menus/settings_menu.c (revision 12584)
+++ apps/menus/settings_menu.c (working copy)
@@ -192,7 +192,7 @@
tm.tm_year = 100;
}
- result = (int)set_time_screen(str(LANG_TIME), &tm);
+ result = (int)set_time_screen(str(LANG_SET_TIME), &tm);
if(tm.tm_year != -1) {
set_time(&tm);
@@ -200,7 +200,7 @@
return result;
}
-MENUITEM_FUNCTION(time_set, ID2P(LANG_TIME), timedate_set, NULL, Icon_NOICON);
+MENUITEM_FUNCTION(time_set, ID2P(LANG_SET_TIME), timedate_set, NULL, Icon_NOICON);
MENUITEM_SETTING(timeformat, &global_settings.timeformat, NULL);
MAKE_MENU(time_menu, ID2P(LANG_TIME_MENU), 0, Icon_NOICON, &time_set, &timeformat);
#endif
Index: apps/menus/playlist_menu.c
===================================================================
--- apps/menus/playlist_menu.c (revision 12584)
+++ apps/menus/playlist_menu.c (working copy)
@@ -73,10 +73,10 @@
MENUITEM_SETTING(recursive_dir_insert, &global_settings.recursive_dir_insert, NULL);
MENUITEM_SETTING(warn_on_erase, &global_settings.warnon_erase_dynplaylist, NULL);
-MAKE_MENU(playlist_settings, ID2P(LANG_PLAYLIST_MENU), NULL,
+MAKE_MENU(playlist_settings, ID2P(LANG_PLAYLISTS), NULL,
Icon_Playlist,
&recursive_dir_insert, &warn_on_erase);
-MAKE_MENU(playlist_options, ID2P(LANG_PLAYLIST_MENU), NULL,
+MAKE_MENU(playlist_options, ID2P(LANG_PLAYLISTS), NULL,
Icon_Playlist,
&create_playlist_item, &view_playlist, &save_playlist, &catalog);
Index: apps/menus/main_menu.c
===================================================================
--- apps/menus/main_menu.c (revision 12584)
+++ apps/menus/main_menu.c (working copy)
@@ -66,12 +66,12 @@
static int reset_settings(void)
{
- unsigned char *lines[]={str(LANG_RESET_ASK_RECORDER)};
+ unsigned char *lines[]={str(LANG_RESET_ASK)};
unsigned char *yes_lines[]={
- str(LANG_RESET_DONE_SETTING),
+ str(LANG_SETTINGS),
str(LANG_RESET_DONE_CLEAR)
};
- unsigned char *no_lines[]={yes_lines[0], str(LANG_RESET_DONE_CANCEL)};
+ unsigned char *no_lines[]={yes_lines[0], str(LANG_CANCEL)};
struct text_message message={(char **)lines, 1};
struct text_message yes_message={(char **)yes_lines, 2};
struct text_message no_message={(char **)no_lines, 2};
@@ -233,13 +233,9 @@
int integer = buflen / 1000;
int decimal = buflen % 1000;
-#ifdef HAVE_LCD_CHARCELLS
- snprintf(s, sizeof(s), (char *)str(LANG_BUFFER_STAT_PLAYER),
+ snprintf(s, sizeof(s), (char *)str(LANG_BUFFER_STAT),
integer, decimal);
-#else
- snprintf(s, sizeof(s), (char *)str(LANG_BUFFER_STAT_RECORDER),
- integer, decimal);
-#endif
+
FOR_NB_SCREENS(i)
screens[i].puts_scroll(0, y, (unsigned char *)s);
y++;
@@ -320,7 +316,7 @@
#ifndef SIMULATOR
case ACTION_STD_OK:
- gui_syncsplash(0, true, str(LANG_DIRCACHE_BUILDING));
+ gui_syncsplash(0, true, str(LANG_SCANNING_DISK));
fat_recalc_free(IF_MV(0));
#ifdef HAVE_MULTIVOLUME
if (fat_ismounted(1))
@@ -339,7 +335,7 @@
action_signalscreenchange();
return false;
}
-MENUITEM_FUNCTION(show_info_item, ID2P(LANG_INFO_MENU),
+MENUITEM_FUNCTION(show_info_item, ID2P(LANG_ROCKBOX_INFO),
(menu_function)show_info, NULL, Icon_NOICON);
@@ -390,7 +386,7 @@
#endif
#endif
-MAKE_MENU(info_menu, ID2P(LANG_INFO), 0, Icon_Questionmark,
+MAKE_MENU(info_menu, ID2P(LANG_SYSTEM), 0, Icon_Questionmark,
&show_info_item, &show_credits_item, &show_runtime_item,
&sleep_timer_call, &debug_menu_item
#ifdef SIMULATOR
@@ -427,7 +423,7 @@
#else
#define mainmenu_callback NULL
#endif
-MAKE_MENU(main_menu_, ID2P(LANG_SETTINGS_MENU), mainmenu_callback,
+MAKE_MENU(main_menu_, ID2P(LANG_SETTINGS), mainmenu_callback,
Icon_Submenu_Entered,
&sound_settings,
&settings_menu_item, &manage_settings, &browse_themes,
Index: apps/menus/eq_menu.c
===================================================================
--- apps/menus/eq_menu.c (revision 12584)
+++ apps/menus/eq_menu.c (working copy)
@@ -278,8 +278,8 @@
#if NB_SCREENS > 1
if (screen->screen_type == SCREEN_REMOTE) {
if (mode == GAIN) {
- screen->putsxy(current_x, y + 2, str(LANG_EQUALIZER_BAND_GAIN));
- screen->getstringsize(str(LANG_EQUALIZER_BAND_GAIN), &w, &h);
+ screen->putsxy(current_x, y + 2, str(LANG_GAIN));
+ screen->getstringsize(str(LANG_GAIN), &w, &h);
} else if (mode == CUTOFF) {
screen->putsxy(current_x, y + 2, str(LANG_EQUALIZER_BAND_CUTOFF));
screen->getstringsize(str(LANG_EQUALIZER_BAND_CUTOFF), &w, &h);
@@ -451,7 +451,7 @@
voice_unit = UNIT_DB;
snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
- str(LANG_SYSFONT_EQUALIZER_BAND_GAIN));
+ str(LANG_SYSFONT_GAIN));
screens[SCREEN_MAIN].putsxy(2, y, buf);
} else if (mode == CUTOFF) {
@@ -594,7 +594,7 @@
break;
}
else {
- gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL));
+ gui_syncsplash(HZ, true, str(LANG_CANCEL));
return false;
}
}
Index: apps/menus/playback_menu.c
===================================================================
--- apps/menus/playback_menu.c (revision 12584)
+++ apps/menus/playback_menu.c (working copy)
@@ -165,7 +165,7 @@
MENUITEM_SETTING(unplug_mode, &global_settings.unplug_mode, NULL);
MENUITEM_SETTING(unplug_rw, &global_settings.unplug_rw, NULL);
MENUITEM_SETTING(unplug_autoresume, &global_settings.unplug_autoresume, NULL);
-MAKE_MENU(unplug_menu, ID2P(LANG_UNPLUG), 0, Icon_NOICON,
+MAKE_MENU(unplug_menu, ID2P(LANG_HEADPHONE_UNPLUG), 0, Icon_NOICON,
&unplug_mode, &unplug_rw, &unplug_autoresume);
#endif
Index: apps/playlist_viewer.c
===================================================================
--- apps/playlist_viewer.c (revision 12584)
+++ apps/playlist_viewer.c (working copy)
@@ -634,11 +634,8 @@
if (!viewer.playlist && !(audio_status() & AUDIO_STATUS_PLAY))
{
/* Play has stopped */
-#ifdef HAVE_LCD_CHARCELLS
- gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
-#else
- gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_RECORDER));
-#endif
+ gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST));
+
goto exit;
}
@@ -695,7 +692,8 @@
ret = playlist_move(viewer.playlist, viewer.move_track,
current_track->index);
if (ret < 0)
- gui_syncsplash(HZ, true, str(LANG_MOVE_FAILED));
+ gui_syncsplash(HZ, true, (unsigned char *)"%s %s",
+ str(LANG_MOVE), str(LANG_FAILED));
update_playlist(true);
viewer.move_track = -1;
@@ -819,12 +817,7 @@
for (i=0;(i 1
+battery_types
+#endif
+
+#if defined(HAVE_DIRCACHE)
+dircache
+#endif
+
+#if defined(HAVE_HEADPHONE_DETECTION)
+headphone_detection
+#endif
+
+#if defined(HAVE_LCD_BITMAP)
+lcd_bitmap
+#endif
+
+#if defined(HAVE_LCD_CHARCELLS)
+lcd_charcell
+#endif
+
+#if LCD_DEPTH > 1
+lcd_color
+#endif
+
+#if defined(HAVE_LCD_FLIP)
+lcd_flip
+#endif
+
+#if defined(HAVE_LCD_INVERT) || defined(HAVE_REMOTE_LCD)
+lcd_invert
+#endif
+
+#if defined(HAVE_LCD_SLEEP)
+lcd_sleep
+#endif
+
+#if defined(HAVE_HEADPHONE_DETECTION)
+headphone_detection
+#endif
+
+#if defined(HAVE_PITCHSCREEN)
+pitchscreen
+#endif
+
+#if defined(HAVE_MULTIVOLUME)
+multivolume
+#endif
+
+#if defined(HAVE_QUICKSCREEN)
+quickscreen
+#endif
+
+#if defined(CONFIG_TUNER)
+radio
+#endif
+
+#if defined(HAVE_RECORDING)
+recording
+#if CONFIG_CODEC == SWCODEC
+recording_swcodec
+#else
+recording_hwcodec
+#endif
+#endif
+
+#if defined(HAVE_REMOTE_LCD)
+remote
+#endif
+
+#if defined(HAVE_REMOTE_LCD_TICKING)
+remote_ticking
+#endif
+
+#if defined(CONFIG_RTC)
+rtc
+#endif
+
+#if defined(HAVE_SPDIF_POWER)
+spdif_power
+#endif
+
+#if CONFIG_CODEC == SWCODEC
+swcodec
+#else
+hwcodec
+#endif
+
+#if defined(HAVE_TAGCACHE)
+tagcache
+#endif
+
+#if defined(HAVE_TC_RAMCACHE)
+tc_ramcache
+#endif
+
+#if CONFIG_CHARGING && defined(HAVE_USB_POWER)
+usb_charging
+#endif
Index: apps/bookmark.c
===================================================================
--- apps/bookmark.c (revision 12584)
+++ apps/bookmark.c (working copy)
@@ -175,7 +175,7 @@
struct text_message message={(char **)lines, 1};
#else
unsigned char *lines[]={str(LANG_AUTO_BOOKMARK_QUERY),
- str(LANG_RESUME_CONFIRM_PLAYER)};
+ str(LANG_CONFIRM_WITH_BUTTON)};
struct text_message message={(char **)lines, 2};
#endif
#if LCD_DEPTH > 1
@@ -393,14 +393,13 @@
{
#ifdef HAVE_LCD_BITMAP
screens[i].setmargins(0, STATUSBAR_HEIGHT);
+#endif
screens[i].puts_scroll(0,0, str(LANG_BOOKMARK_AUTOLOAD_QUERY));
- screens[i].puts(0,1, str(LANG_CONFIRM_WITH_PLAY_RECORDER));
+ screens[i].puts(0,1, str(LANG_CONFIRM_WITH_BUTTON));
+#ifdef HAVE_LCD_BITMAP
screens[i].puts(0,2, str(LANG_BOOKMARK_SELECT_LIST_BOOKMARKS));
- screens[i].puts(0,3, str(LANG_CANCEL_WITH_ANY_RECORDER));
+ screens[i].puts(0,3, str(LANG_CANCEL_WITH_ANY));
screens[i].update();
-#else
- screens[i].puts_scroll(0,0, str(LANG_BOOKMARK_AUTOLOAD_QUERY));
- screens[i].puts(0,1,str(LANG_RESUME_CONFIRM_PLAYER));
#endif
}
@@ -688,7 +687,7 @@
/* bookmark number */
snprintf(global_temp_buffer, sizeof(global_temp_buffer), "%s: %d/%d",
- str(LANG_BOOKMARK_SELECT_BOOKMARK_TEXT),
+ str(LANG_BOOKMARK),
bookmark_id + 1, bookmark_count);
FOR_NB_SCREENS(i)
screens[i].puts_scroll(0, 1, (unsigned char *)global_temp_buffer);
@@ -702,7 +701,7 @@
/* elapsed time*/
format_time(time_buf, sizeof(time_buf), ms);
snprintf(global_temp_buffer, sizeof(global_temp_buffer), "%s: %s",
- str(LANG_BOOKMARK_SELECT_TIME_TEXT), time_buf);
+ str(LANG_TIME), time_buf);
FOR_NB_SCREENS(i)
screens[i].puts_scroll(0, 3, (unsigned char *)global_temp_buffer);
@@ -733,7 +732,7 @@
FOR_NB_SCREENS(i)
{
screens[i].puts_scroll(0,0,global_temp_buffer);
- screens[i].puts(0,1,str(LANG_RESUME_CONFIRM_PLAYER));
+ screens[i].puts(0,1,str(LANG_CONFIRM_WITH_BUTTON));
}
#endif
}
@@ -773,7 +772,7 @@
talk_number(bookmark_id + 1, true);
talk_id(LANG_BOOKMARK_SELECT_INDEX_TEXT, true);
talk_number(resume_index + 1, true);
- talk_id(LANG_BOOKMARK_SELECT_TIME_TEXT, true);
+ talk_id(LANG_TIME, true);
if (ms / 60000)
talk_value(ms / 60000, UNIT_MIN, true);
talk_value((ms % 60000) / 1000, UNIT_SEC, true);
Index: apps/root_menu.c
===================================================================
--- apps/root_menu.c (revision 12584)
+++ apps/root_menu.c (working copy)
@@ -239,14 +239,14 @@
MENUITEM_RETURNVALUE_DYNTEXT(wps_item, GO_TO_WPS, NULL, get_wps_item_name,
NULL, Icon_Playback_menu);
#ifdef HAVE_RECORDING
-MENUITEM_RETURNVALUE(rec, ID2P(LANG_RECORDING_MENU), GO_TO_RECSCREEN,
+MENUITEM_RETURNVALUE(rec, ID2P(LANG_RECORDING), GO_TO_RECSCREEN,
NULL, Icon_Recording);
#endif
#if CONFIG_TUNER
MENUITEM_RETURNVALUE(fm, ID2P(LANG_FM_RADIO), GO_TO_FM,
item_callback, Icon_Radio_screen);
#endif
-MENUITEM_RETURNVALUE(menu_, ID2P(LANG_SETTINGS_MENU), GO_TO_MAINMENU,
+MENUITEM_RETURNVALUE(menu_, ID2P(LANG_SETTINGS), GO_TO_MAINMENU,
NULL, Icon_Submenu_Entered);
MENUITEM_RETURNVALUE(bookmarks, ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS),
GO_TO_RECENTBMARKS, item_callback,
Index: apps/sound_menu.c
===================================================================
--- apps/sound_menu.c (revision 12584)
+++ apps/sound_menu.c (working copy)
@@ -68,7 +68,7 @@
static const struct opt_items names[AUDIO_NUM_SOURCES] = {
[AUDIO_SRC_MIC] = { STR(LANG_RECORDING_SRC_MIC) },
- [AUDIO_SRC_LINEIN] = { STR(LANG_RECORDING_SRC_LINE) },
+ [AUDIO_SRC_LINEIN] = { STR(LANG_LINE_IN) },
#ifdef HAVE_SPDIF_IN
[AUDIO_SRC_SPDIF] = { STR(LANG_RECORDING_SRC_DIGITAL) },
#endif
@@ -244,7 +244,7 @@
[CHN_MODE_MONO] = { STR(LANG_CHANNEL_MONO) }
};
#if CONFIG_CODEC == MAS3587F
- return set_option(str(LANG_RECORDING_CHANNELS),
+ return set_option(str(LANG_CHANNELS),
&global_settings.rec_channels, INT,
names, CHN_NUM_MODES, NULL );
#endif /* CONFIG_CODEC == MAS3587F */
@@ -272,7 +272,7 @@
make_options_from_indexes(names, table, n_opts, opts);
- ret = set_option(str(LANG_RECORDING_CHANNELS), &rec_channels,
+ ret = set_option(str(LANG_CHANNELS), &rec_channels,
INT, opts, n_opts, NULL );
if (!ret)
@@ -335,7 +335,7 @@
static bool splitmethod(void)
{
static const struct opt_items names[] = {
- { STR(LANG_REC_TIME) },
+ { STR(LANG_TIME) },
{ STR(LANG_REC_SIZE) },
};
bool ret;
@@ -428,10 +428,12 @@
static bool cliplight(void)
{
static const struct opt_items names[] = {
- { STR(LANG_OFF) },
- { STR(LANG_MAIN_UNIT) }
-#ifdef HAVE_REMOTE_LCD
- , { STR(LANG_REMOTE_MAIN) },
+ { STR(LANG_OFF) }
+#ifndef HAVE_REMOTE_LCD
+ ,{ STR(LANG_ON) }
+#else
+ ,{ STR(LANG_MAIN_UNIT) },
+ { STR(LANG_REMOTE_MAIN) },
{ STR(LANG_REMOTE_UNIT) }
#endif
};
@@ -557,7 +559,7 @@
static const unsigned char *trigger_modes[] = {
ID2P(LANG_OFF),
ID2P(LANG_RECORD_TRIG_NOREARM),
- ID2P(LANG_RECORD_TRIG_REARM)
+ ID2P(LANG_REPEAT)
};
#define PRERECORD_TIMES_COUNT 31
@@ -571,18 +573,18 @@
#define TRIGGER_TYPE_COUNT 3
static const unsigned char *trigger_types[] = {
ID2P(LANG_RECORD_TRIGGER_STOP),
- ID2P(LANG_RECORD_TRIGGER_PAUSE),
+ ID2P(LANG_PAUSE),
ID2P(LANG_RECORD_TRIGGER_NEWFILESTP),
};
static const unsigned char *option_name[] = {
- [TRIGGER_MODE] = ID2P(LANG_RECORD_TRIGGER_MODE),
+ [TRIGGER_MODE] = ID2P(LANG_RECORD_TRIGGER),
[TRIGGER_TYPE] = ID2P(LANG_RECORD_TRIGGER_TYPE),
[PRERECORD_TIME] = ID2P(LANG_RECORD_PRERECORD_TIME),
[START_THRESHOLD] = ID2P(LANG_RECORD_START_THRESHOLD),
- [START_DURATION] = ID2P(LANG_RECORD_MIN_DURATION),
+ [START_DURATION] = ID2P(LANG_MIN_DURATION),
[STOP_THRESHOLD] = ID2P(LANG_RECORD_STOP_THRESHOLD),
- [STOP_POSTREC] = ID2P(LANG_RECORD_STOP_POSTREC),
+ [STOP_POSTREC] = ID2P(LANG_MIN_DURATION),
[STOP_GAP] = ID2P(LANG_RECORD_STOP_GAP)
};
@@ -756,7 +758,7 @@
switch (button) {
case ACTION_STD_CANCEL:
- gui_syncsplash(50, true, str(LANG_MENU_SETTING_CANCEL));
+ gui_syncsplash(50, true, str(LANG_CANCEL));
global_settings.rec_start_thres = old_start_thres;
global_settings.rec_start_duration = old_start_duration;
global_settings.rec_prerecord_time = old_prerecord_time;
@@ -927,7 +929,7 @@
#endif
{ ID2P(LANG_RECORDING_FREQUENCY), recfrequency },
{ ID2P(LANG_RECORDING_SOURCE), recsource }, /* not shown if no_source */
- { ID2P(LANG_RECORDING_CHANNELS), recchannels },
+ { ID2P(LANG_CHANNELS), recchannels },
#if CONFIG_CODEC == MAS3587F
{ ID2P(LANG_RECORDING_EDITABLE), receditable },
#endif
Index: apps/main.c
===================================================================
--- apps/main.c (revision 12584)
+++ apps/main.c (working copy)
@@ -146,7 +146,7 @@
{
/* This will be in default language, settings are not
applied yet. Not really any easy way to fix that. */
- gui_syncsplash(0, true, str(LANG_DIRCACHE_BUILDING));
+ gui_syncsplash(0, true, str(LANG_SCANNING_DISK));
clear = true;
}
@@ -164,7 +164,7 @@
{
if (global_status.dircache_size <= 0)
{
- gui_syncsplash(0, true, str(LANG_DIRCACHE_BUILDING));
+ gui_syncsplash(0, true, str(LANG_SCANNING_DISK));
clear = true;
}
result = dircache_build(global_status.dircache_size);
Index: apps/playlist_catalog.c
===================================================================
--- apps/playlist_catalog.c (revision 12584)
+++ apps/playlist_catalog.c (working copy)
@@ -320,12 +320,7 @@
static void display_insert_count(int count)
{
gui_syncsplash(0, true, str(LANG_PLAYLIST_INSERT_COUNT), count,
-#if CONFIG_KEYPAD == PLAYER_PAD
- str(LANG_STOP_ABORT)
-#else
- str(LANG_OFF_ABORT)
-#endif
- );
+ str(LANG_OFF_ABORT));
}
/* Add specified track into playlist. Callback from directory insert */
Index: apps/tagtree.c
===================================================================
--- apps/tagtree.c (revision 12584)
+++ apps/tagtree.c (working copy)
@@ -883,12 +883,7 @@
if (current_tick - last_tick > HZ/4)
{
gui_syncsplash(0, true, str(LANG_PLAYLIST_SEARCH_MSG), count,
-#if CONFIG_KEYPAD == PLAYER_PAD
- str(LANG_STOP_ABORT)
-#else
- str(LANG_OFF_ABORT)
-#endif
- );
+ str(LANG_OFF_ABORT));
if (action_userabort(TIMEOUT_NOBLOCK))
return false;
last_tick = current_tick;
@@ -1571,7 +1566,7 @@
}
if (tc->filesindir <= 0)
- gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
+ gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST));
else
{
logf("insert_all_playlist");