mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
FS#6323: Speech for ID3 viewer, playlist catalog and playlist viewer
Modified from original ticket, Taken from Igor Poretsky's tree, and further modified by myself to incorporate feedback. Change-Id: Ibc2180e52af76890b1448d23f79386fd0f88f709
This commit is contained in:
parent
f061330c3d
commit
4adad0bc1f
52 changed files with 1211 additions and 864 deletions
|
@ -86,7 +86,7 @@ static void say_bookmark(const char* bookmark,
|
||||||
int bookmark_id, bool show_playlist_name);
|
int bookmark_id, bool show_playlist_name);
|
||||||
static bool play_bookmark(const char* bookmark);
|
static bool play_bookmark(const char* bookmark);
|
||||||
static bool generate_bookmark_file_name(const char *in);
|
static bool generate_bookmark_file_name(const char *in);
|
||||||
static bool parse_bookmark(const char *bookmark, const bool get_filenames);
|
static bool parse_bookmark(const char *bookmark, const bool get_filenames, const bool strip_dir);
|
||||||
static int buffer_bookmarks(struct bookmark_list* bookmarks, int first_line);
|
static int buffer_bookmarks(struct bookmark_list* bookmarks, int first_line);
|
||||||
static const char* get_bookmark_info(int list_index,
|
static const char* get_bookmark_info(int list_index,
|
||||||
void* data,
|
void* data,
|
||||||
|
@ -339,7 +339,7 @@ static bool add_bookmark(const char* bookmark_file_name, const char* bookmark,
|
||||||
if (most_recent && (bookmark_count >= MAX_BOOKMARKS))
|
if (most_recent && (bookmark_count >= MAX_BOOKMARKS))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (!parse_bookmark(global_read_buffer, false))
|
if (!parse_bookmark(global_read_buffer, false, false))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
equal = false;
|
equal = false;
|
||||||
|
@ -402,6 +402,10 @@ static char* create_bookmark()
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
/* create the bookmark */
|
/* create the bookmark */
|
||||||
|
playlist_get_name(NULL, global_temp_buffer, sizeof(global_temp_buffer));
|
||||||
|
if (global_temp_buffer[strlen(global_temp_buffer) - 1] != '/')
|
||||||
|
file = id3->path;
|
||||||
|
else file++;
|
||||||
snprintf(global_bookmark, sizeof(global_bookmark),
|
snprintf(global_bookmark, sizeof(global_bookmark),
|
||||||
/* new optional bookmark token descriptors should be inserted
|
/* new optional bookmark token descriptors should be inserted
|
||||||
just before the "%s;%s" in this line... */
|
just before the "%s;%s" in this line... */
|
||||||
|
@ -428,12 +432,11 @@ static char* create_bookmark()
|
||||||
(long)dsp_get_timestretch(),
|
(long)dsp_get_timestretch(),
|
||||||
#endif
|
#endif
|
||||||
/* more mandatory tokens */
|
/* more mandatory tokens */
|
||||||
playlist_get_name(NULL, global_temp_buffer,
|
global_temp_buffer,
|
||||||
sizeof(global_temp_buffer)),
|
file);
|
||||||
file+1);
|
|
||||||
|
|
||||||
/* checking to see if the bookmark is valid */
|
/* checking to see if the bookmark is valid */
|
||||||
if (parse_bookmark(global_bookmark, false))
|
if (parse_bookmark(global_bookmark, false, false))
|
||||||
return global_bookmark;
|
return global_bookmark;
|
||||||
else
|
else
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -653,7 +656,7 @@ static const char* get_bookmark_info(int list_index,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!parse_bookmark(bookmarks->items[index - bookmarks->start], true))
|
if (!parse_bookmark(bookmarks->items[index - bookmarks->start], true, true))
|
||||||
{
|
{
|
||||||
return list_index % 2 == 0 ? (char*) str(LANG_BOOKMARK_INVALID) : " ";
|
return list_index % 2 == 0 ? (char*) str(LANG_BOOKMARK_INVALID) : " ";
|
||||||
}
|
}
|
||||||
|
@ -930,7 +933,7 @@ static bool delete_bookmark(const char* bookmark_file_name, int bookmark_id)
|
||||||
static void say_bookmark(const char* bookmark,
|
static void say_bookmark(const char* bookmark,
|
||||||
int bookmark_id, bool show_playlist_name)
|
int bookmark_id, bool show_playlist_name)
|
||||||
{
|
{
|
||||||
if (!parse_bookmark(bookmark, true))
|
if (!parse_bookmark(bookmark, true, false))
|
||||||
{
|
{
|
||||||
talk_id(LANG_BOOKMARK_INVALID, false);
|
talk_id(LANG_BOOKMARK_INVALID, false);
|
||||||
return;
|
return;
|
||||||
|
@ -967,16 +970,10 @@ static void say_bookmark(const char* bookmark,
|
||||||
|
|
||||||
#if CONFIG_CODEC == SWCODEC
|
#if CONFIG_CODEC == SWCODEC
|
||||||
/* Track filename */
|
/* Track filename */
|
||||||
if(is_dir)
|
if(!is_dir)
|
||||||
talk_file_or_spell(global_temp_buffer, global_filename,
|
global_temp_buffer[0] = 0;
|
||||||
TALK_IDARRAY(VOICE_FILE), true);
|
talk_file_or_spell(global_temp_buffer, global_filename,
|
||||||
else
|
TALK_IDARRAY(VOICE_FILE), true);
|
||||||
{ /* Unfortunately if this is a playlist, we do not know in which
|
|
||||||
directory the file is and therefore cannot find the track's
|
|
||||||
.talk file. */
|
|
||||||
talk_id(VOICE_FILE, true);
|
|
||||||
talk_spell(global_filename, true);
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -992,7 +989,7 @@ static bool play_bookmark(const char* bookmark)
|
||||||
bm.speed = dsp_get_timestretch();
|
bm.speed = dsp_get_timestretch();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (parse_bookmark(bookmark, true))
|
if (parse_bookmark(bookmark, true, true))
|
||||||
{
|
{
|
||||||
global_settings.repeat_mode = bm.repeat_mode;
|
global_settings.repeat_mode = bm.repeat_mode;
|
||||||
global_settings.playlist_shuffle = bm.shuffle;
|
global_settings.playlist_shuffle = bm.shuffle;
|
||||||
|
@ -1042,7 +1039,7 @@ static const char* long_token(const char* s, long* dest)
|
||||||
/* the filename tokens are to be extracted. */
|
/* the filename tokens are to be extracted. */
|
||||||
/* Returns true on successful bookmark parse. */
|
/* Returns true on successful bookmark parse. */
|
||||||
/* ----------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------- */
|
||||||
static bool parse_bookmark(const char *bookmark, const bool parse_filenames)
|
static bool parse_bookmark(const char *bookmark, const bool parse_filenames, const bool strip_dir)
|
||||||
{
|
{
|
||||||
const char* s = bookmark;
|
const char* s = bookmark;
|
||||||
const char* end;
|
const char* end;
|
||||||
|
@ -1094,6 +1091,15 @@ static bool parse_bookmark(const char *bookmark, const bool parse_filenames)
|
||||||
if (end != NULL)
|
if (end != NULL)
|
||||||
{
|
{
|
||||||
end++;
|
end++;
|
||||||
|
if (strip_dir)
|
||||||
|
{
|
||||||
|
s = strrchr(end, '/');
|
||||||
|
if (s)
|
||||||
|
{
|
||||||
|
end = s;
|
||||||
|
end++;
|
||||||
|
}
|
||||||
|
}
|
||||||
strlcpy(global_filename, end, MAX_PATH);
|
strlcpy(global_filename, end, MAX_PATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -573,6 +573,17 @@ static const char* openwith_get_name(int selected_item, void * data,
|
||||||
else return filetypes[viewers[selected_item]].plugin;
|
else return filetypes[viewers[selected_item]].plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int openwith_get_talk(int selected_item, void * data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
char viewer_filename[MAX_FILENAME];
|
||||||
|
snprintf(viewer_filename, MAX_FILENAME, "%s.%s",
|
||||||
|
filetypes[viewers[selected_item]].plugin, ROCK_EXTENSION);
|
||||||
|
talk_file_or_spell(PLUGIN_DIR, viewer_filename,
|
||||||
|
NULL, false);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int openwith_action_callback(int action, struct gui_synclist *lists)
|
static int openwith_action_callback(int action, struct gui_synclist *lists)
|
||||||
{
|
{
|
||||||
struct cb_data *info = (struct cb_data *)lists->data;
|
struct cb_data *info = (struct cb_data *)lists->data;
|
||||||
|
@ -596,8 +607,7 @@ int filetype_list_viewers(const char* current_file)
|
||||||
#ifndef HAVE_LCD_BITMAP
|
#ifndef HAVE_LCD_BITMAP
|
||||||
if (viewer_count == 0)
|
if (viewer_count == 0)
|
||||||
{
|
{
|
||||||
/* FIX: translation! */
|
splash(HZ*2, ID2P(LANG_NO_VIEWERS));
|
||||||
splash(HZ*2, "No viewers found");
|
|
||||||
return PLUGIN_OK;
|
return PLUGIN_OK;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -605,6 +615,7 @@ int filetype_list_viewers(const char* current_file)
|
||||||
info.action_callback = openwith_action_callback;
|
info.action_callback = openwith_action_callback;
|
||||||
info.get_name = openwith_get_name;
|
info.get_name = openwith_get_name;
|
||||||
info.get_icon = global_settings.show_icons?openwith_get_icon:NULL;
|
info.get_icon = global_settings.show_icons?openwith_get_icon:NULL;
|
||||||
|
info.get_talk = openwith_get_talk;
|
||||||
return simplelist_show_list(&info);
|
return simplelist_show_list(&info);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -825,7 +825,7 @@
|
||||||
*: "Titel"
|
*: "Titel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -839,7 +839,7 @@
|
||||||
*: "Kunstenaar"
|
*: "Kunstenaar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kunstenaar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -853,7 +853,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -867,7 +867,7 @@
|
||||||
*: "Liednommer"
|
*: "Liednommer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Liednommer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -881,7 +881,7 @@
|
||||||
*: "Speellys"
|
*: "Speellys"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Speellys"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -895,7 +895,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -909,7 +909,7 @@
|
||||||
*: "Frekwensie"
|
*: "Frekwensie"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekwensie"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -923,7 +923,7 @@
|
||||||
*: "Pad"
|
*: "Pad"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pad"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -596,7 +596,7 @@
|
||||||
*: "النوع"
|
*: "النوع"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "النوع"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -697,7 +697,7 @@
|
||||||
*: "الفنان"
|
*: "الفنان"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "الفنان"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2682,7 +2682,7 @@
|
||||||
*: "فنان الألبوم"
|
*: "فنان الألبوم"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "فنان الألبوم"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3849,7 +3849,7 @@
|
||||||
*: "تعليق"
|
*: "تعليق"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "تعليق"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4001,7 +4001,7 @@
|
||||||
*: "قائمة التشغيل"
|
*: "قائمة التشغيل"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "قائمة التشغيل"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4125,7 +4125,7 @@
|
||||||
*: "<المعلومات غير متوفرة>"
|
*: "<المعلومات غير متوفرة>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "المعلومات غير متوفرة"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4745,7 +4745,7 @@
|
||||||
*: "التردد"
|
*: "التردد"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "التردد"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4964,7 +4964,7 @@
|
||||||
*: "العنوان"
|
*: "العنوان"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "العنوان"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5051,7 +5051,7 @@
|
||||||
*: "السنة"
|
*: "السنة"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "السنة"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5237,7 +5237,7 @@
|
||||||
*: "معدل البت"
|
*: "معدل البت"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "معدل البت"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5437,7 +5437,7 @@
|
||||||
*: "البوم"
|
*: "البوم"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "البوم"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5471,7 +5471,7 @@
|
||||||
*: "طول"
|
*: "طول"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "طول"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7139,7 +7139,7 @@
|
||||||
*: "Titulua"
|
*: "Titulua"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titulua"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7153,7 +7153,7 @@
|
||||||
*: "Artista"
|
*: "Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7167,7 +7167,7 @@
|
||||||
*: "Albuma"
|
*: "Albuma"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albuma"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7181,7 +7181,7 @@
|
||||||
*: "Abesti Zk"
|
*: "Abesti Zk"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Abesti Zk"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7195,7 +7195,7 @@
|
||||||
*: "Mota"
|
*: "Mota"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Mota"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7209,7 +7209,7 @@
|
||||||
*: "Urtea"
|
*: "Urtea"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Urtea"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7223,7 +7223,7 @@
|
||||||
*: "Iraupena"
|
*: "Iraupena"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Iraupena"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7237,7 +7237,7 @@
|
||||||
*: "Zerrendan"
|
*: "Zerrendan"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Zerrendan"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7251,7 +7251,7 @@
|
||||||
*: "Bit-tasa"
|
*: "Bit-tasa"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bit-tasa"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7265,7 +7265,7 @@
|
||||||
*: "Albuma Artista"
|
*: "Albuma Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albuma Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7279,7 +7279,7 @@
|
||||||
*: "Disko Zk"
|
*: "Disko Zk"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disko Zk"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7293,7 +7293,7 @@
|
||||||
*: "Iruzkina"
|
*: "Iruzkina"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Iruzkina"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7307,7 +7307,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7321,7 +7321,7 @@
|
||||||
*: "Frekuentzia"
|
*: "Frekuentzia"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekuentzia"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7335,7 +7335,7 @@
|
||||||
*: "Abesti Irabazia"
|
*: "Abesti Irabazia"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Abesti Irabazia"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7349,7 +7349,7 @@
|
||||||
*: "Album Irabazia"
|
*: "Album Irabazia"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Irabazia"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7363,7 +7363,7 @@
|
||||||
*: "Kokapena"
|
*: "Kokapena"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kokapena"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7377,7 +7377,7 @@
|
||||||
*: "<Info Gabe>"
|
*: "<Info Gabe>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Info Gabe"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10043,7 +10043,7 @@
|
||||||
*: "Lana"
|
*: "Lana"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lana"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12441,7 +12441,7 @@
|
||||||
*: "Konposatzailea"
|
*: "Konposatzailea"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Konposatzailea"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7313,7 +7313,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: "(VBR)"
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7133,7 +7133,7 @@
|
||||||
*: "Títol"
|
*: "Títol"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Títol"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7147,7 +7147,7 @@
|
||||||
*: "Artista"
|
*: "Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7161,7 +7161,7 @@
|
||||||
*: "Àlbum"
|
*: "Àlbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Àlbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7175,7 +7175,7 @@
|
||||||
*: "Núm. pista"
|
*: "Núm. pista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Núm. pista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7189,7 +7189,7 @@
|
||||||
*: "Gènere"
|
*: "Gènere"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gènere"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7203,7 +7203,7 @@
|
||||||
*: "Any"
|
*: "Any"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Any"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7217,7 +7217,7 @@
|
||||||
*: "Durada"
|
*: "Durada"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Durada"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7231,7 +7231,7 @@
|
||||||
*: "Llista de reprod."
|
*: "Llista de reprod."
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Llista de reprod."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7245,7 +7245,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7259,7 +7259,7 @@
|
||||||
*: "Artista de l'álbum"
|
*: "Artista de l'álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista de l'álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7273,7 +7273,7 @@
|
||||||
*: "Núm.disc"
|
*: "Núm.disc"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Núm.disc"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7301,7 +7301,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7315,7 +7315,7 @@
|
||||||
*: "Freqüència"
|
*: "Freqüència"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Freqüència"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7329,7 +7329,7 @@
|
||||||
*: "Guany de pista"
|
*: "Guany de pista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Guany de pista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7343,7 +7343,7 @@
|
||||||
*: "Guany d'àlbum"
|
*: "Guany d'àlbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Guany d'àlbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7357,7 +7357,7 @@
|
||||||
*: "Camí"
|
*: "Camí"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Camí"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7371,7 +7371,7 @@
|
||||||
*: "<sense info>"
|
*: "<sense info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "sense info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10036,7 +10036,7 @@
|
||||||
*: "Treball"
|
*: "Treball"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Treball"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12434,7 +12434,7 @@
|
||||||
*: "Compositor"
|
*: "Compositor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compositor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4803,7 +4803,7 @@
|
||||||
*: "标题"
|
*: "标题"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "标题"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4817,7 +4817,7 @@
|
||||||
*: "艺术家"
|
*: "艺术家"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "艺术家"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4831,7 +4831,7 @@
|
||||||
*: "专辑"
|
*: "专辑"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "专辑"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4845,7 +4845,7 @@
|
||||||
*: "曲目编号"
|
*: "曲目编号"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "曲目编号"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4859,7 +4859,7 @@
|
||||||
*: "流派"
|
*: "流派"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "流派"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4873,7 +4873,7 @@
|
||||||
*: "年份"
|
*: "年份"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "年份"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4887,7 +4887,7 @@
|
||||||
*: "长度"
|
*: "长度"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "长度"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4901,7 +4901,7 @@
|
||||||
*: "播放列表"
|
*: "播放列表"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "播放列表"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4915,7 +4915,7 @@
|
||||||
*: "码率"
|
*: "码率"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "码率"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4929,7 +4929,7 @@
|
||||||
*: "(VBR)"
|
*: "(VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4943,7 +4943,7 @@
|
||||||
*: "频率"
|
*: "频率"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "频率"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4957,7 +4957,7 @@
|
||||||
*: "单曲增益"
|
*: "单曲增益"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "单曲增益"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4971,7 +4971,7 @@
|
||||||
*: "专辑增益"
|
*: "专辑增益"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "专辑增益"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4985,7 +4985,7 @@
|
||||||
*: "路径"
|
*: "路径"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "路径"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4999,7 +4999,7 @@
|
||||||
*: "<无信息>"
|
*: "<无信息>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "无信息"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8013,7 +8013,7 @@
|
||||||
*: "注释"
|
*: "注释"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "注释"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9086,7 +9086,7 @@
|
||||||
*: "作品"
|
*: "作品"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "作品"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9373,7 +9373,7 @@
|
||||||
*: "CD编号"
|
*: "CD编号"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "CD编号"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9702,7 +9702,7 @@
|
||||||
*: "专辑艺术家"
|
*: "专辑艺术家"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "专辑艺术家"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12271,7 +12271,7 @@
|
||||||
*: "Composer"
|
*: "Composer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Composer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4813,7 +4813,7 @@
|
||||||
*: "標題"
|
*: "標題"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "標題"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4827,7 +4827,7 @@
|
||||||
*: "作者"
|
*: "作者"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "作者"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4841,7 +4841,7 @@
|
||||||
*: "專輯"
|
*: "專輯"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "專輯"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4855,7 +4855,7 @@
|
||||||
*: "曲目編號"
|
*: "曲目編號"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "曲目編號"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4869,7 +4869,7 @@
|
||||||
*: "類別"
|
*: "類別"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "類別"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4883,7 +4883,7 @@
|
||||||
*: "年份"
|
*: "年份"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "年份"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4897,7 +4897,7 @@
|
||||||
*: "長度"
|
*: "長度"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "長度"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4911,7 +4911,7 @@
|
||||||
*: "播放清單"
|
*: "播放清單"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "播放清單"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4925,7 +4925,7 @@
|
||||||
*: "位元率"
|
*: "位元率"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "位元率"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4939,7 +4939,7 @@
|
||||||
*: " (變動位元率)"
|
*: " (變動位元率)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "變動位元率"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4953,7 +4953,7 @@
|
||||||
*: "頻率"
|
*: "頻率"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "頻率"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4967,7 +4967,7 @@
|
||||||
*: "Track Gain"
|
*: "Track Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4981,7 +4981,7 @@
|
||||||
*: "Album Gain"
|
*: "Album Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4995,7 +4995,7 @@
|
||||||
*: "路徑"
|
*: "路徑"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "路徑"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5009,7 +5009,7 @@
|
||||||
*: "<無資訊>"
|
*: "<無資訊>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "無資訊"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8058,7 +8058,7 @@
|
||||||
*: "註解"
|
*: "註解"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "註解"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9133,7 +9133,7 @@
|
||||||
*: "作品"
|
*: "作品"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "作品"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9423,7 +9423,7 @@
|
||||||
*: "唱片編號"
|
*: "唱片編號"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "唱片編號"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9752,7 +9752,7 @@
|
||||||
*: "專輯作者"
|
*: "專輯作者"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "專輯作者"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4049,7 +4049,7 @@
|
||||||
*: "Titel"
|
*: "Titel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4063,7 +4063,7 @@
|
||||||
*: "Kunstner"
|
*: "Kunstner"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kunstner"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4077,7 +4077,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4091,7 +4091,7 @@
|
||||||
*: "Sangnummer"
|
*: "Sangnummer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sangnummer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4105,7 +4105,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4119,7 +4119,7 @@
|
||||||
*: "År"
|
*: "År"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "År"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4133,7 +4133,7 @@
|
||||||
*: "Sætliste"
|
*: "Sætliste"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sætliste"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4147,7 +4147,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4161,7 +4161,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4175,7 +4175,7 @@
|
||||||
*: "Frekvens"
|
*: "Frekvens"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvens"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4189,7 +4189,7 @@
|
||||||
*: "Sang lydstyrke"
|
*: "Sang lydstyrke"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sang lydstyrke"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4203,7 +4203,7 @@
|
||||||
*: "Album lydstyrke"
|
*: "Album lydstyrke"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album lydstyrke"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4217,7 +4217,7 @@
|
||||||
*: "Sti"
|
*: "Sti"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sti"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4231,7 +4231,7 @@
|
||||||
*: "<Ingen info>"
|
*: "<Ingen info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ingen info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7058,7 +7058,7 @@
|
||||||
*: "Længde"
|
*: "Længde"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Længde"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8448,7 +8448,7 @@
|
||||||
*: "Kommentar"
|
*: "Kommentar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kommentar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9040,7 +9040,7 @@
|
||||||
*: "Album kunstner"
|
*: "Album kunstner"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album kunstner"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9285,7 +9285,7 @@
|
||||||
*: "Disc nummer"
|
*: "Disc nummer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disc nummer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9886,7 +9886,7 @@
|
||||||
*: "Værk"
|
*: "Værk"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Værk"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12390,7 +12390,7 @@
|
||||||
*: "Komponist"
|
*: "Komponist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komponist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7147,7 +7147,7 @@
|
||||||
*: "Titel"
|
*: "Titel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7161,7 +7161,7 @@
|
||||||
*: "Künstler"
|
*: "Künstler"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Künstler"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7175,7 +7175,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7189,7 +7189,7 @@
|
||||||
*: "Titelnr."
|
*: "Titelnr."
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titelnr."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7203,7 +7203,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7217,7 +7217,7 @@
|
||||||
*: "Jahr"
|
*: "Jahr"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Jahr"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7231,7 +7231,7 @@
|
||||||
*: "Länge"
|
*: "Länge"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Länge"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7245,7 +7245,7 @@
|
||||||
*: "Wiedergabeliste"
|
*: "Wiedergabeliste"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Wiedergabeliste"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7259,7 +7259,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7273,7 +7273,7 @@
|
||||||
*: "Album-Künstler"
|
*: "Album-Künstler"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album-Künstler"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7287,7 +7287,7 @@
|
||||||
*: "Disknr."
|
*: "Disknr."
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disknr."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7301,7 +7301,7 @@
|
||||||
*: "Kommentar"
|
*: "Kommentar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kommentar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7315,7 +7315,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7329,7 +7329,7 @@
|
||||||
*: "Frequenz"
|
*: "Frequenz"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequenz"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7343,7 +7343,7 @@
|
||||||
*: "Titellautstärke"
|
*: "Titellautstärke"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titellautstärke"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7357,7 +7357,7 @@
|
||||||
*: "Albumlautstärke"
|
*: "Albumlautstärke"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumlautstärke"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7371,7 +7371,7 @@
|
||||||
*: "Pfad"
|
*: "Pfad"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pfad"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7385,7 +7385,7 @@
|
||||||
*: "<keine Info>"
|
*: "<keine Info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "keine Info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10051,7 +10051,7 @@
|
||||||
*: "Werk"
|
*: "Werk"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Werk"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12347,7 +12347,7 @@
|
||||||
*: "Komponist"
|
*: "Komponist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komponist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4421,7 +4421,7 @@
|
||||||
*: "Title"
|
*: "Title"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Title"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4435,7 +4435,7 @@
|
||||||
*: "Artist"
|
*: "Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4449,7 +4449,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4463,7 +4463,7 @@
|
||||||
*: "Tracknum"
|
*: "Tracknum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tracknum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4477,7 +4477,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4491,7 +4491,7 @@
|
||||||
*: "Year"
|
*: "Year"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Year"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4505,7 +4505,7 @@
|
||||||
*: "Length"
|
*: "Length"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Length"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4519,7 +4519,7 @@
|
||||||
*: "Playlist"
|
*: "Playlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Playlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4533,7 +4533,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4547,7 +4547,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4561,7 +4561,7 @@
|
||||||
*: "Frequency"
|
*: "Frequency"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequency"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4575,7 +4575,7 @@
|
||||||
*: "Track Gain"
|
*: "Track Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4589,7 +4589,7 @@
|
||||||
*: "Album Gain"
|
*: "Album Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4603,7 +4603,7 @@
|
||||||
*: "Path"
|
*: "Path"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Path"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4617,7 +4617,7 @@
|
||||||
*: "<No Info>"
|
*: "<No Info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "No Info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7138,7 +7138,7 @@
|
||||||
*: "Title"
|
*: "Title"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Title"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7152,7 +7152,7 @@
|
||||||
*: "Artist"
|
*: "Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7166,7 +7166,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7180,7 +7180,7 @@
|
||||||
*: "Tracknum"
|
*: "Tracknum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track number"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7194,7 +7194,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7208,7 +7208,7 @@
|
||||||
*: "Year"
|
*: "Year"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Year"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7222,7 +7222,7 @@
|
||||||
*: "Length"
|
*: "Length"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Length"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7236,7 +7236,7 @@
|
||||||
*: "Playlist"
|
*: "Playlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Playlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7250,7 +7250,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7264,7 +7264,7 @@
|
||||||
*: "Album Artist"
|
*: "Album Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7278,7 +7278,7 @@
|
||||||
*: "Discnum"
|
*: "Discnum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disc number"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7292,7 +7292,7 @@
|
||||||
*: "Comment"
|
*: "Comment"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comment"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7306,7 +7306,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7320,7 +7320,7 @@
|
||||||
*: "Frequency"
|
*: "Frequency"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequency"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7334,7 +7334,7 @@
|
||||||
*: "Track Gain"
|
*: "Track Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7348,7 +7348,7 @@
|
||||||
*: "Album Gain"
|
*: "Album Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7362,7 +7362,7 @@
|
||||||
*: "Path"
|
*: "Path"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Path"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7376,7 +7376,7 @@
|
||||||
*: "<No Info>"
|
*: "<No Info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "No Info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10042,7 +10042,7 @@
|
||||||
*: "Work"
|
*: "Work"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Work"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12457,7 +12457,7 @@
|
||||||
*: "Composer"
|
*: "Composer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Composer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7029,7 +7029,7 @@
|
||||||
*: "Searching... %d found (%s)"
|
*: "Searching... %d found (%s)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Found"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7225,7 +7225,7 @@
|
||||||
*: "Title"
|
*: "Title"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Title"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7239,7 +7239,7 @@
|
||||||
*: "Artist"
|
*: "Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7253,7 +7253,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7267,7 +7267,7 @@
|
||||||
*: "Tracknum"
|
*: "Tracknum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track number"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7281,7 +7281,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7295,7 +7295,7 @@
|
||||||
*: "Year"
|
*: "Year"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Year"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7309,7 +7309,7 @@
|
||||||
*: "Length"
|
*: "Length"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Length"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7323,7 +7323,7 @@
|
||||||
*: "Playlist"
|
*: "Playlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Playlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7337,7 +7337,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bit rate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7351,7 +7351,7 @@
|
||||||
*: "Album Artist"
|
*: "Album Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7365,7 +7365,7 @@
|
||||||
*: "Discnum"
|
*: "Discnum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disc number"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7379,7 +7379,7 @@
|
||||||
*: "Comment"
|
*: "Comment"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comment"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7393,7 +7393,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7407,7 +7407,7 @@
|
||||||
*: "Frequency"
|
*: "Frequency"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequency"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7421,7 +7421,7 @@
|
||||||
*: "Track Gain"
|
*: "Track Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7435,7 +7435,7 @@
|
||||||
*: "Album Gain"
|
*: "Album Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7449,7 +7449,7 @@
|
||||||
*: "Path"
|
*: "Path"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Path"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7463,7 +7463,7 @@
|
||||||
*: "<No Info>"
|
*: "<No Info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "No info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10131,7 +10131,7 @@
|
||||||
*: "Work"
|
*: "Work"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Work"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12563,7 +12563,7 @@
|
||||||
*: "Composer"
|
*: "Composer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Composer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -13717,3 +13717,73 @@
|
||||||
*: "One per track"
|
*: "One per track"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: VOICE_TRACK_TO_MOVE
|
||||||
|
desc: playlist viewer
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: ""
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: ""
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "Track to move"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: VOICE_QUEUED
|
||||||
|
desc: playlist viewer
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: ""
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: ""
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "Queued"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: VOICE_BAD_TRACK
|
||||||
|
desc: playlist viewer
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: ""
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: ""
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "Bad track"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: VOICE_MOVING_TRACK
|
||||||
|
desc: playlist viewer
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: ""
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: ""
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "Moving track"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: LANG_NO_VIEWERS
|
||||||
|
desc: text for splash to indicate that no viewers are available
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: "No viewers found"
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: "No viewers found"
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "No viewers found"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
|
|
@ -3102,7 +3102,7 @@
|
||||||
*: "Título"
|
*: "Título"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Título"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3116,7 +3116,7 @@
|
||||||
*: "Artista"
|
*: "Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3130,7 +3130,7 @@
|
||||||
*: "Álbum"
|
*: "Álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3144,7 +3144,7 @@
|
||||||
*: "Nº pista"
|
*: "Nº pista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nº pista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3158,7 +3158,7 @@
|
||||||
*: "Género"
|
*: "Género"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Género"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3172,7 +3172,7 @@
|
||||||
*: "Año"
|
*: "Año"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Año"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3186,7 +3186,7 @@
|
||||||
*: "Lista de reprod."
|
*: "Lista de reprod."
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lista de reprod."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3200,7 +3200,7 @@
|
||||||
*: "Tasa de bits"
|
*: "Tasa de bits"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tasa de bits"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3214,7 +3214,7 @@
|
||||||
*: "Frecuencia"
|
*: "Frecuencia"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frecuencia"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3228,7 +3228,7 @@
|
||||||
*: "Ruta"
|
*: "Ruta"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ruta"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3242,7 +3242,7 @@
|
||||||
*: "<Sin información>"
|
*: "<Sin información>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sin información"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5816,7 +5816,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6169,7 +6169,7 @@
|
||||||
*: "Unificación de volumen en el álbum"
|
*: "Unificación de volumen en el álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Unificación de volumen en el álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6618,7 +6618,7 @@
|
||||||
*: "Unificación de volumen en la pista"
|
*: "Unificación de volumen en la pista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Unificación de volumen en la pista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6965,7 +6965,7 @@
|
||||||
*: "Longitud"
|
*: "Longitud"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Longitud"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8299,7 +8299,7 @@
|
||||||
*: "Álbum Artista"
|
*: "Álbum Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Álbum Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8313,7 +8313,7 @@
|
||||||
*: "Comentario"
|
*: "Comentario"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comentario"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9670,7 +9670,7 @@
|
||||||
*: "Trabajo"
|
*: "Trabajo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Trabajo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9873,7 +9873,7 @@
|
||||||
*: "NúmDisc"
|
*: "NúmDisc"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "NúmDisc"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12425,7 +12425,7 @@
|
||||||
*: "Compositor"
|
*: "Compositor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compositor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4629,7 +4629,7 @@
|
||||||
*: "Titolo"
|
*: "Titolo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titolo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4643,7 +4643,7 @@
|
||||||
*: "Artisto"
|
*: "Artisto"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artisto"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4657,7 +4657,7 @@
|
||||||
*: "Albumo"
|
*: "Albumo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4671,7 +4671,7 @@
|
||||||
*: "Kanta Numero"
|
*: "Kanta Numero"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kanta Numero"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4685,7 +4685,7 @@
|
||||||
*: "Ĝenro"
|
*: "Ĝenro"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ĝenro"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4699,7 +4699,7 @@
|
||||||
*: "Jaro"
|
*: "Jaro"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Jaro"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4713,7 +4713,7 @@
|
||||||
*: "Longo"
|
*: "Longo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Longo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4727,7 +4727,7 @@
|
||||||
*: "Leglisto"
|
*: "Leglisto"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Leglisto"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4741,7 +4741,7 @@
|
||||||
*: "Bitfrekvenco"
|
*: "Bitfrekvenco"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitfrekvenco"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4755,7 +4755,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4769,7 +4769,7 @@
|
||||||
*: "Frekvenco"
|
*: "Frekvenco"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvenco"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4783,7 +4783,7 @@
|
||||||
*: "Kanta Gajno"
|
*: "Kanta Gajno"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kanta Gajno"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4797,7 +4797,7 @@
|
||||||
*: "Albumo Gajno"
|
*: "Albumo Gajno"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumo Gajno"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4811,7 +4811,7 @@
|
||||||
*: "Vojo"
|
*: "Vojo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Vojo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4825,7 +4825,7 @@
|
||||||
*: "<Sen Informoj>"
|
*: "<Sen Informoj>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sen Informoj"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4803,7 +4803,7 @@
|
||||||
*: "Kappale"
|
*: "Kappale"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kappale"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4817,7 +4817,7 @@
|
||||||
*: "Esittäjä"
|
*: "Esittäjä"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Esittäjä"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4831,7 +4831,7 @@
|
||||||
*: "Albumi"
|
*: "Albumi"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumi"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4845,7 +4845,7 @@
|
||||||
*: "Kappalenro"
|
*: "Kappalenro"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kappalenro"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4859,7 +4859,7 @@
|
||||||
*: "Tyylilaji"
|
*: "Tyylilaji"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tyylilaji"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4873,7 +4873,7 @@
|
||||||
*: "Vuosi"
|
*: "Vuosi"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Vuosi"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4887,7 +4887,7 @@
|
||||||
*: "Pituus"
|
*: "Pituus"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pituus"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4901,7 +4901,7 @@
|
||||||
*: "Soittolista"
|
*: "Soittolista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Soittolista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4915,7 +4915,7 @@
|
||||||
*: "Bittinopeus"
|
*: "Bittinopeus"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bittinopeus"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4929,7 +4929,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4943,7 +4943,7 @@
|
||||||
*: "Taajuus"
|
*: "Taajuus"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Taajuus"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4957,7 +4957,7 @@
|
||||||
*: "Kappalevahvistus"
|
*: "Kappalevahvistus"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kappalevahvistus"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4971,7 +4971,7 @@
|
||||||
*: "Albumivahvistus"
|
*: "Albumivahvistus"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumivahvistus"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4985,7 +4985,7 @@
|
||||||
*: "Polku"
|
*: "Polku"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Polku"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4999,7 +4999,7 @@
|
||||||
*: "<Ei tietoja>"
|
*: "<Ei tietoja>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ei tietoja"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8875,7 +8875,7 @@
|
||||||
*: "Albumin esittäjä"
|
*: "Albumin esittäjä"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumin esittäjä"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8889,7 +8889,7 @@
|
||||||
*: "Kommentti"
|
*: "Kommentti"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kommentti"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9866,7 +9866,7 @@
|
||||||
*: "Levynro"
|
*: "Levynro"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Levynro"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10037,7 +10037,7 @@
|
||||||
*: "Työ"
|
*: "Työ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Työ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12459,7 +12459,7 @@
|
||||||
*: "Säveltäjä"
|
*: "Säveltäjä"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Säveltäjä"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7170,7 +7170,7 @@
|
||||||
*: "Titre"
|
*: "Titre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7184,7 +7184,7 @@
|
||||||
*: "Artiste"
|
*: "Artiste"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artiste"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7198,7 +7198,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7212,7 +7212,7 @@
|
||||||
*: "Numéro de Piste"
|
*: "Numéro de Piste"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Numéro de Piste"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7226,7 +7226,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7240,7 +7240,7 @@
|
||||||
*: "Année"
|
*: "Année"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Année"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7254,7 +7254,7 @@
|
||||||
*: "Durée"
|
*: "Durée"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Durée"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7268,7 +7268,7 @@
|
||||||
*: "Liste de lecture"
|
*: "Liste de lecture"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Liste de lecture"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7282,7 +7282,7 @@
|
||||||
*: "Débit binaire"
|
*: "Débit binaire"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Débit binaire"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7296,7 +7296,7 @@
|
||||||
*: "Artiste de l'album"
|
*: "Artiste de l'album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artiste de l'album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7310,7 +7310,7 @@
|
||||||
*: "Numéro du disque"
|
*: "Numéro du disque"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Numéro du disque"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7324,7 +7324,7 @@
|
||||||
*: "Commentaire"
|
*: "Commentaire"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Commentaire"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7338,7 +7338,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7352,7 +7352,7 @@
|
||||||
*: "Echantillonnage"
|
*: "Echantillonnage"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Echantillonnage"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7366,7 +7366,7 @@
|
||||||
*: "Gain par piste"
|
*: "Gain par piste"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gain par piste"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7380,7 +7380,7 @@
|
||||||
*: "Gain par album"
|
*: "Gain par album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gain par album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7394,7 +7394,7 @@
|
||||||
*: "Chemin"
|
*: "Chemin"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Chemin"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7408,7 +7408,7 @@
|
||||||
*: "<Pas d'Info>"
|
*: "<Pas d'Info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pas d'Info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10074,7 +10074,7 @@
|
||||||
*: "Œuvre"
|
*: "Œuvre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Œuvre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12472,7 +12472,7 @@
|
||||||
*: "Compositeur"
|
*: "Compositeur"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compositeur"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -6277,7 +6277,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7172,7 +7172,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: "Ganancia do álbume"
|
*: "Ganancia do álbume"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ganancia do álbume"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8729,7 +8729,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: "Ganancia de pista"
|
*: "Ganancia de pista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ganancia de pista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9463,7 +9463,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: "Traballo"
|
*: "Traballo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Traballo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9573,7 +9573,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: "Lonxitude"
|
*: "Lonxitude"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lonxitude"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9954,7 +9954,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: "Compositor"
|
*: "Compositor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compositor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10662,7 +10662,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: "Nº de disco"
|
*: "Nº de disco"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nº de disco"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -11533,7 +11533,7 @@ iriverifp7xx: "%d%% %dh %dm"
|
||||||
*: "Artista do álbume"
|
*: "Artista do álbume"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista do álbume"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7125,7 +7125,7 @@
|
||||||
*: "Τίτλος"
|
*: "Τίτλος"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Τίτλος"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7139,7 +7139,7 @@
|
||||||
*: "Καλλιτέχνης"
|
*: "Καλλιτέχνης"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Καλλιτέχνης"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7153,7 +7153,7 @@
|
||||||
*: "Άλμπουμ"
|
*: "Άλμπουμ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Άλμπουμ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7167,7 +7167,7 @@
|
||||||
*: "Αριθμός κομματιού"
|
*: "Αριθμός κομματιού"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Αριθμός κομματιού"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7181,7 +7181,7 @@
|
||||||
*: "Είδος"
|
*: "Είδος"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Είδος"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7195,7 +7195,7 @@
|
||||||
*: "Χρονιά"
|
*: "Χρονιά"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Χρονιά"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7209,7 +7209,7 @@
|
||||||
*: "Μήκος"
|
*: "Μήκος"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Μήκος"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7223,7 +7223,7 @@
|
||||||
*: "Λίστα αναπαραγωγής"
|
*: "Λίστα αναπαραγωγής"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Λίστα αναπαραγωγής"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7237,7 +7237,7 @@
|
||||||
*: "Ρυθμός μετάδοσης"
|
*: "Ρυθμός μετάδοσης"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ρυθμός μετάδοσης"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7251,7 +7251,7 @@
|
||||||
*: "Καλλιτέχνης Άλμπουμ"
|
*: "Καλλιτέχνης Άλμπουμ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Καλλιτέχνης Άλμπουμ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7265,7 +7265,7 @@
|
||||||
*: "Αριθμός δίσκου"
|
*: "Αριθμός δίσκου"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Αριθμός δίσκου"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7279,7 +7279,7 @@
|
||||||
*: "Σχόλειο"
|
*: "Σχόλειο"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Σχόλειο"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7293,7 +7293,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7307,7 +7307,7 @@
|
||||||
*: "Συχνότητα"
|
*: "Συχνότητα"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Συχνότητα"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7321,7 +7321,7 @@
|
||||||
*: "Ενίσχυση κομματιού"
|
*: "Ενίσχυση κομματιού"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ενίσχυση κομματιού"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7335,7 +7335,7 @@
|
||||||
*: "Ενίσχυση άλμπουμ"
|
*: "Ενίσχυση άλμπουμ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ενίσχυση άλμπουμ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7349,7 +7349,7 @@
|
||||||
*: "Θέση"
|
*: "Θέση"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Θέση"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7363,7 +7363,7 @@
|
||||||
*: "<Χωρίς πληροφορίες>"
|
*: "<Χωρίς πληροφορίες>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Χωρίς πληροφορίες"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10029,7 +10029,7 @@
|
||||||
*: "Εργασία"
|
*: "Εργασία"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Εργασία"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -13559,6 +13559,6 @@
|
||||||
*: "Συνθέτης"
|
*: "Συνθέτης"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Συνθέτης"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
|
|
|
@ -7145,7 +7145,7 @@
|
||||||
*: "כותרת"
|
*: "כותרת"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "כותרת"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7159,7 +7159,7 @@
|
||||||
*: "אמן"
|
*: "אמן"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "אמן"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7173,7 +7173,7 @@
|
||||||
*: "אלבום"
|
*: "אלבום"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "אלבום"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7187,7 +7187,7 @@
|
||||||
*: "מספר שיר"
|
*: "מספר שיר"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "מספר שיר"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7201,7 +7201,7 @@
|
||||||
*: "סגנון"
|
*: "סגנון"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "סגנון"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7215,7 +7215,7 @@
|
||||||
*: "שנה"
|
*: "שנה"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "שנה"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7229,7 +7229,7 @@
|
||||||
*: "אורך"
|
*: "אורך"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "אורך"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7243,7 +7243,7 @@
|
||||||
*: "רשימת שירים"
|
*: "רשימת שירים"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "רשימת שירים"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7257,7 +7257,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7271,7 +7271,7 @@
|
||||||
*: "אמן האלבום"
|
*: "אמן האלבום"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "אמן האלבום"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7285,7 +7285,7 @@
|
||||||
*: "מס' דיסק"
|
*: "מס' דיסק"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "מס' דיסק"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7299,7 +7299,7 @@
|
||||||
*: "הערה"
|
*: "הערה"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "הערה"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7313,7 +7313,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7327,7 +7327,7 @@
|
||||||
*: "תדירות"
|
*: "תדירות"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "תדירות"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7341,7 +7341,7 @@
|
||||||
*: "הגברת שיר"
|
*: "הגברת שיר"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "הגברת שיר"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7355,7 +7355,7 @@
|
||||||
*: "הגברת אלבום"
|
*: "הגברת אלבום"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "הגברת אלבום"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7369,7 +7369,7 @@
|
||||||
*: "נתיב"
|
*: "נתיב"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "נתיב"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7383,7 +7383,7 @@
|
||||||
*: "<אין מידע>"
|
*: "<אין מידע>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "אין מידע"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10048,7 +10048,7 @@
|
||||||
*: "עבודה"
|
*: "עבודה"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "עבודה"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12375,7 +12375,7 @@
|
||||||
*: "מלחין"
|
*: "מלחין"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "מלחין"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -3332,7 +3332,7 @@
|
||||||
*: "साल"
|
*: "साल"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "साल"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3346,7 +3346,7 @@
|
||||||
*: "पलेलिसट"
|
*: "पलेलिसट"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "पलेलिसट"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3360,7 +3360,7 @@
|
||||||
*: "<कोई इनफो नही है>"
|
*: "<कोई इनफो नही है>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "कोई इनफो नही है"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7137,7 +7137,7 @@
|
||||||
*: "Naslov"
|
*: "Naslov"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Naslov"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7151,7 +7151,7 @@
|
||||||
*: "Izvođač"
|
*: "Izvođač"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Izvođač"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7165,7 +7165,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7179,7 +7179,7 @@
|
||||||
*: "Br. pjesme"
|
*: "Br. pjesme"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Br. pjesme"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7193,7 +7193,7 @@
|
||||||
*: "Žanr"
|
*: "Žanr"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Žanr"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7207,7 +7207,7 @@
|
||||||
*: "Godina"
|
*: "Godina"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Godina"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7221,7 +7221,7 @@
|
||||||
*: "Dužina"
|
*: "Dužina"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Dužina"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7235,7 +7235,7 @@
|
||||||
*: "Popis izvođenja"
|
*: "Popis izvođenja"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Popis izvođenja"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7249,7 +7249,7 @@
|
||||||
*: "Protok bitova"
|
*: "Protok bitova"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Protok bitova"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7263,7 +7263,7 @@
|
||||||
*: "Izvođač albuma"
|
*: "Izvođač albuma"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Izvođač albuma"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7277,7 +7277,7 @@
|
||||||
*: "Br. diska"
|
*: "Br. diska"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Br. diska"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7291,7 +7291,7 @@
|
||||||
*: "Komentar"
|
*: "Komentar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komentar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7305,7 +7305,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7319,7 +7319,7 @@
|
||||||
*: "Frekvencija"
|
*: "Frekvencija"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvencija"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7333,7 +7333,7 @@
|
||||||
*: "Ujednačenje glasnoće pjesme"
|
*: "Ujednačenje glasnoće pjesme"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ujednačenje glasnoće pjesme"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7347,7 +7347,7 @@
|
||||||
*: "Ujednačenje glasnoće albuma"
|
*: "Ujednačenje glasnoće albuma"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ujednačenje glasnoće albuma"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7361,7 +7361,7 @@
|
||||||
*: "Putanja"
|
*: "Putanja"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Putanja"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7375,7 +7375,7 @@
|
||||||
*: "<Nema informacija>"
|
*: "<Nema informacija>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nema informacija"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10040,7 +10040,7 @@
|
||||||
*: "Posao"
|
*: "Posao"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Posao"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12434,7 +12434,7 @@
|
||||||
*: "Skladatelj"
|
*: "Skladatelj"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Skladatelj"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -3598,7 +3598,7 @@
|
||||||
*: "Heiti"
|
*: "Heiti"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Heiti"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3612,7 +3612,7 @@
|
||||||
*: "Listamaður"
|
*: "Listamaður"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Listamaður"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3626,7 +3626,7 @@
|
||||||
*: "Hljómplata"
|
*: "Hljómplata"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Hljómplata"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3640,7 +3640,7 @@
|
||||||
*: "Lagnúmer"
|
*: "Lagnúmer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lagnúmer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3654,7 +3654,7 @@
|
||||||
*: "Tegund"
|
*: "Tegund"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tegund"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3668,7 +3668,7 @@
|
||||||
*: "Ár"
|
*: "Ár"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ár"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3682,7 +3682,7 @@
|
||||||
*: "Lagalisti"
|
*: "Lagalisti"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lagalisti"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3696,7 +3696,7 @@
|
||||||
*: "Gæði"
|
*: "Gæði"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gæði"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3710,7 +3710,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3724,7 +3724,7 @@
|
||||||
*: "Tíðni"
|
*: "Tíðni"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tíðni"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3738,7 +3738,7 @@
|
||||||
*: "Lag hækkun"
|
*: "Lag hækkun"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lag hækkun"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3752,7 +3752,7 @@
|
||||||
*: "Albúmaðlögun"
|
*: "Albúmaðlögun"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albúmaðlögun"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3766,7 +3766,7 @@
|
||||||
*: "Slóð"
|
*: "Slóð"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Slóð"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3780,7 +3780,7 @@
|
||||||
*: "<Engar uppl.>"
|
*: "<Engar uppl.>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Engar uppl."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7143,7 +7143,7 @@ desc: deprecated
|
||||||
*: "Titolo"
|
*: "Titolo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titolo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7157,7 +7157,7 @@ desc: deprecated
|
||||||
*: "Artista"
|
*: "Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7171,7 +7171,7 @@ desc: deprecated
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7185,7 +7185,7 @@ desc: deprecated
|
||||||
*: "Numero traccia"
|
*: "Numero traccia"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Numero traccia"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7199,7 +7199,7 @@ desc: deprecated
|
||||||
*: "Genere"
|
*: "Genere"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genere"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7213,7 +7213,7 @@ desc: deprecated
|
||||||
*: "Anno"
|
*: "Anno"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Anno"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7227,7 +7227,7 @@ desc: deprecated
|
||||||
*: "Lunghezza"
|
*: "Lunghezza"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lunghezza"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7241,7 +7241,7 @@ desc: deprecated
|
||||||
*: "Playlist"
|
*: "Playlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Playlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7255,7 +7255,7 @@ desc: deprecated
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7269,7 +7269,7 @@ desc: deprecated
|
||||||
*: "Album Artista"
|
*: "Album Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7283,7 +7283,7 @@ desc: deprecated
|
||||||
*: "Discnum"
|
*: "Discnum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Discnum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7297,7 +7297,7 @@ desc: deprecated
|
||||||
*: "Commento"
|
*: "Commento"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Commento"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7311,7 +7311,7 @@ desc: deprecated
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7325,7 +7325,7 @@ desc: deprecated
|
||||||
*: "Frequenza"
|
*: "Frequenza"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequenza"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7339,7 +7339,7 @@ desc: deprecated
|
||||||
*: "Guadagno Traccia"
|
*: "Guadagno Traccia"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Guadagno Traccia"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7353,7 +7353,7 @@ desc: deprecated
|
||||||
*: "Guadagno Album"
|
*: "Guadagno Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Guadagno Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7367,7 +7367,7 @@ desc: deprecated
|
||||||
*: "Percorso"
|
*: "Percorso"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Percorso"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7381,7 +7381,7 @@ desc: deprecated
|
||||||
*: "<No Info>"
|
*: "<No Info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "No Info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10047,7 +10047,7 @@ desc: deprecated
|
||||||
*: "Lavoro"
|
*: "Lavoro"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lavoro"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12445,7 +12445,7 @@ desc: deprecated
|
||||||
*: "Compositore"
|
*: "Compositore"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compositore"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7143,7 +7143,7 @@
|
||||||
*: "曲名"
|
*: "曲名"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "曲名"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7157,7 +7157,7 @@
|
||||||
*: "アーティスト"
|
*: "アーティスト"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "アーティスト"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7171,7 +7171,7 @@
|
||||||
*: "アルバム"
|
*: "アルバム"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "アルバム"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7185,7 +7185,7 @@
|
||||||
*: "トラック"
|
*: "トラック"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "トラック"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7199,7 +7199,7 @@
|
||||||
*: "ジャンル"
|
*: "ジャンル"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ジャンル"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7213,7 +7213,7 @@
|
||||||
*: "年"
|
*: "年"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "年"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7227,7 +7227,7 @@
|
||||||
*: "長さ"
|
*: "長さ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "長さ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7241,7 +7241,7 @@
|
||||||
*: "プレイリスト"
|
*: "プレイリスト"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "プレイリスト"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7255,7 +7255,7 @@
|
||||||
*: "ビットレート"
|
*: "ビットレート"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ビットレート"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7269,7 +7269,7 @@
|
||||||
*: "アルバムアーティスト"
|
*: "アルバムアーティスト"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "アルバムアーティスト"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7283,7 +7283,7 @@
|
||||||
*: "ディスク"
|
*: "ディスク"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ディスク"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7297,7 +7297,7 @@
|
||||||
*: "コメント"
|
*: "コメント"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "コメント"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7311,7 +7311,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7325,7 +7325,7 @@
|
||||||
*: "周波数"
|
*: "周波数"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "周波数"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7339,7 +7339,7 @@
|
||||||
*: "トラックゲイン"
|
*: "トラックゲイン"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "トラックゲイン"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7353,7 +7353,7 @@
|
||||||
*: "アルバムゲイン"
|
*: "アルバムゲイン"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "アルバムゲイン"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7367,7 +7367,7 @@
|
||||||
*: "パス"
|
*: "パス"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "パス"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7381,7 +7381,7 @@
|
||||||
*: "<情報無し>"
|
*: "<情報無し>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "情報無し"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10047,7 +10047,7 @@
|
||||||
*: "ワーク"
|
*: "ワーク"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ワーク"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12445,7 +12445,7 @@
|
||||||
*: "作曲者"
|
*: "作曲者"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "作曲者"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4819,7 +4819,7 @@
|
||||||
*: "제목"
|
*: "제목"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "제목"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4833,7 +4833,7 @@
|
||||||
*: "음악가"
|
*: "음악가"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "음악가"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4847,7 +4847,7 @@
|
||||||
*: "앨범"
|
*: "앨범"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "앨범"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4861,7 +4861,7 @@
|
||||||
*: "트랙 번호"
|
*: "트랙 번호"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "트랙 번호"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4875,7 +4875,7 @@
|
||||||
*: "장르"
|
*: "장르"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "장르"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4889,7 +4889,7 @@
|
||||||
*: "연도"
|
*: "연도"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "연도"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4903,7 +4903,7 @@
|
||||||
*: "길이"
|
*: "길이"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "길이"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4917,7 +4917,7 @@
|
||||||
*: "재생순서"
|
*: "재생순서"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "재생순서"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4931,7 +4931,7 @@
|
||||||
*: "비트 전송률"
|
*: "비트 전송률"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "비트 전송률"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4945,7 +4945,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4959,7 +4959,7 @@
|
||||||
*: "오디오 샘플 속도"
|
*: "오디오 샘플 속도"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "오디오 샘플 속도"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4973,7 +4973,7 @@
|
||||||
*: "트랙 게인"
|
*: "트랙 게인"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "트랙 게인"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4987,7 +4987,7 @@
|
||||||
*: "앨범 게인"
|
*: "앨범 게인"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "앨범 게인"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5001,7 +5001,7 @@
|
||||||
*: "파일 위치"
|
*: "파일 위치"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "파일 위치"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8887,7 +8887,7 @@
|
||||||
*: "앨범 음악가"
|
*: "앨범 음악가"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "앨범 음악가"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8901,7 +8901,7 @@
|
||||||
*: "설명"
|
*: "설명"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "설명"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9376,7 +9376,7 @@
|
||||||
*: "<정보 없음>"
|
*: "<정보 없음>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "정보 없음"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10187,7 +10187,7 @@
|
||||||
*: "작업"
|
*: "작업"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "작업"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10396,7 +10396,7 @@
|
||||||
*: "디스크 번호"
|
*: "디스크 번호"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "디스크 번호"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7141,7 +7141,7 @@
|
||||||
*: "Nosaukums"
|
*: "Nosaukums"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nosaukums"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7155,7 +7155,7 @@
|
||||||
*: "Izpildītājs"
|
*: "Izpildītājs"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Izpildītājs"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7169,7 +7169,7 @@
|
||||||
*: "Albūms"
|
*: "Albūms"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albūms"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7183,7 +7183,7 @@
|
||||||
*: "Numurs"
|
*: "Numurs"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Numurs"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7197,7 +7197,7 @@
|
||||||
*: "Žanrs"
|
*: "Žanrs"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Žanrs"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7211,7 +7211,7 @@
|
||||||
*: "Gads"
|
*: "Gads"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gads"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7225,7 +7225,7 @@
|
||||||
*: "Garums"
|
*: "Garums"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Garums"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7239,7 +7239,7 @@
|
||||||
*: "Saraksts"
|
*: "Saraksts"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Saraksts"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7253,7 +7253,7 @@
|
||||||
*: "Bitreits"
|
*: "Bitreits"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitreits"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7267,7 +7267,7 @@
|
||||||
*: "Albūma Izpildītājs"
|
*: "Albūma Izpildītājs"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albūma Izpildītājs"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7281,7 +7281,7 @@
|
||||||
*: "Diska Numurs"
|
*: "Diska Numurs"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Diska Numurs"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7295,7 +7295,7 @@
|
||||||
*: "Komentārs"
|
*: "Komentārs"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komentārs"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7309,7 +7309,7 @@
|
||||||
*: " (MBR)"
|
*: " (MBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "MBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7323,7 +7323,7 @@
|
||||||
*: "Frekvence"
|
*: "Frekvence"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvence"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7337,7 +7337,7 @@
|
||||||
*: "Dziesmas Skaļums"
|
*: "Dziesmas Skaļums"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Dziesmas Skaļums"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7351,7 +7351,7 @@
|
||||||
*: "Albūma Skaļums"
|
*: "Albūma Skaļums"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albūma Skaļums"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7365,7 +7365,7 @@
|
||||||
*: "Ceļš"
|
*: "Ceļš"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ceļš"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7379,7 +7379,7 @@
|
||||||
*: "<Nav Informācijas>"
|
*: "<Nav Informācijas>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nav Informācijas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10047,7 +10047,7 @@
|
||||||
*: "Darbs"
|
*: "Darbs"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Darbs"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12428,7 +12428,7 @@
|
||||||
*: "Komponists"
|
*: "Komponists"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komponists"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7199,7 +7199,7 @@
|
||||||
*: "Pavadinimas"
|
*: "Pavadinimas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pavadinimas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7213,7 +7213,7 @@
|
||||||
*: "Autorius"
|
*: "Autorius"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Autorius"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7227,7 +7227,7 @@
|
||||||
*: "Albumas"
|
*: "Albumas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7241,7 +7241,7 @@
|
||||||
*: "Įrašo nr."
|
*: "Įrašo nr."
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Įrašo nr."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7255,7 +7255,7 @@
|
||||||
*: "Žanras"
|
*: "Žanras"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Žanras"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7269,7 +7269,7 @@
|
||||||
*: "Metai"
|
*: "Metai"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Metai"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7283,7 +7283,7 @@
|
||||||
*: "Trukmė"
|
*: "Trukmė"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Trukmė"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7297,7 +7297,7 @@
|
||||||
*: "Grojaraštis"
|
*: "Grojaraštis"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Grojaraštis"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7311,7 +7311,7 @@
|
||||||
*: "Bitreitas"
|
*: "Bitreitas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitreitas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7325,7 +7325,7 @@
|
||||||
*: "Albumo autorius"
|
*: "Albumo autorius"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumo autorius"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7339,7 +7339,7 @@
|
||||||
*: "Disko nr."
|
*: "Disko nr."
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disko nr."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7353,7 +7353,7 @@
|
||||||
*: "Komentarai"
|
*: "Komentarai"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komentarai"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7367,7 +7367,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7381,7 +7381,7 @@
|
||||||
*: "Dažnis"
|
*: "Dažnis"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Dažnis"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7395,7 +7395,7 @@
|
||||||
*: "Įrašo stiprinimas"
|
*: "Įrašo stiprinimas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Įrašo stiprinimas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7409,7 +7409,7 @@
|
||||||
*: "Albumo stiprinimas"
|
*: "Albumo stiprinimas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumo stiprinimas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7423,7 +7423,7 @@
|
||||||
*: "Kelias"
|
*: "Kelias"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kelias"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7437,7 +7437,7 @@
|
||||||
*: "<Nėra informacijos>"
|
*: "<Nėra informacijos>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nėra informacijos"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10103,7 +10103,7 @@
|
||||||
*: "Darbas"
|
*: "Darbas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Darbas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7115,7 +7115,7 @@
|
||||||
*: "Cím"
|
*: "Cím"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Cím"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7129,7 +7129,7 @@
|
||||||
*: "Előadó"
|
*: "Előadó"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Előadó"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7143,7 +7143,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7157,7 +7157,7 @@
|
||||||
*: "Sorszám"
|
*: "Sorszám"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sorszám"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7171,7 +7171,7 @@
|
||||||
*: "Műfaj"
|
*: "Műfaj"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Műfaj"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7185,7 +7185,7 @@
|
||||||
*: "Év"
|
*: "Év"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Év"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7199,7 +7199,7 @@
|
||||||
*: "Hossz"
|
*: "Hossz"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Hossz"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7213,7 +7213,7 @@
|
||||||
*: "Lejátszólista"
|
*: "Lejátszólista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lejátszólista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7227,7 +7227,7 @@
|
||||||
*: "Bitráta"
|
*: "Bitráta"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitráta"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7241,7 +7241,7 @@
|
||||||
*: "Lemez előadója"
|
*: "Lemez előadója"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lemez előadója"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7255,7 +7255,7 @@
|
||||||
*: "Lemez száma"
|
*: "Lemez száma"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lemez száma"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7269,7 +7269,7 @@
|
||||||
*: "Megjegyzés"
|
*: "Megjegyzés"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Megjegyzés"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7283,7 +7283,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7297,7 +7297,7 @@
|
||||||
*: "Mintavétel"
|
*: "Mintavétel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Mintavétel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7311,7 +7311,7 @@
|
||||||
*: "Számonkénti módosítás"
|
*: "Számonkénti módosítás"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Számonkénti módosítás"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7325,7 +7325,7 @@
|
||||||
*: "Albumonkénti módosítás"
|
*: "Albumonkénti módosítás"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumonkénti módosítás"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7339,7 +7339,7 @@
|
||||||
*: "Elérési út"
|
*: "Elérési út"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Elérési út"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7353,7 +7353,7 @@
|
||||||
*: "<Nincs adat>"
|
*: "<Nincs adat>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nincs adat"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10019,7 +10019,7 @@
|
||||||
*: "Mű"
|
*: "Mű"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Mű"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4806,7 +4806,7 @@
|
||||||
*: "Titel"
|
*: "Titel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4820,7 +4820,7 @@
|
||||||
*: "Artiest"
|
*: "Artiest"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artiest"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4834,7 +4834,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4848,7 +4848,7 @@
|
||||||
*: "Tracknum"
|
*: "Tracknum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tracknum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4862,7 +4862,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4876,7 +4876,7 @@
|
||||||
*: "Jaar"
|
*: "Jaar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Jaar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4890,7 +4890,7 @@
|
||||||
*: "Lengte"
|
*: "Lengte"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lengte"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4904,7 +4904,7 @@
|
||||||
*: "Speellijst"
|
*: "Speellijst"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Speellijst"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4918,7 +4918,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4946,7 +4946,7 @@
|
||||||
*: "Frequentie"
|
*: "Frequentie"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequentie"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4988,7 +4988,7 @@
|
||||||
*: "Lokatie"
|
*: "Lokatie"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lokatie"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5002,7 +5002,7 @@
|
||||||
*: "<geen info>"
|
*: "<geen info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "geen info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8872,7 +8872,7 @@
|
||||||
*: "Artiest van Album"
|
*: "Artiest van Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artiest van Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8886,7 +8886,7 @@
|
||||||
*: "Commentaar"
|
*: "Commentaar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Commentaar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9418,7 +9418,7 @@
|
||||||
*: "DiscNr"
|
*: "DiscNr"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "DiscNr"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10034,7 +10034,7 @@
|
||||||
*: "Werk"
|
*: "Werk"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Werk"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12432,7 +12432,7 @@
|
||||||
*: "Componist"
|
*: "Componist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Componist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4727,7 +4727,7 @@
|
||||||
*: "Tittel"
|
*: "Tittel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tittel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4741,7 +4741,7 @@
|
||||||
*: "Artist"
|
*: "Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4755,7 +4755,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4769,7 +4769,7 @@
|
||||||
*: "Spornummer"
|
*: "Spornummer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Spornummer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4783,7 +4783,7 @@
|
||||||
*: "Sjanger"
|
*: "Sjanger"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sjanger"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4797,7 +4797,7 @@
|
||||||
*: "År"
|
*: "År"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "År"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4811,7 +4811,7 @@
|
||||||
*: "Lengd"
|
*: "Lengd"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lengd"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4825,7 +4825,7 @@
|
||||||
*: "Speleliste"
|
*: "Speleliste"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Speleliste"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4839,7 +4839,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4853,7 +4853,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4867,7 +4867,7 @@
|
||||||
*: "Frekvens"
|
*: "Frekvens"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvens"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4881,7 +4881,7 @@
|
||||||
*: "Sporforsterking"
|
*: "Sporforsterking"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sporforsterking"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4895,7 +4895,7 @@
|
||||||
*: "Albumforsterking"
|
*: "Albumforsterking"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumforsterking"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4909,7 +4909,7 @@
|
||||||
*: "Adresse"
|
*: "Adresse"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Adresse"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4923,7 +4923,7 @@
|
||||||
*: "<Ingen info>"
|
*: "<Ingen info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ingen info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8359,7 +8359,7 @@
|
||||||
*: "Merknad"
|
*: "Merknad"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Merknad"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8714,7 +8714,7 @@
|
||||||
*: "Albumartist"
|
*: "Albumartist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumartist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9638,7 +9638,7 @@
|
||||||
*: "Arbeid"
|
*: "Arbeid"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Arbeid"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9717,7 +9717,7 @@
|
||||||
*: "Disknummer"
|
*: "Disknummer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disknummer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4052,7 +4052,7 @@
|
||||||
*: "Tittel"
|
*: "Tittel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tittel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4066,7 +4066,7 @@
|
||||||
*: "Artist"
|
*: "Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4080,7 +4080,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4094,7 +4094,7 @@
|
||||||
*: "Spornummer"
|
*: "Spornummer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Spornummer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4108,7 +4108,7 @@
|
||||||
*: "Sjanger"
|
*: "Sjanger"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sjanger"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4122,7 +4122,7 @@
|
||||||
*: "År"
|
*: "År"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "År"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4136,7 +4136,7 @@
|
||||||
*: "Spilleliste"
|
*: "Spilleliste"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Spilleliste"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4150,7 +4150,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4164,7 +4164,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4178,7 +4178,7 @@
|
||||||
*: "Frekvens"
|
*: "Frekvens"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvens"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4192,7 +4192,7 @@
|
||||||
*: "Spornivå"
|
*: "Spornivå"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Spornivå"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4206,7 +4206,7 @@
|
||||||
*: "Albumnivå"
|
*: "Albumnivå"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumnivå"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4220,7 +4220,7 @@
|
||||||
*: "Sti"
|
*: "Sti"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sti"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4234,7 +4234,7 @@
|
||||||
*: "<Ingen informasjon>"
|
*: "<Ingen informasjon>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ingen informasjon"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7079,7 +7079,7 @@
|
||||||
*: "Lengde"
|
*: "Lengde"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lengde"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8881,7 +8881,7 @@
|
||||||
*: "Kommentar"
|
*: "Kommentar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kommentar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9041,7 +9041,7 @@
|
||||||
*: "Album-artist"
|
*: "Album-artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album-artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9954,7 +9954,7 @@
|
||||||
*: "Arbeid"
|
*: "Arbeid"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Arbeid"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10030,7 +10030,7 @@
|
||||||
*: "Disknum"
|
*: "Disknum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disknum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -11563,7 +11563,7 @@
|
||||||
*: "Komponist"
|
*: "Komponist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komponist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7152,7 +7152,7 @@
|
||||||
*: "Tytuł"
|
*: "Tytuł"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tytuł"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7166,7 +7166,7 @@
|
||||||
*: "Wykonawca"
|
*: "Wykonawca"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Wykonawca"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7180,7 +7180,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7194,7 +7194,7 @@
|
||||||
*: "Nr utworu"
|
*: "Nr utworu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nr utworu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7208,7 +7208,7 @@
|
||||||
*: "Gatunek"
|
*: "Gatunek"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gatunek"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7222,7 +7222,7 @@
|
||||||
*: "Rok"
|
*: "Rok"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Rok"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7236,7 +7236,7 @@
|
||||||
*: "Długość"
|
*: "Długość"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Długość"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7250,7 +7250,7 @@
|
||||||
*: "Lista odtwarzania"
|
*: "Lista odtwarzania"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lista odtwarzania"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7264,7 +7264,7 @@
|
||||||
*: "Prędkość transmisji"
|
*: "Prędkość transmisji"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Prędkość transmisji"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7278,7 +7278,7 @@
|
||||||
*: "Wykonawca Albumu"
|
*: "Wykonawca Albumu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Wykonawca Albumu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7292,7 +7292,7 @@
|
||||||
*: "Numer płyty"
|
*: "Numer płyty"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Numer płyty"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7306,7 +7306,7 @@
|
||||||
*: "Komentarz"
|
*: "Komentarz"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komentarz"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7320,7 +7320,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7334,7 +7334,7 @@
|
||||||
*: "Częstotliwość"
|
*: "Częstotliwość"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Częstotliwość"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7348,7 +7348,7 @@
|
||||||
*: "Wzm. utworu"
|
*: "Wzm. utworu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Wzm. utworu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7362,7 +7362,7 @@
|
||||||
*: "Wzm. albumu"
|
*: "Wzm. albumu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Wzm. albumu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7376,7 +7376,7 @@
|
||||||
*: "Ścieżka"
|
*: "Ścieżka"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ścieżka"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7390,7 +7390,7 @@
|
||||||
*: "<brak danych>"
|
*: "<brak danych>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "brak danych"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10055,7 +10055,7 @@
|
||||||
*: "Praca"
|
*: "Praca"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Praca"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12518,7 +12518,7 @@
|
||||||
*: "Kompozytor"
|
*: "Kompozytor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kompozytor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7139,7 +7139,7 @@
|
||||||
*: "Título"
|
*: "Título"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Título"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7153,7 +7153,7 @@
|
||||||
*: "Artista"
|
*: "Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7167,7 +7167,7 @@
|
||||||
*: "Álbum"
|
*: "Álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7181,7 +7181,7 @@
|
||||||
*: "Faixa Nº"
|
*: "Faixa Nº"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Faixa Nº"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7195,7 +7195,7 @@
|
||||||
*: "Gênero"
|
*: "Gênero"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gênero"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7209,7 +7209,7 @@
|
||||||
*: "Ano"
|
*: "Ano"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ano"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7223,7 +7223,7 @@
|
||||||
*: "Duração"
|
*: "Duração"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Duração"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7237,7 +7237,7 @@
|
||||||
*: "Playlist"
|
*: "Playlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Playlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7251,7 +7251,7 @@
|
||||||
*: "Taxa de Bits"
|
*: "Taxa de Bits"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Taxa de Bits"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7265,7 +7265,7 @@
|
||||||
*: "Artista do Álbum"
|
*: "Artista do Álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista do Álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7279,7 +7279,7 @@
|
||||||
*: "Disco Nº"
|
*: "Disco Nº"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Disco Nº"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7293,7 +7293,7 @@
|
||||||
*: "Comentário"
|
*: "Comentário"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comentário"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7307,7 +7307,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7321,7 +7321,7 @@
|
||||||
*: "Frequência"
|
*: "Frequência"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequência"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7335,7 +7335,7 @@
|
||||||
*: "Ganho da Faixa"
|
*: "Ganho da Faixa"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ganho da Faixa"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7349,7 +7349,7 @@
|
||||||
*: "Ganho do Álbum"
|
*: "Ganho do Álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ganho do Álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7363,7 +7363,7 @@
|
||||||
*: "Caminho"
|
*: "Caminho"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Caminho"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7377,7 +7377,7 @@
|
||||||
*: "<Informação Ausente>"
|
*: "<Informação Ausente>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Informação Ausente"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10043,7 +10043,7 @@
|
||||||
*: "Trabalho"
|
*: "Trabalho"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Trabalho"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12441,7 +12441,7 @@
|
||||||
*: "Compositor"
|
*: "Compositor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compositor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -4486,7 +4486,7 @@
|
||||||
*: "Título"
|
*: "Título"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Título"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4500,7 +4500,7 @@
|
||||||
*: "Artista"
|
*: "Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4514,7 +4514,7 @@
|
||||||
*: "Álbum"
|
*: "Álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4528,7 +4528,7 @@
|
||||||
*: "Faixa Nº"
|
*: "Faixa Nº"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Faixa Nº"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4542,7 +4542,7 @@
|
||||||
*: "Género"
|
*: "Género"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Género"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4570,7 +4570,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4584,7 +4584,7 @@
|
||||||
*: "Frequência"
|
*: "Frequência"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequência"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4598,7 +4598,7 @@
|
||||||
*: "Ganho de Faixa"
|
*: "Ganho de Faixa"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ganho de Faixa"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4612,7 +4612,7 @@
|
||||||
*: "Ganho de Álbum"
|
*: "Ganho de Álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ganho de Álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4626,7 +4626,7 @@
|
||||||
*: "Caminho"
|
*: "Caminho"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Caminho"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4640,7 +4640,7 @@
|
||||||
*: "<Sem Informação>"
|
*: "<Sem Informação>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sem Informação"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8320,7 +8320,7 @@
|
||||||
*: "Trabalho"
|
*: "Trabalho"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Trabalho"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9736,7 +9736,7 @@
|
||||||
*: "Comentário"
|
*: "Comentário"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comentário"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10173,7 +10173,7 @@
|
||||||
*: "Taxa de Bits"
|
*: "Taxa de Bits"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Taxa de Bits"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10218,7 +10218,7 @@
|
||||||
*: "Comprimento"
|
*: "Comprimento"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comprimento"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10277,7 +10277,7 @@
|
||||||
*: "Número do Disco"
|
*: "Número do Disco"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Número do Disco"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10291,7 +10291,7 @@
|
||||||
*: "Artista do Álbum"
|
*: "Artista do Álbum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista do Álbum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10946,7 +10946,7 @@
|
||||||
*: "Playlist"
|
*: "Playlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Playlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12371,7 +12371,7 @@
|
||||||
*: "Compositor"
|
*: "Compositor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compositor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -1662,7 +1662,7 @@
|
||||||
*: "Titlu"
|
*: "Titlu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titlu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1676,7 +1676,7 @@
|
||||||
*: "Artist"
|
*: "Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1690,7 +1690,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1704,7 +1704,7 @@
|
||||||
*: "Nr. pistă"
|
*: "Nr. pistă"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nr. pistă"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1718,7 +1718,7 @@
|
||||||
*: "Gen"
|
*: "Gen"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Gen"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1732,7 +1732,7 @@
|
||||||
*: "An"
|
*: "An"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "An"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1746,7 +1746,7 @@
|
||||||
*: "Lista de redare"
|
*: "Lista de redare"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lista de redare"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1760,7 +1760,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1774,7 +1774,7 @@
|
||||||
*: "Frecvență"
|
*: "Frecvență"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frecvență"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1788,7 +1788,7 @@
|
||||||
*: "Cale"
|
*: "Cale"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Cale"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1802,7 +1802,7 @@
|
||||||
*: "<date lipsă>"
|
*: "<date lipsă>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "date lipsă"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2872,7 +2872,7 @@
|
||||||
*: "(VBR)"
|
*: "(VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3049,7 +3049,7 @@
|
||||||
*: "Comentariu"
|
*: "Comentariu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comentariu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4024,7 +4024,7 @@
|
||||||
*: "Normalizare volum pentru album"
|
*: "Normalizare volum pentru album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Normalizare volum pentru album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -5762,7 +5762,7 @@
|
||||||
*: "Amplificare pistă"
|
*: "Amplificare pistă"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Amplificare pistă"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6722,7 +6722,7 @@
|
||||||
*: "Lucru"
|
*: "Lucru"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lucru"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6910,7 +6910,7 @@
|
||||||
*: "Lungime"
|
*: "Lungime"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lungime"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8227,7 +8227,7 @@
|
||||||
*: "Nr. disc"
|
*: "Nr. disc"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nr. disc"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9371,7 +9371,7 @@
|
||||||
*: "Artistul albumului"
|
*: "Artistul albumului"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artistul albumului"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -11321,7 +11321,7 @@
|
||||||
*: "Compozitor"
|
*: "Compozitor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Compozitor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7141,7 +7141,7 @@
|
||||||
*: "Názov"
|
*: "Názov"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Názov"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7155,7 +7155,7 @@
|
||||||
*: "Interprét"
|
*: "Interprét"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Interprét"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7169,7 +7169,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7183,7 +7183,7 @@
|
||||||
*: "Č. Stopy"
|
*: "Č. Stopy"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Č. Stopy"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7197,7 +7197,7 @@
|
||||||
*: "Žáner"
|
*: "Žáner"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Žáner"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7211,7 +7211,7 @@
|
||||||
*: "Rok"
|
*: "Rok"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Rok"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7225,7 +7225,7 @@
|
||||||
*: "Trvanie"
|
*: "Trvanie"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Trvanie"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7239,7 +7239,7 @@
|
||||||
*: "Plejlist"
|
*: "Plejlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Plejlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7253,7 +7253,7 @@
|
||||||
*: "Počet Bitov"
|
*: "Počet Bitov"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Počet Bitov"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7267,7 +7267,7 @@
|
||||||
*: "Interprét Albumu"
|
*: "Interprét Albumu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Interprét Albumu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7281,7 +7281,7 @@
|
||||||
*: "Č. Disku"
|
*: "Č. Disku"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Č. Disku"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7295,7 +7295,7 @@
|
||||||
*: "Komentár"
|
*: "Komentár"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Komentár"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7309,7 +7309,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7323,7 +7323,7 @@
|
||||||
*: "Frekvencia"
|
*: "Frekvencia"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvencia"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7337,7 +7337,7 @@
|
||||||
*: "Zosilnenie Stopy"
|
*: "Zosilnenie Stopy"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Zosilnenie Stopy"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7351,7 +7351,7 @@
|
||||||
*: "Zosilnenie Albumu"
|
*: "Zosilnenie Albumu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Zosilnenie Albumu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7365,7 +7365,7 @@
|
||||||
*: "Cesta"
|
*: "Cesta"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Cesta"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7379,7 +7379,7 @@
|
||||||
*: "<Bez Infa>"
|
*: "<Bez Infa>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bez Infa"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10045,7 +10045,7 @@
|
||||||
*: "Práca"
|
*: "Práca"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Práca"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12443,7 +12443,7 @@
|
||||||
*: "Autor"
|
*: "Autor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Autor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -1790,7 +1790,7 @@
|
||||||
*: "Naslov"
|
*: "Naslov"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Naslov"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1804,7 +1804,7 @@
|
||||||
*: "Avtor"
|
*: "Avtor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Avtor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1818,7 +1818,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1832,7 +1832,7 @@
|
||||||
*: "Stevika skladbe"
|
*: "Stevika skladbe"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Stevika skladbe"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1846,7 +1846,7 @@
|
||||||
*: "Stil"
|
*: "Stil"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Stil"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1860,7 +1860,7 @@
|
||||||
*: "Leto"
|
*: "Leto"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Leto"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1874,7 +1874,7 @@
|
||||||
*: "Seznam"
|
*: "Seznam"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Seznam"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1888,7 +1888,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1902,7 +1902,7 @@
|
||||||
*: "Frekvenca"
|
*: "Frekvenca"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvenca"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1916,7 +1916,7 @@
|
||||||
*: "Pot"
|
*: "Pot"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pot"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -1930,7 +1930,7 @@
|
||||||
*: "<Ni podatka>"
|
*: "<Ni podatka>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ni podatka"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3276,7 +3276,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3470,7 +3470,7 @@
|
||||||
*: "Comment"
|
*: "Comment"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Comment"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -4528,7 +4528,7 @@
|
||||||
*: "Album Gain"
|
*: "Album Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6580,7 +6580,7 @@
|
||||||
*: "Track Gain"
|
*: "Track Gain"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track Gain"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7648,7 +7648,7 @@
|
||||||
*: "Work"
|
*: "Work"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Work"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7842,7 +7842,7 @@
|
||||||
*: "Length"
|
*: "Length"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Length"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9386,7 +9386,7 @@
|
||||||
*: "Discnum"
|
*: "Discnum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Discnum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10736,7 +10736,7 @@
|
||||||
*: "Album Artist"
|
*: "Album Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12651,7 +12651,7 @@
|
||||||
*: "Sestavljalnik"
|
*: "Sestavljalnik"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sestavljalnik"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7124,7 +7124,7 @@
|
||||||
*: "Наслов"
|
*: "Наслов"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Наслов"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7138,7 +7138,7 @@
|
||||||
*: "Уметник"
|
*: "Уметник"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Уметник"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7152,7 +7152,7 @@
|
||||||
*: "Албум"
|
*: "Албум"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Албум"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7166,7 +7166,7 @@
|
||||||
*: "Бр.нумере"
|
*: "Бр.нумере"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Бр.нумере"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7180,7 +7180,7 @@
|
||||||
*: "Жанр"
|
*: "Жанр"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Жанр"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7194,7 +7194,7 @@
|
||||||
*: "Година"
|
*: "Година"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Година"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7208,7 +7208,7 @@
|
||||||
*: "Дужина"
|
*: "Дужина"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Дужина"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7222,7 +7222,7 @@
|
||||||
*: "Плејлиста"
|
*: "Плејлиста"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Плејлиста"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7236,7 +7236,7 @@
|
||||||
*: "Битски проток"
|
*: "Битски проток"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Битски проток"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7250,7 +7250,7 @@
|
||||||
*: "Уметник Албума"
|
*: "Уметник Албума"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Уметник Албума"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7264,7 +7264,7 @@
|
||||||
*: "Бр.диска"
|
*: "Бр.диска"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Бр.диска"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7278,7 +7278,7 @@
|
||||||
*: "Коментар"
|
*: "Коментар"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Коментар"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7292,7 +7292,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7306,7 +7306,7 @@
|
||||||
*: "Фреквенција"
|
*: "Фреквенција"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Фреквенција"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7320,7 +7320,7 @@
|
||||||
*: "Track појачање"
|
*: "Track појачање"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Track појачање"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7334,7 +7334,7 @@
|
||||||
*: "Album појачање"
|
*: "Album појачање"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album појачање"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7348,7 +7348,7 @@
|
||||||
*: "Путања"
|
*: "Путања"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Путања"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7362,7 +7362,7 @@
|
||||||
*: "<Нема инфо>"
|
*: "<Нема инфо>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Нема инфо"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10028,7 +10028,7 @@
|
||||||
*: "Дело"
|
*: "Дело"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Дело"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12358,7 +12358,7 @@
|
||||||
*: "Композитор"
|
*: "Композитор"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Композитор"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7146,7 +7146,7 @@
|
||||||
*: "Titel"
|
*: "Titel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7160,7 +7160,7 @@
|
||||||
*: "Artist"
|
*: "Artist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7174,7 +7174,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7188,7 +7188,7 @@
|
||||||
*: "Spårnummer"
|
*: "Spårnummer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Spårnummer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7202,7 +7202,7 @@
|
||||||
*: "Genre"
|
*: "Genre"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Genre"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7216,7 +7216,7 @@
|
||||||
*: "År"
|
*: "År"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "År"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7230,7 +7230,7 @@
|
||||||
*: "Längd"
|
*: "Längd"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Längd"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7244,7 +7244,7 @@
|
||||||
*: "Spellista"
|
*: "Spellista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Spellista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7258,7 +7258,7 @@
|
||||||
*: "Datahastighet"
|
*: "Datahastighet"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Datahastighet"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7272,7 +7272,7 @@
|
||||||
*: "Albumartist"
|
*: "Albumartist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumartist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7286,7 +7286,7 @@
|
||||||
*: "Skivnummer"
|
*: "Skivnummer"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Skivnummer"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7300,7 +7300,7 @@
|
||||||
*: "Kommentar"
|
*: "Kommentar"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kommentar"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7314,7 +7314,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7328,7 +7328,7 @@
|
||||||
*: "Frekvens"
|
*: "Frekvens"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekvens"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7342,7 +7342,7 @@
|
||||||
*: "Spårvolymutjämning"
|
*: "Spårvolymutjämning"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Spårvolymutjämning"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7356,7 +7356,7 @@
|
||||||
*: "Albumvolymutjämning"
|
*: "Albumvolymutjämning"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albumvolymutjämning"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7370,7 +7370,7 @@
|
||||||
*: "Sökväg"
|
*: "Sökväg"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sökväg"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7384,7 +7384,7 @@
|
||||||
*: "<Saknas>"
|
*: "<Saknas>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Saknas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10049,7 +10049,7 @@
|
||||||
*: "Verk"
|
*: "Verk"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Verk"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12447,7 +12447,7 @@
|
||||||
*: "Kompositör"
|
*: "Kompositör"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kompositör"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -6368,7 +6368,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6466,7 +6466,7 @@
|
||||||
*: "Pansin"
|
*: "Pansin"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pansin"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6618,7 +6618,7 @@
|
||||||
*: "Playlist"
|
*: "Playlist"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Playlist"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6719,7 +6719,7 @@
|
||||||
*: "<Wala Inpormasyon>"
|
*: "<Wala Inpormasyon>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Wala Inpormasyon"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6879,7 +6879,7 @@
|
||||||
*: "Typo"
|
*: "Typo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Typo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -6997,7 +6997,7 @@
|
||||||
*: "Album tubo"
|
*: "Album tubo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album tubo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7011,7 +7011,7 @@
|
||||||
*: "Artista"
|
*: "Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7137,7 +7137,7 @@
|
||||||
*: "Dalas"
|
*: "Dalas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Dalas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7359,7 +7359,7 @@
|
||||||
*: "Pamagat"
|
*: "Pamagat"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pamagat"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7516,7 +7516,7 @@
|
||||||
*: "Taon"
|
*: "Taon"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Taon"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7953,7 +7953,7 @@
|
||||||
*: "Landas Tubo"
|
*: "Landas Tubo"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Landas Tubo"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8206,7 +8206,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8406,7 +8406,7 @@
|
||||||
*: "Landas"
|
*: "Landas"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Landas"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8532,7 +8532,7 @@
|
||||||
*: "Trabaho"
|
*: "Trabaho"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Trabaho"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8602,7 +8602,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -8644,7 +8644,7 @@
|
||||||
*: "Haba"
|
*: "Haba"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Haba"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9273,7 +9273,7 @@
|
||||||
*: "Discnum"
|
*: "Discnum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Discnum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9391,7 +9391,7 @@
|
||||||
*: "Tracknum"
|
*: "Tracknum"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tracknum"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -9759,7 +9759,7 @@
|
||||||
*: "Album Artista"
|
*: "Album Artista"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album Artista"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12165,7 +12165,7 @@
|
||||||
*: "Kompositor"
|
*: "Kompositor"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Kompositor"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7104,7 +7104,7 @@
|
||||||
*: "ชื่อ"
|
*: "ชื่อ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ชื่อ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7118,7 +7118,7 @@
|
||||||
*: "นักร้อง"
|
*: "นักร้อง"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "นักร้อง"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7132,7 +7132,7 @@
|
||||||
*: "อัลบัม"
|
*: "อัลบัม"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "อัลบัม"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7146,7 +7146,7 @@
|
||||||
*: "เพลงที่"
|
*: "เพลงที่"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "เพลงที่"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7160,7 +7160,7 @@
|
||||||
*: "ประเภท"
|
*: "ประเภท"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ประเภท"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7174,7 +7174,7 @@
|
||||||
*: "ปี"
|
*: "ปี"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ปี"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7188,7 +7188,7 @@
|
||||||
*: "ความยาว"
|
*: "ความยาว"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ความยาว"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7202,7 +7202,7 @@
|
||||||
*: "รายการเพลง"
|
*: "รายการเพลง"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "รายการเพลง"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7216,7 +7216,7 @@
|
||||||
*: "Bitrate"
|
*: "Bitrate"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrate"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7230,7 +7230,7 @@
|
||||||
*: "ศิลปิน"
|
*: "ศิลปิน"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ศิลปิน"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7244,7 +7244,7 @@
|
||||||
*: "แผ่นที่"
|
*: "แผ่นที่"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "แผ่นที่"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7258,7 +7258,7 @@
|
||||||
*: "หมายเหตุ"
|
*: "หมายเหตุ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "หมายเหตุ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7272,7 +7272,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7286,7 +7286,7 @@
|
||||||
*: "ความถี่"
|
*: "ความถี่"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ความถี่"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7300,7 +7300,7 @@
|
||||||
*: "อัตราขยายของเพลง"
|
*: "อัตราขยายของเพลง"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "อัตราขยายของเพลง"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7314,7 +7314,7 @@
|
||||||
*: "อัตราขยายของอัลบัม"
|
*: "อัตราขยายของอัลบัม"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "อัตราขยายของอัลบัม"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7328,7 +7328,7 @@
|
||||||
*: "ที่เก็บ"
|
*: "ที่เก็บ"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ที่เก็บ"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7342,7 +7342,7 @@
|
||||||
*: "<ไม่มีข้อมูล>"
|
*: "<ไม่มีข้อมูล>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ไม่มีข้อมูล"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10009,7 +10009,7 @@
|
||||||
*: "งาน"
|
*: "งาน"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "งาน"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12370,7 +12370,7 @@
|
||||||
*: "ผู้แต่ง"
|
*: "ผู้แต่ง"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "ผู้แต่ง"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -2493,7 +2493,7 @@
|
||||||
*: "Adi"
|
*: "Adi"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Adi"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2507,7 +2507,7 @@
|
||||||
*: "Sanatci"
|
*: "Sanatci"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sanatci"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2521,7 +2521,7 @@
|
||||||
*: "Sarki no"
|
*: "Sarki no"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sarki no"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2535,7 +2535,7 @@
|
||||||
*: "Sarki Listesi"
|
*: "Sarki Listesi"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Sarki Listesi"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2549,7 +2549,7 @@
|
||||||
*: "Frekans"
|
*: "Frekans"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frekans"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2563,7 +2563,7 @@
|
||||||
*: "YOL"
|
*: "YOL"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "YOL"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -3057,7 +3057,7 @@
|
||||||
*: "Çalış"
|
*: "Çalış"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Çalış"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7136,7 +7136,7 @@
|
||||||
*: "Назва"
|
*: "Назва"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Назва"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7150,7 +7150,7 @@
|
||||||
*: "Виконавець"
|
*: "Виконавець"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Виконавець"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7164,7 +7164,7 @@
|
||||||
*: "Альбом"
|
*: "Альбом"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Альбом"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7178,7 +7178,7 @@
|
||||||
*: "Номер треку"
|
*: "Номер треку"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Номер треку"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7192,7 +7192,7 @@
|
||||||
*: "Жанр"
|
*: "Жанр"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Жанр"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7206,7 +7206,7 @@
|
||||||
*: "Рiк"
|
*: "Рiк"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Рiк"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7220,7 +7220,7 @@
|
||||||
*: "Тривалiсть"
|
*: "Тривалiсть"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Тривалiсть"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7234,7 +7234,7 @@
|
||||||
*: "Список вiдтворення"
|
*: "Список вiдтворення"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Список вiдтворення"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7248,7 +7248,7 @@
|
||||||
*: "Бiтрейт"
|
*: "Бiтрейт"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Бiтрейт"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7262,7 +7262,7 @@
|
||||||
*: "Обкладинка Альбому"
|
*: "Обкладинка Альбому"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Обкладинка Альбому"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7276,7 +7276,7 @@
|
||||||
*: "Номер диску"
|
*: "Номер диску"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Номер диску"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7290,7 +7290,7 @@
|
||||||
*: "Коментар"
|
*: "Коментар"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Коментар"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7304,7 +7304,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7318,7 +7318,7 @@
|
||||||
*: "Частота"
|
*: "Частота"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Частота"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7332,7 +7332,7 @@
|
||||||
*: "Пiдсилення Треку"
|
*: "Пiдсилення Треку"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Пiдсилення Треку"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7346,7 +7346,7 @@
|
||||||
*: "Пiдсилення Альбому"
|
*: "Пiдсилення Альбому"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Пiдсилення Альбому"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7360,7 +7360,7 @@
|
||||||
*: "Шлях"
|
*: "Шлях"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Шлях"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7374,7 +7374,7 @@
|
||||||
*: "<Iнформацiя вiдсутня>"
|
*: "<Iнформацiя вiдсутня>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Iнформацiя вiдсутня"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10040,7 +10040,7 @@
|
||||||
*: "Робота"
|
*: "Робота"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Робота"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -12321,7 +12321,7 @@
|
||||||
*: "Композитор"
|
*: "Композитор"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Композитор"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -2715,7 +2715,7 @@
|
||||||
*: "Titel"
|
*: "Titel"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Titel"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2729,7 +2729,7 @@
|
||||||
*: "Künschtler"
|
*: "Künschtler"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Künschtler"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2743,7 +2743,7 @@
|
||||||
*: "Album"
|
*: "Album"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Album"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2757,7 +2757,7 @@
|
||||||
*: "Lied Nr."
|
*: "Lied Nr."
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lied Nr."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2771,7 +2771,7 @@
|
||||||
*: "Stil"
|
*: "Stil"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Stil"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2785,7 +2785,7 @@
|
||||||
*: "Jahr"
|
*: "Jahr"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Jahr"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2799,7 +2799,7 @@
|
||||||
*: "Liederlischta"
|
*: "Liederlischta"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Liederlischta"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2813,7 +2813,7 @@
|
||||||
*: "Bitrata"
|
*: "Bitrata"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Bitrata"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2827,7 +2827,7 @@
|
||||||
*: "Frequänz"
|
*: "Frequänz"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frequänz"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2841,7 +2841,7 @@
|
||||||
*: "Pfad"
|
*: "Pfad"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Pfad"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -2855,7 +2855,7 @@
|
||||||
*: "<kei Info>"
|
*: "<kei Info>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "kei Info"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -7144,7 +7144,7 @@
|
||||||
*: "Tite"
|
*: "Tite"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tite"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7158,7 +7158,7 @@
|
||||||
*: "Årtisse"
|
*: "Årtisse"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Årtisse"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7172,7 +7172,7 @@
|
||||||
*: "Albom"
|
*: "Albom"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Albom"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7186,7 +7186,7 @@
|
||||||
*: "Lim. boket"
|
*: "Lim. boket"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Lim. boket"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7200,7 +7200,7 @@
|
||||||
*: "Cogne"
|
*: "Cogne"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Cogne"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7214,7 +7214,7 @@
|
||||||
*: "Anêye"
|
*: "Anêye"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Anêye"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7228,7 +7228,7 @@
|
||||||
*: "Longueu"
|
*: "Longueu"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Longueu"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7242,7 +7242,7 @@
|
||||||
*: "Djivêye"
|
*: "Djivêye"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Djivêye"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7256,7 +7256,7 @@
|
||||||
*: "Debit"
|
*: "Debit"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Debit"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7270,7 +7270,7 @@
|
||||||
*: "Årtisse di l'albom"
|
*: "Årtisse di l'albom"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Årtisse di l'albom"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7284,7 +7284,7 @@
|
||||||
*: "Limero del plake"
|
*: "Limero del plake"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Limero del plake"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7298,7 +7298,7 @@
|
||||||
*: "Rawete"
|
*: "Rawete"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Rawete"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7312,7 +7312,7 @@
|
||||||
*: " (VBR)"
|
*: " (VBR)"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "VBR"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7326,7 +7326,7 @@
|
||||||
*: "Frécwince"
|
*: "Frécwince"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Frécwince"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7340,7 +7340,7 @@
|
||||||
*: "Crexhaedje pa boket"
|
*: "Crexhaedje pa boket"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Crexhaedje pa boket"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7354,7 +7354,7 @@
|
||||||
*: "Crexhaedje pa albom"
|
*: "Crexhaedje pa albom"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Crexhaedje pa albom"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7368,7 +7368,7 @@
|
||||||
*: "Tchimin"
|
*: "Tchimin"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Tchimin"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -7382,7 +7382,7 @@
|
||||||
*: "<Nole infô.>"
|
*: "<Nole infô.>"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Nole infô."
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
@ -10047,7 +10047,7 @@
|
||||||
*: "Ouve"
|
*: "Ouve"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: "Ouve"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
|
|
|
@ -326,7 +326,7 @@ static bool playlist_viewer_init(struct playlist_viewer * viewer,
|
||||||
if (!have_list)
|
if (!have_list)
|
||||||
{
|
{
|
||||||
/* Nothing to view, exit */
|
/* Nothing to view, exit */
|
||||||
splash(HZ, str(LANG_CATALOG_NO_PLAYLISTS));
|
splash(HZ, ID2P(LANG_CATALOG_NO_PLAYLISTS));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -638,27 +638,28 @@ static enum themable_icons playlist_callback_icons(int selected_item,
|
||||||
static int playlist_callback_voice(int selected_item, void *data)
|
static int playlist_callback_voice(int selected_item, void *data)
|
||||||
{
|
{
|
||||||
struct playlist_viewer *local_viewer = (struct playlist_viewer *)data;
|
struct playlist_viewer *local_viewer = (struct playlist_viewer *)data;
|
||||||
|
struct playlist_entry *track=
|
||||||
int track_num = get_track_num(local_viewer, selected_item);
|
playlist_buffer_get_track(&(local_viewer->buffer),
|
||||||
struct playlist_entry *track =
|
selected_item);
|
||||||
playlist_buffer_get_track(&(local_viewer->buffer), track_num);
|
(void)selected_item;
|
||||||
|
if(global_settings.playlist_viewer_icons) {
|
||||||
bool enqueue = false;
|
if (track->index == local_viewer->current_playing_track)
|
||||||
|
talk_id(LANG_NOW_PLAYING, true);
|
||||||
if (global_settings.talk_file_clip || global_settings.talk_file == 2)
|
if (track->index == local_viewer->moving_track)
|
||||||
{
|
talk_id(VOICE_TRACK_TO_MOVE, true);
|
||||||
if (global_settings.playlist_viewer_indices)
|
if (track->queued)
|
||||||
{
|
talk_id(VOICE_QUEUED, true);
|
||||||
talk_number(track->display_index, false);
|
|
||||||
enqueue = true;
|
|
||||||
}
|
|
||||||
talk_file_or_spell(NULL, track->name, NULL, enqueue);
|
|
||||||
}
|
}
|
||||||
else if (global_settings.talk_file == 1) /* as numbers */
|
if (track->skipped)
|
||||||
{
|
talk_id(VOICE_BAD_TRACK, true);
|
||||||
talk_id(VOICE_FILE, false);
|
if (global_settings.playlist_viewer_indices)
|
||||||
talk_number(track->display_index, true);
|
talk_number(track->display_index, true);
|
||||||
}
|
|
||||||
|
if(global_settings.playlist_viewer_track_display)
|
||||||
|
talk_fullpath(track->name, true);
|
||||||
|
else talk_file_or_spell(NULL, track->name, NULL, true);
|
||||||
|
if (viewer.moving_track != -1)
|
||||||
|
talk_ids(true,VOICE_PAUSE, VOICE_MOVING_TRACK);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -678,7 +679,9 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
||||||
push_current_activity(ACTIVITY_PLAYLISTVIEWER);
|
push_current_activity(ACTIVITY_PLAYLISTVIEWER);
|
||||||
gui_synclist_init(&playlist_lists, playlist_callback_name,
|
gui_synclist_init(&playlist_lists, playlist_callback_name,
|
||||||
&viewer, false, 1, NULL);
|
&viewer, false, 1, NULL);
|
||||||
gui_synclist_set_voice_callback(&playlist_lists, playlist_callback_voice);
|
gui_synclist_set_voice_callback(&playlist_lists,
|
||||||
|
global_settings.talk_file?
|
||||||
|
&playlist_callback_voice:NULL);
|
||||||
gui_synclist_set_icon_callback(&playlist_lists,
|
gui_synclist_set_icon_callback(&playlist_lists,
|
||||||
global_settings.playlist_viewer_icons?
|
global_settings.playlist_viewer_icons?
|
||||||
&playlist_callback_icons:NULL);
|
&playlist_callback_icons:NULL);
|
||||||
|
@ -708,6 +711,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
||||||
gui_synclist_set_nb_items(&playlist_lists, viewer.num_tracks);
|
gui_synclist_set_nb_items(&playlist_lists, viewer.num_tracks);
|
||||||
|
|
||||||
gui_synclist_draw(&playlist_lists);
|
gui_synclist_draw(&playlist_lists);
|
||||||
|
gui_synclist_speak_item(&playlist_lists);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Timeout so we can determine if play status has changed */
|
/* Timeout so we can determine if play status has changed */
|
||||||
|
@ -740,6 +744,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
||||||
viewer.moving_track = -1;
|
viewer.moving_track = -1;
|
||||||
viewer.moving_playlist_index = -1;
|
viewer.moving_playlist_index = -1;
|
||||||
gui_synclist_draw(&playlist_lists);
|
gui_synclist_draw(&playlist_lists);
|
||||||
|
gui_synclist_speak_item(&playlist_lists);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -763,8 +768,11 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
||||||
viewer.moving_playlist_index,
|
viewer.moving_playlist_index,
|
||||||
current_track->index);
|
current_track->index);
|
||||||
if (ret_val < 0)
|
if (ret_val < 0)
|
||||||
|
{
|
||||||
|
cond_talk_ids_fq(LANG_MOVE, LANG_FAILED);
|
||||||
splashf(HZ, (unsigned char *)"%s %s", str(LANG_MOVE),
|
splashf(HZ, (unsigned char *)"%s %s", str(LANG_MOVE),
|
||||||
str(LANG_FAILED));
|
str(LANG_FAILED));
|
||||||
|
}
|
||||||
update_playlist(true);
|
update_playlist(true);
|
||||||
viewer.moving_track = -1;
|
viewer.moving_track = -1;
|
||||||
viewer.moving_playlist_index = -1;
|
viewer.moving_playlist_index = -1;
|
||||||
|
@ -800,6 +808,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
||||||
exit = true;
|
exit = true;
|
||||||
}
|
}
|
||||||
gui_synclist_draw(&playlist_lists);
|
gui_synclist_draw(&playlist_lists);
|
||||||
|
gui_synclist_speak_item(&playlist_lists);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -833,6 +842,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
||||||
global_settings.playlist_viewer_icons?
|
global_settings.playlist_viewer_icons?
|
||||||
&playlist_callback_icons:NULL);
|
&playlist_callback_icons:NULL);
|
||||||
gui_synclist_draw(&playlist_lists);
|
gui_synclist_draw(&playlist_lists);
|
||||||
|
gui_synclist_speak_item(&playlist_lists);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ACTION_STD_MENU:
|
case ACTION_STD_MENU:
|
||||||
|
@ -849,6 +859,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
|
||||||
}
|
}
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
|
talk_shutup();
|
||||||
pop_current_activity();
|
pop_current_activity();
|
||||||
if (viewer.playlist)
|
if (viewer.playlist)
|
||||||
{
|
{
|
||||||
|
@ -870,6 +881,17 @@ static const char* playlist_search_callback_name(int selected_item, void * data,
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int say_search_item(int selected_item, void *data)
|
||||||
|
{
|
||||||
|
int *found_indicies = (int*)data;
|
||||||
|
static struct playlist_track_info track;
|
||||||
|
playlist_get_track_info(viewer.playlist,found_indicies[selected_item],&track);
|
||||||
|
if(global_settings.playlist_viewer_track_display)
|
||||||
|
talk_fullpath(track.filename, false);
|
||||||
|
else talk_file_or_spell(NULL, track.filename, NULL, false);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
bool search_playlist(void)
|
bool search_playlist(void)
|
||||||
{
|
{
|
||||||
char search_str[32] = "";
|
char search_str[32] = "";
|
||||||
|
@ -887,6 +909,7 @@ bool search_playlist(void)
|
||||||
return ret;
|
return ret;
|
||||||
lcd_clear_display();
|
lcd_clear_display();
|
||||||
playlist_count = playlist_amount_ex(viewer.playlist);
|
playlist_count = playlist_amount_ex(viewer.playlist);
|
||||||
|
cond_talk_ids_fq(LANG_WAIT);
|
||||||
|
|
||||||
cpu_boost(true);
|
cpu_boost(true);
|
||||||
|
|
||||||
|
@ -913,6 +936,8 @@ bool search_playlist(void)
|
||||||
|
|
||||||
cpu_boost(false);
|
cpu_boost(false);
|
||||||
|
|
||||||
|
cond_talk_ids_fq(TALK_ID(found_indicies_count, UNIT_INT),
|
||||||
|
LANG_PLAYLIST_SEARCH_MSG);
|
||||||
if (!found_indicies_count)
|
if (!found_indicies_count)
|
||||||
{
|
{
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -923,9 +948,14 @@ bool search_playlist(void)
|
||||||
found_indicies, false, 1, NULL);
|
found_indicies, false, 1, NULL);
|
||||||
gui_synclist_set_title(&playlist_lists, str(LANG_SEARCH_RESULTS), NOICON);
|
gui_synclist_set_title(&playlist_lists, str(LANG_SEARCH_RESULTS), NOICON);
|
||||||
gui_synclist_set_icon_callback(&playlist_lists, NULL);
|
gui_synclist_set_icon_callback(&playlist_lists, NULL);
|
||||||
|
if(global_settings.talk_file)
|
||||||
|
gui_synclist_set_voice_callback(&playlist_lists,
|
||||||
|
global_settings.talk_file?
|
||||||
|
&say_search_item:NULL);
|
||||||
gui_synclist_set_nb_items(&playlist_lists, found_indicies_count);
|
gui_synclist_set_nb_items(&playlist_lists, found_indicies_count);
|
||||||
gui_synclist_select_item(&playlist_lists, 0);
|
gui_synclist_select_item(&playlist_lists, 0);
|
||||||
gui_synclist_draw(&playlist_lists);
|
gui_synclist_draw(&playlist_lists);
|
||||||
|
gui_synclist_speak_item(&playlist_lists);
|
||||||
while (!exit)
|
while (!exit)
|
||||||
{
|
{
|
||||||
if (list_do_action(CONTEXT_LIST, HZ/4,
|
if (list_do_action(CONTEXT_LIST, HZ/4,
|
||||||
|
@ -954,5 +984,6 @@ bool search_playlist(void)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
talk_shutup();
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
181
apps/screens.c
181
apps/screens.c
|
@ -22,6 +22,7 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include "backlight.h"
|
#include "backlight.h"
|
||||||
#include "action.h"
|
#include "action.h"
|
||||||
#include "lcd.h"
|
#include "lcd.h"
|
||||||
|
@ -81,6 +82,7 @@ int mmc_remove_request(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#include "ctype.h"
|
||||||
|
|
||||||
/* the charging screen is only used for archos targets */
|
/* the charging screen is only used for archos targets */
|
||||||
#if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING) && defined(CPU_SH)
|
#if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING) && defined(CPU_SH)
|
||||||
|
@ -643,14 +645,102 @@ struct id3view_info {
|
||||||
int info_id[ARRAYLEN(id3_headers)];
|
int info_id[ARRAYLEN(id3_headers)];
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char* id3_get_info(int selected_item, void* data,
|
/* Spell out a buffer, but when successive digits are encountered, say
|
||||||
char *buffer, size_t buffer_len)
|
the whole number. Useful for some ID3 tags that usually contain a
|
||||||
|
number but are in fact free-form. */
|
||||||
|
static void say_number_and_spell(char *buf, bool year_style)
|
||||||
|
{
|
||||||
|
char *ptr = buf;
|
||||||
|
while(*ptr) {
|
||||||
|
if(isdigit(*ptr)) {
|
||||||
|
/* parse the number */
|
||||||
|
int n = atoi(ptr);
|
||||||
|
/* skip over digits to rest of string */
|
||||||
|
while(isdigit(*++ptr));
|
||||||
|
/* say the number */
|
||||||
|
if(year_style)
|
||||||
|
talk_value(n, UNIT_DATEYEAR, true);
|
||||||
|
else talk_number(n, true);
|
||||||
|
}else{
|
||||||
|
/* Spell a sequence of non-digits */
|
||||||
|
char tmp, *start = ptr;
|
||||||
|
while(*++ptr && !isdigit(*ptr));
|
||||||
|
/* temporarily truncate the string here */
|
||||||
|
tmp = *ptr;
|
||||||
|
*ptr = '\0';
|
||||||
|
talk_spell(start, true);
|
||||||
|
*ptr = tmp; /* restore string */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Say a replaygain ID3 value from its text form */
|
||||||
|
static void say_gain(char *buf)
|
||||||
|
{
|
||||||
|
/* Expected form is "-5.74 dB". We'll try to parse out the number
|
||||||
|
until the dot, say it (forcing the + sign), then say dot and
|
||||||
|
spell the following numbers, and then say the decibel unit. */
|
||||||
|
char *ptr = buf;
|
||||||
|
if(*ptr == '-' || *ptr == '+')
|
||||||
|
/* skip sign */
|
||||||
|
++ptr;
|
||||||
|
/* See if we can parse out a number. */
|
||||||
|
if(isdigit(*ptr)) {
|
||||||
|
char tmp;
|
||||||
|
/* skip successive digits */
|
||||||
|
while(isdigit(*++ptr));
|
||||||
|
/* temporarily truncate the string here */
|
||||||
|
tmp = *ptr;
|
||||||
|
*ptr = '\0';
|
||||||
|
/* parse out the number we just skipped */
|
||||||
|
talk_value(atoi(buf), UNIT_SIGNED, true); /* say the number with sign */
|
||||||
|
*ptr = tmp; /* restore the string */
|
||||||
|
if(*ptr == '.') {
|
||||||
|
/* found the dot, get fractional part */
|
||||||
|
buf = ptr;
|
||||||
|
while (isdigit(*++ptr));
|
||||||
|
while (*--ptr == '0');
|
||||||
|
if (ptr > buf) {
|
||||||
|
tmp = *++ptr;
|
||||||
|
*ptr = '\0';
|
||||||
|
talk_id(LANG_POINT, true);
|
||||||
|
while (*++buf == '0')
|
||||||
|
talk_id(VOICE_ZERO, true);
|
||||||
|
talk_number(atoi(buf), true);
|
||||||
|
*ptr = tmp;
|
||||||
|
}
|
||||||
|
ptr = buf;
|
||||||
|
while (isdigit(*++ptr));
|
||||||
|
}
|
||||||
|
buf = ptr;
|
||||||
|
if(strlen(buf) >2 && !strcmp(buf+strlen(buf)-2, "dB")) {
|
||||||
|
/* String does end with "dB" */
|
||||||
|
/* point to that "dB" */
|
||||||
|
ptr = buf+strlen(buf)-2;
|
||||||
|
/* backup any spaces */
|
||||||
|
while (ptr >buf && ptr[-1] == ' ')
|
||||||
|
--ptr;
|
||||||
|
if (ptr > buf)
|
||||||
|
talk_spell(buf, true);
|
||||||
|
else talk_id(VOICE_DB, true); /* say the dB unit */
|
||||||
|
}else /* doesn't end with dB, just spell everything after the
|
||||||
|
number of dot. */
|
||||||
|
talk_spell(buf, true);
|
||||||
|
}else /* we didn't find a number, just spell everything */
|
||||||
|
talk_spell(buf, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const char * id3_get_or_speak_info(int selected_item, void* data,
|
||||||
|
char *buffer, size_t buffer_len,
|
||||||
|
bool say_it)
|
||||||
{
|
{
|
||||||
struct id3view_info *info = (struct id3view_info*)data;
|
struct id3view_info *info = (struct id3view_info*)data;
|
||||||
struct mp3entry* id3 =info->id3;
|
struct mp3entry* id3 =info->id3;
|
||||||
int info_no=selected_item/2;
|
int info_no=selected_item/2;
|
||||||
if(!(selected_item%2))
|
if(!(selected_item%2))
|
||||||
{/* header */
|
{/* header */
|
||||||
|
if(say_it)
|
||||||
|
talk_id(id3_headers[info->info_id[info_no]], false);
|
||||||
snprintf(buffer, buffer_len,
|
snprintf(buffer, buffer_len,
|
||||||
"[%s]", str(id3_headers[info->info_id[info_no]]));
|
"[%s]", str(id3_headers[info->info_id[info_no]]));
|
||||||
return buffer;
|
return buffer;
|
||||||
|
@ -663,35 +753,57 @@ static const char* id3_get_info(int selected_item, void* data,
|
||||||
{
|
{
|
||||||
case LANG_ID3_TITLE:
|
case LANG_ID3_TITLE:
|
||||||
val=id3->title;
|
val=id3->title;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_ARTIST:
|
case LANG_ID3_ARTIST:
|
||||||
val=id3->artist;
|
val=id3->artist;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_ALBUM:
|
case LANG_ID3_ALBUM:
|
||||||
val=id3->album;
|
val=id3->album;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_ALBUMARTIST:
|
case LANG_ID3_ALBUMARTIST:
|
||||||
val=id3->albumartist;
|
val=id3->albumartist;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_GROUPING:
|
case LANG_ID3_GROUPING:
|
||||||
val=id3->grouping;
|
val=id3->grouping;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_DISCNUM:
|
case LANG_ID3_DISCNUM:
|
||||||
if (id3->disc_string)
|
if (id3->disc_string)
|
||||||
|
{
|
||||||
val = id3->disc_string;
|
val = id3->disc_string;
|
||||||
|
if(say_it)
|
||||||
|
say_number_and_spell(val, true);
|
||||||
|
}
|
||||||
else if (id3->discnum)
|
else if (id3->discnum)
|
||||||
{
|
{
|
||||||
snprintf(buffer, buffer_len, "%d", id3->discnum);
|
snprintf(buffer, buffer_len, "%d", id3->discnum);
|
||||||
val = buffer;
|
val = buffer;
|
||||||
|
if(say_it)
|
||||||
|
talk_number(id3->discnum, true);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_TRACKNUM:
|
case LANG_ID3_TRACKNUM:
|
||||||
if (id3->track_string)
|
if (id3->track_string)
|
||||||
|
{
|
||||||
val = id3->track_string;
|
val = id3->track_string;
|
||||||
|
if(say_it)
|
||||||
|
say_number_and_spell(val, true);
|
||||||
|
}
|
||||||
else if (id3->tracknum)
|
else if (id3->tracknum)
|
||||||
{
|
{
|
||||||
snprintf(buffer, buffer_len, "%d", id3->tracknum);
|
snprintf(buffer, buffer_len, "%d", id3->tracknum);
|
||||||
val = buffer;
|
val = buffer;
|
||||||
|
if(say_it)
|
||||||
|
talk_number(id3->tracknum, true);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_COMMENT:
|
case LANG_ID3_COMMENT:
|
||||||
|
@ -699,62 +811,119 @@ static const char* id3_get_info(int selected_item, void* data,
|
||||||
return NULL;
|
return NULL;
|
||||||
snprintf(buffer, buffer_len, "%s", id3->comment);
|
snprintf(buffer, buffer_len, "%s", id3->comment);
|
||||||
val=buffer;
|
val=buffer;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_GENRE:
|
case LANG_ID3_GENRE:
|
||||||
val = id3->genre_string;
|
val = id3->genre_string;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_YEAR:
|
case LANG_ID3_YEAR:
|
||||||
if (id3->year_string)
|
if (id3->year_string)
|
||||||
|
{
|
||||||
val = id3->year_string;
|
val = id3->year_string;
|
||||||
|
if(say_it && val)
|
||||||
|
say_number_and_spell(val, true);
|
||||||
|
}
|
||||||
else if (id3->year)
|
else if (id3->year)
|
||||||
{
|
{
|
||||||
snprintf(buffer, buffer_len, "%d", id3->year);
|
snprintf(buffer, buffer_len, "%d", id3->year);
|
||||||
val = buffer;
|
val = buffer;
|
||||||
|
if(say_it)
|
||||||
|
talk_value(id3->year, UNIT_DATEYEAR, true);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_LENGTH:
|
case LANG_ID3_LENGTH:
|
||||||
format_time(buffer, buffer_len, id3->length);
|
format_time(buffer, buffer_len, id3->length);
|
||||||
val=buffer;
|
val=buffer;
|
||||||
|
if(say_it)
|
||||||
|
talk_value(id3->length /1000, UNIT_TIME, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_PLAYLIST:
|
case LANG_ID3_PLAYLIST:
|
||||||
snprintf(buffer, buffer_len, "%d/%d",
|
snprintf(buffer, buffer_len, "%d/%d",
|
||||||
playlist_get_display_index(), playlist_amount());
|
playlist_get_display_index(), playlist_amount());
|
||||||
val=buffer;
|
val=buffer;
|
||||||
|
if(say_it)
|
||||||
|
{
|
||||||
|
talk_number(playlist_get_display_index(), true);
|
||||||
|
talk_id(VOICE_OF, true);
|
||||||
|
talk_number(playlist_amount(), true);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_BITRATE:
|
case LANG_ID3_BITRATE:
|
||||||
snprintf(buffer, buffer_len, "%d kbps%s", id3->bitrate,
|
snprintf(buffer, buffer_len, "%d kbps%s", id3->bitrate,
|
||||||
id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) "");
|
id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) "");
|
||||||
val=buffer;
|
val=buffer;
|
||||||
|
if(say_it)
|
||||||
|
{
|
||||||
|
talk_value(id3->bitrate, UNIT_KBIT, true);
|
||||||
|
if(id3->vbr)
|
||||||
|
talk_id(LANG_ID3_VBR, true);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_FREQUENCY:
|
case LANG_ID3_FREQUENCY:
|
||||||
snprintf(buffer, buffer_len, "%ld Hz", id3->frequency);
|
snprintf(buffer, buffer_len, "%ld Hz", id3->frequency);
|
||||||
val=buffer;
|
val=buffer;
|
||||||
|
if(say_it)
|
||||||
|
talk_value(id3->frequency, UNIT_HERTZ, true);
|
||||||
break;
|
break;
|
||||||
#if CONFIG_CODEC == SWCODEC
|
#if CONFIG_CODEC == SWCODEC
|
||||||
case LANG_ID3_TRACK_GAIN:
|
case LANG_ID3_TRACK_GAIN:
|
||||||
replaygain_itoa(buffer, buffer_len, id3->track_level);
|
replaygain_itoa(buffer, buffer_len, id3->track_level);
|
||||||
val=(id3->track_level) ? buffer : NULL; /* only show level!=0 */
|
val=(id3->track_level) ? buffer : NULL; /* only show level!=0 */
|
||||||
|
if(say_it && val)
|
||||||
|
say_gain(val);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_ALBUM_GAIN:
|
case LANG_ID3_ALBUM_GAIN:
|
||||||
replaygain_itoa(buffer, buffer_len, id3->album_level);
|
replaygain_itoa(buffer, buffer_len, id3->album_level);
|
||||||
val=(id3->album_level) ? buffer : NULL; /* only show level!=0 */
|
val=(id3->album_level) ? buffer : NULL; /* only show level!=0 */
|
||||||
|
if(say_it && val)
|
||||||
|
say_gain(val);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case LANG_ID3_PATH:
|
case LANG_ID3_PATH:
|
||||||
val=id3->path;
|
val=id3->path;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_fullpath(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_ID3_COMPOSER:
|
case LANG_ID3_COMPOSER:
|
||||||
val=id3->composer;
|
val=id3->composer;
|
||||||
|
if(say_it && val)
|
||||||
|
talk_spell(val, true);
|
||||||
break;
|
break;
|
||||||
case LANG_FILESIZE: /* not LANG_ID3_FILESIZE because the string is shared */
|
case LANG_FILESIZE: /* not LANG_ID3_FILESIZE because the string is shared */
|
||||||
output_dyn_value(buffer, buffer_len, id3->filesize, byte_units, 4, true);
|
output_dyn_value(buffer, buffer_len, id3->filesize, byte_units, 4, true);
|
||||||
val=buffer;
|
val=buffer;
|
||||||
|
if(say_it && val)
|
||||||
|
output_dyn_value(NULL, 0, id3->filesize, byte_units, true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if((!val || !*val) && say_it)
|
||||||
|
talk_id(LANG_ID3_NO_INFO, true);
|
||||||
return val && *val ? val : NULL;
|
return val && *val ? val : NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* gui_synclist callback */
|
||||||
|
static const char* id3_get_info(int selected_item, void* data,
|
||||||
|
char *buffer, size_t buffer_len)
|
||||||
|
{
|
||||||
|
return id3_get_or_speak_info(selected_item, data, buffer,
|
||||||
|
buffer_len, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int id3_speak_item(int selected_item, void* data)
|
||||||
|
{
|
||||||
|
char buffer[MAX_PATH];
|
||||||
|
selected_item &= ~1; /* Make sure it's even, to indicate the header */
|
||||||
|
/* say field name */
|
||||||
|
id3_get_or_speak_info(selected_item, data, buffer, MAX_PATH, true);
|
||||||
|
/* and field value */
|
||||||
|
id3_get_or_speak_info(selected_item+1, data, buffer, MAX_PATH, true);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
bool browse_id3(void)
|
bool browse_id3(void)
|
||||||
{
|
{
|
||||||
struct gui_synclist id3_lists;
|
struct gui_synclist id3_lists;
|
||||||
|
@ -775,11 +944,15 @@ bool browse_id3(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
gui_synclist_init(&id3_lists, &id3_get_info, &info, true, 2, NULL);
|
gui_synclist_init(&id3_lists, &id3_get_info, &info, true, 2, NULL);
|
||||||
|
if(global_settings.talk_menu)
|
||||||
|
gui_synclist_set_voice_callback(&id3_lists, id3_speak_item);
|
||||||
gui_synclist_set_nb_items(&id3_lists, info.count*2);
|
gui_synclist_set_nb_items(&id3_lists, info.count*2);
|
||||||
gui_synclist_draw(&id3_lists);
|
gui_synclist_draw(&id3_lists);
|
||||||
|
gui_synclist_speak_item(&id3_lists);
|
||||||
while (true) {
|
while (true) {
|
||||||
key = get_action(CONTEXT_LIST,HZ/2);
|
if(!list_do_action(CONTEXT_LIST,HZ/2,
|
||||||
if(!gui_synclist_do_button(&id3_lists, &key,LIST_WRAP_UNLESS_HELD))
|
&id3_lists, &key,LIST_WRAP_UNLESS_HELD)
|
||||||
|
&& key!=ACTION_NONE && key!=ACTION_UNKNOWN)
|
||||||
{
|
{
|
||||||
if (key == ACTION_STD_OK || key == ACTION_STD_CANCEL)
|
if (key == ACTION_STD_OK || key == ACTION_STD_CANCEL)
|
||||||
{
|
{
|
||||||
|
|
56
apps/talk.c
56
apps/talk.c
|
@ -1191,6 +1191,33 @@ int talk_dir_or_spell(const char* dirname,
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Speak thumbnail for each component of a full path, again falling
|
||||||
|
back or going straight to spelling depending on settings. */
|
||||||
|
int talk_fullpath(const char* path, bool enqueue)
|
||||||
|
{
|
||||||
|
if (!enqueue)
|
||||||
|
talk_shutup();
|
||||||
|
if(path[0] != '/')
|
||||||
|
/* path ought to start with /... */
|
||||||
|
return talk_spell(path, true);
|
||||||
|
talk_id(VOICE_CHAR_SLASH, true);
|
||||||
|
char buf[MAX_PATH];
|
||||||
|
strlcpy(buf, path, MAX_PATH);
|
||||||
|
char *start = buf+1; /* start of current component */
|
||||||
|
char *ptr = strchr(start, '/'); /* end of current component */
|
||||||
|
while(ptr) { /* There are more slashes ahead */
|
||||||
|
/* temporarily poke a NULL at end of component to truncate string */
|
||||||
|
*ptr = '\0';
|
||||||
|
talk_dir_or_spell(buf, NULL, true);
|
||||||
|
*ptr = '/'; /* restore string */
|
||||||
|
talk_id(VOICE_CHAR_SLASH, true);
|
||||||
|
start = ptr+1; /* setup for next component */
|
||||||
|
ptr = strchr(start, '/');
|
||||||
|
}
|
||||||
|
/* no more slashes, final component is a filename */
|
||||||
|
return talk_file_or_spell(NULL, buf, NULL, true);
|
||||||
|
}
|
||||||
|
|
||||||
/* say a numeric value, this word ordering works for english,
|
/* say a numeric value, this word ordering works for english,
|
||||||
but not necessarily for other languages (e.g. german) */
|
but not necessarily for other languages (e.g. german) */
|
||||||
int talk_number(long n, bool enqueue)
|
int talk_number(long n, bool enqueue)
|
||||||
|
@ -1257,6 +1284,27 @@ int talk_number(long n, bool enqueue)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Say year like "nineteen ninety nine" instead of "one thousand 9
|
||||||
|
hundred ninety nine". */
|
||||||
|
static int talk_year(long year, bool enqueue)
|
||||||
|
{
|
||||||
|
int rem;
|
||||||
|
if(year < 1100 || year >=2000)
|
||||||
|
/* just say it as a regular number */
|
||||||
|
return talk_number(year, enqueue);
|
||||||
|
/* Say century */
|
||||||
|
talk_number(year/100, enqueue);
|
||||||
|
rem = year%100;
|
||||||
|
if(rem == 0)
|
||||||
|
/* as in 1900 */
|
||||||
|
return talk_id(VOICE_HUNDRED, true);
|
||||||
|
if(rem <10)
|
||||||
|
/* as in 1905 */
|
||||||
|
talk_id(VOICE_ZERO, true);
|
||||||
|
/* sub-century year */
|
||||||
|
return talk_number(rem, true);
|
||||||
|
}
|
||||||
|
|
||||||
/* Say time duration/interval. Input is time in seconds,
|
/* Say time duration/interval. Input is time in seconds,
|
||||||
say hours,minutes,seconds. */
|
say hours,minutes,seconds. */
|
||||||
static int talk_time_unit(long secs, bool enqueue)
|
static int talk_time_unit(long secs, bool enqueue)
|
||||||
|
@ -1349,6 +1397,9 @@ int talk_value_decimal(long n, int unit, int decimals, bool enqueue)
|
||||||
if (!check_audio_status())
|
if (!check_audio_status())
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
/* special pronounciation for year number */
|
||||||
|
if (unit == UNIT_DATEYEAR)
|
||||||
|
return talk_year(n, enqueue);
|
||||||
/* special case for time duration */
|
/* special case for time duration */
|
||||||
if (unit == UNIT_TIME)
|
if (unit == UNIT_TIME)
|
||||||
return talk_time_unit(n, enqueue);
|
return talk_time_unit(n, enqueue);
|
||||||
|
@ -1496,10 +1547,7 @@ void talk_time(const struct tm *tm, bool enqueue)
|
||||||
/* Voice the time in 24 hour format */
|
/* Voice the time in 24 hour format */
|
||||||
talk_number(tm->tm_hour, enqueue);
|
talk_number(tm->tm_hour, enqueue);
|
||||||
if (tm->tm_min == 0)
|
if (tm->tm_min == 0)
|
||||||
{
|
talk_ids(true, VOICE_HUNDRED, VOICE_HOUR);
|
||||||
talk_id(VOICE_HUNDRED, true);
|
|
||||||
talk_id(VOICE_HOUR, true);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Pronounce the leading 0 */
|
/* Pronounce the leading 0 */
|
||||||
|
|
|
@ -51,6 +51,7 @@ enum {
|
||||||
UNIT_KBIT, /* kilobits per sec */
|
UNIT_KBIT, /* kilobits per sec */
|
||||||
UNIT_PM_TICK, /* peak meter units per tick */
|
UNIT_PM_TICK, /* peak meter units per tick */
|
||||||
UNIT_TIME, /* time duration/interval in seconds, says hours,mins,secs */
|
UNIT_TIME, /* time duration/interval in seconds, says hours,mins,secs */
|
||||||
|
UNIT_DATEYEAR,/* for 1999 say nineteen ninety nine */
|
||||||
UNIT_LAST /* END MARKER */
|
UNIT_LAST /* END MARKER */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -111,6 +112,8 @@ int talk_file_or_spell(const char *dirname, const char* filename,
|
||||||
int talk_dir_or_spell(const char* filename,
|
int talk_dir_or_spell(const char* filename,
|
||||||
const long *prefix_ids, bool enqueue);
|
const long *prefix_ids, bool enqueue);
|
||||||
#endif
|
#endif
|
||||||
|
/* play thumbnails for each components of full path, or spell */
|
||||||
|
int talk_fullpath(const char* path, bool enqueue);
|
||||||
int talk_number(long n, bool enqueue); /* say a number */
|
int talk_number(long n, bool enqueue); /* say a number */
|
||||||
int talk_value(long n, int unit, bool enqueue); /* say a numeric value */
|
int talk_value(long n, int unit, bool enqueue); /* say a numeric value */
|
||||||
int talk_value_decimal(long n, int unit, int decimals, bool enqueue);
|
int talk_value_decimal(long n, int unit, int decimals, bool enqueue);
|
||||||
|
|
63
apps/tree.c
63
apps/tree.c
|
@ -102,7 +102,7 @@ static int curr_context = false;/* id3db or tree*/
|
||||||
|
|
||||||
static int dirbrowse(void);
|
static int dirbrowse(void);
|
||||||
static int ft_play_dirname(char* name);
|
static int ft_play_dirname(char* name);
|
||||||
static void ft_play_filename(char *dir, char *file);
|
static int ft_play_filename(char *dir, char *file, int attr);
|
||||||
static void say_filetype(int attr);
|
static void say_filetype(int attr);
|
||||||
|
|
||||||
struct entry* tree_get_entries(struct tree_context *t)
|
struct entry* tree_get_entries(struct tree_context *t)
|
||||||
|
@ -238,7 +238,7 @@ static int tree_voice_cb(int selected_item, void * data)
|
||||||
if(global_settings.talk_dir_clip)
|
if(global_settings.talk_dir_clip)
|
||||||
{
|
{
|
||||||
did_clip = true;
|
did_clip = true;
|
||||||
if(ft_play_dirname(name) <0)
|
if (ft_play_dirname(name) <= 0)
|
||||||
/* failed, not existing */
|
/* failed, not existing */
|
||||||
did_clip = false;
|
did_clip = false;
|
||||||
}
|
}
|
||||||
|
@ -246,7 +246,9 @@ static int tree_voice_cb(int selected_item, void * data)
|
||||||
if (global_settings.talk_file_clip && (attr & FILE_ATTR_THUMBNAIL))
|
if (global_settings.talk_file_clip && (attr & FILE_ATTR_THUMBNAIL))
|
||||||
{
|
{
|
||||||
did_clip = true;
|
did_clip = true;
|
||||||
ft_play_filename(local_tc->currdir, name);
|
if (ft_play_filename(local_tc->currdir, name, attr) <= 0)
|
||||||
|
/* failed, not existing */
|
||||||
|
did_clip = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!did_clip)
|
if(!did_clip)
|
||||||
|
@ -1175,17 +1177,25 @@ bool bookmark_play(char *resume_file, int index, unsigned long elapsed,
|
||||||
return started;
|
return started;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static long filetype_voiceclip(int attr)
|
||||||
|
{
|
||||||
|
int j;
|
||||||
|
if (global_settings.talk_filetype)
|
||||||
|
{
|
||||||
|
/* try to find a voice ID for the extension, if known */
|
||||||
|
attr &= FILE_ATTR_MASK; /* file type */
|
||||||
|
for (j=0; j<filetypes_count; j++)
|
||||||
|
if (attr == filetypes[j].tree_attr)
|
||||||
|
{
|
||||||
|
return filetypes[j].voiceclip;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
static void say_filetype(int attr)
|
static void say_filetype(int attr)
|
||||||
{
|
{
|
||||||
/* try to find a voice ID for the extension, if known */
|
talk_id(filetype_voiceclip(attr), true);
|
||||||
int j;
|
|
||||||
attr &= FILE_ATTR_MASK; /* file type */
|
|
||||||
for (j=0; j<filetypes_count; j++)
|
|
||||||
if (attr == filetypes[j].tree_attr)
|
|
||||||
{
|
|
||||||
talk_id(filetypes[j].voiceclip, true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ft_play_dirname(char* name)
|
static int ft_play_dirname(char* name)
|
||||||
|
@ -1195,34 +1205,29 @@ static int ft_play_dirname(char* name)
|
||||||
return 0;
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if(talk_file(tc.currdir, name, dir_thumbnail_name, NULL,
|
return talk_file(tc.currdir, name, dir_thumbnail_name, NULL,
|
||||||
NULL, false))
|
global_settings.talk_filetype ?
|
||||||
{
|
TALK_IDARRAY(VOICE_DIR) : NULL,
|
||||||
if(global_settings.talk_filetype)
|
false);
|
||||||
talk_id(VOICE_DIR, true);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ft_play_filename(char *dir, char *file)
|
static int ft_play_filename(char *dir, char *file, int attr)
|
||||||
{
|
{
|
||||||
#if CONFIG_CODEC != SWCODEC
|
#if CONFIG_CODEC != SWCODEC
|
||||||
if (audio_status() & AUDIO_STATUS_PLAY)
|
if (audio_status() & AUDIO_STATUS_PLAY)
|
||||||
return;
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (strlen(file) >= strlen(file_thumbnail_ext)
|
if (strlen(file) >= strlen(file_thumbnail_ext)
|
||||||
&& strcasecmp(&file[strlen(file) - strlen(file_thumbnail_ext)],
|
&& strcasecmp(&file[strlen(file) - strlen(file_thumbnail_ext)],
|
||||||
file_thumbnail_ext))
|
file_thumbnail_ext))
|
||||||
/* file has no .talk extension */
|
/* file has no .talk extension */
|
||||||
talk_file(dir, NULL, file, file_thumbnail_ext,
|
return talk_file(dir, NULL, file, file_thumbnail_ext,
|
||||||
NULL, false);
|
TALK_IDARRAY(filetype_voiceclip(attr)), false);
|
||||||
else
|
|
||||||
/* it already is a .talk file, play this directly, but prefix it. */
|
/* it already is a .talk file, play this directly, but prefix it. */
|
||||||
talk_file(dir, NULL, file, NULL,
|
return talk_file(dir, NULL, file, NULL,
|
||||||
TALK_IDARRAY(LANG_VOICE_DIR_HOVER), false);
|
TALK_IDARRAY(LANG_VOICE_DIR_HOVER), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* These two functions are called by the USB and shutdown handlers */
|
/* These two functions are called by the USB and shutdown handlers */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue