mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
FS#5587 Non-latin languages support update. Translators:Please change
the 48 new LANG_SYSFONT_ strings at the end of your language file if they don't fit nicely with rockbox's internal font. (for more info http://www.rockbox.org/twiki/bin/view/Main/NonLatinLanguages) Developers:Please keep using LANG_SYSFONT strings when reffering to the internal font. * Hebrew update. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10476 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5eb1e1549c
commit
f17e5c04f3
36 changed files with 23649 additions and 210 deletions
|
|
@ -643,8 +643,8 @@ bool eq_menu_graphical(void)
|
|||
max = EQ_GAIN_MAX;
|
||||
voice_unit = UNIT_DB;
|
||||
|
||||
snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE),
|
||||
str(LANG_EQUALIZER_BAND_GAIN));
|
||||
snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
|
||||
str(LANG_SYSFONT_EQUALIZER_BAND_GAIN));
|
||||
|
||||
screens[SCREEN_MAIN].putsxy(2, y, buf);
|
||||
} else if (mode == CUTOFF) {
|
||||
|
|
@ -658,8 +658,8 @@ bool eq_menu_graphical(void)
|
|||
max = EQ_CUTOFF_MAX;
|
||||
voice_unit = UNIT_HERTZ;
|
||||
|
||||
snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE),
|
||||
str(LANG_EQUALIZER_BAND_CUTOFF));
|
||||
snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
|
||||
str(LANG_SYSFONT_EQUALIZER_BAND_CUTOFF));
|
||||
|
||||
screens[SCREEN_MAIN].putsxy(2, y, buf);
|
||||
} else {
|
||||
|
|
@ -673,7 +673,7 @@ bool eq_menu_graphical(void)
|
|||
max = EQ_Q_MAX;
|
||||
voice_unit = UNIT_INT;
|
||||
|
||||
snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE),
|
||||
snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
|
||||
str(LANG_EQUALIZER_BAND_Q));
|
||||
|
||||
screens[SCREEN_MAIN].putsxy(2, y, buf);
|
||||
|
|
|
|||
|
|
@ -1426,3 +1426,724 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nee"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aan"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Af"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Skommel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Herhaal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alles"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Een"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wys Lêers"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ondersteunde"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musiek"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rol balk"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Status balk"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Pitch up"
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Versnel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Pitch down"
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vertraag"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "mode:"
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "modus:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlists"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Source"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Line In"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upside Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Recording"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain Left"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mic"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain Right"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Split Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Quality"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Size:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Channels"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -2196,3 +2196,708 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Да"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Не"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aee."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Изключване"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Стерео"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Моно"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Разбъркване"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "повтаряне"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Всички"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Една"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Показване на Файлове"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Всички"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Поддържани"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Музика"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Описи"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Качество"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "?Честота"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Произход"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Микр"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Line in"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Дигитален / Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Канали"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Скролираща черта"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Статус черта"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Pitch up"
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Усили Височина на звука"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Pitch down"
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Намали Височина на звука"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "mode:"
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Начин:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Записване на"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ляво"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Дясно"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upside Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Recording"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Split Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Size:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8513,3 +8513,661 @@
|
|||
*: "Mix"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Si"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Si"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "No"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Actiu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Actiu"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Apagat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Apagat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volum"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volum"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Estèreo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Estèreo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aleatori"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Aleatori"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Repetir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repetir"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Totes"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Totes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Una"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Una"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mostrar arxius"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mostrar arxius"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tots"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tots"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Acceptats"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Acceptats"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Música"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Música"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Llistes de reproducció"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Llistes de reproducció"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Base de dades ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Base de dades ID3"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Qualitat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Qualitat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Freqüència"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Freqüència"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Font"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Font"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Micròfon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Micròfon"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Línia d'entrada"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Línia d'entrada"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Canals"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Canals"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cap per avall"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cap per avall"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra de Desplaçament"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barra de desplaçament"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra d'Estat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barra d'estat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Accelerar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ralentitzar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mode:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Temps"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Temps de Separació:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mida:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pregrabació"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Guany"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Esquerre"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dret"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disc ple. Apreta OFF per continuar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opció"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Acceleració"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Editar mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8557,3 +8557,661 @@
|
|||
*: "Export modifications"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "是"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "否"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "On"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Off"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "音量"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "立體聲"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "單聲道"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "編輯模式: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "截斷頻率"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "增益"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "亂序播放"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "重覆"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "全部"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "一首"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "顯示檔案"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "全部"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "支援的"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "音樂"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "播放清單"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3資料庫"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "品質"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "頻率"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "來源"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "麥克風"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Line In"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "數位"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "聲道"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "觸發"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "上下反轉"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "捲動軸"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "狀態列"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "音調"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "音調升高"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "音調降低"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "模式:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "時間:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "分割時間:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "檔案大小:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "預錄"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "增益"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "左增益"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "右增益"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "硬碟已滿,按下OFF繼續。"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "選單"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "選項"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "液晶螢幕"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8371,3 +8371,661 @@
|
|||
*: "Uložit změny?"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ano"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ano"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ne"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ne"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zapnuto"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "zapnuto"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vypnuto"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "vypnuto"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hlasitost"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Hlasitost"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Náhodný"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Náhodný"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opakovat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Opakovat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vše"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vše"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Jednou"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Jednou"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zobraz soubory"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Zobraz soubory"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vše"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vše"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Podporované"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Podporované"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hudba"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Hudba"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Seznamy skladeb"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Seznamy skladeb"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 databáze"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "í dé 3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kvalita"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kvalita"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvence"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frekvence"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zdroj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Zdroj"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mik"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mikrofon"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analog"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Analogový"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digit."
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digitální"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanály"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kanály"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Automatická spoušť"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Automatická spoušť"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vzhůru nohama"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vzhůru nohama"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rolovací panel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Rolovací panel"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stavový panel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stavový panel"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zrychlit"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zpomalit"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "mód:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Čas"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Interval rozdělení:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Velikost:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Přednahrávání"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zesílení"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Levý "
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pravý"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disk je plný. Pro pokračování stiskněte OFF."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volby"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Editační mód: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ořezová frekvence"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ořezová frekvence"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zesílení"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Zesílení"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rychlost"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Rychlost"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8804,3 +8804,661 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ja"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nej"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Nej"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Til"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Til"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fra"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Fra"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lydstyrke"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Lydstyrke"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Bland"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Bland"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gentag"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gentag"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "En"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "En"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vis filtyper"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vis filtyper"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Understøttede"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Understøttede"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musik"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Musik"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sætlister"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Sætlister"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Infodatabase"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Infodatabase"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kvalitet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kvalitet"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frekvens"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lydkilde"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Lydkilde"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mikrofon"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Linje-indgang"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Linje-indgang"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital-indgang"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital-indgang"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanaler"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kanaler"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Udløser"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Udløser"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "På hovedet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "På hovedet"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rullebjælke"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Rullebjælke"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Status bjælke"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status bjælke"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch op"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch ned"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tilstand:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tid:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Del ved tid:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Størrelse:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "For-indspilning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forstærkning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Forstærkning"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forstærkning venstre"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forstærkning højre"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disken er fuld. Tryk SLUK for at fortsætte."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Indstilling"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Skærm"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Afspilningshastighed"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Afspilningshastighed"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Afskærings frekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Afskærings frekvens"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forstærkning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Forstærkning"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Indstil: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8386,3 +8386,661 @@
|
|||
*: "Pixel"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ja"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nein"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Nein"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ein"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ein"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Aus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lautstärke"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Lautstärke"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Editiermodus: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Grenzfrequenz"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Grenzfrequenz"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Verstärkung"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Verstärkung"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zufallswiedergabe"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Zufallswiedergabe"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wiederholung"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Wiederholung"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle Titel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alle Titel"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Einen Titel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Einen Titel"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dateifilter"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Dateifilter"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Unterstützte"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Unterstützte"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musik"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Musik"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlisten"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Abspiellisten"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3-Datenbank"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3-Datenbank"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Qualität"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Qualität"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Abtastrate"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Abtastrate"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Quelle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quelle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mikrofon"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analog"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Analog"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanäle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kanäle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Umgedreht"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Umgedreht"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Scrollleiste"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scrollleiste"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Statusleiste"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Statusleiste"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tempo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tempo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "schneller"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "langsamer"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: ":"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zeit:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Teilen alle:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Größe:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vorab-Aufnahme"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Verst"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "V. Links"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "V. Rechts"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Festplatte voll. Drücke OFF zum fortfahren."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menü"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8807,3 +8807,674 @@
|
|||
*: "(Vol- : Re-enable)"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Yes"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "No"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "On"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Off"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Shuffle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Repeat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "All"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "One"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Show Files"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "All"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Supported"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Music"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlists"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Quality"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Source"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mic"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Line In"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Channels"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upside Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Scroll Bar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Status Bar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch Up"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mode:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Split Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Size:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Recording"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain Left"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain Right"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SPLIT_SIZE
|
||||
desc: in record timesplit options
|
||||
<source>
|
||||
*: "Split Filesize"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Split Filesize"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Split Filesize"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -6285,3 +6285,691 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Si"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Si"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "No"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Activo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Activo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Apagado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Apagado"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volumen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volumen"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Estéreo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Estéreo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aleatorio"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Aleatorio"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Repetir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repetir"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Todas"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Todas"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Una"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Una"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mostrar archivos"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mostrar archivos"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Todos"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Todos"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "soportados"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Soportados"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Música"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Música"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Listas de reproducción"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Listas de reproducción"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc: show ID3 database
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "ID3 database"
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Base de datos ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Base de datos ID3"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Calidad"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Calidad"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frecuencia"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frecuencia"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fuente"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Fuente"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Micro"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Micrófono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analógica"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Analógica"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Canales"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Canales"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Boca-abajo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Boca abajo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra de Desplazamiento"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barra de desplazamiento"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra de Estado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barra de estado"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Acelerar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ralentizar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tiempo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tiempo de Separación:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tamaño:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Prerecording"
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pregrabación"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ganancia"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Izquierdo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Derecho"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disco lleno. Pulsa OFF para continuar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opcion"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8520,3 +8520,661 @@
|
|||
*: "Fora Rulumo Opcioj"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Jes"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Jes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ne"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ne"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Jes"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Jes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ne"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ne"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volumeno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volumeno"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereofonia"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereofonia"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Monofonia"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Monofonia"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Eldona Reĝimo: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tranĉa Frekvenco"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tranĉa Frekvenco"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gajno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gajno"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Miksata"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Miksata"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ripeti"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ripeti"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ĉiuj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ĉiuj"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Unu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Unu"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Montri Dosierojn"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Montri Dosierojn"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ĉiuj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ĉiuj"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Subtenata"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Subtenata"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Muziko"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Muziko"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Leglistoj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Leglistoj"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3a Datumbazo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3a Datumbazo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Eco"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Eco"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvenco"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frekvenco"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fonto"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Fonto"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mikrofono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analoga Enigaĵo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Analoga Enigaĵo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cifereca"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cifereca"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanaloj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kanaloj"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ekkaŭzo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ekkaŭzo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "180-Gradoja Rotacio"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "180-Gradoja Rotacio"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rulumskalo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Rulumskalo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stata Superstreko"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stata Superstreko"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lega Rapido"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Lega Rapido"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tonalten"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tonmalalten"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Reĝimo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tempo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tranĉa Tempo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Grando:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pra-Rikordo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gajno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Maldekstra Gajno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Desktra Gajno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Durdisko plena. Pesu OFF por kontinui."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menuo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opcio"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8753,3 +8753,661 @@
|
|||
*: "Katkaisutyyppi"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kyllä"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kyllä"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ei"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ei"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Päällä"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Päällä"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pois päältä"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pois päältä"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Äänenvoimakkuus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Äänenvoimakkuus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Muokkaustila: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Katkaisutaajuus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Katkaisutaajuus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vahvistus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vahvistus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sekoitus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Sekoitus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Toista"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Toista"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "kaikki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kaikki"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "kappale"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "kappale"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Näytä tiedostot"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Näytä tiedostot"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kaikki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kaikki"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tuetut"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tuetut"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musiikki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Musiikki"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Soittolistat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Soittolistat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3-tietokanta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3-tietokanta"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Laatu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Laatu"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Näytteenottotaajuus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Näytteenottotaajuus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lähde"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Lähde"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mikrofoni"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Linjatulo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Linjatulo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digitaalinen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digitaalinen"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanavat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kanavat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Käynnistin"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Käynnistin"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ylösalaisin"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ylösalaisin"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vierityspalkki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vierityspalkki"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tilapalkki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tilapalkki"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Äänenkorkeus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Äänenkorkeus"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nosta äänenkorkeutta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Laske äänenkorkeutta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tila:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aika:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Katkaisu:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Koko:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Esinauhoitus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vahvistus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vahvistus (vasen)"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vahvistus (oikea)"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Levy on täynnä. Paina OFF jatkaaksesi."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Valikko"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Valinta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8650,3 +8650,661 @@ id: LANG_CROSSFEED_DIRECT_GAIN
|
|||
</voice>
|
||||
</phrase>
|
||||
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Oui"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Oui"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Non"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Non"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Oui"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Oui"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Non"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Non"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stéréo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stéréo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mode Edition: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fréquence de Coupure"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Fréquence de coupure"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aléatoire"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Aléatoire"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Répéter"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Répéter"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Toutes"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Toutes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Une"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Une"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Montrer les Fichiers"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Montrer les fichiers"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tous Types"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tous types"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Supportés"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supportés"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musique"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Musique"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Listes de Lecture"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Listes de lecture"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Base de Données Tags"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Base de données des tags"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Qualité"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Qualité"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fréquence"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Fréquence"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Source"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Micro Intégré"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone intégré"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Entrée Ligne"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Entrée ligne"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Entrée/Sortie Numérique"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Entrée et sortie numérique"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Canaux"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Canaux"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Déclencheur"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Déclencheur"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rotation LCD à 180°"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Rotation écran à 180°"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barre de Défilement"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barre de défilement"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barre d'Etat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barre d'état"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vitesse de Lecture"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vitesse de lecture"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hauteur de Ton (+)"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hauteur de Ton (-)"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mode:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Durée:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Temps de Coupe:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Taille:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pré-Enregistrement"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain à Gauche"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain à Droite"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disque Plein. Presser OFF pour Continuer"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -6649,3 +6649,689 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sí"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Non"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Activo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Off"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volumen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Estéreo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aleatorio"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Repetir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Todas"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Unha"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Amosar Arquivos"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "todos"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Soportado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Música"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Listas de Reprodución"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc: show ID3 database
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "ID3 database"
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Base de datos ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Calidade"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frecuencia"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fonte"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Micro"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Entrada Analóxica"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dixital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Canais"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disparador"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Arriba Abaixo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra de Desprazamento"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra de Estado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Acelerar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ralentizar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Xeito:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tempo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tempo de División"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tamaño:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Prerecording"
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pregravación"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gañanza"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Esquerdo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dereito"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "O disco esta cheo. Presionar OFF para continuar."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opción"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8518,3 +8518,661 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ναι"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ναι"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Όχι"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Όχι"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ενεργό"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ενεργό"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ανενεργό"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ανενεργό"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ένταση"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ένταση"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Στερεοφωνικό"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Στερεοφωνικό"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Μονοφωνικό"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Μονοφωνικό"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ανακατεμένα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ανακατεμένα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Επανάληψη"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Επανάληψη"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Όλα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Όλα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ένα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ένα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Α-Β"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Άλφα-Βήτα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Εμφάνιση αρχείων"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Εμφάνιση αρχείων"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Όλα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Όλα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Υποστηριζόμενα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Υποστηριζόμενα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Μουσικής"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Μουσικής"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Λίστες αναπαραγωγής"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Λίστες αναπαραγωγής"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Βάση δεδομένων ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Βάση δεδομένων άι ντί 3"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ποιότητα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ποι-ότητα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Συχνότητα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Συχνότητα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Πηγή"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Πηγή"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Μικρόφωνο"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Μικρόφωνο"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Αναλογική είσοδος"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Αναλογική είσοδος"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ψηφιακή είσοδος"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ψηφιακή είσοδος"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Κανάλια"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Κανάλια"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Πυροδότης"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Πυροδότης"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ανάποδα"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ανάποδα"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Μπάρα κύλισης"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Μπάρα κύλισης"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Μπάρα κατάστασης"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Μπάρα κατάστασης"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Όξυνση"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Βάρυνση"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Τρόπος:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Χρόνος:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Χρόνος διαχωρισμού:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Μέγεθος:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Προηχογράφηση"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ενίσχυση"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ενίσχυση αριστερού"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ενίσχυση δεξιού"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ο δίσκος είναι γεμάτος. Πατήστε OFF για συνέχεια"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Μενού"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Επιλογές"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Οξύτητα "
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Οξύτητα "
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Συχνότητα αποκοπής"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Συχνότητα αποκοπής"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ενίσχυση"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ενίσχυση"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Τρόπος επεξεργασίας: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -6901,3 +6901,687 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Já"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nei"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Á"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "AF"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hljóðstyrkni"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereó"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mónó"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stokka"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Endurtaka"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Öll"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Eitt"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sýna skrár"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Allt"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Studdar skrár"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tónlist"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lagalisti"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc: show ID3 database
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "ID3 database"
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 gagnagrunn"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gæði"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tíðni"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Uppspretta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hljóðnemi"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lína inn"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stafrænn"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rásir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gikkur"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Á hvolfi"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Skruna súla"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stöðu súla"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hækka tónhæð"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lækka tónhæð"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Háttur:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tími:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aðskilninga tími:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stærð:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Prerecording"
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forhljóðritun"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Bæta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vinstri"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hægri"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Harðidiskurin er fullur. Ýtið á AF til að halda áfram"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Valmynd"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stilling"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Skjár"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8782,3 +8782,661 @@
|
|||
*: "(Vol- : Re-Attivato)"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Si"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Si"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "No"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Attivato"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Attivato"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disattivato"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Disattivato"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modo editing: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Taglio Frequenza"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Taglio Frequenza"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Guadagno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Guadagno"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Casuale"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Casuale"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ripeti"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ripeti"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tutte"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tutte"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Una"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Una"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "parte di una traccia"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mostra files"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mostra File"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tutti"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tutti"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Supportati"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supportati"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musicali"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Musicali"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlist"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlist"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Database ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "database ID3"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Qualita'"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Qualita'"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequenza"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequenza"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sorgente"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Sorgente"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Microfono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microfono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Linea in ingresso"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Linea In Ingresso"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digitale"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digitale"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Canali"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Canali"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Autoazionamento"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Autoazionamento"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Capovolgi display"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Capovolgi Display"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra di scorrimento"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barra di scorrimento"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra di stato"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Barra di Stato"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tono su"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tono giu'"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tempo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Intervallo di tempo:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dimensioni:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Registrazione"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Guadagno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Guadagno Sinistro"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Guadagno Destro"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disco pieno. Premi OFF per continuare"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu'"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opzioni"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Velocita'"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Velocita'"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8020,3 +8020,675 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "はい"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "いいえ"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "On"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Off"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "音量"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ステレオ"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "モノラル"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "調整項目: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "カットオフ周波数"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ゲイン"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "シャッフル"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "リピート"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "すべて"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "シングル"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ファイルの表示"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "すべて"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "サポートされる"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "音楽"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "プレイリスト"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc: show ID3 database
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "ID3 database"
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "品質"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "周波数"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ソース"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "マイク"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ライン入力"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ディジタル入力"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "チャンネル"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "画面の上下反転"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "スクロールバー"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ステータスバー"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch Up"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mode:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "時間:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "分割時間:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "サイズ:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Prerecording"
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "遡り録音"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ゲイン"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "左ゲイン"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "右ゲイン"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "ディスクが一杯です.停止ボタンを押してください."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "メニュー"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "オプション"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "液晶"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8671,3 +8671,661 @@
|
|||
</voice>
|
||||
</phrase>
|
||||
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "예"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "예"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "아니오"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "아니오"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "사용"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "사용"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "사용안함"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "사용안함"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "볼륨 조절"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "볼륨 조절"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "스테레오"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "스테레오"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "모노"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "모노"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "차단 주파수"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "증폭"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "임의 재생"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "임의 재생"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "반복 재생"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "반복 재생"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "모두"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "모두"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "한 곡"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "한 곡"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "파일 표시 설정"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "파일 표시 설정"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "모든 파일"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "모든 파일"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "지원 파일"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "지원 파일"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "음악 파일"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "음악 파일"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "재생목록 파일"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "재생목록 파일"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 데이터베이스"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 데이터베이스"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "음질"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "음질"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "오디오 샘플 속도"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "오디오 샘플 속도"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "녹음 방식"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "녹음 방식"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "마이크"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "마이크"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "라인 입력"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "라인 입력"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "디지털"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "디지털"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "채널 선택"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "채널 선택"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "음성 자동 감지"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "음성 자동 감지"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "화면상하 반전"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "화면상하 반전"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "스크롤 바"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "스크롤 바"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "상태 표시줄"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "상태 표시줄"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "재생속도 변경"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "재생속도 변경"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "위로 조정"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "아래로 조정"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "모드: "
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Split Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Size:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "예약 녹음"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "증폭"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "왼쪽 증폭"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "오른쪽 증폭"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "디스크 공간이 부족합니다. [정지] 버튼을 누르세요."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "메뉴"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "설정"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8500,3 +8500,661 @@
|
|||
*: "Invalid Filename"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Igen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nem"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Be"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hangerő"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sztereó"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Monó"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mód: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvencia levágás"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "módosítás"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Véletlenszerű lejátszás"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ismétlés"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mindent"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Egy számot"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Megjelenített fájlok"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Minden fájl"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Támogatott fájlok"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zenei fájlok"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lejátszólisták"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 adatbázis"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Minőség"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mintavétel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forrás"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analóg"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digitális"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Csatornák"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Indító"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fejjel lefelé"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gördítő sáv"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Állapotjelző"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "gyorsabban"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "lassabban"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "mód:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Idő:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Új fájl ennyi idő után:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Méret:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Előfelvétel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Módosítás"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Módosítás bal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Módosítás jobb"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "A merevlemez tele van. Folytatáshoz nyomj OFF-ot."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menü"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opció"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kijelző"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hangmagasság"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8506,3 +8506,661 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ja"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nee"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Nee"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aan"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Aan"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Uit"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Uit"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Bewerk modus: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Afsnij frequentie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Afsnij frequentie"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Schudden"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Schudden"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Herhaal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Herhaal"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alles"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alles"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Een"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Een"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Toon bestanden"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Toon bestanden"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ondersteunde"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ondersteunde"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Muziek"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Muziek"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Speellijsten"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Speellijsten"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 gegevens bestand"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 gegevens bestand"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kwaliteit"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kwaliteit"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequentie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequentie"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Bron"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Bron"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Microfoon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microfoon"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analoge ingang"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Analoge ingang"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digitaal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digitaal"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanalen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kanalen"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Onderste boven"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Onderste boven"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Scroll balk"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll balk"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Status balk"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status balk"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Versnel"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vertraag"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mode:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tijd:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Splits tijd:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Grootte:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Bufferopname"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain links"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain rechts"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "De schijf is vol. Druk OFF om door te gaan."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Menu"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Optie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Optie"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "LCD"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8755,3 +8755,661 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Ja"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nei"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Nei"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "På"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "På"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Av"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Av"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lydstyrke"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Lydstyrke"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Redigeringsmodus: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvensgrense"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frekvensgrense"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forsterking"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Forsterking"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tilfeldig rekkjefølgje"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tilfeldig rekkjefølgje"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gjenta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gjenta"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Éin"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Éin"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A–B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A–B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vis filer"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Vis filer"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Alle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Støtta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Støtta"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musikk"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Musikk"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Spelelister"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Spelelister"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3-database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3-database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kvalitet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kvalitet"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frekvens"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kjelde"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kjelde"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mikrofon"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Linje inn"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Linje inn"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanalar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Kanalar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Utløysar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Utløysar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opp ned"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Opp ned"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rullefelt"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Rullefelt"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Statuslinje"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Statuslinje"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tonehøgd"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Tonehøgd"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Høgare tonehøgd"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lågare tonehøgd"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modus:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tid:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Deletid:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Storleik:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forinnspeling"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forsterking"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forsterking – venstre"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forsterking – høgre"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disken er full. Trykk AV for å halda fram."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Meny"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Val"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8477,3 +8477,661 @@
|
|||
*: "Tagcache is not ready"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nei"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "På"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Av"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volum"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stokk om rekkefølge"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gjenta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "En"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vis filer"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alle"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Støttede"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musikk"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Spillelister"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Spordatabase"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kvalitet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kilde"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Line in"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanaler"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Utløser"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opp-ned"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rullefelt"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Statusfelt"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitsj opp"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitsj ned"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modus:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tid:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tidsdeling:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Størrelse:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forinnspilling"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Forsterkning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nivå venstre"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nivå venstre"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disken er full. Trykk AV for å fortsette."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Meny"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Valg"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitsj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Avkuttingsfrekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nivå"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Redigeringsmodus Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -3289,3 +3289,697 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tak"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "wlacz"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "wyl."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wzmocnienie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Losowo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Powtorz"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "wszystkie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "pojedynczy"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pokaz pliki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "wszystkie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "wspierane"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "muzyczne"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "playlisty"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Jakosc"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Czestotliwosc"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zrodlo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Line In"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanaly"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pasek przewijania"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pasek stanu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Podnies"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Obniz"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tryb:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Czas:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc:
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dziel co:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rozmiar:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wzmocnienie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "lewy"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "prawy"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dysk jest pelny. Wcisnij OFF zeby kontynuowac."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upside Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Recording"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8506,3 +8506,661 @@
|
|||
*: "Remote Scrolling Options"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tak"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wł."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wył."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Głośność"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tasuj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Powtarzaj"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wszystkie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Jeden"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pokazuj pliki"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wszystkie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wspierane"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Muzyczne"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlisty"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Jakość"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Częstotliwość"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Źródło"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wej. liniowe"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wej. cyfrowe"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanały"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pasek przewijania"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pasek stanu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Przyspiesz"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zwolnij"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tryb:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Czas:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dziel co:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rozmiar:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wzmocnienie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wzm. lewe"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wzm. prawe"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dysk jest pełny. Wciśnij OFF żeby kontynuować."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wyzwalacz"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Szybkość"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Częst. graniczna"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Przedzapis"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wzmocnienie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Parametr: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Do góry nogami"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opcje"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Baza danych ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -7979,3 +7979,675 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sim"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Não"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Activado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Desactivado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volume"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Estéreo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modo de Edição: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequência de Corte"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ganho"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aleatório"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Repetir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Todas"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Uma"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mostrar Ficheiros"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "na Totalidade"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Suportados"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "de Música"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "de Playlists"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc: show ID3 database
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "ID3 database"
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Com Base de Dados ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Qualidade"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequência"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fonte"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Microfone"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Linha de Entrada"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Canais"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Botão de Arranque"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rodar 180 Graus"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra de Navegação"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Barra de Estado"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Acelerar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Desacelerar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hora:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Intervalo de Separação:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tamanho:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Prerecording"
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pré-Gravação"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ganho"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ganho à Esquerda"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ganho à Direita"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "O Disco Está Cheio. Carregue OFF Para Continuar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menú"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Opção"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -2532,3 +2532,699 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Da"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Deschis"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Închis"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volum"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Aleator"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "In bucla"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Toate"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "O melodie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Fisiere"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Toate fisierele sunt vizibile"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Doar fisierele cunoscute"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Doar fisierele muzicale"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlist-uri"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Calitatea inregistrarii"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frecventa sunet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sursa inregistrare"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Microfon intern"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Intrare analogica"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Semnal digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Canale"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Viteza +"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Viteza -"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mod:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Durata:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dimensiune:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Castig"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stanga"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Dreapta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Status Bar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upside Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Recording"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Split Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Scroll Bar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -7909,3 +7909,675 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Да"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Нет"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vkl"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vykl"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Громкость"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Стерео"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Моно"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Режим редактир.: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Частота среза"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Усиление"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sluchaino"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Povtor"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vse"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Odin"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pokazyvat faily"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vse"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Podderjivaemie"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Muzyka"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlists"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc: show ID3 database
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "ID3 database"
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Bazy dannih ID3"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Качество"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Частота"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Источник"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Микрофон"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Линейный вход"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Цифровой"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Каналы"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Спусковой механизм"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Перевернутый"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Панель прокрутки"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Панель состояния"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Повысить"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Понизить"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Режим"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Время:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Деление времени:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Размер:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Prerecording"
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Предзапись"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Усиление"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Левый"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Правый"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Диск заполнен. Нажмите OFF для продолжения."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Меню"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Опция"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ЖКД"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -3191,3 +3191,697 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Da"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ne"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vklop"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Izkljuci"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Glasnost"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nakljucno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ponovitev"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vse"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Eno"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pokazi datoteke"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vse"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Samo podprte"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Glasba"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Seznam skladb"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kakovost"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvenca"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vir snemanja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analogni vhod"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digitalni vhod"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanali"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Drsnik"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Prikaz stanja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zvisanje"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Znizanje"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nacin:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cas"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc:
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Razdelitev posnetka:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Velikost:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Jakost"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Levi kanal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Desni kanal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disk je poln. Pritisni OFF"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upside Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Recording"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -8754,3 +8754,661 @@
|
|||
*: "Stop recording"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Yes"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nej"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "No"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "På"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "On"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Av"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Off"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Volym"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Volume"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Stereo"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Mono"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Läge: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Brytfrekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Förstärkning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Blanda"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Shuffle"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Repetera"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Repeat"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alla"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "En"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "One"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Visa filer"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Show Files"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alla filer"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "All"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alla filer som stödjs"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Supported"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Musikfiler"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Music"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Spellistor"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3-databas"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kvalitet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frekvens"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Källa"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Linjeingång"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanaler"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Startläge"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upp och ner"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rullningslist"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Scroll Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Statuslist"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Status Bar"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tonläge"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Höj tonläge"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Sänk tonläge"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "läge:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tid:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tidsdelning:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Storlek:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Förinspelning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Förstärkning"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vänster"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Höger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Disken är full. Tryck AV för att fortsätta."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Meny"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alt."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -1860,3 +1860,727 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Evet"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hayir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Acik"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kapali"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ses"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Karistir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Tekrarla"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hepsini"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Calani"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Show files"
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gosterilecek Dosyalar"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hepsi"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Desteklenen"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Muzik"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kaydirma cubugu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Durum cubugu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Pitch up"
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Hizlandir"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Pitch down"
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Yavaslat"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "mode:"
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "mod:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Playlists"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Playlists"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Source"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Source"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Line In"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Line In"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Menu"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Upside Down"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Upside Down"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pre-Recording"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain Left"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mic"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Microphone"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain Right"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Split Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Quality"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Quality"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Digital"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Size:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Time:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Channels"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Channels"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -5935,3 +5935,690 @@
|
|||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_YES
|
||||
desc: bool true representation
|
||||
user:
|
||||
<source>
|
||||
*: "Yes"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Ja"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SET_BOOL_NO
|
||||
desc: bool false representation
|
||||
user:
|
||||
<source>
|
||||
*: "No"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Nei"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_ON
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "On"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_OFF
|
||||
desc: Used in a lot of places
|
||||
user:
|
||||
<source>
|
||||
*: "Off"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Üs"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_VOLUME
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Volume"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lütschterchi"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_STEREO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Stereo"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Stereo"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_CHANNEL_MONO
|
||||
desc: in sound_settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mono"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mono"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SHUFFLE
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Shuffle"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Züefall"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT
|
||||
desc: in settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Repeat"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Wiederholig"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ALL
|
||||
desc: repeat playlist once all songs have completed
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alli"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_ONE
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "One"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Eis"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER
|
||||
desc: setting name for dir filter
|
||||
user:
|
||||
<source>
|
||||
*: "Show Files"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Datiifilter"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ALL
|
||||
desc: show all files
|
||||
user:
|
||||
<source>
|
||||
*: "All"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Alli"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_SUPPORTED
|
||||
desc: show all file types supported by Rockbox
|
||||
user:
|
||||
<source>
|
||||
*: "Supported"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Unnerschtützti"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_MUSIC
|
||||
desc: show only music-related files
|
||||
user:
|
||||
<source>
|
||||
*: "Music"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Müsig"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_PLAYLIST
|
||||
desc: show only playlist
|
||||
user:
|
||||
<source>
|
||||
*: "Playlists"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Liederlischta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_QUALITY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Quality"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Qualität"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_FREQUENCY
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Frequänz"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SOURCE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Source"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Quella"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_MIC
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Mic"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mikrofon"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_LINE
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Line In"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Analog"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SRC_DIGITAL
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Digital"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Digital"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_CHANNELS
|
||||
desc: in the recording settings
|
||||
user:
|
||||
<source>
|
||||
*: "Channels"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Kanal"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FLIP_DISPLAY
|
||||
desc: in settings_menu, option to turn display+buttos by 180 degreed
|
||||
user:
|
||||
<source>
|
||||
*: "Upside Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "umgidräht"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_SCROLL_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Scroll Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Scrolliischta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_STATUS_BAR
|
||||
desc: display menu, F3 substitute
|
||||
user:
|
||||
<source>
|
||||
*: "Status Bar"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Statusliischta"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_UP
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Up"
|
||||
</source>
|
||||
<dest>
|
||||
*: "schnäller"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH_DOWN
|
||||
desc: in wps
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch Down"
|
||||
</source>
|
||||
<dest>
|
||||
*: "langsamer"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_F2_MODE
|
||||
desc: in wps F2 pressed
|
||||
user:
|
||||
<source>
|
||||
*: "Mode:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Modus:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_TIME
|
||||
desc: Display of recorded time
|
||||
user:
|
||||
<source>
|
||||
*: "Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Zit:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TIMESPLIT_REC
|
||||
### The 'desc' field differs from the english!
|
||||
### the previously used desc is commented below:
|
||||
### desc:
|
||||
desc: Display of record timer interval setting, on the record screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Split time:"
|
||||
*: "Split Time:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Üfnahm teilu:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_SIZE
|
||||
desc: Display of recorded file size
|
||||
user:
|
||||
<source>
|
||||
*: "Size:"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Greessi:"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_PRERECORD
|
||||
desc: in recording and radio screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Prerecording"
|
||||
*: "Pre-Recording"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Vorüsüfnahm"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_GAIN
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Verst"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_LEFT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Left"
|
||||
*: "Gain Left"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Lings"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORDING_RIGHT
|
||||
desc: in the recording screen
|
||||
user:
|
||||
<source>
|
||||
### The <source> section differs from the english!
|
||||
### the previously used one is commented below:
|
||||
### *: "Right"
|
||||
*: "Gain Right"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Rächts"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DISK_FULL
|
||||
desc: in recording screen
|
||||
user:
|
||||
<source>
|
||||
*: "The disk is full. Press OFF to continue."
|
||||
</source>
|
||||
<dest>
|
||||
*: "Feschtplatta isch voll. Drick OFF."
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F1
|
||||
desc: in dir browser, F1 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Menu"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Mönü"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F2
|
||||
desc: in dir browser, F2 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "Option"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Option"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_DIRBROWSE_F3
|
||||
desc: in dir browser, F3 button bar text
|
||||
user:
|
||||
<source>
|
||||
*: "LCD"
|
||||
</source>
|
||||
<dest>
|
||||
*: "LCD"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_GAIN
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Gain"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Gain"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Gain"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_REPEAT_AB
|
||||
desc: repeat one song
|
||||
user:
|
||||
<source>
|
||||
*: "A-B"
|
||||
</source>
|
||||
<dest>
|
||||
*: "A-B"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "A-B"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Cutoff Frequency"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Cutoff Frequency"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Cutoff Frequency"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_FILTER_ID3DB
|
||||
desc: show ID3 Database
|
||||
user:
|
||||
<source>
|
||||
*: "ID3 Database"
|
||||
</source>
|
||||
<dest>
|
||||
*: "ID3 Database"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "ID3 Database"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_PITCH
|
||||
desc: "pitch" in the pitch screen
|
||||
user:
|
||||
<source>
|
||||
*: "Pitch"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Pitch"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Pitch"
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
|
||||
desc: in the equalizer settings menu
|
||||
user:
|
||||
<source>
|
||||
*: "Edit mode: %s"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Edit mode: %s"
|
||||
</dest>
|
||||
<voice>
|
||||
*: ""
|
||||
</voice>
|
||||
</phrase>
|
||||
###
|
||||
### This phrase below was not present in the translated file
|
||||
<phrase>
|
||||
id: LANG_SYSFONT_RECORD_TRIGGER
|
||||
desc: in recording settings_menu
|
||||
user:
|
||||
<source>
|
||||
*: "Trigger"
|
||||
</source>
|
||||
<dest>
|
||||
*: "Trigger"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Trigger"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
|||
|
|
@ -881,14 +881,14 @@ bool recording_screen(void)
|
|||
{
|
||||
dmb = dsize/1024/1024;
|
||||
snprintf(buf, 32, "%s %dMB",
|
||||
str(LANG_SPLIT_SIZE), dmb);
|
||||
str(LANG_SYSFONT_SPLIT_SIZE), dmb);
|
||||
}
|
||||
else
|
||||
{
|
||||
hours = seconds / 3600;
|
||||
minutes = (seconds - (hours * 3600)) / 60;
|
||||
snprintf(buf, 32, "%s %02d:%02d:%02d",
|
||||
str(LANG_RECORDING_TIME),
|
||||
str(LANG_SYSFONT_RECORDING_TIME),
|
||||
hours, minutes, seconds%60);
|
||||
}
|
||||
|
||||
|
|
@ -897,7 +897,7 @@ bool recording_screen(void)
|
|||
|
||||
if(audio_stat & AUDIO_STATUS_PRERECORD)
|
||||
{
|
||||
snprintf(buf, 32, "%s...", str(LANG_RECORD_PRERECORD));
|
||||
snprintf(buf, 32, "%s...", str(LANG_SYSFONT_RECORD_PRERECORD));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -911,7 +911,7 @@ bool recording_screen(void)
|
|||
dhours = dseconds / 3600;
|
||||
dminutes = (dseconds - (dhours * 3600)) / 60;
|
||||
snprintf(buf, 32, "%s %02d:%02d",
|
||||
str(LANG_RECORD_TIMESPLIT_REC),
|
||||
str(LANG_SYSFONT_RECORD_TIMESPLIT_REC),
|
||||
dhours, dminutes);
|
||||
}
|
||||
else
|
||||
|
|
@ -920,7 +920,7 @@ bool recording_screen(void)
|
|||
num_recorded_bytes,
|
||||
byte_units, true);
|
||||
snprintf(buf, 32, "%s %s",
|
||||
str(LANG_RECORDING_SIZE), buf2);
|
||||
str(LANG_SYSFONT_RECORDING_SIZE), buf2);
|
||||
}
|
||||
}
|
||||
for(i = 0; i < screen_update; i++)
|
||||
|
|
@ -968,7 +968,7 @@ bool recording_screen(void)
|
|||
update_countdown = 1;
|
||||
}
|
||||
|
||||
snprintf(buf, 32, "%s: %s", str(LANG_VOLUME),
|
||||
snprintf(buf, 32, "%s: %s", str(LANG_SYSFONT_VOLUME),
|
||||
fmt_gain(SOUND_VOLUME,
|
||||
global_settings.volume,
|
||||
buf2, sizeof(buf2)));
|
||||
|
|
@ -987,7 +987,7 @@ bool recording_screen(void)
|
|||
|
||||
if(global_settings.rec_source == SOURCE_MIC)
|
||||
{
|
||||
snprintf(buf, 32, "%s:%s", str(LANG_RECORDING_GAIN),
|
||||
snprintf(buf, 32, "%s:%s", str(LANG_SYSFONT_RECORDING_GAIN),
|
||||
fmt_gain(SOUND_MIC_GAIN,
|
||||
global_settings.rec_mic_gain,
|
||||
buf2, sizeof(buf2)));
|
||||
|
|
@ -1007,7 +1007,7 @@ bool recording_screen(void)
|
|||
else if(global_settings.rec_source == SOURCE_LINE)
|
||||
{
|
||||
snprintf(buf, 32, "%s:%s",
|
||||
str(LANG_RECORDING_LEFT),
|
||||
str(LANG_SYSFONT_RECORDING_LEFT),
|
||||
fmt_gain(SOUND_LEFT_GAIN,
|
||||
global_settings.rec_left_gain,
|
||||
buf2, sizeof(buf2)));
|
||||
|
|
@ -1025,7 +1025,7 @@ bool recording_screen(void)
|
|||
}
|
||||
|
||||
snprintf(buf, 32, "%s:%s",
|
||||
str(LANG_RECORDING_RIGHT),
|
||||
str(LANG_SYSFONT_RECORDING_RIGHT),
|
||||
fmt_gain(SOUND_RIGHT_GAIN,
|
||||
global_settings.rec_right_gain,
|
||||
buf2, sizeof(buf2)));
|
||||
|
|
@ -1094,7 +1094,8 @@ bool recording_screen(void)
|
|||
#endif
|
||||
freq_str[global_settings.rec_frequency],
|
||||
global_settings.rec_channels ?
|
||||
str(LANG_CHANNEL_MONO) : str(LANG_CHANNEL_STEREO));
|
||||
str(LANG_SYSFONT_CHANNEL_MONO) :
|
||||
str(LANG_SYSFONT_CHANNEL_STEREO));
|
||||
for(i = 0; i < screen_update; i++)
|
||||
screens[i].puts(0, filename_offset[i] + PM_HEIGHT + 5, buf);
|
||||
|
||||
|
|
@ -1130,7 +1131,7 @@ bool recording_screen(void)
|
|||
#endif
|
||||
if (audio_stat & AUDIO_STATUS_ERROR)
|
||||
{
|
||||
gui_syncsplash(0, true, str(LANG_DISK_FULL));
|
||||
gui_syncsplash(0, true, str(LANG_SYSFONT_DISK_FULL));
|
||||
gui_syncstatusbar_draw(&statusbars, true);
|
||||
|
||||
FOR_NB_SCREENS(i)
|
||||
|
|
@ -1200,7 +1201,8 @@ bool f2_rec_screen(void)
|
|||
screens[i].clear_display();
|
||||
|
||||
/* Recording quality */
|
||||
screens[i].putsxy(0, LCD_HEIGHT/2 - h*2, str(LANG_RECORDING_QUALITY));
|
||||
screens[i].putsxy(0, LCD_HEIGHT/2 - h*2,
|
||||
str(LANG_SYSFONT_RECORDING_QUALITY));
|
||||
}
|
||||
|
||||
snprintf(buf, 32, "%d", global_settings.rec_quality);
|
||||
|
|
@ -1212,7 +1214,7 @@ bool f2_rec_screen(void)
|
|||
}
|
||||
|
||||
/* Frequency */
|
||||
snprintf(buf, sizeof buf, "%s:", str(LANG_RECORDING_FREQUENCY));
|
||||
snprintf(buf, sizeof buf, "%s:", str(LANG_SYSFONT_RECORDING_FREQUENCY));
|
||||
ptr = freq_str[global_settings.rec_frequency];
|
||||
FOR_NB_SCREENS(i)
|
||||
{
|
||||
|
|
@ -1227,21 +1229,22 @@ bool f2_rec_screen(void)
|
|||
/* Channel mode */
|
||||
switch ( global_settings.rec_channels ) {
|
||||
case 0:
|
||||
ptr = str(LANG_CHANNEL_STEREO);
|
||||
ptr = str(LANG_SYSFONT_CHANNEL_STEREO);
|
||||
break;
|
||||
|
||||
case 1:
|
||||
ptr = str(LANG_CHANNEL_MONO);
|
||||
ptr = str(LANG_SYSFONT_CHANNEL_MONO);
|
||||
break;
|
||||
}
|
||||
|
||||
FOR_NB_SCREENS(i)
|
||||
{
|
||||
screens[i].getstringsize(str(LANG_RECORDING_CHANNELS), &w, &h);
|
||||
screens[i].getstringsize(str(LANG_SYSFONT_RECORDING_CHANNELS), &w, &h);
|
||||
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2,
|
||||
str(LANG_RECORDING_CHANNELS));
|
||||
screens[i].getstringsize(str(LANG_F2_MODE), &w, &h);
|
||||
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h, str(LANG_F2_MODE));
|
||||
str(LANG_SYSFONT_RECORDING_CHANNELS));
|
||||
screens[i].getstringsize(str(LANG_SYSFONT_F2_MODE), &w, &h);
|
||||
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h
|
||||
str(LANG_SYSFONT_F2_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],
|
||||
|
|
@ -1322,9 +1325,9 @@ bool f3_rec_screen(void)
|
|||
int button;
|
||||
char *src_str[] =
|
||||
{
|
||||
str(LANG_RECORDING_SRC_MIC),
|
||||
str(LANG_RECORDING_SRC_LINE),
|
||||
str(LANG_RECORDING_SRC_DIGITAL)
|
||||
str(LANG_SYSFONT_RECORDING_SRC_MIC),
|
||||
str(LANG_SYSFONT_RECORDING_SRC_LINE),
|
||||
str(LANG_SYSFONT_RECORDING_SRC_DIGITAL)
|
||||
};
|
||||
FOR_NB_SCREENS(i)
|
||||
{
|
||||
|
|
@ -1340,7 +1343,8 @@ bool f3_rec_screen(void)
|
|||
screens[i].clear_display();
|
||||
|
||||
/* Recording source */
|
||||
screens[i].putsxy(0, LCD_HEIGHT/2 - h*2, str(LANG_RECORDING_SOURCE));
|
||||
screens[i].putsxy(0, LCD_HEIGHT/2 - h*2,
|
||||
str(LANG_SYSFONT_RECORDING_SOURCE));
|
||||
|
||||
screens[i].getstringsize(ptr, &w, &h);
|
||||
screens[i].putsxy(0, LCD_HEIGHT/2-h, ptr);
|
||||
|
|
@ -1349,7 +1353,7 @@ bool f3_rec_screen(void)
|
|||
}
|
||||
|
||||
/* trigger setup */
|
||||
ptr = str(LANG_RECORD_TRIGGER);
|
||||
ptr = str(LANG_SYSFONT_RECORD_TRIGGER);
|
||||
FOR_NB_SCREENS(i)
|
||||
{
|
||||
screens[i].getstringsize(ptr,&w,&h);
|
||||
|
|
|
|||
|
|
@ -368,14 +368,14 @@ void pitch_screen_draw(int pitch)
|
|||
lcd_clear_display();
|
||||
|
||||
/* UP: Pitch Up */
|
||||
ptr = str(LANG_PITCH_UP);
|
||||
ptr = str(LANG_SYSFONT_PITCH_UP);
|
||||
lcd_getstringsize(ptr,&w,&h);
|
||||
lcd_putsxy((LCD_WIDTH-w)/2, 0, ptr);
|
||||
lcd_mono_bitmap(bitmap_icons_7x8[Icon_UpArrow],
|
||||
LCD_WIDTH/2 - 3, h, 7, 8);
|
||||
|
||||
/* DOWN: Pitch Down */
|
||||
ptr = str(LANG_PITCH_DOWN);
|
||||
ptr = str(LANG_SYSFONT_PITCH_DOWN);
|
||||
lcd_getstringsize(ptr,&w,&h);
|
||||
lcd_putsxy((LCD_WIDTH-w)/2, LCD_HEIGHT - h, ptr);
|
||||
lcd_mono_bitmap(bitmap_icons_7x8[Icon_DownArrow],
|
||||
|
|
@ -396,7 +396,7 @@ void pitch_screen_draw(int pitch)
|
|||
w+1, (LCD_HEIGHT-h)/2, 7, 8);
|
||||
|
||||
/* "Pitch" */
|
||||
snprintf((char *)buf, sizeof(buf), str(LANG_PITCH));
|
||||
snprintf((char *)buf, sizeof(buf), str(LANG_SYSFONT_PITCH));
|
||||
lcd_getstringsize(buf,&w,&h);
|
||||
lcd_putsxy((LCD_WIDTH-w)/2, (LCD_HEIGHT/2)-h, buf);
|
||||
/* "XX.X%" */
|
||||
|
|
@ -531,23 +531,23 @@ bool quick_screen_quick(int button_enter)
|
|||
int oldrepeat, old_x_margin, old_y_margin;
|
||||
|
||||
static const struct opt_items left_items[] = {
|
||||
[0]={ STR(LANG_OFF) },
|
||||
[1]={ STR(LANG_ON) }
|
||||
[0]={ STR(LANG_SYSFONT_OFF) },
|
||||
[1]={ STR(LANG_SYSFONT_ON) }
|
||||
};
|
||||
static const struct opt_items bottom_items[] = {
|
||||
[SHOW_ALL]={ STR(LANG_FILTER_ALL) },
|
||||
[SHOW_SUPPORTED]={ STR(LANG_FILTER_SUPPORTED) },
|
||||
[SHOW_MUSIC]={ STR(LANG_FILTER_MUSIC) },
|
||||
[SHOW_PLAYLIST]={ STR(LANG_FILTER_PLAYLIST) },
|
||||
[SHOW_ID3DB]={ STR(LANG_FILTER_ID3DB) }
|
||||
[SHOW_ALL]={ STR(LANG_SYSFONT_FILTER_ALL) },
|
||||
[SHOW_SUPPORTED]={ STR(LANG_SYSFONT_FILTER_SUPPORTED) },
|
||||
[SHOW_MUSIC]={ STR(LANG_SYSFONT_FILTER_MUSIC) },
|
||||
[SHOW_PLAYLIST]={ STR(LANG_SYSFONT_FILTER_PLAYLIST) },
|
||||
[SHOW_ID3DB]={ STR(LANG_SYSFONT_FILTER_ID3DB) }
|
||||
};
|
||||
static const struct opt_items right_items[] = {
|
||||
[REPEAT_OFF]={ STR(LANG_OFF) },
|
||||
[REPEAT_ALL]={ STR(LANG_REPEAT_ALL) },
|
||||
[REPEAT_ONE]={ STR(LANG_REPEAT_ONE) },
|
||||
[REPEAT_SHUFFLE]={ STR(LANG_SHUFFLE) },
|
||||
[REPEAT_OFF]={ STR(LANG_SYSFONT_OFF) },
|
||||
[REPEAT_ALL]={ STR(LANG_SYSFONT_REPEAT_ALL) },
|
||||
[REPEAT_ONE]={ STR(LANG_SYSFONT_REPEAT_ONE) },
|
||||
[REPEAT_SHUFFLE]={ STR(LANG_SYSFONT_SHUFFLE) },
|
||||
#if (AB_REPEAT_ENABLE == 1)
|
||||
[REPEAT_AB]={ STR(LANG_REPEAT_AB) }
|
||||
[REPEAT_AB]={ STR(LANG_SYSFONT_REPEAT_AB) }
|
||||
#endif
|
||||
};
|
||||
struct gui_quickscreen qs;
|
||||
|
|
@ -557,17 +557,17 @@ bool quick_screen_quick(int button_enter)
|
|||
lcd_setmargins(0, 0);
|
||||
|
||||
option_select_init_items(&left_option,
|
||||
(char *)str(LANG_SHUFFLE),
|
||||
(char *)str(LANG_SYSFONT_SHUFFLE),
|
||||
bool_to_int(global_settings.playlist_shuffle),
|
||||
left_items,
|
||||
2);
|
||||
option_select_init_items(&bottom_option,
|
||||
(char *)str(LANG_FILTER),
|
||||
(char *)str(LANG_SYSFONT_FILTER),
|
||||
global_settings.dirfilter,
|
||||
bottom_items,
|
||||
sizeof(bottom_items)/sizeof(struct opt_items));
|
||||
option_select_init_items(&right_option,
|
||||
(char *)str(LANG_REPEAT),
|
||||
(char *)str(LANG_SYSFONT_REPEAT),
|
||||
global_settings.repeat_mode,
|
||||
right_items,
|
||||
sizeof(right_items)/sizeof(struct opt_items));
|
||||
|
|
@ -621,12 +621,12 @@ bool quick_screen_f3(int button_enter)
|
|||
int old_x_margin, old_y_margin;
|
||||
|
||||
static const struct opt_items onoff_items[] = {
|
||||
[0]={ STR(LANG_OFF) },
|
||||
[1]={ STR(LANG_ON) }
|
||||
[0]={ STR(LANG_SYSFONT_OFF) },
|
||||
[1]={ STR(LANG_SYSFONT_ON) }
|
||||
};
|
||||
static const struct opt_items yesno_items[] = {
|
||||
[0]={ STR(LANG_SET_BOOL_NO) },
|
||||
[1]={ STR(LANG_SET_BOOL_YES) }
|
||||
[0]={ STR(LANG_SYSFONT_SET_BOOL_NO) },
|
||||
[1]={ STR(LANG_SYSFONT_SET_BOOL_YES) }
|
||||
};
|
||||
|
||||
struct gui_quickscreen qs;
|
||||
|
|
@ -636,17 +636,17 @@ bool quick_screen_f3(int button_enter)
|
|||
lcd_setmargins(0, 0);
|
||||
|
||||
option_select_init_items(&left_option,
|
||||
str(LANG_SCROLL_BAR),
|
||||
str(LANG_SYSFONT_SCROLL_BAR),
|
||||
bool_to_int(global_settings.scrollbar),
|
||||
onoff_items,
|
||||
2);
|
||||
option_select_init_items(&bottom_option,
|
||||
str(LANG_FLIP_DISPLAY),
|
||||
str(LANG_SYSFONT_FLIP_DISPLAY),
|
||||
bool_to_int(global_settings.flip_display),
|
||||
yesno_items,
|
||||
2);
|
||||
option_select_init_items(&right_option,
|
||||
str(LANG_STATUS_BAR),
|
||||
str(LANG_SYSFONT_STATUS_BAR),
|
||||
bool_to_int(global_settings.statusbar),
|
||||
onoff_items,
|
||||
2);
|
||||
|
|
|
|||
|
|
@ -357,9 +357,9 @@ static int update_dir(void)
|
|||
#ifdef HAS_BUTTONBAR
|
||||
if (global_settings.buttonbar) {
|
||||
if (*tc.dirfilter < NUM_FILTER_MODES)
|
||||
gui_buttonbar_set(&tree_buttonbar, str(LANG_DIRBROWSE_F1),
|
||||
str(LANG_DIRBROWSE_F2),
|
||||
str(LANG_DIRBROWSE_F3));
|
||||
gui_buttonbar_set(&tree_buttonbar, str(LANG_SYSFONT_DIRBROWSE_F1),
|
||||
str(LANG_SYSFONT_DIRBROWSE_F2),
|
||||
str(LANG_SYSFONT_DIRBROWSE_F3));
|
||||
else
|
||||
gui_buttonbar_set(&tree_buttonbar, "<<<", "", "");
|
||||
gui_buttonbar_draw(&tree_buttonbar);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue