summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2018-10-30 09:45:26 -0400
committerSolomon Peachy <pizza@shaftnet.org>2018-12-15 18:00:23 +0100
commit4adad0bc1f508360999de176048f89025ce84b3e (patch)
tree46fed2ec12b60df2d94ba54950c2da798aa9445a
parentf061330c3d7b17cc770a8eb2c699b5e44995ad1e (diff)
downloadrockbox-4adad0bc1f508360999de176048f89025ce84b3e.tar.gz
rockbox-4adad0bc1f508360999de176048f89025ce84b3e.zip
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
-rw-r--r--apps/bookmark.c46
-rw-r--r--apps/filetypes.c15
-rw-r--r--apps/lang/afrikaans.lang16
-rw-r--r--apps/lang/arabic.lang24
-rw-r--r--apps/lang/basque.lang40
-rw-r--r--apps/lang/bulgarian.lang2
-rw-r--r--apps/lang/catala.lang38
-rw-r--r--apps/lang/chinese-simp.lang40
-rw-r--r--apps/lang/chinese-trad.lang38
-rw-r--r--apps/lang/dansk.lang40
-rw-r--r--apps/lang/deutsch.lang40
-rw-r--r--apps/lang/eesti.lang30
-rw-r--r--apps/lang/english-us.lang40
-rw-r--r--apps/lang/english.lang112
-rw-r--r--apps/lang/espanol.lang40
-rw-r--r--apps/lang/esperanto.lang30
-rw-r--r--apps/lang/finnish.lang40
-rw-r--r--apps/lang/francais.lang40
-rw-r--r--apps/lang/galego.lang16
-rw-r--r--apps/lang/greek.lang40
-rw-r--r--apps/lang/hebrew.lang40
-rw-r--r--apps/lang/hindi.lang6
-rw-r--r--apps/lang/hrvatski.lang40
-rw-r--r--apps/lang/islenska.lang28
-rw-r--r--apps/lang/italiano.lang40
-rw-r--r--apps/lang/japanese.lang40
-rw-r--r--apps/lang/korean.lang38
-rw-r--r--apps/lang/latviesu.lang40
-rw-r--r--apps/lang/lietuviu.lang38
-rw-r--r--apps/lang/magyar.lang38
-rw-r--r--apps/lang/nederlands.lang34
-rw-r--r--apps/lang/norsk-nynorsk.lang38
-rw-r--r--apps/lang/norsk.lang40
-rw-r--r--apps/lang/polski.lang40
-rw-r--r--apps/lang/portugues-brasileiro.lang40
-rw-r--r--apps/lang/portugues.lang38
-rw-r--r--apps/lang/romaneste.lang40
-rw-r--r--apps/lang/slovak.lang40
-rw-r--r--apps/lang/slovenscina.lang40
-rw-r--r--apps/lang/srpski.lang40
-rw-r--r--apps/lang/svenska.lang40
-rw-r--r--apps/lang/tagalog.lang40
-rw-r--r--apps/lang/thai.lang40
-rw-r--r--apps/lang/turkce.lang14
-rw-r--r--apps/lang/ukrainian.lang40
-rw-r--r--apps/lang/wallisertitsch.lang22
-rw-r--r--apps/lang/walon.lang38
-rw-r--r--apps/playlist_viewer.c73
-rw-r--r--apps/screens.c181
-rw-r--r--apps/talk.c56
-rw-r--r--apps/talk.h3
-rw-r--r--apps/tree.c63
52 files changed, 1211 insertions, 864 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index f783c83992..1860d5737b 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -86,7 +86,7 @@ static void say_bookmark(const char* bookmark,
86 int bookmark_id, bool show_playlist_name); 86 int bookmark_id, bool show_playlist_name);
87static bool play_bookmark(const char* bookmark); 87static bool play_bookmark(const char* bookmark);
88static bool generate_bookmark_file_name(const char *in); 88static bool generate_bookmark_file_name(const char *in);
89static bool parse_bookmark(const char *bookmark, const bool get_filenames); 89static bool parse_bookmark(const char *bookmark, const bool get_filenames, const bool strip_dir);
90static int buffer_bookmarks(struct bookmark_list* bookmarks, int first_line); 90static int buffer_bookmarks(struct bookmark_list* bookmarks, int first_line);
91static const char* get_bookmark_info(int list_index, 91static const char* get_bookmark_info(int list_index,
92 void* data, 92 void* data,
@@ -339,7 +339,7 @@ static bool add_bookmark(const char* bookmark_file_name, const char* bookmark,
339 if (most_recent && (bookmark_count >= MAX_BOOKMARKS)) 339 if (most_recent && (bookmark_count >= MAX_BOOKMARKS))
340 break; 340 break;
341 341
342 if (!parse_bookmark(global_read_buffer, false)) 342 if (!parse_bookmark(global_read_buffer, false, false))
343 break; 343 break;
344 344
345 equal = false; 345 equal = false;
@@ -402,6 +402,10 @@ static char* create_bookmark()
402 return NULL; 402 return NULL;
403 403
404 /* create the bookmark */ 404 /* create the bookmark */
405 playlist_get_name(NULL, global_temp_buffer, sizeof(global_temp_buffer));
406 if (global_temp_buffer[strlen(global_temp_buffer) - 1] != '/')
407 file = id3->path;
408 else file++;
405 snprintf(global_bookmark, sizeof(global_bookmark), 409 snprintf(global_bookmark, sizeof(global_bookmark),
406 /* new optional bookmark token descriptors should be inserted 410 /* new optional bookmark token descriptors should be inserted
407 just before the "%s;%s" in this line... */ 411 just before the "%s;%s" in this line... */
@@ -428,12 +432,11 @@ static char* create_bookmark()
428 (long)dsp_get_timestretch(), 432 (long)dsp_get_timestretch(),
429#endif 433#endif
430 /* more mandatory tokens */ 434 /* more mandatory tokens */
431 playlist_get_name(NULL, global_temp_buffer, 435 global_temp_buffer,
432 sizeof(global_temp_buffer)), 436 file);
433 file+1);
434 437
435 /* checking to see if the bookmark is valid */ 438 /* checking to see if the bookmark is valid */
436 if (parse_bookmark(global_bookmark, false)) 439 if (parse_bookmark(global_bookmark, false, false))
437 return global_bookmark; 440 return global_bookmark;
438 else 441 else
439 return NULL; 442 return NULL;
@@ -653,7 +656,7 @@ static const char* get_bookmark_info(int list_index,
653 } 656 }
654 } 657 }
655 658
656 if (!parse_bookmark(bookmarks->items[index - bookmarks->start], true)) 659 if (!parse_bookmark(bookmarks->items[index - bookmarks->start], true, true))
657 { 660 {
658 return list_index % 2 == 0 ? (char*) str(LANG_BOOKMARK_INVALID) : " "; 661 return list_index % 2 == 0 ? (char*) str(LANG_BOOKMARK_INVALID) : " ";
659 } 662 }
@@ -930,7 +933,7 @@ static bool delete_bookmark(const char* bookmark_file_name, int bookmark_id)
930static void say_bookmark(const char* bookmark, 933static void say_bookmark(const char* bookmark,
931 int bookmark_id, bool show_playlist_name) 934 int bookmark_id, bool show_playlist_name)
932{ 935{
933 if (!parse_bookmark(bookmark, true)) 936 if (!parse_bookmark(bookmark, true, false))
934 { 937 {
935 talk_id(LANG_BOOKMARK_INVALID, false); 938 talk_id(LANG_BOOKMARK_INVALID, false);
936 return; 939 return;
@@ -967,16 +970,10 @@ static void say_bookmark(const char* bookmark,
967 970
968#if CONFIG_CODEC == SWCODEC 971#if CONFIG_CODEC == SWCODEC
969 /* Track filename */ 972 /* Track filename */
970 if(is_dir) 973 if(!is_dir)
971 talk_file_or_spell(global_temp_buffer, global_filename, 974 global_temp_buffer[0] = 0;
972 TALK_IDARRAY(VOICE_FILE), true); 975 talk_file_or_spell(global_temp_buffer, global_filename,
973 else 976 TALK_IDARRAY(VOICE_FILE), true);
974 { /* Unfortunately if this is a playlist, we do not know in which
975 directory the file is and therefore cannot find the track's
976 .talk file. */
977 talk_id(VOICE_FILE, true);
978 talk_spell(global_filename, true);
979 }
980#endif 977#endif
981} 978}
982 979
@@ -992,7 +989,7 @@ static bool play_bookmark(const char* bookmark)
992 bm.speed = dsp_get_timestretch(); 989 bm.speed = dsp_get_timestretch();
993#endif 990#endif
994 991
995 if (parse_bookmark(bookmark, true)) 992 if (parse_bookmark(bookmark, true, true))
996 { 993 {
997 global_settings.repeat_mode = bm.repeat_mode; 994 global_settings.repeat_mode = bm.repeat_mode;
998 global_settings.playlist_shuffle = bm.shuffle; 995 global_settings.playlist_shuffle = bm.shuffle;
@@ -1042,7 +1039,7 @@ static const char* long_token(const char* s, long* dest)
1042/* the filename tokens are to be extracted. */ 1039/* the filename tokens are to be extracted. */
1043/* Returns true on successful bookmark parse. */ 1040/* Returns true on successful bookmark parse. */
1044/* ----------------------------------------------------------------------- */ 1041/* ----------------------------------------------------------------------- */
1045static bool parse_bookmark(const char *bookmark, const bool parse_filenames) 1042static bool parse_bookmark(const char *bookmark, const bool parse_filenames, const bool strip_dir)
1046{ 1043{
1047 const char* s = bookmark; 1044 const char* s = bookmark;
1048 const char* end; 1045 const char* end;
@@ -1094,6 +1091,15 @@ static bool parse_bookmark(const char *bookmark, const bool parse_filenames)
1094 if (end != NULL) 1091 if (end != NULL)
1095 { 1092 {
1096 end++; 1093 end++;
1094 if (strip_dir)
1095 {
1096 s = strrchr(end, '/');
1097 if (s)
1098 {
1099 end = s;
1100 end++;
1101 }
1102 }
1097 strlcpy(global_filename, end, MAX_PATH); 1103 strlcpy(global_filename, end, MAX_PATH);
1098 } 1104 }
1099 } 1105 }
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 38324d0f3a..f1a6c389ba 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -573,6 +573,17 @@ static const char* openwith_get_name(int selected_item, void * data,
573 else return filetypes[viewers[selected_item]].plugin; 573 else return filetypes[viewers[selected_item]].plugin;
574} 574}
575 575
576static int openwith_get_talk(int selected_item, void * data)
577{
578 (void)data;
579 char viewer_filename[MAX_FILENAME];
580 snprintf(viewer_filename, MAX_FILENAME, "%s.%s",
581 filetypes[viewers[selected_item]].plugin, ROCK_EXTENSION);
582 talk_file_or_spell(PLUGIN_DIR, viewer_filename,
583 NULL, false);
584 return 0;
585}
586
576static int openwith_action_callback(int action, struct gui_synclist *lists) 587static int openwith_action_callback(int action, struct gui_synclist *lists)
577{ 588{
578 struct cb_data *info = (struct cb_data *)lists->data; 589 struct cb_data *info = (struct cb_data *)lists->data;
@@ -596,8 +607,7 @@ int filetype_list_viewers(const char* current_file)
596#ifndef HAVE_LCD_BITMAP 607#ifndef HAVE_LCD_BITMAP
597 if (viewer_count == 0) 608 if (viewer_count == 0)
598 { 609 {
599 /* FIX: translation! */ 610 splash(HZ*2, ID2P(LANG_NO_VIEWERS));
600 splash(HZ*2, "No viewers found");
601 return PLUGIN_OK; 611 return PLUGIN_OK;
602 } 612 }
603#endif 613#endif
@@ -605,6 +615,7 @@ int filetype_list_viewers(const char* current_file)
605 info.action_callback = openwith_action_callback; 615 info.action_callback = openwith_action_callback;
606 info.get_name = openwith_get_name; 616 info.get_name = openwith_get_name;
607 info.get_icon = global_settings.show_icons?openwith_get_icon:NULL; 617 info.get_icon = global_settings.show_icons?openwith_get_icon:NULL;
618 info.get_talk = openwith_get_talk;
608 return simplelist_show_list(&info); 619 return simplelist_show_list(&info);
609} 620}
610 621
diff --git a/apps/lang/afrikaans.lang b/apps/lang/afrikaans.lang
index 04345cf59e..96feb3a7c6 100644
--- a/apps/lang/afrikaans.lang
+++ b/apps/lang/afrikaans.lang
@@ -825,7 +825,7 @@
825 *: "Titel" 825 *: "Titel"
826 </dest> 826 </dest>
827 <voice> 827 <voice>
828 *: "" 828 *: "Titel"
829 </voice> 829 </voice>
830</phrase> 830</phrase>
831<phrase> 831<phrase>
@@ -839,7 +839,7 @@
839 *: "Kunstenaar" 839 *: "Kunstenaar"
840 </dest> 840 </dest>
841 <voice> 841 <voice>
842 *: "" 842 *: "Kunstenaar"
843 </voice> 843 </voice>
844</phrase> 844</phrase>
845<phrase> 845<phrase>
@@ -853,7 +853,7 @@
853 *: "Album" 853 *: "Album"
854 </dest> 854 </dest>
855 <voice> 855 <voice>
856 *: "" 856 *: "Album"
857 </voice> 857 </voice>
858</phrase> 858</phrase>
859<phrase> 859<phrase>
@@ -867,7 +867,7 @@
867 *: "Liednommer" 867 *: "Liednommer"
868 </dest> 868 </dest>
869 <voice> 869 <voice>
870 *: "" 870 *: "Liednommer"
871 </voice> 871 </voice>
872</phrase> 872</phrase>
873<phrase> 873<phrase>
@@ -881,7 +881,7 @@
881 *: "Speellys" 881 *: "Speellys"
882 </dest> 882 </dest>
883 <voice> 883 <voice>
884 *: "" 884 *: "Speellys"
885 </voice> 885 </voice>
886</phrase> 886</phrase>
887<phrase> 887<phrase>
@@ -895,7 +895,7 @@
895 *: "Bitrate" 895 *: "Bitrate"
896 </dest> 896 </dest>
897 <voice> 897 <voice>
898 *: "" 898 *: "Bitrate"
899 </voice> 899 </voice>
900</phrase> 900</phrase>
901<phrase> 901<phrase>
@@ -909,7 +909,7 @@
909 *: "Frekwensie" 909 *: "Frekwensie"
910 </dest> 910 </dest>
911 <voice> 911 <voice>
912 *: "" 912 *: "Frekwensie"
913 </voice> 913 </voice>
914</phrase> 914</phrase>
915<phrase> 915<phrase>
@@ -923,7 +923,7 @@
923 *: "Pad" 923 *: "Pad"
924 </dest> 924 </dest>
925 <voice> 925 <voice>
926 *: "" 926 *: "Pad"
927 </voice> 927 </voice>
928</phrase> 928</phrase>
929<phrase> 929<phrase>
diff --git a/apps/lang/arabic.lang b/apps/lang/arabic.lang
index 2654e0d495..344d568e67 100644
--- a/apps/lang/arabic.lang
+++ b/apps/lang/arabic.lang
@@ -596,7 +596,7 @@
596 *: "النوع" 596 *: "النوع"
597 </dest> 597 </dest>
598 <voice> 598 <voice>
599 *: "" 599 *: "النوع"
600 </voice> 600 </voice>
601</phrase> 601</phrase>
602<phrase> 602<phrase>
@@ -697,7 +697,7 @@
697 *: "الفنان" 697 *: "الفنان"
698 </dest> 698 </dest>
699 <voice> 699 <voice>
700 *: "" 700 *: "الفنان"
701 </voice> 701 </voice>
702</phrase> 702</phrase>
703<phrase> 703<phrase>
@@ -2682,7 +2682,7 @@
2682 *: "فنان الألبوم" 2682 *: "فنان الألبوم"
2683 </dest> 2683 </dest>
2684 <voice> 2684 <voice>
2685 *: "" 2685 *: "فنان الألبوم"
2686 </voice> 2686 </voice>
2687</phrase> 2687</phrase>
2688<phrase> 2688<phrase>
@@ -3849,7 +3849,7 @@
3849 *: "تعليق" 3849 *: "تعليق"
3850 </dest> 3850 </dest>
3851 <voice> 3851 <voice>
3852 *: "" 3852 *: "تعليق"
3853 </voice> 3853 </voice>
3854</phrase> 3854</phrase>
3855<phrase> 3855<phrase>
@@ -4001,7 +4001,7 @@
4001 *: "قائمة التشغيل" 4001 *: "قائمة التشغيل"
4002 </dest> 4002 </dest>
4003 <voice> 4003 <voice>
4004 *: "" 4004 *: "قائمة التشغيل"
4005 </voice> 4005 </voice>
4006</phrase> 4006</phrase>
4007<phrase> 4007<phrase>
@@ -4125,7 +4125,7 @@
4125 *: "<المعلومات غير متوفرة>" 4125 *: "<المعلومات غير متوفرة>"
4126 </dest> 4126 </dest>
4127 <voice> 4127 <voice>
4128 *: "" 4128 *: "المعلومات غير متوفرة"
4129 </voice> 4129 </voice>
4130</phrase> 4130</phrase>
4131<phrase> 4131<phrase>
@@ -4745,7 +4745,7 @@
4745 *: "التردد" 4745 *: "التردد"
4746 </dest> 4746 </dest>
4747 <voice> 4747 <voice>
4748 *: "" 4748 *: "التردد"
4749 </voice> 4749 </voice>
4750</phrase> 4750</phrase>
4751<phrase> 4751<phrase>
@@ -4964,7 +4964,7 @@
4964 *: "العنوان" 4964 *: "العنوان"
4965 </dest> 4965 </dest>
4966 <voice> 4966 <voice>
4967 *: "" 4967 *: "العنوان"
4968 </voice> 4968 </voice>
4969</phrase> 4969</phrase>
4970<phrase> 4970<phrase>
@@ -5051,7 +5051,7 @@
5051 *: "السنة" 5051 *: "السنة"
5052 </dest> 5052 </dest>
5053 <voice> 5053 <voice>
5054 *: "" 5054 *: "السنة"
5055 </voice> 5055 </voice>
5056</phrase> 5056</phrase>
5057<phrase> 5057<phrase>
@@ -5237,7 +5237,7 @@
5237 *: "معدل البت" 5237 *: "معدل البت"
5238 </dest> 5238 </dest>
5239 <voice> 5239 <voice>
5240 *: "" 5240 *: "معدل البت"
5241 </voice> 5241 </voice>
5242</phrase> 5242</phrase>
5243<phrase> 5243<phrase>
@@ -5437,7 +5437,7 @@
5437 *: "البوم" 5437 *: "البوم"
5438 </dest> 5438 </dest>
5439 <voice> 5439 <voice>
5440 *: "" 5440 *: "البوم"
5441 </voice> 5441 </voice>
5442</phrase> 5442</phrase>
5443<phrase> 5443<phrase>
@@ -5471,7 +5471,7 @@
5471 *: "طول" 5471 *: "طول"
5472 </dest> 5472 </dest>
5473 <voice> 5473 <voice>
5474 *: "" 5474 *: "طول"
5475 </voice> 5475 </voice>
5476</phrase> 5476</phrase>
5477<phrase> 5477<phrase>
diff --git a/apps/lang/basque.lang b/apps/lang/basque.lang
index 978c8da26a..9c12ecbf47 100644
--- a/apps/lang/basque.lang
+++ b/apps/lang/basque.lang
@@ -7139,7 +7139,7 @@
7139 *: "Titulua" 7139 *: "Titulua"
7140 </dest> 7140 </dest>
7141 <voice> 7141 <voice>
7142 *: "" 7142 *: "Titulua"
7143 </voice> 7143 </voice>
7144</phrase> 7144</phrase>
7145<phrase> 7145<phrase>
@@ -7153,7 +7153,7 @@
7153 *: "Artista" 7153 *: "Artista"
7154 </dest> 7154 </dest>
7155 <voice> 7155 <voice>
7156 *: "" 7156 *: "Artista"
7157 </voice> 7157 </voice>
7158</phrase> 7158</phrase>
7159<phrase> 7159<phrase>
@@ -7167,7 +7167,7 @@
7167 *: "Albuma" 7167 *: "Albuma"
7168 </dest> 7168 </dest>
7169 <voice> 7169 <voice>
7170 *: "" 7170 *: "Albuma"
7171 </voice> 7171 </voice>
7172</phrase> 7172</phrase>
7173<phrase> 7173<phrase>
@@ -7181,7 +7181,7 @@
7181 *: "Abesti Zk" 7181 *: "Abesti Zk"
7182 </dest> 7182 </dest>
7183 <voice> 7183 <voice>
7184 *: "" 7184 *: "Abesti Zk"
7185 </voice> 7185 </voice>
7186</phrase> 7186</phrase>
7187<phrase> 7187<phrase>
@@ -7195,7 +7195,7 @@
7195 *: "Mota" 7195 *: "Mota"
7196 </dest> 7196 </dest>
7197 <voice> 7197 <voice>
7198 *: "" 7198 *: "Mota"
7199 </voice> 7199 </voice>
7200</phrase> 7200</phrase>
7201<phrase> 7201<phrase>
@@ -7209,7 +7209,7 @@
7209 *: "Urtea" 7209 *: "Urtea"
7210 </dest> 7210 </dest>
7211 <voice> 7211 <voice>
7212 *: "" 7212 *: "Urtea"
7213 </voice> 7213 </voice>
7214</phrase> 7214</phrase>
7215<phrase> 7215<phrase>
@@ -7223,7 +7223,7 @@
7223 *: "Iraupena" 7223 *: "Iraupena"
7224 </dest> 7224 </dest>
7225 <voice> 7225 <voice>
7226 *: "" 7226 *: "Iraupena"
7227 </voice> 7227 </voice>
7228</phrase> 7228</phrase>
7229<phrase> 7229<phrase>
@@ -7237,7 +7237,7 @@
7237 *: "Zerrendan" 7237 *: "Zerrendan"
7238 </dest> 7238 </dest>
7239 <voice> 7239 <voice>
7240 *: "" 7240 *: "Zerrendan"
7241 </voice> 7241 </voice>
7242</phrase> 7242</phrase>
7243<phrase> 7243<phrase>
@@ -7251,7 +7251,7 @@
7251 *: "Bit-tasa" 7251 *: "Bit-tasa"
7252 </dest> 7252 </dest>
7253 <voice> 7253 <voice>
7254 *: "" 7254 *: "Bit-tasa"
7255 </voice> 7255 </voice>
7256</phrase> 7256</phrase>
7257<phrase> 7257<phrase>
@@ -7265,7 +7265,7 @@
7265 *: "Albuma Artista" 7265 *: "Albuma Artista"
7266 </dest> 7266 </dest>
7267 <voice> 7267 <voice>
7268 *: "" 7268 *: "Albuma Artista"
7269 </voice> 7269 </voice>
7270</phrase> 7270</phrase>
7271<phrase> 7271<phrase>
@@ -7279,7 +7279,7 @@
7279 *: "Disko Zk" 7279 *: "Disko Zk"
7280 </dest> 7280 </dest>
7281 <voice> 7281 <voice>
7282 *: "" 7282 *: "Disko Zk"
7283 </voice> 7283 </voice>
7284</phrase> 7284</phrase>
7285<phrase> 7285<phrase>
@@ -7293,7 +7293,7 @@
7293 *: "Iruzkina" 7293 *: "Iruzkina"
7294 </dest> 7294 </dest>
7295 <voice> 7295 <voice>
7296 *: "" 7296 *: "Iruzkina"
7297 </voice> 7297 </voice>
7298</phrase> 7298</phrase>
7299<phrase> 7299<phrase>
@@ -7307,7 +7307,7 @@
7307 *: " (VBR)" 7307 *: " (VBR)"
7308 </dest> 7308 </dest>
7309 <voice> 7309 <voice>
7310 *: "" 7310 *: "VBR"
7311 </voice> 7311 </voice>
7312</phrase> 7312</phrase>
7313<phrase> 7313<phrase>
@@ -7321,7 +7321,7 @@
7321 *: "Frekuentzia" 7321 *: "Frekuentzia"
7322 </dest> 7322 </dest>
7323 <voice> 7323 <voice>
7324 *: "" 7324 *: "Frekuentzia"
7325 </voice> 7325 </voice>
7326</phrase> 7326</phrase>
7327<phrase> 7327<phrase>
@@ -7335,7 +7335,7 @@
7335 *: "Abesti Irabazia" 7335 *: "Abesti Irabazia"
7336 </dest> 7336 </dest>
7337 <voice> 7337 <voice>
7338 *: "" 7338 *: "Abesti Irabazia"
7339 </voice> 7339 </voice>
7340</phrase> 7340</phrase>
7341<phrase> 7341<phrase>
@@ -7349,7 +7349,7 @@
7349 *: "Album Irabazia" 7349 *: "Album Irabazia"
7350 </dest> 7350 </dest>
7351 <voice> 7351 <voice>
7352 *: "" 7352 *: "Album Irabazia"
7353 </voice> 7353 </voice>
7354</phrase> 7354</phrase>
7355<phrase> 7355<phrase>
@@ -7363,7 +7363,7 @@
7363 *: "Kokapena" 7363 *: "Kokapena"
7364 </dest> 7364 </dest>
7365 <voice> 7365 <voice>
7366 *: "" 7366 *: "Kokapena"
7367 </voice> 7367 </voice>
7368</phrase> 7368</phrase>
7369<phrase> 7369<phrase>
@@ -7377,7 +7377,7 @@
7377 *: "<Info Gabe>" 7377 *: "<Info Gabe>"
7378 </dest> 7378 </dest>
7379 <voice> 7379 <voice>
7380 *: "" 7380 *: "Info Gabe"
7381 </voice> 7381 </voice>
7382</phrase> 7382</phrase>
7383<phrase> 7383<phrase>
@@ -10043,7 +10043,7 @@
10043 *: "Lana" 10043 *: "Lana"
10044 </dest> 10044 </dest>
10045 <voice> 10045 <voice>
10046 *: "" 10046 *: "Lana"
10047 </voice> 10047 </voice>
10048</phrase> 10048</phrase>
10049<phrase> 10049<phrase>
@@ -12441,7 +12441,7 @@
12441 *: "Konposatzailea" 12441 *: "Konposatzailea"
12442 </dest> 12442 </dest>
12443 <voice> 12443 <voice>
12444 *: "" 12444 *: "Konposatzailea"
12445 </voice> 12445 </voice>
12446</phrase> 12446</phrase>
12447<phrase> 12447<phrase>
diff --git a/apps/lang/bulgarian.lang b/apps/lang/bulgarian.lang
index 5f5931043c..19818b7062 100644
--- a/apps/lang/bulgarian.lang
+++ b/apps/lang/bulgarian.lang
@@ -7313,7 +7313,7 @@
7313 *: " (VBR)" 7313 *: " (VBR)"
7314 </dest> 7314 </dest>
7315 <voice> 7315 <voice>
7316 *: "(VBR)" 7316 *: "VBR"
7317 </voice> 7317 </voice>
7318</phrase> 7318</phrase>
7319<phrase> 7319<phrase>
diff --git a/apps/lang/catala.lang b/apps/lang/catala.lang
index 527ffebdb6..80e239c302 100644
--- a/apps/lang/catala.lang
+++ b/apps/lang/catala.lang
@@ -7133,7 +7133,7 @@
7133 *: "Títol" 7133 *: "Títol"
7134 </dest> 7134 </dest>
7135 <voice> 7135 <voice>
7136 *: "" 7136 *: "Títol"
7137 </voice> 7137 </voice>
7138</phrase> 7138</phrase>
7139<phrase> 7139<phrase>
@@ -7147,7 +7147,7 @@
7147 *: "Artista" 7147 *: "Artista"
7148 </dest> 7148 </dest>
7149 <voice> 7149 <voice>
7150 *: "" 7150 *: "Artista"
7151 </voice> 7151 </voice>
7152</phrase> 7152</phrase>
7153<phrase> 7153<phrase>
@@ -7161,7 +7161,7 @@
7161 *: "Àlbum" 7161 *: "Àlbum"
7162 </dest> 7162 </dest>
7163 <voice> 7163 <voice>
7164 *: "" 7164 *: "Àlbum"
7165 </voice> 7165 </voice>
7166</phrase> 7166</phrase>
7167<phrase> 7167<phrase>
@@ -7175,7 +7175,7 @@
7175 *: "Núm. pista" 7175 *: "Núm. pista"
7176 </dest> 7176 </dest>
7177 <voice> 7177 <voice>
7178 *: "" 7178 *: "Núm. pista"
7179 </voice> 7179 </voice>
7180</phrase> 7180</phrase>
7181<phrase> 7181<phrase>
@@ -7189,7 +7189,7 @@
7189 *: "Gènere" 7189 *: "Gènere"
7190 </dest> 7190 </dest>
7191 <voice> 7191 <voice>
7192 *: "" 7192 *: "Gènere"
7193 </voice> 7193 </voice>
7194</phrase> 7194</phrase>
7195<phrase> 7195<phrase>
@@ -7203,7 +7203,7 @@
7203 *: "Any" 7203 *: "Any"
7204 </dest> 7204 </dest>
7205 <voice> 7205 <voice>
7206 *: "" 7206 *: "Any"
7207 </voice> 7207 </voice>
7208</phrase> 7208</phrase>
7209<phrase> 7209<phrase>
@@ -7217,7 +7217,7 @@
7217 *: "Durada" 7217 *: "Durada"
7218 </dest> 7218 </dest>
7219 <voice> 7219 <voice>
7220 *: "" 7220 *: "Durada"
7221 </voice> 7221 </voice>
7222</phrase> 7222</phrase>
7223<phrase> 7223<phrase>
@@ -7231,7 +7231,7 @@
7231 *: "Llista de reprod." 7231 *: "Llista de reprod."
7232 </dest> 7232 </dest>
7233 <voice> 7233 <voice>
7234 *: "" 7234 *: "Llista de reprod."
7235 </voice> 7235 </voice>
7236</phrase> 7236</phrase>
7237<phrase> 7237<phrase>
@@ -7245,7 +7245,7 @@
7245 *: "Bitrate" 7245 *: "Bitrate"
7246 </dest> 7246 </dest>
7247 <voice> 7247 <voice>
7248 *: "" 7248 *: "Bitrate"
7249 </voice> 7249 </voice>
7250</phrase> 7250</phrase>
7251<phrase> 7251<phrase>
@@ -7259,7 +7259,7 @@
7259 *: "Artista de l'álbum" 7259 *: "Artista de l'álbum"
7260 </dest> 7260 </dest>
7261 <voice> 7261 <voice>
7262 *: "" 7262 *: "Artista de l'álbum"
7263 </voice> 7263 </voice>
7264</phrase> 7264</phrase>
7265<phrase> 7265<phrase>
@@ -7273,7 +7273,7 @@
7273 *: "Núm.disc" 7273 *: "Núm.disc"
7274 </dest> 7274 </dest>
7275 <voice> 7275 <voice>
7276 *: "" 7276 *: "Núm.disc"
7277 </voice> 7277 </voice>
7278</phrase> 7278</phrase>
7279<phrase> 7279<phrase>
@@ -7301,7 +7301,7 @@
7301 *: " (VBR)" 7301 *: " (VBR)"
7302 </dest> 7302 </dest>
7303 <voice> 7303 <voice>
7304 *: "" 7304 *: "VBR"
7305 </voice> 7305 </voice>
7306</phrase> 7306</phrase>
7307<phrase> 7307<phrase>
@@ -7315,7 +7315,7 @@
7315 *: "Freqüència" 7315 *: "Freqüència"
7316 </dest> 7316 </dest>
7317 <voice> 7317 <voice>
7318 *: "" 7318 *: "Freqüència"
7319 </voice> 7319 </voice>
7320</phrase> 7320</phrase>
7321<phrase> 7321<phrase>
@@ -7329,7 +7329,7 @@
7329 *: "Guany de pista" 7329 *: "Guany de pista"
7330 </dest> 7330 </dest>
7331 <voice> 7331 <voice>
7332 *: "" 7332 *: "Guany de pista"
7333 </voice> 7333 </voice>
7334</phrase> 7334</phrase>
7335<phrase> 7335<phrase>
@@ -7343,7 +7343,7 @@
7343 *: "Guany d'àlbum" 7343 *: "Guany d'àlbum"
7344 </dest> 7344 </dest>
7345 <voice> 7345 <voice>
7346 *: "" 7346 *: "Guany d'àlbum"
7347 </voice> 7347 </voice>
7348</phrase> 7348</phrase>
7349<phrase> 7349<phrase>
@@ -7357,7 +7357,7 @@
7357 *: "Camí" 7357 *: "Camí"
7358 </dest> 7358 </dest>
7359 <voice> 7359 <voice>
7360 *: "" 7360 *: "Camí"
7361 </voice> 7361 </voice>
7362</phrase> 7362</phrase>
7363<phrase> 7363<phrase>
@@ -7371,7 +7371,7 @@
7371 *: "<sense info>" 7371 *: "<sense info>"
7372 </dest> 7372 </dest>
7373 <voice> 7373 <voice>
7374 *: "" 7374 *: "sense info"
7375 </voice> 7375 </voice>
7376</phrase> 7376</phrase>
7377<phrase> 7377<phrase>
@@ -10036,7 +10036,7 @@
10036 *: "Treball" 10036 *: "Treball"
10037 </dest> 10037 </dest>
10038 <voice> 10038 <voice>
10039 *: "" 10039 *: "Treball"
10040 </voice> 10040 </voice>
10041</phrase> 10041</phrase>
10042<phrase> 10042<phrase>
@@ -12434,7 +12434,7 @@
12434 *: "Compositor" 12434 *: "Compositor"
12435 </dest> 12435 </dest>
12436 <voice> 12436 <voice>
12437 *: "" 12437 *: "Compositor"
12438 </voice> 12438 </voice>
12439</phrase> 12439</phrase>
12440<phrase> 12440<phrase>
diff --git a/apps/lang/chinese-simp.lang b/apps/lang/chinese-simp.lang
index a9e30bc984..2138dcd228 100644
--- a/apps/lang/chinese-simp.lang
+++ b/apps/lang/chinese-simp.lang
@@ -4803,7 +4803,7 @@
4803 *: "标题" 4803 *: "标题"
4804 </dest> 4804 </dest>
4805 <voice> 4805 <voice>
4806 *: "" 4806 *: "标题"
4807 </voice> 4807 </voice>
4808</phrase> 4808</phrase>
4809<phrase> 4809<phrase>
@@ -4817,7 +4817,7 @@
4817 *: "艺术家" 4817 *: "艺术家"
4818 </dest> 4818 </dest>
4819 <voice> 4819 <voice>
4820 *: "" 4820 *: "艺术家"
4821 </voice> 4821 </voice>
4822</phrase> 4822</phrase>
4823<phrase> 4823<phrase>
@@ -4831,7 +4831,7 @@
4831 *: "专辑" 4831 *: "专辑"
4832 </dest> 4832 </dest>
4833 <voice> 4833 <voice>
4834 *: "" 4834 *: "专辑"
4835 </voice> 4835 </voice>
4836</phrase> 4836</phrase>
4837<phrase> 4837<phrase>
@@ -4845,7 +4845,7 @@
4845 *: "曲目编号" 4845 *: "曲目编号"
4846 </dest> 4846 </dest>
4847 <voice> 4847 <voice>
4848 *: "" 4848 *: "曲目编号"
4849 </voice> 4849 </voice>
4850</phrase> 4850</phrase>
4851<phrase> 4851<phrase>
@@ -4859,7 +4859,7 @@
4859 *: "流派" 4859 *: "流派"
4860 </dest> 4860 </dest>
4861 <voice> 4861 <voice>
4862 *: "" 4862 *: "流派"
4863 </voice> 4863 </voice>
4864</phrase> 4864</phrase>
4865<phrase> 4865<phrase>
@@ -4873,7 +4873,7 @@
4873 *: "年份" 4873 *: "年份"
4874 </dest> 4874 </dest>
4875 <voice> 4875 <voice>
4876 *: "" 4876 *: "年份"
4877 </voice> 4877 </voice>
4878</phrase> 4878</phrase>
4879<phrase> 4879<phrase>
@@ -4887,7 +4887,7 @@
4887 *: "长度" 4887 *: "长度"
4888 </dest> 4888 </dest>
4889 <voice> 4889 <voice>
4890 *: "" 4890 *: "长度"
4891 </voice> 4891 </voice>
4892</phrase> 4892</phrase>
4893<phrase> 4893<phrase>
@@ -4901,7 +4901,7 @@
4901 *: "播放列表" 4901 *: "播放列表"
4902 </dest> 4902 </dest>
4903 <voice> 4903 <voice>
4904 *: "" 4904 *: "播放列表"
4905 </voice> 4905 </voice>
4906</phrase> 4906</phrase>
4907<phrase> 4907<phrase>
@@ -4915,7 +4915,7 @@
4915 *: "码率" 4915 *: "码率"
4916 </dest> 4916 </dest>
4917 <voice> 4917 <voice>
4918 *: "" 4918 *: "码率"
4919 </voice> 4919 </voice>
4920</phrase> 4920</phrase>
4921<phrase> 4921<phrase>
@@ -4929,7 +4929,7 @@
4929 *: "(VBR)" 4929 *: "(VBR)"
4930 </dest> 4930 </dest>
4931 <voice> 4931 <voice>
4932 *: "" 4932 *: "VBR"
4933 </voice> 4933 </voice>
4934</phrase> 4934</phrase>
4935<phrase> 4935<phrase>
@@ -4943,7 +4943,7 @@
4943 *: "频率" 4943 *: "频率"
4944 </dest> 4944 </dest>
4945 <voice> 4945 <voice>
4946 *: "" 4946 *: "频率"
4947 </voice> 4947 </voice>
4948</phrase> 4948</phrase>
4949<phrase> 4949<phrase>
@@ -4957,7 +4957,7 @@
4957 *: "单曲增益" 4957 *: "单曲增益"
4958 </dest> 4958 </dest>
4959 <voice> 4959 <voice>
4960 *: "" 4960 *: "单曲增益"
4961 </voice> 4961 </voice>
4962</phrase> 4962</phrase>
4963<phrase> 4963<phrase>
@@ -4971,7 +4971,7 @@
4971 *: "专辑增益" 4971 *: "专辑增益"
4972 </dest> 4972 </dest>
4973 <voice> 4973 <voice>
4974 *: "" 4974 *: "专辑增益"
4975 </voice> 4975 </voice>
4976</phrase> 4976</phrase>
4977<phrase> 4977<phrase>
@@ -4985,7 +4985,7 @@
4985 *: "路径" 4985 *: "路径"
4986 </dest> 4986 </dest>
4987 <voice> 4987 <voice>
4988 *: "" 4988 *: "路径"
4989 </voice> 4989 </voice>
4990</phrase> 4990</phrase>
4991<phrase> 4991<phrase>
@@ -4999,7 +4999,7 @@
4999 *: "<无信息>" 4999 *: "<无信息>"
5000 </dest> 5000 </dest>
5001 <voice> 5001 <voice>
5002 *: "" 5002 *: "无信息"
5003 </voice> 5003 </voice>
5004</phrase> 5004</phrase>
5005<phrase> 5005<phrase>
@@ -8013,7 +8013,7 @@
8013 *: "注释" 8013 *: "注释"
8014 </dest> 8014 </dest>
8015 <voice> 8015 <voice>
8016 *: "" 8016 *: "注释"
8017 </voice> 8017 </voice>
8018</phrase> 8018</phrase>
8019<phrase> 8019<phrase>
@@ -9086,7 +9086,7 @@
9086 *: "作品" 9086 *: "作品"
9087 </dest> 9087 </dest>
9088 <voice> 9088 <voice>
9089 *: "" 9089 *: "作品"
9090 </voice> 9090 </voice>
9091</phrase> 9091</phrase>
9092<phrase> 9092<phrase>
@@ -9373,7 +9373,7 @@
9373 *: "CD编号" 9373 *: "CD编号"
9374 </dest> 9374 </dest>
9375 <voice> 9375 <voice>
9376 *: "" 9376 *: "CD编号"
9377 </voice> 9377 </voice>
9378</phrase> 9378</phrase>
9379<phrase> 9379<phrase>
@@ -9702,7 +9702,7 @@
9702 *: "专辑艺术家" 9702 *: "专辑艺术家"
9703 </dest> 9703 </dest>
9704 <voice> 9704 <voice>
9705 *: "" 9705 *: "专辑艺术家"
9706 </voice> 9706 </voice>
9707</phrase> 9707</phrase>
9708<phrase> 9708<phrase>
@@ -12271,7 +12271,7 @@
12271 *: "Composer" 12271 *: "Composer"
12272 </dest> 12272 </dest>
12273 <voice> 12273 <voice>
12274 *: "" 12274 *: "Composer"
12275 </voice> 12275 </voice>
12276</phrase> 12276</phrase>
12277<phrase> 12277<phrase>
diff --git a/apps/lang/chinese-trad.lang b/apps/lang/chinese-trad.lang
index 53605bcf5b..8f51decc46 100644
--- a/apps/lang/chinese-trad.lang
+++ b/apps/lang/chinese-trad.lang
@@ -4813,7 +4813,7 @@
4813 *: "標題" 4813 *: "標題"
4814 </dest> 4814 </dest>
4815 <voice> 4815 <voice>
4816 *: "" 4816 *: "標題"
4817 </voice> 4817 </voice>
4818</phrase> 4818</phrase>
4819<phrase> 4819<phrase>
@@ -4827,7 +4827,7 @@
4827 *: "作者" 4827 *: "作者"
4828 </dest> 4828 </dest>
4829 <voice> 4829 <voice>
4830 *: "" 4830 *: "作者"
4831 </voice> 4831 </voice>
4832</phrase> 4832</phrase>
4833<phrase> 4833<phrase>
@@ -4841,7 +4841,7 @@
4841 *: "專輯" 4841 *: "專輯"
4842 </dest> 4842 </dest>
4843 <voice> 4843 <voice>
4844 *: "" 4844 *: "專輯"
4845 </voice> 4845 </voice>
4846</phrase> 4846</phrase>
4847<phrase> 4847<phrase>
@@ -4855,7 +4855,7 @@
4855 *: "曲目編號" 4855 *: "曲目編號"
4856 </dest> 4856 </dest>
4857 <voice> 4857 <voice>
4858 *: "" 4858 *: "曲目編號"
4859 </voice> 4859 </voice>
4860</phrase> 4860</phrase>
4861<phrase> 4861<phrase>
@@ -4869,7 +4869,7 @@
4869 *: "類別" 4869 *: "類別"
4870 </dest> 4870 </dest>
4871 <voice> 4871 <voice>
4872 *: "" 4872 *: "類別"
4873 </voice> 4873 </voice>
4874</phrase> 4874</phrase>
4875<phrase> 4875<phrase>
@@ -4883,7 +4883,7 @@
4883 *: "年份" 4883 *: "年份"
4884 </dest> 4884 </dest>
4885 <voice> 4885 <voice>
4886 *: "" 4886 *: "年份"
4887 </voice> 4887 </voice>
4888</phrase> 4888</phrase>
4889<phrase> 4889<phrase>
@@ -4897,7 +4897,7 @@
4897 *: "長度" 4897 *: "長度"
4898 </dest> 4898 </dest>
4899 <voice> 4899 <voice>
4900 *: "" 4900 *: "長度"
4901 </voice> 4901 </voice>
4902</phrase> 4902</phrase>
4903<phrase> 4903<phrase>
@@ -4911,7 +4911,7 @@
4911 *: "播放清單" 4911 *: "播放清單"
4912 </dest> 4912 </dest>
4913 <voice> 4913 <voice>
4914 *: "" 4914 *: "播放清單"
4915 </voice> 4915 </voice>
4916</phrase> 4916</phrase>
4917<phrase> 4917<phrase>
@@ -4925,7 +4925,7 @@
4925 *: "位元率" 4925 *: "位元率"
4926 </dest> 4926 </dest>
4927 <voice> 4927 <voice>
4928 *: "" 4928 *: "位元率"
4929 </voice> 4929 </voice>
4930</phrase> 4930</phrase>
4931<phrase> 4931<phrase>
@@ -4939,7 +4939,7 @@
4939 *: " (變動位元率)" 4939 *: " (變動位元率)"
4940 </dest> 4940 </dest>
4941 <voice> 4941 <voice>
4942 *: "" 4942 *: "變動位元率"
4943 </voice> 4943 </voice>
4944</phrase> 4944</phrase>
4945<phrase> 4945<phrase>
@@ -4953,7 +4953,7 @@
4953 *: "頻率" 4953 *: "頻率"
4954 </dest> 4954 </dest>
4955 <voice> 4955 <voice>
4956 *: "" 4956 *: "頻率"
4957 </voice> 4957 </voice>
4958</phrase> 4958</phrase>
4959<phrase> 4959<phrase>
@@ -4967,7 +4967,7 @@
4967 *: "Track Gain" 4967 *: "Track Gain"
4968 </dest> 4968 </dest>
4969 <voice> 4969 <voice>
4970 *: "" 4970 *: "Track Gain"
4971 </voice> 4971 </voice>
4972</phrase> 4972</phrase>
4973<phrase> 4973<phrase>
@@ -4981,7 +4981,7 @@
4981 *: "Album Gain" 4981 *: "Album Gain"
4982 </dest> 4982 </dest>
4983 <voice> 4983 <voice>
4984 *: "" 4984 *: "Album Gain"
4985 </voice> 4985 </voice>
4986</phrase> 4986</phrase>
4987<phrase> 4987<phrase>
@@ -4995,7 +4995,7 @@
4995 *: "路徑" 4995 *: "路徑"
4996 </dest> 4996 </dest>
4997 <voice> 4997 <voice>
4998 *: "" 4998 *: "路徑"
4999 </voice> 4999 </voice>
5000</phrase> 5000</phrase>
5001<phrase> 5001<phrase>
@@ -5009,7 +5009,7 @@
5009 *: "<無資訊>" 5009 *: "<無資訊>"
5010 </dest> 5010 </dest>
5011 <voice> 5011 <voice>
5012 *: "" 5012 *: "無資訊"
5013 </voice> 5013 </voice>
5014</phrase> 5014</phrase>
5015<phrase> 5015<phrase>
@@ -8058,7 +8058,7 @@
8058 *: "註解" 8058 *: "註解"
8059 </dest> 8059 </dest>
8060 <voice> 8060 <voice>
8061 *: "" 8061 *: "註解"
8062 </voice> 8062 </voice>
8063</phrase> 8063</phrase>
8064<phrase> 8064<phrase>
@@ -9133,7 +9133,7 @@
9133 *: "作品" 9133 *: "作品"
9134 </dest> 9134 </dest>
9135 <voice> 9135 <voice>
9136 *: "" 9136 *: "作品"
9137 </voice> 9137 </voice>
9138</phrase> 9138</phrase>
9139<phrase> 9139<phrase>
@@ -9423,7 +9423,7 @@
9423 *: "唱片編號" 9423 *: "唱片編號"
9424 </dest> 9424 </dest>
9425 <voice> 9425 <voice>
9426 *: "" 9426 *: "唱片編號"
9427 </voice> 9427 </voice>
9428</phrase> 9428</phrase>
9429<phrase> 9429<phrase>
@@ -9752,7 +9752,7 @@
9752 *: "專輯作者" 9752 *: "專輯作者"
9753 </dest> 9753 </dest>
9754 <voice> 9754 <voice>
9755 *: "" 9755 *: "專輯作者"
9756 </voice> 9756 </voice>
9757</phrase> 9757</phrase>
9758<phrase> 9758<phrase>
diff --git a/apps/lang/dansk.lang b/apps/lang/dansk.lang
index 5f7301e79e..6188c511fc 100644
--- a/apps/lang/dansk.lang
+++ b/apps/lang/dansk.lang
@@ -4049,7 +4049,7 @@
4049 *: "Titel" 4049 *: "Titel"
4050 </dest> 4050 </dest>
4051 <voice> 4051 <voice>
4052 *: "" 4052 *: "Titel"
4053 </voice> 4053 </voice>
4054</phrase> 4054</phrase>
4055<phrase> 4055<phrase>
@@ -4063,7 +4063,7 @@
4063 *: "Kunstner" 4063 *: "Kunstner"
4064 </dest> 4064 </dest>
4065 <voice> 4065 <voice>
4066 *: "" 4066 *: "Kunstner"
4067 </voice> 4067 </voice>
4068</phrase> 4068</phrase>
4069<phrase> 4069<phrase>
@@ -4077,7 +4077,7 @@
4077 *: "Album" 4077 *: "Album"
4078 </dest> 4078 </dest>
4079 <voice> 4079 <voice>
4080 *: "" 4080 *: "Album"
4081 </voice> 4081 </voice>
4082</phrase> 4082</phrase>
4083<phrase> 4083<phrase>
@@ -4091,7 +4091,7 @@
4091 *: "Sangnummer" 4091 *: "Sangnummer"
4092 </dest> 4092 </dest>
4093 <voice> 4093 <voice>
4094 *: "" 4094 *: "Sangnummer"
4095 </voice> 4095 </voice>
4096</phrase> 4096</phrase>
4097<phrase> 4097<phrase>
@@ -4105,7 +4105,7 @@
4105 *: "Genre" 4105 *: "Genre"
4106 </dest> 4106 </dest>
4107 <voice> 4107 <voice>
4108 *: "" 4108 *: "Genre"
4109 </voice> 4109 </voice>
4110</phrase> 4110</phrase>
4111<phrase> 4111<phrase>
@@ -4119,7 +4119,7 @@
4119 *: "År" 4119 *: "År"
4120 </dest> 4120 </dest>
4121 <voice> 4121 <voice>
4122 *: "" 4122 *: "År"
4123 </voice> 4123 </voice>
4124</phrase> 4124</phrase>
4125<phrase> 4125<phrase>
@@ -4133,7 +4133,7 @@
4133 *: "Sætliste" 4133 *: "Sætliste"
4134 </dest> 4134 </dest>
4135 <voice> 4135 <voice>
4136 *: "" 4136 *: "Sætliste"
4137 </voice> 4137 </voice>
4138</phrase> 4138</phrase>
4139<phrase> 4139<phrase>
@@ -4147,7 +4147,7 @@
4147 *: "Bitrate" 4147 *: "Bitrate"
4148 </dest> 4148 </dest>
4149 <voice> 4149 <voice>
4150 *: "" 4150 *: "Bitrate"
4151 </voice> 4151 </voice>
4152</phrase> 4152</phrase>
4153<phrase> 4153<phrase>
@@ -4161,7 +4161,7 @@
4161 *: " (VBR)" 4161 *: " (VBR)"
4162 </dest> 4162 </dest>
4163 <voice> 4163 <voice>
4164 *: "" 4164 *: "VBR"
4165 </voice> 4165 </voice>
4166</phrase> 4166</phrase>
4167<phrase> 4167<phrase>
@@ -4175,7 +4175,7 @@
4175 *: "Frekvens" 4175 *: "Frekvens"
4176 </dest> 4176 </dest>
4177 <voice> 4177 <voice>
4178 *: "" 4178 *: "Frekvens"
4179 </voice> 4179 </voice>
4180</phrase> 4180</phrase>
4181<phrase> 4181<phrase>
@@ -4189,7 +4189,7 @@
4189 *: "Sang lydstyrke" 4189 *: "Sang lydstyrke"
4190 </dest> 4190 </dest>
4191 <voice> 4191 <voice>
4192 *: "" 4192 *: "Sang lydstyrke"
4193 </voice> 4193 </voice>
4194</phrase> 4194</phrase>
4195<phrase> 4195<phrase>
@@ -4203,7 +4203,7 @@
4203 *: "Album lydstyrke" 4203 *: "Album lydstyrke"
4204 </dest> 4204 </dest>
4205 <voice> 4205 <voice>
4206 *: "" 4206 *: "Album lydstyrke"
4207 </voice> 4207 </voice>
4208</phrase> 4208</phrase>
4209<phrase> 4209<phrase>
@@ -4217,7 +4217,7 @@
4217 *: "Sti" 4217 *: "Sti"
4218 </dest> 4218 </dest>
4219 <voice> 4219 <voice>
4220 *: "" 4220 *: "Sti"
4221 </voice> 4221 </voice>
4222</phrase> 4222</phrase>
4223<phrase> 4223<phrase>
@@ -4231,7 +4231,7 @@
4231 *: "<Ingen info>" 4231 *: "<Ingen info>"
4232 </dest> 4232 </dest>
4233 <voice> 4233 <voice>
4234 *: "" 4234 *: "Ingen info"
4235 </voice> 4235 </voice>
4236</phrase> 4236</phrase>
4237<phrase> 4237<phrase>
@@ -7058,7 +7058,7 @@
7058 *: "Længde" 7058 *: "Længde"
7059 </dest> 7059 </dest>
7060 <voice> 7060 <voice>
7061 *: "" 7061 *: "Længde"
7062 </voice> 7062 </voice>
7063</phrase> 7063</phrase>
7064<phrase> 7064<phrase>
@@ -8448,7 +8448,7 @@
8448 *: "Kommentar" 8448 *: "Kommentar"
8449 </dest> 8449 </dest>
8450 <voice> 8450 <voice>
8451 *: "" 8451 *: "Kommentar"
8452 </voice> 8452 </voice>
8453</phrase> 8453</phrase>
8454<phrase> 8454<phrase>
@@ -9040,7 +9040,7 @@
9040 *: "Album kunstner" 9040 *: "Album kunstner"
9041 </dest> 9041 </dest>
9042 <voice> 9042 <voice>
9043 *: "" 9043 *: "Album kunstner"
9044 </voice> 9044 </voice>
9045</phrase> 9045</phrase>
9046<phrase> 9046<phrase>
@@ -9285,7 +9285,7 @@
9285 *: "Disc nummer" 9285 *: "Disc nummer"
9286 </dest> 9286 </dest>
9287 <voice> 9287 <voice>
9288 *: "" 9288 *: "Disc nummer"
9289 </voice> 9289 </voice>
9290</phrase> 9290</phrase>
9291<phrase> 9291<phrase>
@@ -9886,7 +9886,7 @@
9886 *: "Værk" 9886 *: "Værk"
9887 </dest> 9887 </dest>
9888 <voice> 9888 <voice>
9889 *: "" 9889 *: "Værk"
9890 </voice> 9890 </voice>
9891</phrase> 9891</phrase>
9892<phrase> 9892<phrase>
@@ -12390,7 +12390,7 @@
12390 *: "Komponist" 12390 *: "Komponist"
12391 </dest> 12391 </dest>
12392 <voice> 12392 <voice>
12393 *: "" 12393 *: "Komponist"
12394 </voice> 12394 </voice>
12395</phrase> 12395</phrase>
12396<phrase> 12396<phrase>
diff --git a/apps/lang/deutsch.lang b/apps/lang/deutsch.lang
index a16b50402c..679e12b71c 100644
--- a/apps/lang/deutsch.lang
+++ b/apps/lang/deutsch.lang
@@ -7147,7 +7147,7 @@
7147 *: "Titel" 7147 *: "Titel"
7148 </dest> 7148 </dest>
7149 <voice> 7149 <voice>
7150 *: "" 7150 *: "Titel"
7151 </voice> 7151 </voice>
7152</phrase> 7152</phrase>
7153<phrase> 7153<phrase>
@@ -7161,7 +7161,7 @@
7161 *: "Künstler" 7161 *: "Künstler"
7162 </dest> 7162 </dest>
7163 <voice> 7163 <voice>
7164 *: "" 7164 *: "Künstler"
7165 </voice> 7165 </voice>
7166</phrase> 7166</phrase>
7167<phrase> 7167<phrase>
@@ -7175,7 +7175,7 @@
7175 *: "Album" 7175 *: "Album"
7176 </dest> 7176 </dest>
7177 <voice> 7177 <voice>
7178 *: "" 7178 *: "Album"
7179 </voice> 7179 </voice>
7180</phrase> 7180</phrase>
7181<phrase> 7181<phrase>
@@ -7189,7 +7189,7 @@
7189 *: "Titelnr." 7189 *: "Titelnr."
7190 </dest> 7190 </dest>
7191 <voice> 7191 <voice>
7192 *: "" 7192 *: "Titelnr."
7193 </voice> 7193 </voice>
7194</phrase> 7194</phrase>
7195<phrase> 7195<phrase>
@@ -7203,7 +7203,7 @@
7203 *: "Genre" 7203 *: "Genre"
7204 </dest> 7204 </dest>
7205 <voice> 7205 <voice>
7206 *: "" 7206 *: "Genre"
7207 </voice> 7207 </voice>
7208</phrase> 7208</phrase>
7209<phrase> 7209<phrase>
@@ -7217,7 +7217,7 @@
7217 *: "Jahr" 7217 *: "Jahr"
7218 </dest> 7218 </dest>
7219 <voice> 7219 <voice>
7220 *: "" 7220 *: "Jahr"
7221 </voice> 7221 </voice>
7222</phrase> 7222</phrase>
7223<phrase> 7223<phrase>
@@ -7231,7 +7231,7 @@
7231 *: "Länge" 7231 *: "Länge"
7232 </dest> 7232 </dest>
7233 <voice> 7233 <voice>
7234 *: "" 7234 *: "Länge"
7235 </voice> 7235 </voice>
7236</phrase> 7236</phrase>
7237<phrase> 7237<phrase>
@@ -7245,7 +7245,7 @@
7245 *: "Wiedergabeliste" 7245 *: "Wiedergabeliste"
7246 </dest> 7246 </dest>
7247 <voice> 7247 <voice>
7248 *: "" 7248 *: "Wiedergabeliste"
7249 </voice> 7249 </voice>
7250</phrase> 7250</phrase>
7251<phrase> 7251<phrase>
@@ -7259,7 +7259,7 @@
7259 *: "Bitrate" 7259 *: "Bitrate"
7260 </dest> 7260 </dest>
7261 <voice> 7261 <voice>
7262 *: "" 7262 *: "Bitrate"
7263 </voice> 7263 </voice>
7264</phrase> 7264</phrase>
7265<phrase> 7265<phrase>
@@ -7273,7 +7273,7 @@
7273 *: "Album-Künstler" 7273 *: "Album-Künstler"
7274 </dest> 7274 </dest>
7275 <voice> 7275 <voice>
7276 *: "" 7276 *: "Album-Künstler"
7277 </voice> 7277 </voice>
7278</phrase> 7278</phrase>
7279<phrase> 7279<phrase>
@@ -7287,7 +7287,7 @@
7287 *: "Disknr." 7287 *: "Disknr."
7288 </dest> 7288 </dest>
7289 <voice> 7289 <voice>
7290 *: "" 7290 *: "Disknr."
7291 </voice> 7291 </voice>
7292</phrase> 7292</phrase>
7293<phrase> 7293<phrase>
@@ -7301,7 +7301,7 @@
7301 *: "Kommentar" 7301 *: "Kommentar"
7302 </dest> 7302 </dest>
7303 <voice> 7303 <voice>
7304 *: "" 7304 *: "Kommentar"
7305 </voice> 7305 </voice>
7306</phrase> 7306</phrase>
7307<phrase> 7307<phrase>
@@ -7315,7 +7315,7 @@
7315 *: " (VBR)" 7315 *: " (VBR)"
7316 </dest> 7316 </dest>
7317 <voice> 7317 <voice>
7318 *: "" 7318 *: "VBR"
7319 </voice> 7319 </voice>
7320</phrase> 7320</phrase>
7321<phrase> 7321<phrase>
@@ -7329,7 +7329,7 @@
7329 *: "Frequenz" 7329 *: "Frequenz"
7330 </dest> 7330 </dest>
7331 <voice> 7331 <voice>
7332 *: "" 7332 *: "Frequenz"
7333 </voice> 7333 </voice>
7334</phrase> 7334</phrase>
7335<phrase> 7335<phrase>
@@ -7343,7 +7343,7 @@
7343 *: "Titellautstärke" 7343 *: "Titellautstärke"
7344 </dest> 7344 </dest>
7345 <voice> 7345 <voice>
7346 *: "" 7346 *: "Titellautstärke"
7347 </voice> 7347 </voice>
7348</phrase> 7348</phrase>
7349<phrase> 7349<phrase>
@@ -7357,7 +7357,7 @@
7357 *: "Albumlautstärke" 7357 *: "Albumlautstärke"
7358 </dest> 7358 </dest>
7359 <voice> 7359 <voice>
7360 *: "" 7360 *: "Albumlautstärke"
7361 </voice> 7361 </voice>
7362</phrase> 7362</phrase>
7363<phrase> 7363<phrase>
@@ -7371,7 +7371,7 @@
7371 *: "Pfad" 7371 *: "Pfad"
7372 </dest> 7372 </dest>
7373 <voice> 7373 <voice>
7374 *: "" 7374 *: "Pfad"
7375 </voice> 7375 </voice>
7376</phrase> 7376</phrase>
7377<phrase> 7377<phrase>
@@ -7385,7 +7385,7 @@
7385 *: "<keine Info>" 7385 *: "<keine Info>"
7386 </dest> 7386 </dest>
7387 <voice> 7387 <voice>
7388 *: "" 7388 *: "keine Info"
7389 </voice> 7389 </voice>
7390</phrase> 7390</phrase>
7391<phrase> 7391<phrase>
@@ -10051,7 +10051,7 @@
10051 *: "Werk" 10051 *: "Werk"
10052 </dest> 10052 </dest>
10053 <voice> 10053 <voice>
10054 *: "" 10054 *: "Werk"
10055 </voice> 10055 </voice>
10056</phrase> 10056</phrase>
10057<phrase> 10057<phrase>
@@ -12347,7 +12347,7 @@
12347 *: "Komponist" 12347 *: "Komponist"
12348 </dest> 12348 </dest>
12349 <voice> 12349 <voice>
12350 *: "" 12350 *: "Komponist"
12351 </voice> 12351 </voice>
12352</phrase> 12352</phrase>
12353<phrase> 12353<phrase>
diff --git a/apps/lang/eesti.lang b/apps/lang/eesti.lang
index b1863b1c62..2116d2d85d 100644
--- a/apps/lang/eesti.lang
+++ b/apps/lang/eesti.lang
@@ -4421,7 +4421,7 @@
4421 *: "Title" 4421 *: "Title"
4422 </dest> 4422 </dest>
4423 <voice> 4423 <voice>
4424 *: "" 4424 *: "Title"
4425 </voice> 4425 </voice>
4426</phrase> 4426</phrase>
4427<phrase> 4427<phrase>
@@ -4435,7 +4435,7 @@
4435 *: "Artist" 4435 *: "Artist"
4436 </dest> 4436 </dest>
4437 <voice> 4437 <voice>
4438 *: "" 4438 *: "Artist"
4439 </voice> 4439 </voice>
4440</phrase> 4440</phrase>
4441<phrase> 4441<phrase>
@@ -4449,7 +4449,7 @@
4449 *: "Album" 4449 *: "Album"
4450 </dest> 4450 </dest>
4451 <voice> 4451 <voice>
4452 *: "" 4452 *: "Album"
4453 </voice> 4453 </voice>
4454</phrase> 4454</phrase>
4455<phrase> 4455<phrase>
@@ -4463,7 +4463,7 @@
4463 *: "Tracknum" 4463 *: "Tracknum"
4464 </dest> 4464 </dest>
4465 <voice> 4465 <voice>
4466 *: "" 4466 *: "Tracknum"
4467 </voice> 4467 </voice>
4468</phrase> 4468</phrase>
4469<phrase> 4469<phrase>
@@ -4477,7 +4477,7 @@
4477 *: "Genre" 4477 *: "Genre"
4478 </dest> 4478 </dest>
4479 <voice> 4479 <voice>
4480 *: "" 4480 *: "Genre"
4481 </voice> 4481 </voice>
4482</phrase> 4482</phrase>
4483<phrase> 4483<phrase>
@@ -4491,7 +4491,7 @@
4491 *: "Year" 4491 *: "Year"
4492 </dest> 4492 </dest>
4493 <voice> 4493 <voice>
4494 *: "" 4494 *: "Year"
4495 </voice> 4495 </voice>
4496</phrase> 4496</phrase>
4497<phrase> 4497<phrase>
@@ -4505,7 +4505,7 @@
4505 *: "Length" 4505 *: "Length"
4506 </dest> 4506 </dest>
4507 <voice> 4507 <voice>
4508 *: "" 4508 *: "Length"
4509 </voice> 4509 </voice>
4510</phrase> 4510</phrase>
4511<phrase> 4511<phrase>
@@ -4519,7 +4519,7 @@
4519 *: "Playlist" 4519 *: "Playlist"
4520 </dest> 4520 </dest>
4521 <voice> 4521 <voice>
4522 *: "" 4522 *: "Playlist"
4523 </voice> 4523 </voice>
4524</phrase> 4524</phrase>
4525<phrase> 4525<phrase>
@@ -4533,7 +4533,7 @@
4533 *: "Bitrate" 4533 *: "Bitrate"
4534 </dest> 4534 </dest>
4535 <voice> 4535 <voice>
4536 *: "" 4536 *: "Bitrate"
4537 </voice> 4537 </voice>
4538</phrase> 4538</phrase>
4539<phrase> 4539<phrase>
@@ -4547,7 +4547,7 @@
4547 *: " (VBR)" 4547 *: " (VBR)"
4548 </dest> 4548 </dest>
4549 <voice> 4549 <voice>
4550 *: "" 4550 *: "VBR"
4551 </voice> 4551 </voice>
4552</phrase> 4552</phrase>
4553<phrase> 4553<phrase>
@@ -4561,7 +4561,7 @@
4561 *: "Frequency" 4561 *: "Frequency"
4562 </dest> 4562 </dest>
4563 <voice> 4563 <voice>
4564 *: "" 4564 *: "Frequency"
4565 </voice> 4565 </voice>
4566</phrase> 4566</phrase>
4567<phrase> 4567<phrase>
@@ -4575,7 +4575,7 @@
4575 *: "Track Gain" 4575 *: "Track Gain"
4576 </dest> 4576 </dest>
4577 <voice> 4577 <voice>
4578 *: "" 4578 *: "Track Gain"
4579 </voice> 4579 </voice>
4580</phrase> 4580</phrase>
4581<phrase> 4581<phrase>
@@ -4589,7 +4589,7 @@
4589 *: "Album Gain" 4589 *: "Album Gain"
4590 </dest> 4590 </dest>
4591 <voice> 4591 <voice>
4592 *: "" 4592 *: "Album Gain"
4593 </voice> 4593 </voice>
4594</phrase> 4594</phrase>
4595<phrase> 4595<phrase>
@@ -4603,7 +4603,7 @@
4603 *: "Path" 4603 *: "Path"
4604 </dest> 4604 </dest>
4605 <voice> 4605 <voice>
4606 *: "" 4606 *: "Path"
4607 </voice> 4607 </voice>
4608</phrase> 4608</phrase>
4609<phrase> 4609<phrase>
@@ -4617,7 +4617,7 @@
4617 *: "<No Info>" 4617 *: "<No Info>"
4618 </dest> 4618 </dest>
4619 <voice> 4619 <voice>
4620 *: "" 4620 *: "No Info"
4621 </voice> 4621 </voice>
4622</phrase> 4622</phrase>
4623<phrase> 4623<phrase>
diff --git a/apps/lang/english-us.lang b/apps/lang/english-us.lang
index 8110cb4596..ca3a7bbfd0 100644
--- a/apps/lang/english-us.lang
+++ b/apps/lang/english-us.lang
@@ -7138,7 +7138,7 @@
7138 *: "Title" 7138 *: "Title"
7139 </dest> 7139 </dest>
7140 <voice> 7140 <voice>
7141 *: "" 7141 *: "Title"
7142 </voice> 7142 </voice>
7143</phrase> 7143</phrase>
7144<phrase> 7144<phrase>
@@ -7152,7 +7152,7 @@
7152 *: "Artist" 7152 *: "Artist"
7153 </dest> 7153 </dest>
7154 <voice> 7154 <voice>
7155 *: "" 7155 *: "Artist"
7156 </voice> 7156 </voice>
7157</phrase> 7157</phrase>
7158<phrase> 7158<phrase>
@@ -7166,7 +7166,7 @@
7166 *: "Album" 7166 *: "Album"
7167 </dest> 7167 </dest>
7168 <voice> 7168 <voice>
7169 *: "" 7169 *: "Album"
7170 </voice> 7170 </voice>
7171</phrase> 7171</phrase>
7172<phrase> 7172<phrase>
@@ -7180,7 +7180,7 @@
7180 *: "Tracknum" 7180 *: "Tracknum"
7181 </dest> 7181 </dest>
7182 <voice> 7182 <voice>
7183 *: "" 7183 *: "Track number"
7184 </voice> 7184 </voice>
7185</phrase> 7185</phrase>
7186<phrase> 7186<phrase>
@@ -7194,7 +7194,7 @@
7194 *: "Genre" 7194 *: "Genre"
7195 </dest> 7195 </dest>
7196 <voice> 7196 <voice>
7197 *: "" 7197 *: "Genre"
7198 </voice> 7198 </voice>
7199</phrase> 7199</phrase>
7200<phrase> 7200<phrase>
@@ -7208,7 +7208,7 @@
7208 *: "Year" 7208 *: "Year"
7209 </dest> 7209 </dest>
7210 <voice> 7210 <voice>
7211 *: "" 7211 *: "Year"
7212 </voice> 7212 </voice>
7213</phrase> 7213</phrase>
7214<phrase> 7214<phrase>
@@ -7222,7 +7222,7 @@
7222 *: "Length" 7222 *: "Length"
7223 </dest> 7223 </dest>
7224 <voice> 7224 <voice>
7225 *: "" 7225 *: "Length"
7226 </voice> 7226 </voice>
7227</phrase> 7227</phrase>
7228<phrase> 7228<phrase>
@@ -7236,7 +7236,7 @@
7236 *: "Playlist" 7236 *: "Playlist"
7237 </dest> 7237 </dest>
7238 <voice> 7238 <voice>
7239 *: "" 7239 *: "Playlist"
7240 </voice> 7240 </voice>
7241</phrase> 7241</phrase>
7242<phrase> 7242<phrase>
@@ -7250,7 +7250,7 @@
7250 *: "Bitrate" 7250 *: "Bitrate"
7251 </dest> 7251 </dest>
7252 <voice> 7252 <voice>
7253 *: "" 7253 *: "Bitrate"
7254 </voice> 7254 </voice>
7255</phrase> 7255</phrase>
7256<phrase> 7256<phrase>
@@ -7264,7 +7264,7 @@
7264 *: "Album Artist" 7264 *: "Album Artist"
7265 </dest> 7265 </dest>
7266 <voice> 7266 <voice>
7267 *: "" 7267 *: "Album Artist"
7268 </voice> 7268 </voice>
7269</phrase> 7269</phrase>
7270<phrase> 7270<phrase>
@@ -7278,7 +7278,7 @@
7278 *: "Discnum" 7278 *: "Discnum"
7279 </dest> 7279 </dest>
7280 <voice> 7280 <voice>
7281 *: "" 7281 *: "Disc number"
7282 </voice> 7282 </voice>
7283</phrase> 7283</phrase>
7284<phrase> 7284<phrase>
@@ -7292,7 +7292,7 @@
7292 *: "Comment" 7292 *: "Comment"
7293 </dest> 7293 </dest>
7294 <voice> 7294 <voice>
7295 *: "" 7295 *: "Comment"
7296 </voice> 7296 </voice>
7297</phrase> 7297</phrase>
7298<phrase> 7298<phrase>
@@ -7306,7 +7306,7 @@
7306 *: " (VBR)" 7306 *: " (VBR)"
7307 </dest> 7307 </dest>
7308 <voice> 7308 <voice>
7309 *: "" 7309 *: "VBR"
7310 </voice> 7310 </voice>
7311</phrase> 7311</phrase>
7312<phrase> 7312<phrase>
@@ -7320,7 +7320,7 @@
7320 *: "Frequency" 7320 *: "Frequency"
7321 </dest> 7321 </dest>
7322 <voice> 7322 <voice>
7323 *: "" 7323 *: "Frequency"
7324 </voice> 7324 </voice>
7325</phrase> 7325</phrase>
7326<phrase> 7326<phrase>
@@ -7334,7 +7334,7 @@
7334 *: "Track Gain" 7334 *: "Track Gain"
7335 </dest> 7335 </dest>
7336 <voice> 7336 <voice>
7337 *: "" 7337 *: "Track Gain"
7338 </voice> 7338 </voice>
7339</phrase> 7339</phrase>
7340<phrase> 7340<phrase>
@@ -7348,7 +7348,7 @@
7348 *: "Album Gain" 7348 *: "Album Gain"
7349 </dest> 7349 </dest>
7350 <voice> 7350 <voice>
7351 *: "" 7351 *: "Album Gain"
7352 </voice> 7352 </voice>
7353</phrase> 7353</phrase>
7354<phrase> 7354<phrase>
@@ -7362,7 +7362,7 @@
7362 *: "Path" 7362 *: "Path"
7363 </dest> 7363 </dest>
7364 <voice> 7364 <voice>
7365 *: "" 7365 *: "Path"
7366 </voice> 7366 </voice>
7367</phrase> 7367</phrase>
7368<phrase> 7368<phrase>
@@ -7376,7 +7376,7 @@
7376 *: "<No Info>" 7376 *: "<No Info>"
7377 </dest> 7377 </dest>
7378 <voice> 7378 <voice>
7379 *: "" 7379 *: "No Info"
7380 </voice> 7380 </voice>
7381</phrase> 7381</phrase>
7382<phrase> 7382<phrase>
@@ -10042,7 +10042,7 @@
10042 *: "Work" 10042 *: "Work"
10043 </dest> 10043 </dest>
10044 <voice> 10044 <voice>
10045 *: "" 10045 *: "Work"
10046 </voice> 10046 </voice>
10047</phrase> 10047</phrase>
10048<phrase> 10048<phrase>
@@ -12457,7 +12457,7 @@
12457 *: "Composer" 12457 *: "Composer"
12458 </dest> 12458 </dest>
12459 <voice> 12459 <voice>
12460 *: "" 12460 *: "Composer"
12461 </voice> 12461 </voice>
12462</phrase> 12462</phrase>
12463<phrase> 12463<phrase>
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 02482d08af..0a3c34b416 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -7029,7 +7029,7 @@
7029 *: "Searching... %d found (%s)" 7029 *: "Searching... %d found (%s)"
7030 </dest> 7030 </dest>
7031 <voice> 7031 <voice>
7032 *: "" 7032 *: "Found"
7033 </voice> 7033 </voice>
7034</phrase> 7034</phrase>
7035<phrase> 7035<phrase>
@@ -7225,7 +7225,7 @@
7225 *: "Title" 7225 *: "Title"
7226 </dest> 7226 </dest>
7227 <voice> 7227 <voice>
7228 *: "" 7228 *: "Title"
7229 </voice> 7229 </voice>
7230</phrase> 7230</phrase>
7231<phrase> 7231<phrase>
@@ -7239,7 +7239,7 @@
7239 *: "Artist" 7239 *: "Artist"
7240 </dest> 7240 </dest>
7241 <voice> 7241 <voice>
7242 *: "" 7242 *: "Artist"
7243 </voice> 7243 </voice>
7244</phrase> 7244</phrase>
7245<phrase> 7245<phrase>
@@ -7253,7 +7253,7 @@
7253 *: "Album" 7253 *: "Album"
7254 </dest> 7254 </dest>
7255 <voice> 7255 <voice>
7256 *: "" 7256 *: "Album"
7257 </voice> 7257 </voice>
7258</phrase> 7258</phrase>
7259<phrase> 7259<phrase>
@@ -7267,7 +7267,7 @@
7267 *: "Tracknum" 7267 *: "Tracknum"
7268 </dest> 7268 </dest>
7269 <voice> 7269 <voice>
7270 *: "" 7270 *: "Track number"
7271 </voice> 7271 </voice>
7272</phrase> 7272</phrase>
7273<phrase> 7273<phrase>
@@ -7281,7 +7281,7 @@
7281 *: "Genre" 7281 *: "Genre"
7282 </dest> 7282 </dest>
7283 <voice> 7283 <voice>
7284 *: "" 7284 *: "Genre"
7285 </voice> 7285 </voice>
7286</phrase> 7286</phrase>
7287<phrase> 7287<phrase>
@@ -7295,7 +7295,7 @@
7295 *: "Year" 7295 *: "Year"
7296 </dest> 7296 </dest>
7297 <voice> 7297 <voice>
7298 *: "" 7298 *: "Year"
7299 </voice> 7299 </voice>
7300</phrase> 7300</phrase>
7301<phrase> 7301<phrase>
@@ -7309,7 +7309,7 @@
7309 *: "Length" 7309 *: "Length"
7310 </dest> 7310 </dest>
7311 <voice> 7311 <voice>
7312 *: "" 7312 *: "Length"
7313 </voice> 7313 </voice>
7314</phrase> 7314</phrase>
7315<phrase> 7315<phrase>
@@ -7323,7 +7323,7 @@
7323 *: "Playlist" 7323 *: "Playlist"
7324 </dest> 7324 </dest>
7325 <voice> 7325 <voice>
7326 *: "" 7326 *: "Playlist"
7327 </voice> 7327 </voice>
7328</phrase> 7328</phrase>
7329<phrase> 7329<phrase>
@@ -7337,7 +7337,7 @@
7337 *: "Bitrate" 7337 *: "Bitrate"
7338 </dest> 7338 </dest>
7339 <voice> 7339 <voice>
7340 *: "" 7340 *: "Bit rate"
7341 </voice> 7341 </voice>
7342</phrase> 7342</phrase>
7343<phrase> 7343<phrase>
@@ -7351,7 +7351,7 @@
7351 *: "Album Artist" 7351 *: "Album Artist"
7352 </dest> 7352 </dest>
7353 <voice> 7353 <voice>
7354 *: "" 7354 *: "Album Artist"
7355 </voice> 7355 </voice>
7356</phrase> 7356</phrase>
7357<phrase> 7357<phrase>
@@ -7365,7 +7365,7 @@
7365 *: "Discnum" 7365 *: "Discnum"
7366 </dest> 7366 </dest>
7367 <voice> 7367 <voice>
7368 *: "" 7368 *: "Disc number"
7369 </voice> 7369 </voice>
7370</phrase> 7370</phrase>
7371<phrase> 7371<phrase>
@@ -7379,7 +7379,7 @@
7379 *: "Comment" 7379 *: "Comment"
7380 </dest> 7380 </dest>
7381 <voice> 7381 <voice>
7382 *: "" 7382 *: "Comment"
7383 </voice> 7383 </voice>
7384</phrase> 7384</phrase>
7385<phrase> 7385<phrase>
@@ -7393,7 +7393,7 @@
7393 *: " (VBR)" 7393 *: " (VBR)"
7394 </dest> 7394 </dest>
7395 <voice> 7395 <voice>
7396 *: "" 7396 *: "VBR"
7397 </voice> 7397 </voice>
7398</phrase> 7398</phrase>
7399<phrase> 7399<phrase>
@@ -7407,7 +7407,7 @@
7407 *: "Frequency" 7407 *: "Frequency"
7408 </dest> 7408 </dest>
7409 <voice> 7409 <voice>
7410 *: "" 7410 *: "Frequency"
7411 </voice> 7411 </voice>
7412</phrase> 7412</phrase>
7413<phrase> 7413<phrase>
@@ -7421,7 +7421,7 @@
7421 *: "Track Gain" 7421 *: "Track Gain"
7422 </dest> 7422 </dest>
7423 <voice> 7423 <voice>
7424 *: "" 7424 *: "Track gain"
7425 </voice> 7425 </voice>
7426</phrase> 7426</phrase>
7427<phrase> 7427<phrase>
@@ -7435,7 +7435,7 @@
7435 *: "Album Gain" 7435 *: "Album Gain"
7436 </dest> 7436 </dest>
7437 <voice> 7437 <voice>
7438 *: "" 7438 *: "Album gain"
7439 </voice> 7439 </voice>
7440</phrase> 7440</phrase>
7441<phrase> 7441<phrase>
@@ -7449,7 +7449,7 @@
7449 *: "Path" 7449 *: "Path"
7450 </dest> 7450 </dest>
7451 <voice> 7451 <voice>
7452 *: "" 7452 *: "Path"
7453 </voice> 7453 </voice>
7454</phrase> 7454</phrase>
7455<phrase> 7455<phrase>
@@ -7463,7 +7463,7 @@
7463 *: "<No Info>" 7463 *: "<No Info>"
7464 </dest> 7464 </dest>
7465 <voice> 7465 <voice>
7466 *: "" 7466 *: "No info"
7467 </voice> 7467 </voice>
7468</phrase> 7468</phrase>
7469<phrase> 7469<phrase>
@@ -10131,7 +10131,7 @@
10131 *: "Work" 10131 *: "Work"
10132 </dest> 10132 </dest>
10133 <voice> 10133 <voice>
10134 *: "" 10134 *: "Work"
10135 </voice> 10135 </voice>
10136</phrase> 10136</phrase>
10137<phrase> 10137<phrase>
@@ -12563,7 +12563,7 @@
12563 *: "Composer" 12563 *: "Composer"
12564 </dest> 12564 </dest>
12565 <voice> 12565 <voice>
12566 *: "" 12566 *: "Composer"
12567 </voice> 12567 </voice>
12568</phrase> 12568</phrase>
12569<phrase> 12569<phrase>
@@ -13717,3 +13717,73 @@
13717 *: "One per track" 13717 *: "One per track"
13718 </voice> 13718 </voice>
13719</phrase> 13719</phrase>
13720<phrase>
13721 id: VOICE_TRACK_TO_MOVE
13722 desc: playlist viewer
13723 user: core
13724 <source>
13725 *: ""
13726 </source>
13727 <dest>
13728 *: ""
13729 </dest>
13730 <voice>
13731 *: "Track to move"
13732 </voice>
13733</phrase>
13734<phrase>
13735 id: VOICE_QUEUED
13736 desc: playlist viewer
13737 user: core
13738 <source>
13739 *: ""
13740 </source>
13741 <dest>
13742 *: ""
13743 </dest>
13744 <voice>
13745 *: "Queued"
13746 </voice>
13747</phrase>
13748<phrase>
13749 id: VOICE_BAD_TRACK
13750 desc: playlist viewer
13751 user: core
13752 <source>
13753 *: ""
13754 </source>
13755 <dest>
13756 *: ""
13757 </dest>
13758 <voice>
13759 *: "Bad track"
13760 </voice>
13761</phrase>
13762<phrase>
13763 id: VOICE_MOVING_TRACK
13764 desc: playlist viewer
13765 user: core
13766 <source>
13767 *: ""
13768 </source>
13769 <dest>
13770 *: ""
13771 </dest>
13772 <voice>
13773 *: "Moving track"
13774 </voice>
13775</phrase>
13776<phrase>
13777 id: LANG_NO_VIEWERS
13778 desc: text for splash to indicate that no viewers are available
13779 user: core
13780 <source>
13781 *: "No viewers found"
13782 </source>
13783 <dest>
13784 *: "No viewers found"
13785 </dest>
13786 <voice>
13787 *: "No viewers found"
13788 </voice>
13789</phrase>
diff --git a/apps/lang/espanol.lang b/apps/lang/espanol.lang
index bc7e8c2804..5f023bf35e 100644
--- a/apps/lang/espanol.lang
+++ b/apps/lang/espanol.lang
@@ -3102,7 +3102,7 @@
3102 *: "Título" 3102 *: "Título"
3103 </dest> 3103 </dest>
3104 <voice> 3104 <voice>
3105 *: "" 3105 *: "Título"
3106 </voice> 3106 </voice>
3107</phrase> 3107</phrase>
3108<phrase> 3108<phrase>
@@ -3116,7 +3116,7 @@
3116 *: "Artista" 3116 *: "Artista"
3117 </dest> 3117 </dest>
3118 <voice> 3118 <voice>
3119 *: "" 3119 *: "Artista"
3120 </voice> 3120 </voice>
3121</phrase> 3121</phrase>
3122<phrase> 3122<phrase>
@@ -3130,7 +3130,7 @@
3130 *: "Álbum" 3130 *: "Álbum"
3131 </dest> 3131 </dest>
3132 <voice> 3132 <voice>
3133 *: "" 3133 *: "Álbum"
3134 </voice> 3134 </voice>
3135</phrase> 3135</phrase>
3136<phrase> 3136<phrase>
@@ -3144,7 +3144,7 @@
3144 *: "Nº pista" 3144 *: "Nº pista"
3145 </dest> 3145 </dest>
3146 <voice> 3146 <voice>
3147 *: "" 3147 *: "Nº pista"
3148 </voice> 3148 </voice>
3149</phrase> 3149</phrase>
3150<phrase> 3150<phrase>
@@ -3158,7 +3158,7 @@
3158 *: "Género" 3158 *: "Género"
3159 </dest> 3159 </dest>
3160 <voice> 3160 <voice>
3161 *: "" 3161 *: "Género"
3162 </voice> 3162 </voice>
3163</phrase> 3163</phrase>
3164<phrase> 3164<phrase>
@@ -3172,7 +3172,7 @@
3172 *: "Año" 3172 *: "Año"
3173 </dest> 3173 </dest>
3174 <voice> 3174 <voice>
3175 *: "" 3175 *: "Año"
3176 </voice> 3176 </voice>
3177</phrase> 3177</phrase>
3178<phrase> 3178<phrase>
@@ -3186,7 +3186,7 @@
3186 *: "Lista de reprod." 3186 *: "Lista de reprod."
3187 </dest> 3187 </dest>
3188 <voice> 3188 <voice>
3189 *: "" 3189 *: "Lista de reprod."
3190 </voice> 3190 </voice>
3191</phrase> 3191</phrase>
3192<phrase> 3192<phrase>
@@ -3200,7 +3200,7 @@
3200 *: "Tasa de bits" 3200 *: "Tasa de bits"
3201 </dest> 3201 </dest>
3202 <voice> 3202 <voice>
3203 *: "" 3203 *: "Tasa de bits"
3204 </voice> 3204 </voice>
3205</phrase> 3205</phrase>
3206<phrase> 3206<phrase>
@@ -3214,7 +3214,7 @@
3214 *: "Frecuencia" 3214 *: "Frecuencia"
3215 </dest> 3215 </dest>
3216 <voice> 3216 <voice>
3217 *: "" 3217 *: "Frecuencia"
3218 </voice> 3218 </voice>
3219</phrase> 3219</phrase>
3220<phrase> 3220<phrase>
@@ -3228,7 +3228,7 @@
3228 *: "Ruta" 3228 *: "Ruta"
3229 </dest> 3229 </dest>
3230 <voice> 3230 <voice>
3231 *: "" 3231 *: "Ruta"
3232 </voice> 3232 </voice>
3233</phrase> 3233</phrase>
3234<phrase> 3234<phrase>
@@ -3242,7 +3242,7 @@
3242 *: "<Sin información>" 3242 *: "<Sin información>"
3243 </dest> 3243 </dest>
3244 <voice> 3244 <voice>
3245 *: "" 3245 *: "Sin información"
3246 </voice> 3246 </voice>
3247</phrase> 3247</phrase>
3248<phrase> 3248<phrase>
@@ -5816,7 +5816,7 @@
5816 *: " (VBR)" 5816 *: " (VBR)"
5817 </dest> 5817 </dest>
5818 <voice> 5818 <voice>
5819 *: "" 5819 *: "VBR"
5820 </voice> 5820 </voice>
5821</phrase> 5821</phrase>
5822<phrase> 5822<phrase>
@@ -6169,7 +6169,7 @@
6169 *: "Unificación de volumen en el álbum" 6169 *: "Unificación de volumen en el álbum"
6170 </dest> 6170 </dest>
6171 <voice> 6171 <voice>
6172 *: "" 6172 *: "Unificación de volumen en el álbum"
6173 </voice> 6173 </voice>
6174</phrase> 6174</phrase>
6175<phrase> 6175<phrase>
@@ -6618,7 +6618,7 @@
6618 *: "Unificación de volumen en la pista" 6618 *: "Unificación de volumen en la pista"
6619 </dest> 6619 </dest>
6620 <voice> 6620 <voice>
6621 *: "" 6621 *: "Unificación de volumen en la pista"
6622 </voice> 6622 </voice>
6623</phrase> 6623</phrase>
6624<phrase> 6624<phrase>
@@ -6965,7 +6965,7 @@
6965 *: "Longitud" 6965 *: "Longitud"
6966 </dest> 6966 </dest>
6967 <voice> 6967 <voice>
6968 *: "" 6968 *: "Longitud"
6969 </voice> 6969 </voice>
6970</phrase> 6970</phrase>
6971<phrase> 6971<phrase>
@@ -8299,7 +8299,7 @@
8299 *: "Álbum Artista" 8299 *: "Álbum Artista"
8300 </dest> 8300 </dest>
8301 <voice> 8301 <voice>
8302 *: "" 8302 *: "Álbum Artista"
8303 </voice> 8303 </voice>
8304</phrase> 8304</phrase>
8305<phrase> 8305<phrase>
@@ -8313,7 +8313,7 @@
8313 *: "Comentario" 8313 *: "Comentario"
8314 </dest> 8314 </dest>
8315 <voice> 8315 <voice>
8316 *: "" 8316 *: "Comentario"
8317 </voice> 8317 </voice>
8318</phrase> 8318</phrase>
8319<phrase> 8319<phrase>
@@ -9670,7 +9670,7 @@
9670 *: "Trabajo" 9670 *: "Trabajo"
9671 </dest> 9671 </dest>
9672 <voice> 9672 <voice>
9673 *: "" 9673 *: "Trabajo"
9674 </voice> 9674 </voice>
9675</phrase> 9675</phrase>
9676<phrase> 9676<phrase>
@@ -9873,7 +9873,7 @@
9873 *: "NúmDisc" 9873 *: "NúmDisc"
9874 </dest> 9874 </dest>
9875 <voice> 9875 <voice>
9876 *: "" 9876 *: "NúmDisc"
9877 </voice> 9877 </voice>
9878</phrase> 9878</phrase>
9879<phrase> 9879<phrase>
@@ -12425,7 +12425,7 @@
12425 *: "Compositor" 12425 *: "Compositor"
12426 </dest> 12426 </dest>
12427 <voice> 12427 <voice>
12428 *: "" 12428 *: "Compositor"
12429 </voice> 12429 </voice>
12430</phrase> 12430</phrase>
12431<phrase> 12431<phrase>
diff --git a/apps/lang/esperanto.lang b/apps/lang/esperanto.lang
index c318b2a8ae..2f0e18deb1 100644
--- a/apps/lang/esperanto.lang
+++ b/apps/lang/esperanto.lang
@@ -4629,7 +4629,7 @@
4629 *: "Titolo" 4629 *: "Titolo"
4630 </dest> 4630 </dest>
4631 <voice> 4631 <voice>
4632 *: "" 4632 *: "Titolo"
4633 </voice> 4633 </voice>
4634</phrase> 4634</phrase>
4635<phrase> 4635<phrase>
@@ -4643,7 +4643,7 @@
4643 *: "Artisto" 4643 *: "Artisto"
4644 </dest> 4644 </dest>
4645 <voice> 4645 <voice>
4646 *: "" 4646 *: "Artisto"
4647 </voice> 4647 </voice>
4648</phrase> 4648</phrase>
4649<phrase> 4649<phrase>
@@ -4657,7 +4657,7 @@
4657 *: "Albumo" 4657 *: "Albumo"
4658 </dest> 4658 </dest>
4659 <voice> 4659 <voice>
4660 *: "" 4660 *: "Albumo"
4661 </voice> 4661 </voice>
4662</phrase> 4662</phrase>
4663<phrase> 4663<phrase>
@@ -4671,7 +4671,7 @@
4671 *: "Kanta Numero" 4671 *: "Kanta Numero"
4672 </dest> 4672 </dest>
4673 <voice> 4673 <voice>
4674 *: "" 4674 *: "Kanta Numero"
4675 </voice> 4675 </voice>
4676</phrase> 4676</phrase>
4677<phrase> 4677<phrase>
@@ -4685,7 +4685,7 @@
4685 *: "Ĝenro" 4685 *: "Ĝenro"
4686 </dest> 4686 </dest>
4687 <voice> 4687 <voice>
4688 *: "" 4688 *: "Ĝenro"
4689 </voice> 4689 </voice>
4690</phrase> 4690</phrase>
4691<phrase> 4691<phrase>
@@ -4699,7 +4699,7 @@
4699 *: "Jaro" 4699 *: "Jaro"
4700 </dest> 4700 </dest>
4701 <voice> 4701 <voice>
4702 *: "" 4702 *: "Jaro"
4703 </voice> 4703 </voice>
4704</phrase> 4704</phrase>
4705<phrase> 4705<phrase>
@@ -4713,7 +4713,7 @@
4713 *: "Longo" 4713 *: "Longo"
4714 </dest> 4714 </dest>
4715 <voice> 4715 <voice>
4716 *: "" 4716 *: "Longo"
4717 </voice> 4717 </voice>
4718</phrase> 4718</phrase>
4719<phrase> 4719<phrase>
@@ -4727,7 +4727,7 @@
4727 *: "Leglisto" 4727 *: "Leglisto"
4728 </dest> 4728 </dest>
4729 <voice> 4729 <voice>
4730 *: "" 4730 *: "Leglisto"
4731 </voice> 4731 </voice>
4732</phrase> 4732</phrase>
4733<phrase> 4733<phrase>
@@ -4741,7 +4741,7 @@
4741 *: "Bitfrekvenco" 4741 *: "Bitfrekvenco"
4742 </dest> 4742 </dest>
4743 <voice> 4743 <voice>
4744 *: "" 4744 *: "Bitfrekvenco"
4745 </voice> 4745 </voice>
4746</phrase> 4746</phrase>
4747<phrase> 4747<phrase>
@@ -4755,7 +4755,7 @@
4755 *: " (VBR)" 4755 *: " (VBR)"
4756 </dest> 4756 </dest>
4757 <voice> 4757 <voice>
4758 *: "" 4758 *: "VBR"
4759 </voice> 4759 </voice>
4760</phrase> 4760</phrase>
4761<phrase> 4761<phrase>
@@ -4769,7 +4769,7 @@
4769 *: "Frekvenco" 4769 *: "Frekvenco"
4770 </dest> 4770 </dest>
4771 <voice> 4771 <voice>
4772 *: "" 4772 *: "Frekvenco"
4773 </voice> 4773 </voice>
4774</phrase> 4774</phrase>
4775<phrase> 4775<phrase>
@@ -4783,7 +4783,7 @@
4783 *: "Kanta Gajno" 4783 *: "Kanta Gajno"
4784 </dest> 4784 </dest>
4785 <voice> 4785 <voice>
4786 *: "" 4786 *: "Kanta Gajno"
4787 </voice> 4787 </voice>
4788</phrase> 4788</phrase>
4789<phrase> 4789<phrase>
@@ -4797,7 +4797,7 @@
4797 *: "Albumo Gajno" 4797 *: "Albumo Gajno"
4798 </dest> 4798 </dest>
4799 <voice> 4799 <voice>
4800 *: "" 4800 *: "Albumo Gajno"
4801 </voice> 4801 </voice>
4802</phrase> 4802</phrase>
4803<phrase> 4803<phrase>
@@ -4811,7 +4811,7 @@
4811 *: "Vojo" 4811 *: "Vojo"
4812 </dest> 4812 </dest>
4813 <voice> 4813 <voice>
4814 *: "" 4814 *: "Vojo"
4815 </voice> 4815 </voice>
4816</phrase> 4816</phrase>
4817<phrase> 4817<phrase>
@@ -4825,7 +4825,7 @@
4825 *: "<Sen Informoj>" 4825 *: "<Sen Informoj>"
4826 </dest> 4826 </dest>
4827 <voice> 4827 <voice>
4828 *: "" 4828 *: "Sen Informoj"
4829 </voice> 4829 </voice>
4830</phrase> 4830</phrase>
4831<phrase> 4831<phrase>
diff --git a/apps/lang/finnish.lang b/apps/lang/finnish.lang
index 9154f3aa34..bc750037d7 100644
--- a/apps/lang/finnish.lang
+++ b/apps/lang/finnish.lang
@@ -4803,7 +4803,7 @@
4803 *: "Kappale" 4803 *: "Kappale"
4804 </dest> 4804 </dest>
4805 <voice> 4805 <voice>
4806 *: "" 4806 *: "Kappale"
4807 </voice> 4807 </voice>
4808</phrase> 4808</phrase>
4809<phrase> 4809<phrase>
@@ -4817,7 +4817,7 @@
4817 *: "Esittäjä" 4817 *: "Esittäjä"
4818 </dest> 4818 </dest>
4819 <voice> 4819 <voice>
4820 *: "" 4820 *: "Esittäjä"
4821 </voice> 4821 </voice>
4822</phrase> 4822</phrase>
4823<phrase> 4823<phrase>
@@ -4831,7 +4831,7 @@
4831 *: "Albumi" 4831 *: "Albumi"
4832 </dest> 4832 </dest>
4833 <voice> 4833 <voice>
4834 *: "" 4834 *: "Albumi"
4835 </voice> 4835 </voice>
4836</phrase> 4836</phrase>
4837<phrase> 4837<phrase>
@@ -4845,7 +4845,7 @@
4845 *: "Kappalenro" 4845 *: "Kappalenro"
4846 </dest> 4846 </dest>
4847 <voice> 4847 <voice>
4848 *: "" 4848 *: "Kappalenro"
4849 </voice> 4849 </voice>
4850</phrase> 4850</phrase>
4851<phrase> 4851<phrase>
@@ -4859,7 +4859,7 @@
4859 *: "Tyylilaji" 4859 *: "Tyylilaji"
4860 </dest> 4860 </dest>
4861 <voice> 4861 <voice>
4862 *: "" 4862 *: "Tyylilaji"
4863 </voice> 4863 </voice>
4864</phrase> 4864</phrase>
4865<phrase> 4865<phrase>
@@ -4873,7 +4873,7 @@
4873 *: "Vuosi" 4873 *: "Vuosi"
4874 </dest> 4874 </dest>
4875 <voice> 4875 <voice>
4876 *: "" 4876 *: "Vuosi"
4877 </voice> 4877 </voice>
4878</phrase> 4878</phrase>
4879<phrase> 4879<phrase>
@@ -4887,7 +4887,7 @@
4887 *: "Pituus" 4887 *: "Pituus"
4888 </dest> 4888 </dest>
4889 <voice> 4889 <voice>
4890 *: "" 4890 *: "Pituus"
4891 </voice> 4891 </voice>
4892</phrase> 4892</phrase>
4893<phrase> 4893<phrase>
@@ -4901,7 +4901,7 @@
4901 *: "Soittolista" 4901 *: "Soittolista"
4902 </dest> 4902 </dest>
4903 <voice> 4903 <voice>
4904 *: "" 4904 *: "Soittolista"
4905 </voice> 4905 </voice>
4906</phrase> 4906</phrase>
4907<phrase> 4907<phrase>
@@ -4915,7 +4915,7 @@
4915 *: "Bittinopeus" 4915 *: "Bittinopeus"
4916 </dest> 4916 </dest>
4917 <voice> 4917 <voice>
4918 *: "" 4918 *: "Bittinopeus"
4919 </voice> 4919 </voice>
4920</phrase> 4920</phrase>
4921<phrase> 4921<phrase>
@@ -4929,7 +4929,7 @@
4929 *: " (VBR)" 4929 *: " (VBR)"
4930 </dest> 4930 </dest>
4931 <voice> 4931 <voice>
4932 *: "" 4932 *: "VBR"
4933 </voice> 4933 </voice>
4934</phrase> 4934</phrase>
4935<phrase> 4935<phrase>
@@ -4943,7 +4943,7 @@
4943 *: "Taajuus" 4943 *: "Taajuus"
4944 </dest> 4944 </dest>
4945 <voice> 4945 <voice>
4946 *: "" 4946 *: "Taajuus"
4947 </voice> 4947 </voice>
4948</phrase> 4948</phrase>
4949<phrase> 4949<phrase>
@@ -4957,7 +4957,7 @@
4957 *: "Kappalevahvistus" 4957 *: "Kappalevahvistus"
4958 </dest> 4958 </dest>
4959 <voice> 4959 <voice>
4960 *: "" 4960 *: "Kappalevahvistus"
4961 </voice> 4961 </voice>
4962</phrase> 4962</phrase>
4963<phrase> 4963<phrase>
@@ -4971,7 +4971,7 @@
4971 *: "Albumivahvistus" 4971 *: "Albumivahvistus"
4972 </dest> 4972 </dest>
4973 <voice> 4973 <voice>
4974 *: "" 4974 *: "Albumivahvistus"
4975 </voice> 4975 </voice>
4976</phrase> 4976</phrase>
4977<phrase> 4977<phrase>
@@ -4985,7 +4985,7 @@
4985 *: "Polku" 4985 *: "Polku"
4986 </dest> 4986 </dest>
4987 <voice> 4987 <voice>
4988 *: "" 4988 *: "Polku"
4989 </voice> 4989 </voice>
4990</phrase> 4990</phrase>
4991<phrase> 4991<phrase>
@@ -4999,7 +4999,7 @@
4999 *: "<Ei tietoja>" 4999 *: "<Ei tietoja>"
5000 </dest> 5000 </dest>
5001 <voice> 5001 <voice>
5002 *: "" 5002 *: "Ei tietoja"
5003 </voice> 5003 </voice>
5004</phrase> 5004</phrase>
5005<phrase> 5005<phrase>
@@ -8875,7 +8875,7 @@
8875 *: "Albumin esittäjä" 8875 *: "Albumin esittäjä"
8876 </dest> 8876 </dest>
8877 <voice> 8877 <voice>
8878 *: "" 8878 *: "Albumin esittäjä"
8879 </voice> 8879 </voice>
8880</phrase> 8880</phrase>
8881<phrase> 8881<phrase>
@@ -8889,7 +8889,7 @@
8889 *: "Kommentti" 8889 *: "Kommentti"
8890 </dest> 8890 </dest>
8891 <voice> 8891 <voice>
8892 *: "" 8892 *: "Kommentti"
8893 </voice> 8893 </voice>
8894</phrase> 8894</phrase>
8895<phrase> 8895<phrase>
@@ -9866,7 +9866,7 @@
9866 *: "Levynro" 9866 *: "Levynro"
9867 </dest> 9867 </dest>
9868 <voice> 9868 <voice>
9869 *: "" 9869 *: "Levynro"
9870 </voice> 9870 </voice>
9871</phrase> 9871</phrase>
9872<phrase> 9872<phrase>
@@ -10037,7 +10037,7 @@
10037 *: "Työ" 10037 *: "Työ"
10038 </dest> 10038 </dest>
10039 <voice> 10039 <voice>
10040 *: "" 10040 *: "Työ"
10041 </voice> 10041 </voice>
10042</phrase> 10042</phrase>
10043<phrase> 10043<phrase>
@@ -12459,7 +12459,7 @@
12459 *: "Säveltäjä" 12459 *: "Säveltäjä"
12460 </dest> 12460 </dest>
12461 <voice> 12461 <voice>
12462 *: "" 12462 *: "Säveltäjä"
12463 </voice> 12463 </voice>
12464</phrase> 12464</phrase>
12465<phrase> 12465<phrase>
diff --git a/apps/lang/francais.lang b/apps/lang/francais.lang
index e8f2cc797f..a020bf57b0 100644
--- a/apps/lang/francais.lang
+++ b/apps/lang/francais.lang
@@ -7170,7 +7170,7 @@
7170 *: "Titre" 7170 *: "Titre"
7171 </dest> 7171 </dest>
7172 <voice> 7172 <voice>
7173 *: "" 7173 *: "Titre"
7174 </voice> 7174 </voice>
7175</phrase> 7175</phrase>
7176<phrase> 7176<phrase>
@@ -7184,7 +7184,7 @@
7184 *: "Artiste" 7184 *: "Artiste"
7185 </dest> 7185 </dest>
7186 <voice> 7186 <voice>
7187 *: "" 7187 *: "Artiste"
7188 </voice> 7188 </voice>
7189</phrase> 7189</phrase>
7190<phrase> 7190<phrase>
@@ -7198,7 +7198,7 @@
7198 *: "Album" 7198 *: "Album"
7199 </dest> 7199 </dest>
7200 <voice> 7200 <voice>
7201 *: "" 7201 *: "Album"
7202 </voice> 7202 </voice>
7203</phrase> 7203</phrase>
7204<phrase> 7204<phrase>
@@ -7212,7 +7212,7 @@
7212 *: "Numéro de Piste" 7212 *: "Numéro de Piste"
7213 </dest> 7213 </dest>
7214 <voice> 7214 <voice>
7215 *: "" 7215 *: "Numéro de Piste"
7216 </voice> 7216 </voice>
7217</phrase> 7217</phrase>
7218<phrase> 7218<phrase>
@@ -7226,7 +7226,7 @@
7226 *: "Genre" 7226 *: "Genre"
7227 </dest> 7227 </dest>
7228 <voice> 7228 <voice>
7229 *: "" 7229 *: "Genre"
7230 </voice> 7230 </voice>
7231</phrase> 7231</phrase>
7232<phrase> 7232<phrase>
@@ -7240,7 +7240,7 @@
7240 *: "Année" 7240 *: "Année"
7241 </dest> 7241 </dest>
7242 <voice> 7242 <voice>
7243 *: "" 7243 *: "Année"
7244 </voice> 7244 </voice>
7245</phrase> 7245</phrase>
7246<phrase> 7246<phrase>
@@ -7254,7 +7254,7 @@
7254 *: "Durée" 7254 *: "Durée"
7255 </dest> 7255 </dest>
7256 <voice> 7256 <voice>
7257 *: "" 7257 *: "Durée"
7258 </voice> 7258 </voice>
7259</phrase> 7259</phrase>
7260<phrase> 7260<phrase>
@@ -7268,7 +7268,7 @@
7268 *: "Liste de lecture" 7268 *: "Liste de lecture"
7269 </dest> 7269 </dest>
7270 <voice> 7270 <voice>
7271 *: "" 7271 *: "Liste de lecture"
7272 </voice> 7272 </voice>
7273</phrase> 7273</phrase>
7274<phrase> 7274<phrase>
@@ -7282,7 +7282,7 @@
7282 *: "Débit binaire" 7282 *: "Débit binaire"
7283 </dest> 7283 </dest>
7284 <voice> 7284 <voice>
7285 *: "" 7285 *: "Débit binaire"
7286 </voice> 7286 </voice>
7287</phrase> 7287</phrase>
7288<phrase> 7288<phrase>
@@ -7296,7 +7296,7 @@
7296 *: "Artiste de l'album" 7296 *: "Artiste de l'album"
7297 </dest> 7297 </dest>
7298 <voice> 7298 <voice>
7299 *: "" 7299 *: "Artiste de l'album"
7300 </voice> 7300 </voice>
7301</phrase> 7301</phrase>
7302<phrase> 7302<phrase>
@@ -7310,7 +7310,7 @@
7310 *: "Numéro du disque" 7310 *: "Numéro du disque"
7311 </dest> 7311 </dest>
7312 <voice> 7312 <voice>
7313 *: "" 7313 *: "Numéro du disque"
7314 </voice> 7314 </voice>
7315</phrase> 7315</phrase>
7316<phrase> 7316<phrase>
@@ -7324,7 +7324,7 @@
7324 *: "Commentaire" 7324 *: "Commentaire"
7325 </dest> 7325 </dest>
7326 <voice> 7326 <voice>
7327 *: "" 7327 *: "Commentaire"
7328 </voice> 7328 </voice>
7329</phrase> 7329</phrase>
7330<phrase> 7330<phrase>
@@ -7338,7 +7338,7 @@
7338 *: " (VBR)" 7338 *: " (VBR)"
7339 </dest> 7339 </dest>
7340 <voice> 7340 <voice>
7341 *: "" 7341 *: "VBR"
7342 </voice> 7342 </voice>
7343</phrase> 7343</phrase>
7344<phrase> 7344<phrase>
@@ -7352,7 +7352,7 @@
7352 *: "Echantillonnage" 7352 *: "Echantillonnage"
7353 </dest> 7353 </dest>
7354 <voice> 7354 <voice>
7355 *: "" 7355 *: "Echantillonnage"
7356 </voice> 7356 </voice>
7357</phrase> 7357</phrase>
7358<phrase> 7358<phrase>
@@ -7366,7 +7366,7 @@
7366 *: "Gain par piste" 7366 *: "Gain par piste"
7367 </dest> 7367 </dest>
7368 <voice> 7368 <voice>
7369 *: "" 7369 *: "Gain par piste"
7370 </voice> 7370 </voice>
7371</phrase> 7371</phrase>
7372<phrase> 7372<phrase>
@@ -7380,7 +7380,7 @@
7380 *: "Gain par album" 7380 *: "Gain par album"
7381 </dest> 7381 </dest>
7382 <voice> 7382 <voice>
7383 *: "" 7383 *: "Gain par album"
7384 </voice> 7384 </voice>
7385</phrase> 7385</phrase>
7386<phrase> 7386<phrase>
@@ -7394,7 +7394,7 @@
7394 *: "Chemin" 7394 *: "Chemin"
7395 </dest> 7395 </dest>
7396 <voice> 7396 <voice>
7397 *: "" 7397 *: "Chemin"
7398 </voice> 7398 </voice>
7399</phrase> 7399</phrase>
7400<phrase> 7400<phrase>
@@ -7408,7 +7408,7 @@
7408 *: "<Pas d'Info>" 7408 *: "<Pas d'Info>"
7409 </dest> 7409 </dest>
7410 <voice> 7410 <voice>
7411 *: "" 7411 *: "Pas d'Info"
7412 </voice> 7412 </voice>
7413</phrase> 7413</phrase>
7414<phrase> 7414<phrase>
@@ -10074,7 +10074,7 @@
10074 *: "Œuvre" 10074 *: "Œuvre"
10075 </dest> 10075 </dest>
10076 <voice> 10076 <voice>
10077 *: "" 10077 *: "Œuvre"
10078 </voice> 10078 </voice>
10079</phrase> 10079</phrase>
10080<phrase> 10080<phrase>
@@ -12472,7 +12472,7 @@
12472 *: "Compositeur" 12472 *: "Compositeur"
12473 </dest> 12473 </dest>
12474 <voice> 12474 <voice>
12475 *: "" 12475 *: "Compositeur"
12476 </voice> 12476 </voice>
12477</phrase> 12477</phrase>
12478<phrase> 12478<phrase>
diff --git a/apps/lang/galego.lang b/apps/lang/galego.lang
index ad931c00e3..5439acb2d8 100644
--- a/apps/lang/galego.lang
+++ b/apps/lang/galego.lang
@@ -6277,7 +6277,7 @@ iriverifp7xx: "%d%% %dh %dm"
6277 *: " (VBR)" 6277 *: " (VBR)"
6278 </dest> 6278 </dest>
6279 <voice> 6279 <voice>
6280 *: "" 6280 *: "VBR"
6281 </voice> 6281 </voice>
6282</phrase> 6282</phrase>
6283<phrase> 6283<phrase>
@@ -7172,7 +7172,7 @@ iriverifp7xx: "%d%% %dh %dm"
7172 *: "Ganancia do álbume" 7172 *: "Ganancia do álbume"
7173 </dest> 7173 </dest>
7174 <voice> 7174 <voice>
7175 *: "" 7175 *: "Ganancia do álbume"
7176 </voice> 7176 </voice>
7177</phrase> 7177</phrase>
7178<phrase> 7178<phrase>
@@ -8729,7 +8729,7 @@ iriverifp7xx: "%d%% %dh %dm"
8729 *: "Ganancia de pista" 8729 *: "Ganancia de pista"
8730 </dest> 8730 </dest>
8731 <voice> 8731 <voice>
8732 *: "" 8732 *: "Ganancia de pista"
8733 </voice> 8733 </voice>
8734</phrase> 8734</phrase>
8735<phrase> 8735<phrase>
@@ -9463,7 +9463,7 @@ iriverifp7xx: "%d%% %dh %dm"
9463 *: "Traballo" 9463 *: "Traballo"
9464 </dest> 9464 </dest>
9465 <voice> 9465 <voice>
9466 *: "" 9466 *: "Traballo"
9467 </voice> 9467 </voice>
9468</phrase> 9468</phrase>
9469<phrase> 9469<phrase>
@@ -9573,7 +9573,7 @@ iriverifp7xx: "%d%% %dh %dm"
9573 *: "Lonxitude" 9573 *: "Lonxitude"
9574 </dest> 9574 </dest>
9575 <voice> 9575 <voice>
9576 *: "" 9576 *: "Lonxitude"
9577 </voice> 9577 </voice>
9578</phrase> 9578</phrase>
9579<phrase> 9579<phrase>
@@ -9954,7 +9954,7 @@ iriverifp7xx: "%d%% %dh %dm"
9954 *: "Compositor" 9954 *: "Compositor"
9955 </dest> 9955 </dest>
9956 <voice> 9956 <voice>
9957 *: "" 9957 *: "Compositor"
9958 </voice> 9958 </voice>
9959</phrase> 9959</phrase>
9960<phrase> 9960<phrase>
@@ -10662,7 +10662,7 @@ iriverifp7xx: "%d%% %dh %dm"
10662 *: "Nº de disco" 10662 *: "Nº de disco"
10663 </dest> 10663 </dest>
10664 <voice> 10664 <voice>
10665 *: "" 10665 *: "Nº de disco"
10666 </voice> 10666 </voice>
10667</phrase> 10667</phrase>
10668<phrase> 10668<phrase>
@@ -11533,7 +11533,7 @@ iriverifp7xx: "%d%% %dh %dm"
11533 *: "Artista do álbume" 11533 *: "Artista do álbume"
11534 </dest> 11534 </dest>
11535 <voice> 11535 <voice>
11536 *: "" 11536 *: "Artista do álbume"
11537 </voice> 11537 </voice>
11538</phrase> 11538</phrase>
11539<phrase> 11539<phrase>
diff --git a/apps/lang/greek.lang b/apps/lang/greek.lang
index 1222de6dee..3a77c6093d 100644
--- a/apps/lang/greek.lang
+++ b/apps/lang/greek.lang
@@ -7125,7 +7125,7 @@
7125 *: "Τίτλος" 7125 *: "Τίτλος"
7126 </dest> 7126 </dest>
7127 <voice> 7127 <voice>
7128 *: "" 7128 *: "Τίτλος"
7129 </voice> 7129 </voice>
7130</phrase> 7130</phrase>
7131<phrase> 7131<phrase>
@@ -7139,7 +7139,7 @@
7139 *: "Καλλιτέχνης" 7139 *: "Καλλιτέχνης"
7140 </dest> 7140 </dest>
7141 <voice> 7141 <voice>
7142 *: "" 7142 *: "Καλλιτέχνης"
7143 </voice> 7143 </voice>
7144</phrase> 7144</phrase>
7145<phrase> 7145<phrase>
@@ -7153,7 +7153,7 @@
7153 *: "Άλμπουμ" 7153 *: "Άλμπουμ"
7154 </dest> 7154 </dest>
7155 <voice> 7155 <voice>
7156 *: "" 7156 *: "Άλμπουμ"
7157 </voice> 7157 </voice>
7158</phrase> 7158</phrase>
7159<phrase> 7159<phrase>
@@ -7167,7 +7167,7 @@
7167 *: "Αριθμός κομματιού" 7167 *: "Αριθμός κομματιού"
7168 </dest> 7168 </dest>
7169 <voice> 7169 <voice>
7170 *: "" 7170 *: "Αριθμός κομματιού"
7171 </voice> 7171 </voice>
7172</phrase> 7172</phrase>
7173<phrase> 7173<phrase>
@@ -7181,7 +7181,7 @@
7181 *: "Είδος" 7181 *: "Είδος"
7182 </dest> 7182 </dest>
7183 <voice> 7183 <voice>
7184 *: "" 7184 *: "Είδος"
7185 </voice> 7185 </voice>
7186</phrase> 7186</phrase>
7187<phrase> 7187<phrase>
@@ -7195,7 +7195,7 @@
7195 *: "Χρονιά" 7195 *: "Χρονιά"
7196 </dest> 7196 </dest>
7197 <voice> 7197 <voice>
7198 *: "" 7198 *: "Χρονιά"
7199 </voice> 7199 </voice>
7200</phrase> 7200</phrase>
7201<phrase> 7201<phrase>
@@ -7209,7 +7209,7 @@
7209 *: "Μήκος" 7209 *: "Μήκος"
7210 </dest> 7210 </dest>
7211 <voice> 7211 <voice>
7212 *: "" 7212 *: "Μήκος"
7213 </voice> 7213 </voice>
7214</phrase> 7214</phrase>
7215<phrase> 7215<phrase>
@@ -7223,7 +7223,7 @@
7223 *: "Λίστα αναπαραγωγής" 7223 *: "Λίστα αναπαραγωγής"
7224 </dest> 7224 </dest>
7225 <voice> 7225 <voice>
7226 *: "" 7226 *: "Λίστα αναπαραγωγής"
7227 </voice> 7227 </voice>
7228</phrase> 7228</phrase>
7229<phrase> 7229<phrase>
@@ -7237,7 +7237,7 @@
7237 *: "Ρυθμός μετάδοσης" 7237 *: "Ρυθμός μετάδοσης"
7238 </dest> 7238 </dest>
7239 <voice> 7239 <voice>
7240 *: "" 7240 *: "Ρυθμός μετάδοσης"
7241 </voice> 7241 </voice>
7242</phrase> 7242</phrase>
7243<phrase> 7243<phrase>
@@ -7251,7 +7251,7 @@
7251 *: "Καλλιτέχνης Άλμπουμ" 7251 *: "Καλλιτέχνης Άλμπουμ"
7252 </dest> 7252 </dest>
7253 <voice> 7253 <voice>
7254 *: "" 7254 *: "Καλλιτέχνης Άλμπουμ"
7255 </voice> 7255 </voice>
7256</phrase> 7256</phrase>
7257<phrase> 7257<phrase>
@@ -7265,7 +7265,7 @@
7265 *: "Αριθμός δίσκου" 7265 *: "Αριθμός δίσκου"
7266 </dest> 7266 </dest>
7267 <voice> 7267 <voice>
7268 *: "" 7268 *: "Αριθμός δίσκου"
7269 </voice> 7269 </voice>
7270</phrase> 7270</phrase>
7271<phrase> 7271<phrase>
@@ -7279,7 +7279,7 @@
7279 *: "Σχόλειο" 7279 *: "Σχόλειο"
7280 </dest> 7280 </dest>
7281 <voice> 7281 <voice>
7282 *: "" 7282 *: "Σχόλειο"
7283 </voice> 7283 </voice>
7284</phrase> 7284</phrase>
7285<phrase> 7285<phrase>
@@ -7293,7 +7293,7 @@
7293 *: " (VBR)" 7293 *: " (VBR)"
7294 </dest> 7294 </dest>
7295 <voice> 7295 <voice>
7296 *: "" 7296 *: "VBR"
7297 </voice> 7297 </voice>
7298</phrase> 7298</phrase>
7299<phrase> 7299<phrase>
@@ -7307,7 +7307,7 @@
7307 *: "Συχνότητα" 7307 *: "Συχνότητα"
7308 </dest> 7308 </dest>
7309 <voice> 7309 <voice>
7310 *: "" 7310 *: "Συχνότητα"
7311 </voice> 7311 </voice>
7312</phrase> 7312</phrase>
7313<phrase> 7313<phrase>
@@ -7321,7 +7321,7 @@
7321 *: "Ενίσχυση κομματιού" 7321 *: "Ενίσχυση κομματιού"
7322 </dest> 7322 </dest>
7323 <voice> 7323 <voice>
7324 *: "" 7324 *: "Ενίσχυση κομματιού"
7325 </voice> 7325 </voice>
7326</phrase> 7326</phrase>
7327<phrase> 7327<phrase>
@@ -7335,7 +7335,7 @@
7335 *: "Ενίσχυση άλμπουμ" 7335 *: "Ενίσχυση άλμπουμ"
7336 </dest> 7336 </dest>
7337 <voice> 7337 <voice>
7338 *: "" 7338 *: "Ενίσχυση άλμπουμ"
7339 </voice> 7339 </voice>
7340</phrase> 7340</phrase>
7341<phrase> 7341<phrase>
@@ -7349,7 +7349,7 @@
7349 *: "Θέση" 7349 *: "Θέση"
7350 </dest> 7350 </dest>
7351 <voice> 7351 <voice>
7352 *: "" 7352 *: "Θέση"
7353 </voice> 7353 </voice>
7354</phrase> 7354</phrase>
7355<phrase> 7355<phrase>
@@ -7363,7 +7363,7 @@
7363 *: "<Χωρίς πληροφορίες>" 7363 *: "<Χωρίς πληροφορίες>"
7364 </dest> 7364 </dest>
7365 <voice> 7365 <voice>
7366 *: "" 7366 *: "Χωρίς πληροφορίες"
7367 </voice> 7367 </voice>
7368</phrase> 7368</phrase>
7369<phrase> 7369<phrase>
@@ -10029,7 +10029,7 @@
10029 *: "Εργασία" 10029 *: "Εργασία"
10030 </dest> 10030 </dest>
10031 <voice> 10031 <voice>
10032 *: "" 10032 *: "Εργασία"
10033 </voice> 10033 </voice>
10034</phrase> 10034</phrase>
10035<phrase> 10035<phrase>
@@ -13559,6 +13559,6 @@
13559 *: "Συνθέτης" 13559 *: "Συνθέτης"
13560 </dest> 13560 </dest>
13561 <voice> 13561 <voice>
13562 *: "" 13562 *: "Συνθέτης"
13563 </voice> 13563 </voice>
13564</phrase> 13564</phrase>
diff --git a/apps/lang/hebrew.lang b/apps/lang/hebrew.lang
index 3376a522aa..0cda636891 100644
--- a/apps/lang/hebrew.lang
+++ b/apps/lang/hebrew.lang
@@ -7145,7 +7145,7 @@
7145 *: "כותרת" 7145 *: "כותרת"
7146 </dest> 7146 </dest>
7147 <voice> 7147 <voice>
7148 *: "" 7148 *: "כותרת"
7149 </voice> 7149 </voice>
7150</phrase> 7150</phrase>
7151<phrase> 7151<phrase>
@@ -7159,7 +7159,7 @@
7159 *: "אמן" 7159 *: "אמן"
7160 </dest> 7160 </dest>
7161 <voice> 7161 <voice>
7162 *: "" 7162 *: "אמן"
7163 </voice> 7163 </voice>
7164</phrase> 7164</phrase>
7165<phrase> 7165<phrase>
@@ -7173,7 +7173,7 @@
7173 *: "אלבום" 7173 *: "אלבום"
7174 </dest> 7174 </dest>
7175 <voice> 7175 <voice>
7176 *: "" 7176 *: "אלבום"
7177 </voice> 7177 </voice>
7178</phrase> 7178</phrase>
7179<phrase> 7179<phrase>
@@ -7187,7 +7187,7 @@
7187 *: "מספר שיר" 7187 *: "מספר שיר"
7188 </dest> 7188 </dest>
7189 <voice> 7189 <voice>
7190 *: "" 7190 *: "מספר שיר"
7191 </voice> 7191 </voice>
7192</phrase> 7192</phrase>
7193<phrase> 7193<phrase>
@@ -7201,7 +7201,7 @@
7201 *: "סגנון" 7201 *: "סגנון"
7202 </dest> 7202 </dest>
7203 <voice> 7203 <voice>
7204 *: "" 7204 *: "סגנון"
7205 </voice> 7205 </voice>
7206</phrase> 7206</phrase>
7207<phrase> 7207<phrase>
@@ -7215,7 +7215,7 @@
7215 *: "שנה" 7215 *: "שנה"
7216 </dest> 7216 </dest>
7217 <voice> 7217 <voice>
7218 *: "" 7218 *: "שנה"
7219 </voice> 7219 </voice>
7220</phrase> 7220</phrase>
7221<phrase> 7221<phrase>
@@ -7229,7 +7229,7 @@
7229 *: "אורך" 7229 *: "אורך"
7230 </dest> 7230 </dest>
7231 <voice> 7231 <voice>
7232 *: "" 7232 *: "אורך"
7233 </voice> 7233 </voice>
7234</phrase> 7234</phrase>
7235<phrase> 7235<phrase>
@@ -7243,7 +7243,7 @@
7243 *: "רשימת שירים" 7243 *: "רשימת שירים"
7244 </dest> 7244 </dest>
7245 <voice> 7245 <voice>
7246 *: "" 7246 *: "רשימת שירים"
7247 </voice> 7247 </voice>
7248</phrase> 7248</phrase>
7249<phrase> 7249<phrase>
@@ -7257,7 +7257,7 @@
7257 *: "Bitrate" 7257 *: "Bitrate"
7258 </dest> 7258 </dest>
7259 <voice> 7259 <voice>
7260 *: "" 7260 *: "Bitrate"
7261 </voice> 7261 </voice>
7262</phrase> 7262</phrase>
7263<phrase> 7263<phrase>
@@ -7271,7 +7271,7 @@
7271 *: "אמן האלבום" 7271 *: "אמן האלבום"
7272 </dest> 7272 </dest>
7273 <voice> 7273 <voice>
7274 *: "" 7274 *: "אמן האלבום"
7275 </voice> 7275 </voice>
7276</phrase> 7276</phrase>
7277<phrase> 7277<phrase>
@@ -7285,7 +7285,7 @@
7285 *: "מס' דיסק" 7285 *: "מס' דיסק"
7286 </dest> 7286 </dest>
7287 <voice> 7287 <voice>
7288 *: "" 7288 *: "מס' דיסק"
7289 </voice> 7289 </voice>
7290</phrase> 7290</phrase>
7291<phrase> 7291<phrase>
@@ -7299,7 +7299,7 @@
7299 *: "הערה" 7299 *: "הערה"
7300 </dest> 7300 </dest>
7301 <voice> 7301 <voice>
7302 *: "" 7302 *: "הערה"
7303 </voice> 7303 </voice>
7304</phrase> 7304</phrase>
7305<phrase> 7305<phrase>
@@ -7313,7 +7313,7 @@
7313 *: " (VBR)" 7313 *: " (VBR)"
7314 </dest> 7314 </dest>
7315 <voice> 7315 <voice>
7316 *: "" 7316 *: "VBR"
7317 </voice> 7317 </voice>
7318</phrase> 7318</phrase>
7319<phrase> 7319<phrase>
@@ -7327,7 +7327,7 @@
7327 *: "תדירות" 7327 *: "תדירות"
7328 </dest> 7328 </dest>
7329 <voice> 7329 <voice>
7330 *: "" 7330 *: "תדירות"
7331 </voice> 7331 </voice>
7332</phrase> 7332</phrase>
7333<phrase> 7333<phrase>
@@ -7341,7 +7341,7 @@
7341 *: "הגברת שיר" 7341 *: "הגברת שיר"
7342 </dest> 7342 </dest>
7343 <voice> 7343 <voice>
7344 *: "" 7344 *: "הגברת שיר"
7345 </voice> 7345 </voice>
7346</phrase> 7346</phrase>
7347<phrase> 7347<phrase>
@@ -7355,7 +7355,7 @@
7355 *: "הגברת אלבום" 7355 *: "הגברת אלבום"
7356 </dest> 7356 </dest>
7357 <voice> 7357 <voice>
7358 *: "" 7358 *: "הגברת אלבום"
7359 </voice> 7359 </voice>
7360</phrase> 7360</phrase>
7361<phrase> 7361<phrase>
@@ -7369,7 +7369,7 @@
7369 *: "נתיב" 7369 *: "נתיב"
7370 </dest> 7370 </dest>
7371 <voice> 7371 <voice>
7372 *: "" 7372 *: "נתיב"
7373 </voice> 7373 </voice>
7374</phrase> 7374</phrase>
7375<phrase> 7375<phrase>
@@ -7383,7 +7383,7 @@
7383 *: "<אין מידע>" 7383 *: "<אין מידע>"
7384 </dest> 7384 </dest>
7385 <voice> 7385 <voice>
7386 *: "" 7386 *: "אין מידע"
7387 </voice> 7387 </voice>
7388</phrase> 7388</phrase>
7389<phrase> 7389<phrase>
@@ -10048,7 +10048,7 @@
10048 *: "עבודה" 10048 *: "עבודה"
10049 </dest> 10049 </dest>
10050 <voice> 10050 <voice>
10051 *: "" 10051 *: "עבודה"
10052 </voice> 10052 </voice>
10053</phrase> 10053</phrase>
10054<phrase> 10054<phrase>
@@ -12375,7 +12375,7 @@
12375 *: "מלחין" 12375 *: "מלחין"
12376 </dest> 12376 </dest>
12377 <voice> 12377 <voice>
12378 *: "" 12378 *: "מלחין"
12379 </voice> 12379 </voice>
12380</phrase> 12380</phrase>
12381<phrase> 12381<phrase>
diff --git a/apps/lang/hindi.lang b/apps/lang/hindi.lang
index 6258477b3a..6fad849e35 100644
--- a/apps/lang/hindi.lang
+++ b/apps/lang/hindi.lang
@@ -3332,7 +3332,7 @@
3332 *: "साल" 3332 *: "साल"
3333 </dest> 3333 </dest>
3334 <voice> 3334 <voice>
3335 *: "" 3335 *: "साल"
3336 </voice> 3336 </voice>
3337</phrase> 3337</phrase>
3338<phrase> 3338<phrase>
@@ -3346,7 +3346,7 @@
3346 *: "पलेलिसट" 3346 *: "पलेलिसट"
3347 </dest> 3347 </dest>
3348 <voice> 3348 <voice>
3349 *: "" 3349 *: "पलेलिसट"
3350 </voice> 3350 </voice>
3351</phrase> 3351</phrase>
3352<phrase> 3352<phrase>
@@ -3360,7 +3360,7 @@
3360 *: "<कोई इनफो नही है>" 3360 *: "<कोई इनफो नही है>"
3361 </dest> 3361 </dest>
3362 <voice> 3362 <voice>
3363 *: "" 3363 *: "कोई इनफो नही है"
3364 </voice> 3364 </voice>
3365</phrase> 3365</phrase>
3366<phrase> 3366<phrase>
diff --git a/apps/lang/hrvatski.lang b/apps/lang/hrvatski.lang
index c6e86b2001..41ffd94e93 100644
--- a/apps/lang/hrvatski.lang
+++ b/apps/lang/hrvatski.lang
@@ -7137,7 +7137,7 @@
7137 *: "Naslov" 7137 *: "Naslov"
7138 </dest> 7138 </dest>
7139 <voice> 7139 <voice>
7140 *: "" 7140 *: "Naslov"
7141 </voice> 7141 </voice>
7142</phrase> 7142</phrase>
7143<phrase> 7143<phrase>
@@ -7151,7 +7151,7 @@
7151 *: "Izvođač" 7151 *: "Izvođač"
7152 </dest> 7152 </dest>
7153 <voice> 7153 <voice>
7154 *: "" 7154 *: "Izvođač"
7155 </voice> 7155 </voice>
7156</phrase> 7156</phrase>
7157<phrase> 7157<phrase>
@@ -7165,7 +7165,7 @@
7165 *: "Album" 7165 *: "Album"
7166 </dest> 7166 </dest>
7167 <voice> 7167 <voice>
7168 *: "" 7168 *: "Album"
7169 </voice> 7169 </voice>
7170</phrase> 7170</phrase>
7171<phrase> 7171<phrase>
@@ -7179,7 +7179,7 @@
7179 *: "Br. pjesme" 7179 *: "Br. pjesme"
7180 </dest> 7180 </dest>
7181 <voice> 7181 <voice>
7182 *: "" 7182 *: "Br. pjesme"
7183 </voice> 7183 </voice>
7184</phrase> 7184</phrase>
7185<phrase> 7185<phrase>
@@ -7193,7 +7193,7 @@
7193 *: "Žanr" 7193 *: "Žanr"
7194 </dest> 7194 </dest>
7195 <voice> 7195 <voice>
7196 *: "" 7196 *: "Žanr"
7197 </voice> 7197 </voice>
7198</phrase> 7198</phrase>
7199<phrase> 7199<phrase>
@@ -7207,7 +7207,7 @@
7207 *: "Godina" 7207 *: "Godina"
7208 </dest> 7208 </dest>
7209 <voice> 7209 <voice>
7210 *: "" 7210 *: "Godina"
7211 </voice> 7211 </voice>
7212</phrase> 7212</phrase>
7213<phrase> 7213<phrase>
@@ -7221,7 +7221,7 @@
7221 *: "Dužina" 7221 *: "Dužina"
7222 </dest> 7222 </dest>
7223 <voice> 7223 <voice>
7224 *: "" 7224 *: "Dužina"
7225 </voice> 7225 </voice>
7226</phrase> 7226</phrase>
7227<phrase> 7227<phrase>
@@ -7235,7 +7235,7 @@
7235 *: "Popis izvođenja" 7235 *: "Popis izvođenja"
7236 </dest> 7236 </dest>
7237 <voice> 7237 <voice>
7238 *: "" 7238 *: "Popis izvođenja"
7239 </voice> 7239 </voice>
7240</phrase> 7240</phrase>
7241<phrase> 7241<phrase>
@@ -7249,7 +7249,7 @@
7249 *: "Protok bitova" 7249 *: "Protok bitova"
7250 </dest> 7250 </dest>
7251 <voice> 7251 <voice>
7252 *: "" 7252 *: "Protok bitova"
7253 </voice> 7253 </voice>
7254</phrase> 7254</phrase>
7255<phrase> 7255<phrase>
@@ -7263,7 +7263,7 @@
7263 *: "Izvođač albuma" 7263 *: "Izvođač albuma"
7264 </dest> 7264 </dest>
7265 <voice> 7265 <voice>
7266 *: "" 7266 *: "Izvođač albuma"
7267 </voice> 7267 </voice>
7268</phrase> 7268</phrase>
7269<phrase> 7269<phrase>
@@ -7277,7 +7277,7 @@
7277 *: "Br. diska" 7277 *: "Br. diska"
7278 </dest> 7278 </dest>
7279 <voice> 7279 <voice>
7280 *: "" 7280 *: "Br. diska"
7281 </voice> 7281 </voice>
7282</phrase> 7282</phrase>
7283<phrase> 7283<phrase>
@@ -7291,7 +7291,7 @@
7291 *: "Komentar" 7291 *: "Komentar"
7292 </dest> 7292 </dest>
7293 <voice> 7293 <voice>
7294 *: "" 7294 *: "Komentar"
7295 </voice> 7295 </voice>
7296</phrase> 7296</phrase>
7297<phrase> 7297<phrase>
@@ -7305,7 +7305,7 @@
7305 *: " (VBR)" 7305 *: " (VBR)"
7306 </dest> 7306 </dest>
7307 <voice> 7307 <voice>
7308 *: "" 7308 *: "VBR"
7309 </voice> 7309 </voice>
7310</phrase> 7310</phrase>
7311<phrase> 7311<phrase>
@@ -7319,7 +7319,7 @@
7319 *: "Frekvencija" 7319 *: "Frekvencija"
7320 </dest> 7320 </dest>
7321 <voice> 7321 <voice>
7322 *: "" 7322 *: "Frekvencija"
7323 </voice> 7323 </voice>
7324</phrase> 7324</phrase>
7325<phrase> 7325<phrase>
@@ -7333,7 +7333,7 @@
7333 *: "Ujednačenje glasnoće pjesme" 7333 *: "Ujednačenje glasnoće pjesme"
7334 </dest> 7334 </dest>
7335 <voice> 7335 <voice>
7336 *: "" 7336 *: "Ujednačenje glasnoće pjesme"
7337 </voice> 7337 </voice>
7338</phrase> 7338</phrase>
7339<phrase> 7339<phrase>
@@ -7347,7 +7347,7 @@
7347 *: "Ujednačenje glasnoće albuma" 7347 *: "Ujednačenje glasnoće albuma"
7348 </dest> 7348 </dest>
7349 <voice> 7349 <voice>
7350 *: "" 7350 *: "Ujednačenje glasnoće albuma"
7351 </voice> 7351 </voice>
7352</phrase> 7352</phrase>
7353<phrase> 7353<phrase>
@@ -7361,7 +7361,7 @@
7361 *: "Putanja" 7361 *: "Putanja"
7362 </dest> 7362 </dest>
7363 <voice> 7363 <voice>
7364 *: "" 7364 *: "Putanja"
7365 </voice> 7365 </voice>
7366</phrase> 7366</phrase>
7367<phrase> 7367<phrase>
@@ -7375,7 +7375,7 @@
7375 *: "<Nema informacija>" 7375 *: "<Nema informacija>"
7376 </dest> 7376 </dest>
7377 <voice> 7377 <voice>
7378 *: "" 7378 *: "Nema informacija"
7379 </voice> 7379 </voice>
7380</phrase> 7380</phrase>
7381<phrase> 7381<phrase>
@@ -10040,7 +10040,7 @@
10040 *: "Posao" 10040 *: "Posao"
10041 </dest> 10041 </dest>
10042 <voice> 10042 <voice>
10043 *: "" 10043 *: "Posao"
10044 </voice> 10044 </voice>
10045</phrase> 10045</phrase>
10046<phrase> 10046<phrase>
@@ -12434,7 +12434,7 @@
12434 *: "Skladatelj" 12434 *: "Skladatelj"
12435 </dest> 12435 </dest>
12436 <voice> 12436 <voice>
12437 *: "" 12437 *: "Skladatelj"
12438 </voice> 12438 </voice>
12439</phrase> 12439</phrase>
12440<phrase> 12440<phrase>
diff --git a/apps/lang/islenska.lang b/apps/lang/islenska.lang
index a14d896626..b7a84349bf 100644
--- a/apps/lang/islenska.lang
+++ b/apps/lang/islenska.lang
@@ -3598,7 +3598,7 @@
3598 *: "Heiti" 3598 *: "Heiti"
3599 </dest> 3599 </dest>
3600 <voice> 3600 <voice>
3601 *: "" 3601 *: "Heiti"
3602 </voice> 3602 </voice>
3603</phrase> 3603</phrase>
3604<phrase> 3604<phrase>
@@ -3612,7 +3612,7 @@
3612 *: "Listamaður" 3612 *: "Listamaður"
3613 </dest> 3613 </dest>
3614 <voice> 3614 <voice>
3615 *: "" 3615 *: "Listamaður"
3616 </voice> 3616 </voice>
3617</phrase> 3617</phrase>
3618<phrase> 3618<phrase>
@@ -3626,7 +3626,7 @@
3626 *: "Hljómplata" 3626 *: "Hljómplata"
3627 </dest> 3627 </dest>
3628 <voice> 3628 <voice>
3629 *: "" 3629 *: "Hljómplata"
3630 </voice> 3630 </voice>
3631</phrase> 3631</phrase>
3632<phrase> 3632<phrase>
@@ -3640,7 +3640,7 @@
3640 *: "Lagnúmer" 3640 *: "Lagnúmer"
3641 </dest> 3641 </dest>
3642 <voice> 3642 <voice>
3643 *: "" 3643 *: "Lagnúmer"
3644 </voice> 3644 </voice>
3645</phrase> 3645</phrase>
3646<phrase> 3646<phrase>
@@ -3654,7 +3654,7 @@
3654 *: "Tegund" 3654 *: "Tegund"
3655 </dest> 3655 </dest>
3656 <voice> 3656 <voice>
3657 *: "" 3657 *: "Tegund"
3658 </voice> 3658 </voice>
3659</phrase> 3659</phrase>
3660<phrase> 3660<phrase>
@@ -3668,7 +3668,7 @@
3668 *: "Ár" 3668 *: "Ár"
3669 </dest> 3669 </dest>
3670 <voice> 3670 <voice>
3671 *: "" 3671 *: "Ár"
3672 </voice> 3672 </voice>
3673</phrase> 3673</phrase>
3674<phrase> 3674<phrase>
@@ -3682,7 +3682,7 @@
3682 *: "Lagalisti" 3682 *: "Lagalisti"
3683 </dest> 3683 </dest>
3684 <voice> 3684 <voice>
3685 *: "" 3685 *: "Lagalisti"
3686 </voice> 3686 </voice>
3687</phrase> 3687</phrase>
3688<phrase> 3688<phrase>
@@ -3696,7 +3696,7 @@
3696 *: "Gæði" 3696 *: "Gæði"
3697 </dest> 3697 </dest>
3698 <voice> 3698 <voice>
3699 *: "" 3699 *: "Gæði"
3700 </voice> 3700 </voice>
3701</phrase> 3701</phrase>
3702<phrase> 3702<phrase>
@@ -3710,7 +3710,7 @@
3710 *: " (VBR)" 3710 *: " (VBR)"
3711 </dest> 3711 </dest>
3712 <voice> 3712 <voice>
3713 *: "" 3713 *: "VBR"
3714 </voice> 3714 </voice>
3715</phrase> 3715</phrase>
3716<phrase> 3716<phrase>
@@ -3724,7 +3724,7 @@
3724 *: "Tíðni" 3724 *: "Tíðni"
3725 </dest> 3725 </dest>
3726 <voice> 3726 <voice>
3727 *: "" 3727 *: "Tíðni"
3728 </voice> 3728 </voice>
3729</phrase> 3729</phrase>
3730<phrase> 3730<phrase>
@@ -3738,7 +3738,7 @@
3738 *: "Lag hækkun" 3738 *: "Lag hækkun"
3739 </dest> 3739 </dest>
3740 <voice> 3740 <voice>
3741 *: "" 3741 *: "Lag hækkun"
3742 </voice> 3742 </voice>
3743</phrase> 3743</phrase>
3744<phrase> 3744<phrase>
@@ -3752,7 +3752,7 @@
3752 *: "Albúmaðlögun" 3752 *: "Albúmaðlögun"
3753 </dest> 3753 </dest>
3754 <voice> 3754 <voice>
3755 *: "" 3755 *: "Albúmaðlögun"
3756 </voice> 3756 </voice>
3757</phrase> 3757</phrase>
3758<phrase> 3758<phrase>
@@ -3766,7 +3766,7 @@
3766 *: "Slóð" 3766 *: "Slóð"
3767 </dest> 3767 </dest>
3768 <voice> 3768 <voice>
3769 *: "" 3769 *: "Slóð"
3770 </voice> 3770 </voice>
3771</phrase> 3771</phrase>
3772<phrase> 3772<phrase>
@@ -3780,7 +3780,7 @@
3780 *: "<Engar uppl.>" 3780 *: "<Engar uppl.>"
3781 </dest> 3781 </dest>
3782 <voice> 3782 <voice>
3783 *: "" 3783 *: "Engar uppl."
3784 </voice> 3784 </voice>
3785</phrase> 3785</phrase>
3786<phrase> 3786<phrase>
diff --git a/apps/lang/italiano.lang b/apps/lang/italiano.lang
index 554ef319c0..81f223e015 100644
--- a/apps/lang/italiano.lang
+++ b/apps/lang/italiano.lang
@@ -7143,7 +7143,7 @@ desc: deprecated
7143 *: "Titolo" 7143 *: "Titolo"
7144 </dest> 7144 </dest>
7145 <voice> 7145 <voice>
7146 *: "" 7146 *: "Titolo"
7147 </voice> 7147 </voice>
7148</phrase> 7148</phrase>
7149<phrase> 7149<phrase>
@@ -7157,7 +7157,7 @@ desc: deprecated
7157 *: "Artista" 7157 *: "Artista"
7158 </dest> 7158 </dest>
7159 <voice> 7159 <voice>
7160 *: "" 7160 *: "Artista"
7161 </voice> 7161 </voice>
7162</phrase> 7162</phrase>
7163<phrase> 7163<phrase>
@@ -7171,7 +7171,7 @@ desc: deprecated
7171 *: "Album" 7171 *: "Album"
7172 </dest> 7172 </dest>
7173 <voice> 7173 <voice>
7174 *: "" 7174 *: "Album"
7175 </voice> 7175 </voice>
7176</phrase> 7176</phrase>
7177<phrase> 7177<phrase>
@@ -7185,7 +7185,7 @@ desc: deprecated
7185 *: "Numero traccia" 7185 *: "Numero traccia"
7186 </dest> 7186 </dest>
7187 <voice> 7187 <voice>
7188 *: "" 7188 *: "Numero traccia"
7189 </voice> 7189 </voice>
7190</phrase> 7190</phrase>
7191<phrase> 7191<phrase>
@@ -7199,7 +7199,7 @@ desc: deprecated
7199 *: "Genere" 7199 *: "Genere"
7200 </dest> 7200 </dest>
7201 <voice> 7201 <voice>
7202 *: "" 7202 *: "Genere"
7203 </voice> 7203 </voice>
7204</phrase> 7204</phrase>
7205<phrase> 7205<phrase>
@@ -7213,7 +7213,7 @@ desc: deprecated
7213 *: "Anno" 7213 *: "Anno"
7214 </dest> 7214 </dest>
7215 <voice> 7215 <voice>
7216 *: "" 7216 *: "Anno"
7217 </voice> 7217 </voice>
7218</phrase> 7218</phrase>
7219<phrase> 7219<phrase>
@@ -7227,7 +7227,7 @@ desc: deprecated
7227 *: "Lunghezza" 7227 *: "Lunghezza"
7228 </dest> 7228 </dest>
7229 <voice> 7229 <voice>
7230 *: "" 7230 *: "Lunghezza"
7231 </voice> 7231 </voice>
7232</phrase> 7232</phrase>
7233<phrase> 7233<phrase>
@@ -7241,7 +7241,7 @@ desc: deprecated
7241 *: "Playlist" 7241 *: "Playlist"
7242 </dest> 7242 </dest>
7243 <voice> 7243 <voice>
7244 *: "" 7244 *: "Playlist"
7245 </voice> 7245 </voice>
7246</phrase> 7246</phrase>
7247<phrase> 7247<phrase>
@@ -7255,7 +7255,7 @@ desc: deprecated
7255 *: "Bitrate" 7255 *: "Bitrate"
7256 </dest> 7256 </dest>
7257 <voice> 7257 <voice>
7258 *: "" 7258 *: "Bitrate"
7259 </voice> 7259 </voice>
7260</phrase> 7260</phrase>
7261<phrase> 7261<phrase>
@@ -7269,7 +7269,7 @@ desc: deprecated
7269 *: "Album Artista" 7269 *: "Album Artista"
7270 </dest> 7270 </dest>
7271 <voice> 7271 <voice>
7272 *: "" 7272 *: "Album Artista"
7273 </voice> 7273 </voice>
7274</phrase> 7274</phrase>
7275<phrase> 7275<phrase>
@@ -7283,7 +7283,7 @@ desc: deprecated
7283 *: "Discnum" 7283 *: "Discnum"
7284 </dest> 7284 </dest>
7285 <voice> 7285 <voice>
7286 *: "" 7286 *: "Discnum"
7287 </voice> 7287 </voice>
7288</phrase> 7288</phrase>
7289<phrase> 7289<phrase>
@@ -7297,7 +7297,7 @@ desc: deprecated
7297 *: "Commento" 7297 *: "Commento"
7298 </dest> 7298 </dest>
7299 <voice> 7299 <voice>
7300 *: "" 7300 *: "Commento"
7301 </voice> 7301 </voice>
7302</phrase> 7302</phrase>
7303<phrase> 7303<phrase>
@@ -7311,7 +7311,7 @@ desc: deprecated
7311 *: " (VBR)" 7311 *: " (VBR)"
7312 </dest> 7312 </dest>
7313 <voice> 7313 <voice>
7314 *: "" 7314 *: "VBR"
7315 </voice> 7315 </voice>
7316</phrase> 7316</phrase>
7317<phrase> 7317<phrase>
@@ -7325,7 +7325,7 @@ desc: deprecated
7325 *: "Frequenza" 7325 *: "Frequenza"
7326 </dest> 7326 </dest>
7327 <voice> 7327 <voice>
7328 *: "" 7328 *: "Frequenza"
7329 </voice> 7329 </voice>
7330</phrase> 7330</phrase>
7331<phrase> 7331<phrase>
@@ -7339,7 +7339,7 @@ desc: deprecated
7339 *: "Guadagno Traccia" 7339 *: "Guadagno Traccia"
7340 </dest> 7340 </dest>
7341 <voice> 7341 <voice>
7342 *: "" 7342 *: "Guadagno Traccia"
7343 </voice> 7343 </voice>
7344</phrase> 7344</phrase>
7345<phrase> 7345<phrase>
@@ -7353,7 +7353,7 @@ desc: deprecated
7353 *: "Guadagno Album" 7353 *: "Guadagno Album"
7354 </dest> 7354 </dest>
7355 <voice> 7355 <voice>
7356 *: "" 7356 *: "Guadagno Album"
7357 </voice> 7357 </voice>
7358</phrase> 7358</phrase>
7359<phrase> 7359<phrase>
@@ -7367,7 +7367,7 @@ desc: deprecated
7367 *: "Percorso" 7367 *: "Percorso"
7368 </dest> 7368 </dest>
7369 <voice> 7369 <voice>
7370 *: "" 7370 *: "Percorso"
7371 </voice> 7371 </voice>
7372</phrase> 7372</phrase>
7373<phrase> 7373<phrase>
@@ -7381,7 +7381,7 @@ desc: deprecated
7381 *: "<No Info>" 7381 *: "<No Info>"
7382 </dest> 7382 </dest>
7383 <voice> 7383 <voice>
7384 *: "" 7384 *: "No Info"
7385 </voice> 7385 </voice>
7386</phrase> 7386</phrase>
7387<phrase> 7387<phrase>
@@ -10047,7 +10047,7 @@ desc: deprecated
10047 *: "Lavoro" 10047 *: "Lavoro"
10048 </dest> 10048 </dest>
10049 <voice> 10049 <voice>
10050 *: "" 10050 *: "Lavoro"
10051 </voice> 10051 </voice>
10052</phrase> 10052</phrase>
10053<phrase> 10053<phrase>
@@ -12445,7 +12445,7 @@ desc: deprecated
12445 *: "Compositore" 12445 *: "Compositore"
12446 </dest> 12446 </dest>
12447 <voice> 12447 <voice>
12448 *: "" 12448 *: "Compositore"
12449 </voice> 12449 </voice>
12450</phrase> 12450</phrase>
12451<phrase> 12451<phrase>
diff --git a/apps/lang/japanese.lang b/apps/lang/japanese.lang
index a217c4be39..3dabfe7e5e 100644
--- a/apps/lang/japanese.lang
+++ b/apps/lang/japanese.lang
@@ -7143,7 +7143,7 @@
7143 *: "曲名" 7143 *: "曲名"
7144 </dest> 7144 </dest>
7145 <voice> 7145 <voice>
7146 *: "" 7146 *: "曲名"
7147 </voice> 7147 </voice>
7148</phrase> 7148</phrase>
7149<phrase> 7149<phrase>
@@ -7157,7 +7157,7 @@
7157 *: "アーティスト" 7157 *: "アーティスト"
7158 </dest> 7158 </dest>
7159 <voice> 7159 <voice>
7160 *: "" 7160 *: "アーティスト"
7161 </voice> 7161 </voice>
7162</phrase> 7162</phrase>
7163<phrase> 7163<phrase>
@@ -7171,7 +7171,7 @@
7171 *: "アルバム" 7171 *: "アルバム"
7172 </dest> 7172 </dest>
7173 <voice> 7173 <voice>
7174 *: "" 7174 *: "アルバム"
7175 </voice> 7175 </voice>
7176</phrase> 7176</phrase>
7177<phrase> 7177<phrase>
@@ -7185,7 +7185,7 @@
7185 *: "トラック" 7185 *: "トラック"
7186 </dest> 7186 </dest>
7187 <voice> 7187 <voice>
7188 *: "" 7188 *: "トラック"
7189 </voice> 7189 </voice>
7190</phrase> 7190</phrase>
7191<phrase> 7191<phrase>
@@ -7199,7 +7199,7 @@
7199 *: "ジャンル" 7199 *: "ジャンル"
7200 </dest> 7200 </dest>
7201 <voice> 7201 <voice>
7202 *: "" 7202 *: "ジャンル"
7203 </voice> 7203 </voice>
7204</phrase> 7204</phrase>
7205<phrase> 7205<phrase>
@@ -7213,7 +7213,7 @@
7213 *: "年" 7213 *: "年"
7214 </dest> 7214 </dest>
7215 <voice> 7215 <voice>
7216 *: "" 7216 *: ""
7217 </voice> 7217 </voice>
7218</phrase> 7218</phrase>
7219<phrase> 7219<phrase>
@@ -7227,7 +7227,7 @@
7227 *: "長さ" 7227 *: "長さ"
7228 </dest> 7228 </dest>
7229 <voice> 7229 <voice>
7230 *: "" 7230 *: "長さ"
7231 </voice> 7231 </voice>
7232</phrase> 7232</phrase>
7233<phrase> 7233<phrase>
@@ -7241,7 +7241,7 @@
7241 *: "プレイリスト" 7241 *: "プレイリスト"
7242 </dest> 7242 </dest>
7243 <voice> 7243 <voice>
7244 *: "" 7244 *: "プレイリスト"
7245 </voice> 7245 </voice>
7246</phrase> 7246</phrase>
7247<phrase> 7247<phrase>
@@ -7255,7 +7255,7 @@
7255 *: "ビットレート" 7255 *: "ビットレート"
7256 </dest> 7256 </dest>
7257 <voice> 7257 <voice>
7258 *: "" 7258 *: "ビットレート"
7259 </voice> 7259 </voice>
7260</phrase> 7260</phrase>
7261<phrase> 7261<phrase>
@@ -7269,7 +7269,7 @@
7269 *: "アルバムアーティスト" 7269 *: "アルバムアーティスト"
7270 </dest> 7270 </dest>
7271 <voice> 7271 <voice>
7272 *: "" 7272 *: "アルバムアーティスト"
7273 </voice> 7273 </voice>
7274</phrase> 7274</phrase>
7275<phrase> 7275<phrase>
@@ -7283,7 +7283,7 @@
7283 *: "ディスク" 7283 *: "ディスク"
7284 </dest> 7284 </dest>
7285 <voice> 7285 <voice>
7286 *: "" 7286 *: "ディスク"
7287 </voice> 7287 </voice>
7288</phrase> 7288</phrase>
7289<phrase> 7289<phrase>
@@ -7297,7 +7297,7 @@
7297 *: "コメント" 7297 *: "コメント"
7298 </dest> 7298 </dest>
7299 <voice> 7299 <voice>
7300 *: "" 7300 *: "コメント"
7301 </voice> 7301 </voice>
7302</phrase> 7302</phrase>
7303<phrase> 7303<phrase>
@@ -7311,7 +7311,7 @@
7311 *: " (VBR)" 7311 *: " (VBR)"
7312 </dest> 7312 </dest>
7313 <voice> 7313 <voice>
7314 *: "" 7314 *: "VBR"
7315 </voice> 7315 </voice>
7316</phrase> 7316</phrase>
7317<phrase> 7317<phrase>
@@ -7325,7 +7325,7 @@
7325 *: "周波数" 7325 *: "周波数"
7326 </dest> 7326 </dest>
7327 <voice> 7327 <voice>
7328 *: "" 7328 *: "周波数"
7329 </voice> 7329 </voice>
7330</phrase> 7330</phrase>
7331<phrase> 7331<phrase>
@@ -7339,7 +7339,7 @@
7339 *: "トラックゲイン" 7339 *: "トラックゲイン"
7340 </dest> 7340 </dest>
7341 <voice> 7341 <voice>
7342 *: "" 7342 *: "トラックゲイン"
7343 </voice> 7343 </voice>
7344</phrase> 7344</phrase>
7345<phrase> 7345<phrase>
@@ -7353,7 +7353,7 @@
7353 *: "アルバムゲイン" 7353 *: "アルバムゲイン"
7354 </dest> 7354 </dest>
7355 <voice> 7355 <voice>
7356 *: "" 7356 *: "アルバムゲイン"
7357 </voice> 7357 </voice>
7358</phrase> 7358</phrase>
7359<phrase> 7359<phrase>
@@ -7367,7 +7367,7 @@
7367 *: "パス" 7367 *: "パス"
7368 </dest> 7368 </dest>
7369 <voice> 7369 <voice>
7370 *: "" 7370 *: "パス"
7371 </voice> 7371 </voice>
7372</phrase> 7372</phrase>
7373<phrase> 7373<phrase>
@@ -7381,7 +7381,7 @@
7381 *: "<情報無し>" 7381 *: "<情報無し>"
7382 </dest> 7382 </dest>
7383 <voice> 7383 <voice>
7384 *: "" 7384 *: "情報無し"
7385 </voice> 7385 </voice>
7386</phrase> 7386</phrase>
7387<phrase> 7387<phrase>
@@ -10047,7 +10047,7 @@
10047 *: "ワーク" 10047 *: "ワーク"
10048 </dest> 10048 </dest>
10049 <voice> 10049 <voice>
10050 *: "" 10050 *: "ワーク"
10051 </voice> 10051 </voice>
10052</phrase> 10052</phrase>
10053<phrase> 10053<phrase>
@@ -12445,7 +12445,7 @@
12445 *: "作曲者" 12445 *: "作曲者"
12446 </dest> 12446 </dest>
12447 <voice> 12447 <voice>
12448 *: "" 12448 *: "作曲者"
12449 </voice> 12449 </voice>
12450</phrase> 12450</phrase>
12451<phrase> 12451<phrase>
diff --git a/apps/lang/korean.lang b/apps/lang/korean.lang
index 029cecc0be..fda3963e0f 100644
--- a/apps/lang/korean.lang
+++ b/apps/lang/korean.lang
@@ -4819,7 +4819,7 @@
4819 *: "제목" 4819 *: "제목"
4820 </dest> 4820 </dest>
4821 <voice> 4821 <voice>
4822 *: "" 4822 *: "제목"
4823 </voice> 4823 </voice>
4824</phrase> 4824</phrase>
4825<phrase> 4825<phrase>
@@ -4833,7 +4833,7 @@
4833 *: "음악가" 4833 *: "음악가"
4834 </dest> 4834 </dest>
4835 <voice> 4835 <voice>
4836 *: "" 4836 *: "음악가"
4837 </voice> 4837 </voice>
4838</phrase> 4838</phrase>
4839<phrase> 4839<phrase>
@@ -4847,7 +4847,7 @@
4847 *: "앨범" 4847 *: "앨범"
4848 </dest> 4848 </dest>
4849 <voice> 4849 <voice>
4850 *: "" 4850 *: "앨범"
4851 </voice> 4851 </voice>
4852</phrase> 4852</phrase>
4853<phrase> 4853<phrase>
@@ -4861,7 +4861,7 @@
4861 *: "트랙 번호" 4861 *: "트랙 번호"
4862 </dest> 4862 </dest>
4863 <voice> 4863 <voice>
4864 *: "" 4864 *: "트랙 번호"
4865 </voice> 4865 </voice>
4866</phrase> 4866</phrase>
4867<phrase> 4867<phrase>
@@ -4875,7 +4875,7 @@
4875 *: "장르" 4875 *: "장르"
4876 </dest> 4876 </dest>
4877 <voice> 4877 <voice>
4878 *: "" 4878 *: "장르"
4879 </voice> 4879 </voice>
4880</phrase> 4880</phrase>
4881<phrase> 4881<phrase>
@@ -4889,7 +4889,7 @@
4889 *: "연도" 4889 *: "연도"
4890 </dest> 4890 </dest>
4891 <voice> 4891 <voice>
4892 *: "" 4892 *: "연도"
4893 </voice> 4893 </voice>
4894</phrase> 4894</phrase>
4895<phrase> 4895<phrase>
@@ -4903,7 +4903,7 @@
4903 *: "길이" 4903 *: "길이"
4904 </dest> 4904 </dest>
4905 <voice> 4905 <voice>
4906 *: "" 4906 *: "길이"
4907 </voice> 4907 </voice>
4908</phrase> 4908</phrase>
4909<phrase> 4909<phrase>
@@ -4917,7 +4917,7 @@
4917 *: "재생순서" 4917 *: "재생순서"
4918 </dest> 4918 </dest>
4919 <voice> 4919 <voice>
4920 *: "" 4920 *: "재생순서"
4921 </voice> 4921 </voice>
4922</phrase> 4922</phrase>
4923<phrase> 4923<phrase>
@@ -4931,7 +4931,7 @@
4931 *: "비트 전송률" 4931 *: "비트 전송률"
4932 </dest> 4932 </dest>
4933 <voice> 4933 <voice>
4934 *: "" 4934 *: "비트 전송률"
4935 </voice> 4935 </voice>
4936</phrase> 4936</phrase>
4937<phrase> 4937<phrase>
@@ -4945,7 +4945,7 @@
4945 *: " (VBR)" 4945 *: " (VBR)"
4946 </dest> 4946 </dest>
4947 <voice> 4947 <voice>
4948 *: "" 4948 *: "VBR"
4949 </voice> 4949 </voice>
4950</phrase> 4950</phrase>
4951<phrase> 4951<phrase>
@@ -4959,7 +4959,7 @@
4959 *: "오디오 샘플 속도" 4959 *: "오디오 샘플 속도"
4960 </dest> 4960 </dest>
4961 <voice> 4961 <voice>
4962 *: "" 4962 *: "오디오 샘플 속도"
4963 </voice> 4963 </voice>
4964</phrase> 4964</phrase>
4965<phrase> 4965<phrase>
@@ -4973,7 +4973,7 @@
4973 *: "트랙 게인" 4973 *: "트랙 게인"
4974 </dest> 4974 </dest>
4975 <voice> 4975 <voice>
4976 *: "" 4976 *: "트랙 게인"
4977 </voice> 4977 </voice>
4978</phrase> 4978</phrase>
4979<phrase> 4979<phrase>
@@ -4987,7 +4987,7 @@
4987 *: "앨범 게인" 4987 *: "앨범 게인"
4988 </dest> 4988 </dest>
4989 <voice> 4989 <voice>
4990 *: "" 4990 *: "앨범 게인"
4991 </voice> 4991 </voice>
4992</phrase> 4992</phrase>
4993<phrase> 4993<phrase>
@@ -5001,7 +5001,7 @@
5001 *: "파일 위치" 5001 *: "파일 위치"
5002 </dest> 5002 </dest>
5003 <voice> 5003 <voice>
5004 *: "" 5004 *: "파일 위치"
5005 </voice> 5005 </voice>
5006</phrase> 5006</phrase>
5007<phrase> 5007<phrase>
@@ -8887,7 +8887,7 @@
8887 *: "앨범 음악가" 8887 *: "앨범 음악가"
8888 </dest> 8888 </dest>
8889 <voice> 8889 <voice>
8890 *: "" 8890 *: "앨범 음악가"
8891 </voice> 8891 </voice>
8892</phrase> 8892</phrase>
8893<phrase> 8893<phrase>
@@ -8901,7 +8901,7 @@
8901 *: "설명" 8901 *: "설명"
8902 </dest> 8902 </dest>
8903 <voice> 8903 <voice>
8904 *: "" 8904 *: "설명"
8905 </voice> 8905 </voice>
8906</phrase> 8906</phrase>
8907<phrase> 8907<phrase>
@@ -9376,7 +9376,7 @@
9376 *: "<정보 없음>" 9376 *: "<정보 없음>"
9377 </dest> 9377 </dest>
9378 <voice> 9378 <voice>
9379 *: "" 9379 *: "정보 없음"
9380 </voice> 9380 </voice>
9381</phrase> 9381</phrase>
9382<phrase> 9382<phrase>
@@ -10187,7 +10187,7 @@
10187 *: "작업" 10187 *: "작업"
10188 </dest> 10188 </dest>
10189 <voice> 10189 <voice>
10190 *: "" 10190 *: "작업"
10191 </voice> 10191 </voice>
10192</phrase> 10192</phrase>
10193<phrase> 10193<phrase>
@@ -10396,7 +10396,7 @@
10396 *: "디스크 번호" 10396 *: "디스크 번호"
10397 </dest> 10397 </dest>
10398 <voice> 10398 <voice>
10399 *: "" 10399 *: "디스크 번호"
10400 </voice> 10400 </voice>
10401</phrase> 10401</phrase>
10402<phrase> 10402<phrase>
diff --git a/apps/lang/latviesu.lang b/apps/lang/latviesu.lang
index 3c008c7254..ae4ab6b7d7 100644
--- a/apps/lang/latviesu.lang
+++ b/apps/lang/latviesu.lang
@@ -7141,7 +7141,7 @@
7141 *: "Nosaukums" 7141 *: "Nosaukums"
7142 </dest> 7142 </dest>
7143 <voice> 7143 <voice>
7144 *: "" 7144 *: "Nosaukums"
7145 </voice> 7145 </voice>
7146</phrase> 7146</phrase>
7147<phrase> 7147<phrase>
@@ -7155,7 +7155,7 @@
7155 *: "Izpildītājs" 7155 *: "Izpildītājs"
7156 </dest> 7156 </dest>
7157 <voice> 7157 <voice>
7158 *: "" 7158 *: "Izpildītājs"
7159 </voice> 7159 </voice>
7160</phrase> 7160</phrase>
7161<phrase> 7161<phrase>
@@ -7169,7 +7169,7 @@
7169 *: "Albūms" 7169 *: "Albūms"
7170 </dest> 7170 </dest>
7171 <voice> 7171 <voice>
7172 *: "" 7172 *: "Albūms"
7173 </voice> 7173 </voice>
7174</phrase> 7174</phrase>
7175<phrase> 7175<phrase>
@@ -7183,7 +7183,7 @@
7183 *: "Numurs" 7183 *: "Numurs"
7184 </dest> 7184 </dest>
7185 <voice> 7185 <voice>
7186 *: "" 7186 *: "Numurs"
7187 </voice> 7187 </voice>
7188</phrase> 7188</phrase>
7189<phrase> 7189<phrase>
@@ -7197,7 +7197,7 @@
7197 *: "Žanrs" 7197 *: "Žanrs"
7198 </dest> 7198 </dest>
7199 <voice> 7199 <voice>
7200 *: "" 7200 *: "Žanrs"
7201 </voice> 7201 </voice>
7202</phrase> 7202</phrase>
7203<phrase> 7203<phrase>
@@ -7211,7 +7211,7 @@
7211 *: "Gads" 7211 *: "Gads"
7212 </dest> 7212 </dest>
7213 <voice> 7213 <voice>
7214 *: "" 7214 *: "Gads"
7215 </voice> 7215 </voice>
7216</phrase> 7216</phrase>
7217<phrase> 7217<phrase>
@@ -7225,7 +7225,7 @@
7225 *: "Garums" 7225 *: "Garums"
7226 </dest> 7226 </dest>
7227 <voice> 7227 <voice>
7228 *: "" 7228 *: "Garums"
7229 </voice> 7229 </voice>
7230</phrase> 7230</phrase>
7231<phrase> 7231<phrase>
@@ -7239,7 +7239,7 @@
7239 *: "Saraksts" 7239 *: "Saraksts"
7240 </dest> 7240 </dest>
7241 <voice> 7241 <voice>
7242 *: "" 7242 *: "Saraksts"
7243 </voice> 7243 </voice>
7244</phrase> 7244</phrase>
7245<phrase> 7245<phrase>
@@ -7253,7 +7253,7 @@
7253 *: "Bitreits" 7253 *: "Bitreits"
7254 </dest> 7254 </dest>
7255 <voice> 7255 <voice>
7256 *: "" 7256 *: "Bitreits"
7257 </voice> 7257 </voice>
7258</phrase> 7258</phrase>
7259<phrase> 7259<phrase>
@@ -7267,7 +7267,7 @@
7267 *: "Albūma Izpildītājs" 7267 *: "Albūma Izpildītājs"
7268 </dest> 7268 </dest>
7269 <voice> 7269 <voice>
7270 *: "" 7270 *: "Albūma Izpildītājs"
7271 </voice> 7271 </voice>
7272</phrase> 7272</phrase>
7273<phrase> 7273<phrase>
@@ -7281,7 +7281,7 @@
7281 *: "Diska Numurs" 7281 *: "Diska Numurs"
7282 </dest> 7282 </dest>
7283 <voice> 7283 <voice>
7284 *: "" 7284 *: "Diska Numurs"
7285 </voice> 7285 </voice>
7286</phrase> 7286</phrase>
7287<phrase> 7287<phrase>
@@ -7295,7 +7295,7 @@
7295 *: "Komentārs" 7295 *: "Komentārs"
7296 </dest> 7296 </dest>
7297 <voice> 7297 <voice>
7298 *: "" 7298 *: "Komentārs"
7299 </voice> 7299 </voice>
7300</phrase> 7300</phrase>
7301<phrase> 7301<phrase>
@@ -7309,7 +7309,7 @@
7309 *: " (MBR)" 7309 *: " (MBR)"
7310 </dest> 7310 </dest>
7311 <voice> 7311 <voice>
7312 *: "" 7312 *: "MBR"
7313 </voice> 7313 </voice>
7314</phrase> 7314</phrase>
7315<phrase> 7315<phrase>
@@ -7323,7 +7323,7 @@
7323 *: "Frekvence" 7323 *: "Frekvence"
7324 </dest> 7324 </dest>
7325 <voice> 7325 <voice>
7326 *: "" 7326 *: "Frekvence"
7327 </voice> 7327 </voice>
7328</phrase> 7328</phrase>
7329<phrase> 7329<phrase>
@@ -7337,7 +7337,7 @@
7337 *: "Dziesmas Skaļums" 7337 *: "Dziesmas Skaļums"
7338 </dest> 7338 </dest>
7339 <voice> 7339 <voice>
7340 *: "" 7340 *: "Dziesmas Skaļums"
7341 </voice> 7341 </voice>
7342</phrase> 7342</phrase>
7343<phrase> 7343<phrase>
@@ -7351,7 +7351,7 @@
7351 *: "Albūma Skaļums" 7351 *: "Albūma Skaļums"
7352 </dest> 7352 </dest>
7353 <voice> 7353 <voice>
7354 *: "" 7354 *: "Albūma Skaļums"
7355 </voice> 7355 </voice>
7356</phrase> 7356</phrase>
7357<phrase> 7357<phrase>
@@ -7365,7 +7365,7 @@
7365 *: "Ceļš" 7365 *: "Ceļš"
7366 </dest> 7366 </dest>
7367 <voice> 7367 <voice>
7368 *: "" 7368 *: "Ceļš"
7369 </voice> 7369 </voice>
7370</phrase> 7370</phrase>
7371<phrase> 7371<phrase>
@@ -7379,7 +7379,7 @@
7379 *: "<Nav Informācijas>" 7379 *: "<Nav Informācijas>"
7380 </dest> 7380 </dest>
7381 <voice> 7381 <voice>
7382 *: "" 7382 *: "Nav Informācijas"
7383 </voice> 7383 </voice>
7384</phrase> 7384</phrase>
7385<phrase> 7385<phrase>
@@ -10047,7 +10047,7 @@
10047 *: "Darbs" 10047 *: "Darbs"
10048 </dest> 10048 </dest>
10049 <voice> 10049 <voice>
10050 *: "" 10050 *: "Darbs"
10051 </voice> 10051 </voice>
10052</phrase> 10052</phrase>
10053<phrase> 10053<phrase>
@@ -12428,7 +12428,7 @@
12428 *: "Komponists" 12428 *: "Komponists"
12429 </dest> 12429 </dest>
12430 <voice> 12430 <voice>
12431 *: "" 12431 *: "Komponists"
12432 </voice> 12432 </voice>
12433</phrase> 12433</phrase>
12434<phrase> 12434<phrase>
diff --git a/apps/lang/lietuviu.lang b/apps/lang/lietuviu.lang
index 362566c8eb..04bf50dd82 100644
--- a/apps/lang/lietuviu.lang
+++ b/apps/lang/lietuviu.lang
@@ -7199,7 +7199,7 @@
7199 *: "Pavadinimas" 7199 *: "Pavadinimas"
7200 </dest> 7200 </dest>
7201 <voice> 7201 <voice>
7202 *: "" 7202 *: "Pavadinimas"
7203 </voice> 7203 </voice>
7204</phrase> 7204</phrase>
7205<phrase> 7205<phrase>
@@ -7213,7 +7213,7 @@
7213 *: "Autorius" 7213 *: "Autorius"
7214 </dest> 7214 </dest>
7215 <voice> 7215 <voice>
7216 *: "" 7216 *: "Autorius"
7217 </voice> 7217 </voice>
7218</phrase> 7218</phrase>
7219<phrase> 7219<phrase>
@@ -7227,7 +7227,7 @@
7227 *: "Albumas" 7227 *: "Albumas"
7228 </dest> 7228 </dest>
7229 <voice> 7229 <voice>
7230 *: "" 7230 *: "Albumas"
7231 </voice> 7231 </voice>
7232</phrase> 7232</phrase>
7233<phrase> 7233<phrase>
@@ -7241,7 +7241,7 @@
7241 *: "Įrašo nr." 7241 *: "Įrašo nr."
7242 </dest> 7242 </dest>
7243 <voice> 7243 <voice>
7244 *: "" 7244 *: "Įrašo nr."
7245 </voice> 7245 </voice>
7246</phrase> 7246</phrase>
7247<phrase> 7247<phrase>
@@ -7255,7 +7255,7 @@
7255 *: "Žanras" 7255 *: "Žanras"
7256 </dest> 7256 </dest>
7257 <voice> 7257 <voice>
7258 *: "" 7258 *: "Žanras"
7259 </voice> 7259 </voice>
7260</phrase> 7260</phrase>
7261<phrase> 7261<phrase>
@@ -7269,7 +7269,7 @@
7269 *: "Metai" 7269 *: "Metai"
7270 </dest> 7270 </dest>
7271 <voice> 7271 <voice>
7272 *: "" 7272 *: "Metai"
7273 </voice> 7273 </voice>
7274</phrase> 7274</phrase>
7275<phrase> 7275<phrase>
@@ -7283,7 +7283,7 @@
7283 *: "Trukmė" 7283 *: "Trukmė"
7284 </dest> 7284 </dest>
7285 <voice> 7285 <voice>
7286 *: "" 7286 *: "Trukmė"
7287 </voice> 7287 </voice>
7288</phrase> 7288</phrase>
7289<phrase> 7289<phrase>
@@ -7297,7 +7297,7 @@
7297 *: "Grojaraštis" 7297 *: "Grojaraštis"
7298 </dest> 7298 </dest>
7299 <voice> 7299 <voice>
7300 *: "" 7300 *: "Grojaraštis"
7301 </voice> 7301 </voice>
7302</phrase> 7302</phrase>
7303<phrase> 7303<phrase>
@@ -7311,7 +7311,7 @@
7311 *: "Bitreitas" 7311 *: "Bitreitas"
7312 </dest> 7312 </dest>
7313 <voice> 7313 <voice>
7314 *: "" 7314 *: "Bitreitas"
7315 </voice> 7315 </voice>
7316</phrase> 7316</phrase>
7317<phrase> 7317<phrase>
@@ -7325,7 +7325,7 @@
7325 *: "Albumo autorius" 7325 *: "Albumo autorius"
7326 </dest> 7326 </dest>
7327 <voice> 7327 <voice>
7328 *: "" 7328 *: "Albumo autorius"
7329 </voice> 7329 </voice>
7330</phrase> 7330</phrase>
7331<phrase> 7331<phrase>
@@ -7339,7 +7339,7 @@
7339 *: "Disko nr." 7339 *: "Disko nr."
7340 </dest> 7340 </dest>
7341 <voice> 7341 <voice>
7342 *: "" 7342 *: "Disko nr."
7343 </voice> 7343 </voice>
7344</phrase> 7344</phrase>
7345<phrase> 7345<phrase>
@@ -7353,7 +7353,7 @@
7353 *: "Komentarai" 7353 *: "Komentarai"
7354 </dest> 7354 </dest>
7355 <voice> 7355 <voice>
7356 *: "" 7356 *: "Komentarai"
7357 </voice> 7357 </voice>
7358</phrase> 7358</phrase>
7359<phrase> 7359<phrase>
@@ -7367,7 +7367,7 @@
7367 *: " (VBR)" 7367 *: " (VBR)"
7368 </dest> 7368 </dest>
7369 <voice> 7369 <voice>
7370 *: "" 7370 *: "VBR"
7371 </voice> 7371 </voice>
7372</phrase> 7372</phrase>
7373<phrase> 7373<phrase>
@@ -7381,7 +7381,7 @@
7381 *: "Dažnis" 7381 *: "Dažnis"
7382 </dest> 7382 </dest>
7383 <voice> 7383 <voice>
7384 *: "" 7384 *: "Dažnis"
7385 </voice> 7385 </voice>
7386</phrase> 7386</phrase>
7387<phrase> 7387<phrase>
@@ -7395,7 +7395,7 @@
7395 *: "Įrašo stiprinimas" 7395 *: "Įrašo stiprinimas"
7396 </dest> 7396 </dest>
7397 <voice> 7397 <voice>
7398 *: "" 7398 *: "Įrašo stiprinimas"
7399 </voice> 7399 </voice>
7400</phrase> 7400</phrase>
7401<phrase> 7401<phrase>
@@ -7409,7 +7409,7 @@
7409 *: "Albumo stiprinimas" 7409 *: "Albumo stiprinimas"
7410 </dest> 7410 </dest>
7411 <voice> 7411 <voice>
7412 *: "" 7412 *: "Albumo stiprinimas"
7413 </voice> 7413 </voice>
7414</phrase> 7414</phrase>
7415<phrase> 7415<phrase>
@@ -7423,7 +7423,7 @@
7423 *: "Kelias" 7423 *: "Kelias"
7424 </dest> 7424 </dest>
7425 <voice> 7425 <voice>
7426 *: "" 7426 *: "Kelias"
7427 </voice> 7427 </voice>
7428</phrase> 7428</phrase>
7429<phrase> 7429<phrase>
@@ -7437,7 +7437,7 @@
7437 *: "<Nėra informacijos>" 7437 *: "<Nėra informacijos>"
7438 </dest> 7438 </dest>
7439 <voice> 7439 <voice>
7440 *: "" 7440 *: "Nėra informacijos"
7441 </voice> 7441 </voice>
7442</phrase> 7442</phrase>
7443<phrase> 7443<phrase>
@@ -10103,7 +10103,7 @@
10103 *: "Darbas" 10103 *: "Darbas"
10104 </dest> 10104 </dest>
10105 <voice> 10105 <voice>
10106 *: "" 10106 *: "Darbas"
10107 </voice> 10107 </voice>
10108</phrase> 10108</phrase>
10109<phrase> 10109<phrase>
diff --git a/apps/lang/magyar.lang b/apps/lang/magyar.lang
index 5fb4d6fd77..bf41278fa7 100644
--- a/apps/lang/magyar.lang
+++ b/apps/lang/magyar.lang
@@ -7115,7 +7115,7 @@
7115 *: "Cím" 7115 *: "Cím"
7116 </dest> 7116 </dest>
7117 <voice> 7117 <voice>
7118 *: "" 7118 *: "Cím"
7119 </voice> 7119 </voice>
7120</phrase> 7120</phrase>
7121<phrase> 7121<phrase>
@@ -7129,7 +7129,7 @@
7129 *: "Előadó" 7129 *: "Előadó"
7130 </dest> 7130 </dest>
7131 <voice> 7131 <voice>
7132 *: "" 7132 *: "Előadó"
7133 </voice> 7133 </voice>
7134</phrase> 7134</phrase>
7135<phrase> 7135<phrase>
@@ -7143,7 +7143,7 @@
7143 *: "Album" 7143 *: "Album"
7144 </dest> 7144 </dest>
7145 <voice> 7145 <voice>
7146 *: "" 7146 *: "Album"
7147 </voice> 7147 </voice>
7148</phrase> 7148</phrase>
7149<phrase> 7149<phrase>
@@ -7157,7 +7157,7 @@
7157 *: "Sorszám" 7157 *: "Sorszám"
7158 </dest> 7158 </dest>
7159 <voice> 7159 <voice>
7160 *: "" 7160 *: "Sorszám"
7161 </voice> 7161 </voice>
7162</phrase> 7162</phrase>
7163<phrase> 7163<phrase>
@@ -7171,7 +7171,7 @@
7171 *: "Műfaj" 7171 *: "Műfaj"
7172 </dest> 7172 </dest>
7173 <voice> 7173 <voice>
7174 *: "" 7174 *: "Műfaj"
7175 </voice> 7175 </voice>
7176</phrase> 7176</phrase>
7177<phrase> 7177<phrase>
@@ -7185,7 +7185,7 @@
7185 *: "Év" 7185 *: "Év"
7186 </dest> 7186 </dest>
7187 <voice> 7187 <voice>
7188 *: "" 7188 *: "Év"
7189 </voice> 7189 </voice>
7190</phrase> 7190</phrase>
7191<phrase> 7191<phrase>
@@ -7199,7 +7199,7 @@
7199 *: "Hossz" 7199 *: "Hossz"
7200 </dest> 7200 </dest>
7201 <voice> 7201 <voice>
7202 *: "" 7202 *: "Hossz"
7203 </voice> 7203 </voice>
7204</phrase> 7204</phrase>
7205<phrase> 7205<phrase>
@@ -7213,7 +7213,7 @@
7213 *: "Lejátszólista" 7213 *: "Lejátszólista"
7214 </dest> 7214 </dest>
7215 <voice> 7215 <voice>
7216 *: "" 7216 *: "Lejátszólista"
7217 </voice> 7217 </voice>
7218</phrase> 7218</phrase>
7219<phrase> 7219<phrase>
@@ -7227,7 +7227,7 @@
7227 *: "Bitráta" 7227 *: "Bitráta"
7228 </dest> 7228 </dest>
7229 <voice> 7229 <voice>
7230 *: "" 7230 *: "Bitráta"
7231 </voice> 7231 </voice>
7232</phrase> 7232</phrase>
7233<phrase> 7233<phrase>
@@ -7241,7 +7241,7 @@
7241 *: "Lemez előadója" 7241 *: "Lemez előadója"
7242 </dest> 7242 </dest>
7243 <voice> 7243 <voice>
7244 *: "" 7244 *: "Lemez előadója"
7245 </voice> 7245 </voice>
7246</phrase> 7246</phrase>
7247<phrase> 7247<phrase>
@@ -7255,7 +7255,7 @@
7255 *: "Lemez száma" 7255 *: "Lemez száma"
7256 </dest> 7256 </dest>
7257 <voice> 7257 <voice>
7258 *: "" 7258 *: "Lemez száma"
7259 </voice> 7259 </voice>
7260</phrase> 7260</phrase>
7261<phrase> 7261<phrase>
@@ -7269,7 +7269,7 @@
7269 *: "Megjegyzés" 7269 *: "Megjegyzés"
7270 </dest> 7270 </dest>
7271 <voice> 7271 <voice>
7272 *: "" 7272 *: "Megjegyzés"
7273 </voice> 7273 </voice>
7274</phrase> 7274</phrase>
7275<phrase> 7275<phrase>
@@ -7283,7 +7283,7 @@
7283 *: " (VBR)" 7283 *: " (VBR)"
7284 </dest> 7284 </dest>
7285 <voice> 7285 <voice>
7286 *: "" 7286 *: "VBR"
7287 </voice> 7287 </voice>
7288</phrase> 7288</phrase>
7289<phrase> 7289<phrase>
@@ -7297,7 +7297,7 @@
7297 *: "Mintavétel" 7297 *: "Mintavétel"
7298 </dest> 7298 </dest>
7299 <voice> 7299 <voice>
7300 *: "" 7300 *: "Mintavétel"
7301 </voice> 7301 </voice>
7302</phrase> 7302</phrase>
7303<phrase> 7303<phrase>
@@ -7311,7 +7311,7 @@
7311 *: "Számonkénti módosítás" 7311 *: "Számonkénti módosítás"
7312 </dest> 7312 </dest>
7313 <voice> 7313 <voice>
7314 *: "" 7314 *: "Számonkénti módosítás"
7315 </voice> 7315 </voice>
7316</phrase> 7316</phrase>
7317<phrase> 7317<phrase>
@@ -7325,7 +7325,7 @@
7325 *: "Albumonkénti módosítás" 7325 *: "Albumonkénti módosítás"
7326 </dest> 7326 </dest>
7327 <voice> 7327 <voice>
7328 *: "" 7328 *: "Albumonkénti módosítás"
7329 </voice> 7329 </voice>
7330</phrase> 7330</phrase>
7331<phrase> 7331<phrase>
@@ -7339,7 +7339,7 @@
7339 *: "Elérési út" 7339 *: "Elérési út"
7340 </dest> 7340 </dest>
7341 <voice> 7341 <voice>
7342 *: "" 7342 *: "Elérési út"
7343 </voice> 7343 </voice>
7344</phrase> 7344</phrase>
7345<phrase> 7345<phrase>
@@ -7353,7 +7353,7 @@
7353 *: "<Nincs adat>" 7353 *: "<Nincs adat>"
7354 </dest> 7354 </dest>
7355 <voice> 7355 <voice>
7356 *: "" 7356 *: "Nincs adat"
7357 </voice> 7357 </voice>
7358</phrase> 7358</phrase>
7359<phrase> 7359<phrase>
@@ -10019,7 +10019,7 @@
10019 *: "Mű" 10019 *: "Mű"
10020 </dest> 10020 </dest>
10021 <voice> 10021 <voice>
10022 *: "" 10022 *: ""
10023 </voice> 10023 </voice>
10024</phrase> 10024</phrase>
10025<phrase> 10025<phrase>
diff --git a/apps/lang/nederlands.lang b/apps/lang/nederlands.lang
index 81142183e4..d7d5986cae 100644
--- a/apps/lang/nederlands.lang
+++ b/apps/lang/nederlands.lang
@@ -4806,7 +4806,7 @@
4806 *: "Titel" 4806 *: "Titel"
4807 </dest> 4807 </dest>
4808 <voice> 4808 <voice>
4809 *: "" 4809 *: "Titel"
4810 </voice> 4810 </voice>
4811</phrase> 4811</phrase>
4812<phrase> 4812<phrase>
@@ -4820,7 +4820,7 @@
4820 *: "Artiest" 4820 *: "Artiest"
4821 </dest> 4821 </dest>
4822 <voice> 4822 <voice>
4823 *: "" 4823 *: "Artiest"
4824 </voice> 4824 </voice>
4825</phrase> 4825</phrase>
4826<phrase> 4826<phrase>
@@ -4834,7 +4834,7 @@
4834 *: "Album" 4834 *: "Album"
4835 </dest> 4835 </dest>
4836 <voice> 4836 <voice>
4837 *: "" 4837 *: "Album"
4838 </voice> 4838 </voice>
4839</phrase> 4839</phrase>
4840<phrase> 4840<phrase>
@@ -4848,7 +4848,7 @@
4848 *: "Tracknum" 4848 *: "Tracknum"
4849 </dest> 4849 </dest>
4850 <voice> 4850 <voice>
4851 *: "" 4851 *: "Tracknum"
4852 </voice> 4852 </voice>
4853</phrase> 4853</phrase>
4854<phrase> 4854<phrase>
@@ -4862,7 +4862,7 @@
4862 *: "Genre" 4862 *: "Genre"
4863 </dest> 4863 </dest>
4864 <voice> 4864 <voice>
4865 *: "" 4865 *: "Genre"
4866 </voice> 4866 </voice>
4867</phrase> 4867</phrase>
4868<phrase> 4868<phrase>
@@ -4876,7 +4876,7 @@
4876 *: "Jaar" 4876 *: "Jaar"
4877 </dest> 4877 </dest>
4878 <voice> 4878 <voice>
4879 *: "" 4879 *: "Jaar"
4880 </voice> 4880 </voice>
4881</phrase> 4881</phrase>
4882<phrase> 4882<phrase>
@@ -4890,7 +4890,7 @@
4890 *: "Lengte" 4890 *: "Lengte"
4891 </dest> 4891 </dest>
4892 <voice> 4892 <voice>
4893 *: "" 4893 *: "Lengte"
4894 </voice> 4894 </voice>
4895</phrase> 4895</phrase>
4896<phrase> 4896<phrase>
@@ -4904,7 +4904,7 @@
4904 *: "Speellijst" 4904 *: "Speellijst"
4905 </dest> 4905 </dest>
4906 <voice> 4906 <voice>
4907 *: "" 4907 *: "Speellijst"
4908 </voice> 4908 </voice>
4909</phrase> 4909</phrase>
4910<phrase> 4910<phrase>
@@ -4918,7 +4918,7 @@
4918 *: "Bitrate" 4918 *: "Bitrate"
4919 </dest> 4919 </dest>
4920 <voice> 4920 <voice>
4921 *: "" 4921 *: "Bitrate"
4922 </voice> 4922 </voice>
4923</phrase> 4923</phrase>
4924<phrase> 4924<phrase>
@@ -4946,7 +4946,7 @@
4946 *: "Frequentie" 4946 *: "Frequentie"
4947 </dest> 4947 </dest>
4948 <voice> 4948 <voice>
4949 *: "" 4949 *: "Frequentie"
4950 </voice> 4950 </voice>
4951</phrase> 4951</phrase>
4952<phrase> 4952<phrase>
@@ -4988,7 +4988,7 @@
4988 *: "Lokatie" 4988 *: "Lokatie"
4989 </dest> 4989 </dest>
4990 <voice> 4990 <voice>
4991 *: "" 4991 *: "Lokatie"
4992 </voice> 4992 </voice>
4993</phrase> 4993</phrase>
4994<phrase> 4994<phrase>
@@ -5002,7 +5002,7 @@
5002 *: "<geen info>" 5002 *: "<geen info>"
5003 </dest> 5003 </dest>
5004 <voice> 5004 <voice>
5005 *: "" 5005 *: "geen info"
5006 </voice> 5006 </voice>
5007</phrase> 5007</phrase>
5008<phrase> 5008<phrase>
@@ -8872,7 +8872,7 @@
8872 *: "Artiest van Album" 8872 *: "Artiest van Album"
8873 </dest> 8873 </dest>
8874 <voice> 8874 <voice>
8875 *: "" 8875 *: "Artiest van Album"
8876 </voice> 8876 </voice>
8877</phrase> 8877</phrase>
8878<phrase> 8878<phrase>
@@ -8886,7 +8886,7 @@
8886 *: "Commentaar" 8886 *: "Commentaar"
8887 </dest> 8887 </dest>
8888 <voice> 8888 <voice>
8889 *: "" 8889 *: "Commentaar"
8890 </voice> 8890 </voice>
8891</phrase> 8891</phrase>
8892<phrase> 8892<phrase>
@@ -9418,7 +9418,7 @@
9418 *: "DiscNr" 9418 *: "DiscNr"
9419 </dest> 9419 </dest>
9420 <voice> 9420 <voice>
9421 *: "" 9421 *: "DiscNr"
9422 </voice> 9422 </voice>
9423</phrase> 9423</phrase>
9424<phrase> 9424<phrase>
@@ -10034,7 +10034,7 @@
10034 *: "Werk" 10034 *: "Werk"
10035 </dest> 10035 </dest>
10036 <voice> 10036 <voice>
10037 *: "" 10037 *: "Werk"
10038 </voice> 10038 </voice>
10039</phrase> 10039</phrase>
10040<phrase> 10040<phrase>
@@ -12432,7 +12432,7 @@
12432 *: "Componist" 12432 *: "Componist"
12433 </dest> 12433 </dest>
12434 <voice> 12434 <voice>
12435 *: "" 12435 *: "Componist"
12436 </voice> 12436 </voice>
12437</phrase> 12437</phrase>
12438<phrase> 12438<phrase>
diff --git a/apps/lang/norsk-nynorsk.lang b/apps/lang/norsk-nynorsk.lang
index 85b798f682..e99e86d5b4 100644
--- a/apps/lang/norsk-nynorsk.lang
+++ b/apps/lang/norsk-nynorsk.lang
@@ -4727,7 +4727,7 @@
4727 *: "Tittel" 4727 *: "Tittel"
4728 </dest> 4728 </dest>
4729 <voice> 4729 <voice>
4730 *: "" 4730 *: "Tittel"
4731 </voice> 4731 </voice>
4732</phrase> 4732</phrase>
4733<phrase> 4733<phrase>
@@ -4741,7 +4741,7 @@
4741 *: "Artist" 4741 *: "Artist"
4742 </dest> 4742 </dest>
4743 <voice> 4743 <voice>
4744 *: "" 4744 *: "Artist"
4745 </voice> 4745 </voice>
4746</phrase> 4746</phrase>
4747<phrase> 4747<phrase>
@@ -4755,7 +4755,7 @@
4755 *: "Album" 4755 *: "Album"
4756 </dest> 4756 </dest>
4757 <voice> 4757 <voice>
4758 *: "" 4758 *: "Album"
4759 </voice> 4759 </voice>
4760</phrase> 4760</phrase>
4761<phrase> 4761<phrase>
@@ -4769,7 +4769,7 @@
4769 *: "Spornummer" 4769 *: "Spornummer"
4770 </dest> 4770 </dest>
4771 <voice> 4771 <voice>
4772 *: "" 4772 *: "Spornummer"
4773 </voice> 4773 </voice>
4774</phrase> 4774</phrase>
4775<phrase> 4775<phrase>
@@ -4783,7 +4783,7 @@
4783 *: "Sjanger" 4783 *: "Sjanger"
4784 </dest> 4784 </dest>
4785 <voice> 4785 <voice>
4786 *: "" 4786 *: "Sjanger"
4787 </voice> 4787 </voice>
4788</phrase> 4788</phrase>
4789<phrase> 4789<phrase>
@@ -4797,7 +4797,7 @@
4797 *: "År" 4797 *: "År"
4798 </dest> 4798 </dest>
4799 <voice> 4799 <voice>
4800 *: "" 4800 *: "År"
4801 </voice> 4801 </voice>
4802</phrase> 4802</phrase>
4803<phrase> 4803<phrase>
@@ -4811,7 +4811,7 @@
4811 *: "Lengd" 4811 *: "Lengd"
4812 </dest> 4812 </dest>
4813 <voice> 4813 <voice>
4814 *: "" 4814 *: "Lengd"
4815 </voice> 4815 </voice>
4816</phrase> 4816</phrase>
4817<phrase> 4817<phrase>
@@ -4825,7 +4825,7 @@
4825 *: "Speleliste" 4825 *: "Speleliste"
4826 </dest> 4826 </dest>
4827 <voice> 4827 <voice>
4828 *: "" 4828 *: "Speleliste"
4829 </voice> 4829 </voice>
4830</phrase> 4830</phrase>
4831<phrase> 4831<phrase>
@@ -4839,7 +4839,7 @@
4839 *: "Bitrate" 4839 *: "Bitrate"
4840 </dest> 4840 </dest>
4841 <voice> 4841 <voice>
4842 *: "" 4842 *: "Bitrate"
4843 </voice> 4843 </voice>
4844</phrase> 4844</phrase>
4845<phrase> 4845<phrase>
@@ -4853,7 +4853,7 @@
4853 *: " (VBR)" 4853 *: " (VBR)"
4854 </dest> 4854 </dest>
4855 <voice> 4855 <voice>
4856 *: "" 4856 *: "VBR"
4857 </voice> 4857 </voice>
4858</phrase> 4858</phrase>
4859<phrase> 4859<phrase>
@@ -4867,7 +4867,7 @@
4867 *: "Frekvens" 4867 *: "Frekvens"
4868 </dest> 4868 </dest>
4869 <voice> 4869 <voice>
4870 *: "" 4870 *: "Frekvens"
4871 </voice> 4871 </voice>
4872</phrase> 4872</phrase>
4873<phrase> 4873<phrase>
@@ -4881,7 +4881,7 @@
4881 *: "Sporforsterking" 4881 *: "Sporforsterking"
4882 </dest> 4882 </dest>
4883 <voice> 4883 <voice>
4884 *: "" 4884 *: "Sporforsterking"
4885 </voice> 4885 </voice>
4886</phrase> 4886</phrase>
4887<phrase> 4887<phrase>
@@ -4895,7 +4895,7 @@
4895 *: "Albumforsterking" 4895 *: "Albumforsterking"
4896 </dest> 4896 </dest>
4897 <voice> 4897 <voice>
4898 *: "" 4898 *: "Albumforsterking"
4899 </voice> 4899 </voice>
4900</phrase> 4900</phrase>
4901<phrase> 4901<phrase>
@@ -4909,7 +4909,7 @@
4909 *: "Adresse" 4909 *: "Adresse"
4910 </dest> 4910 </dest>
4911 <voice> 4911 <voice>
4912 *: "" 4912 *: "Adresse"
4913 </voice> 4913 </voice>
4914</phrase> 4914</phrase>
4915<phrase> 4915<phrase>
@@ -4923,7 +4923,7 @@
4923 *: "<Ingen info>" 4923 *: "<Ingen info>"
4924 </dest> 4924 </dest>
4925 <voice> 4925 <voice>
4926 *: "" 4926 *: "Ingen info"
4927 </voice> 4927 </voice>
4928</phrase> 4928</phrase>
4929<phrase> 4929<phrase>
@@ -8359,7 +8359,7 @@
8359 *: "Merknad" 8359 *: "Merknad"
8360 </dest> 8360 </dest>
8361 <voice> 8361 <voice>
8362 *: "" 8362 *: "Merknad"
8363 </voice> 8363 </voice>
8364</phrase> 8364</phrase>
8365<phrase> 8365<phrase>
@@ -8714,7 +8714,7 @@
8714 *: "Albumartist" 8714 *: "Albumartist"
8715 </dest> 8715 </dest>
8716 <voice> 8716 <voice>
8717 *: "" 8717 *: "Albumartist"
8718 </voice> 8718 </voice>
8719</phrase> 8719</phrase>
8720<phrase> 8720<phrase>
@@ -9638,7 +9638,7 @@
9638 *: "Arbeid" 9638 *: "Arbeid"
9639 </dest> 9639 </dest>
9640 <voice> 9640 <voice>
9641 *: "" 9641 *: "Arbeid"
9642 </voice> 9642 </voice>
9643</phrase> 9643</phrase>
9644<phrase> 9644<phrase>
@@ -9717,7 +9717,7 @@
9717 *: "Disknummer" 9717 *: "Disknummer"
9718 </dest> 9718 </dest>
9719 <voice> 9719 <voice>
9720 *: "" 9720 *: "Disknummer"
9721 </voice> 9721 </voice>
9722</phrase> 9722</phrase>
9723<phrase> 9723<phrase>
diff --git a/apps/lang/norsk.lang b/apps/lang/norsk.lang
index 20523f7c09..2c224b1a3f 100644
--- a/apps/lang/norsk.lang
+++ b/apps/lang/norsk.lang
@@ -4052,7 +4052,7 @@
4052 *: "Tittel" 4052 *: "Tittel"
4053 </dest> 4053 </dest>
4054 <voice> 4054 <voice>
4055 *: "" 4055 *: "Tittel"
4056 </voice> 4056 </voice>
4057</phrase> 4057</phrase>
4058<phrase> 4058<phrase>
@@ -4066,7 +4066,7 @@
4066 *: "Artist" 4066 *: "Artist"
4067 </dest> 4067 </dest>
4068 <voice> 4068 <voice>
4069 *: "" 4069 *: "Artist"
4070 </voice> 4070 </voice>
4071</phrase> 4071</phrase>
4072<phrase> 4072<phrase>
@@ -4080,7 +4080,7 @@
4080 *: "Album" 4080 *: "Album"
4081 </dest> 4081 </dest>
4082 <voice> 4082 <voice>
4083 *: "" 4083 *: "Album"
4084 </voice> 4084 </voice>
4085</phrase> 4085</phrase>
4086<phrase> 4086<phrase>
@@ -4094,7 +4094,7 @@
4094 *: "Spornummer" 4094 *: "Spornummer"
4095 </dest> 4095 </dest>
4096 <voice> 4096 <voice>
4097 *: "" 4097 *: "Spornummer"
4098 </voice> 4098 </voice>
4099</phrase> 4099</phrase>
4100<phrase> 4100<phrase>
@@ -4108,7 +4108,7 @@
4108 *: "Sjanger" 4108 *: "Sjanger"
4109 </dest> 4109 </dest>
4110 <voice> 4110 <voice>
4111 *: "" 4111 *: "Sjanger"
4112 </voice> 4112 </voice>
4113</phrase> 4113</phrase>
4114<phrase> 4114<phrase>
@@ -4122,7 +4122,7 @@
4122 *: "År" 4122 *: "År"
4123 </dest> 4123 </dest>
4124 <voice> 4124 <voice>
4125 *: "" 4125 *: "År"
4126 </voice> 4126 </voice>
4127</phrase> 4127</phrase>
4128<phrase> 4128<phrase>
@@ -4136,7 +4136,7 @@
4136 *: "Spilleliste" 4136 *: "Spilleliste"
4137 </dest> 4137 </dest>
4138 <voice> 4138 <voice>
4139 *: "" 4139 *: "Spilleliste"
4140 </voice> 4140 </voice>
4141</phrase> 4141</phrase>
4142<phrase> 4142<phrase>
@@ -4150,7 +4150,7 @@
4150 *: "Bitrate" 4150 *: "Bitrate"
4151 </dest> 4151 </dest>
4152 <voice> 4152 <voice>
4153 *: "" 4153 *: "Bitrate"
4154 </voice> 4154 </voice>
4155</phrase> 4155</phrase>
4156<phrase> 4156<phrase>
@@ -4164,7 +4164,7 @@
4164 *: " (VBR)" 4164 *: " (VBR)"
4165 </dest> 4165 </dest>
4166 <voice> 4166 <voice>
4167 *: "" 4167 *: "VBR"
4168 </voice> 4168 </voice>
4169</phrase> 4169</phrase>
4170<phrase> 4170<phrase>
@@ -4178,7 +4178,7 @@
4178 *: "Frekvens" 4178 *: "Frekvens"
4179 </dest> 4179 </dest>
4180 <voice> 4180 <voice>
4181 *: "" 4181 *: "Frekvens"
4182 </voice> 4182 </voice>
4183</phrase> 4183</phrase>
4184<phrase> 4184<phrase>
@@ -4192,7 +4192,7 @@
4192 *: "Spornivå" 4192 *: "Spornivå"
4193 </dest> 4193 </dest>
4194 <voice> 4194 <voice>
4195 *: "" 4195 *: "Spornivå"
4196 </voice> 4196 </voice>
4197</phrase> 4197</phrase>
4198<phrase> 4198<phrase>
@@ -4206,7 +4206,7 @@
4206 *: "Albumnivå" 4206 *: "Albumnivå"
4207 </dest> 4207 </dest>
4208 <voice> 4208 <voice>
4209 *: "" 4209 *: "Albumnivå"
4210 </voice> 4210 </voice>
4211</phrase> 4211</phrase>
4212<phrase> 4212<phrase>
@@ -4220,7 +4220,7 @@
4220 *: "Sti" 4220 *: "Sti"
4221 </dest> 4221 </dest>
4222 <voice> 4222 <voice>
4223 *: "" 4223 *: "Sti"
4224 </voice> 4224 </voice>
4225</phrase> 4225</phrase>
4226<phrase> 4226<phrase>
@@ -4234,7 +4234,7 @@
4234 *: "<Ingen informasjon>" 4234 *: "<Ingen informasjon>"
4235 </dest> 4235 </dest>
4236 <voice> 4236 <voice>
4237 *: "" 4237 *: "Ingen informasjon"
4238 </voice> 4238 </voice>
4239</phrase> 4239</phrase>
4240<phrase> 4240<phrase>
@@ -7079,7 +7079,7 @@
7079 *: "Lengde" 7079 *: "Lengde"
7080 </dest> 7080 </dest>
7081 <voice> 7081 <voice>
7082 *: "" 7082 *: "Lengde"
7083 </voice> 7083 </voice>
7084</phrase> 7084</phrase>
7085<phrase> 7085<phrase>
@@ -8881,7 +8881,7 @@
8881 *: "Kommentar" 8881 *: "Kommentar"
8882 </dest> 8882 </dest>
8883 <voice> 8883 <voice>
8884 *: "" 8884 *: "Kommentar"
8885 </voice> 8885 </voice>
8886</phrase> 8886</phrase>
8887<phrase> 8887<phrase>
@@ -9041,7 +9041,7 @@
9041 *: "Album-artist" 9041 *: "Album-artist"
9042 </dest> 9042 </dest>
9043 <voice> 9043 <voice>
9044 *: "" 9044 *: "Album-artist"
9045 </voice> 9045 </voice>
9046</phrase> 9046</phrase>
9047<phrase> 9047<phrase>
@@ -9954,7 +9954,7 @@
9954 *: "Arbeid" 9954 *: "Arbeid"
9955 </dest> 9955 </dest>
9956 <voice> 9956 <voice>
9957 *: "" 9957 *: "Arbeid"
9958 </voice> 9958 </voice>
9959</phrase> 9959</phrase>
9960<phrase> 9960<phrase>
@@ -10030,7 +10030,7 @@
10030 *: "Disknum" 10030 *: "Disknum"
10031 </dest> 10031 </dest>
10032 <voice> 10032 <voice>
10033 *: "" 10033 *: "Disknum"
10034 </voice> 10034 </voice>
10035</phrase> 10035</phrase>
10036<phrase> 10036<phrase>
@@ -11563,7 +11563,7 @@
11563 *: "Komponist" 11563 *: "Komponist"
11564 </dest> 11564 </dest>
11565 <voice> 11565 <voice>
11566 *: "" 11566 *: "Komponist"
11567 </voice> 11567 </voice>
11568</phrase> 11568</phrase>
11569<phrase> 11569<phrase>
diff --git a/apps/lang/polski.lang b/apps/lang/polski.lang
index 9c4953c012..48bcd34047 100644
--- a/apps/lang/polski.lang
+++ b/apps/lang/polski.lang
@@ -7152,7 +7152,7 @@
7152 *: "Tytuł" 7152 *: "Tytuł"
7153 </dest> 7153 </dest>
7154 <voice> 7154 <voice>
7155 *: "" 7155 *: "Tytuł"
7156 </voice> 7156 </voice>
7157</phrase> 7157</phrase>
7158<phrase> 7158<phrase>
@@ -7166,7 +7166,7 @@
7166 *: "Wykonawca" 7166 *: "Wykonawca"
7167 </dest> 7167 </dest>
7168 <voice> 7168 <voice>
7169 *: "" 7169 *: "Wykonawca"
7170 </voice> 7170 </voice>
7171</phrase> 7171</phrase>
7172<phrase> 7172<phrase>
@@ -7180,7 +7180,7 @@
7180 *: "Album" 7180 *: "Album"
7181 </dest> 7181 </dest>
7182 <voice> 7182 <voice>
7183 *: "" 7183 *: "Album"
7184 </voice> 7184 </voice>
7185</phrase> 7185</phrase>
7186<phrase> 7186<phrase>
@@ -7194,7 +7194,7 @@
7194 *: "Nr utworu" 7194 *: "Nr utworu"
7195 </dest> 7195 </dest>
7196 <voice> 7196 <voice>
7197 *: "" 7197 *: "Nr utworu"
7198 </voice> 7198 </voice>
7199</phrase> 7199</phrase>
7200<phrase> 7200<phrase>
@@ -7208,7 +7208,7 @@
7208 *: "Gatunek" 7208 *: "Gatunek"
7209 </dest> 7209 </dest>
7210 <voice> 7210 <voice>
7211 *: "" 7211 *: "Gatunek"
7212 </voice> 7212 </voice>
7213</phrase> 7213</phrase>
7214<phrase> 7214<phrase>
@@ -7222,7 +7222,7 @@
7222 *: "Rok" 7222 *: "Rok"
7223 </dest> 7223 </dest>
7224 <voice> 7224 <voice>
7225 *: "" 7225 *: "Rok"
7226 </voice> 7226 </voice>
7227</phrase> 7227</phrase>
7228<phrase> 7228<phrase>
@@ -7236,7 +7236,7 @@
7236 *: "Długość" 7236 *: "Długość"
7237 </dest> 7237 </dest>
7238 <voice> 7238 <voice>
7239 *: "" 7239 *: "Długość"
7240 </voice> 7240 </voice>
7241</phrase> 7241</phrase>
7242<phrase> 7242<phrase>
@@ -7250,7 +7250,7 @@
7250 *: "Lista odtwarzania" 7250 *: "Lista odtwarzania"
7251 </dest> 7251 </dest>
7252 <voice> 7252 <voice>
7253 *: "" 7253 *: "Lista odtwarzania"
7254 </voice> 7254 </voice>
7255</phrase> 7255</phrase>
7256<phrase> 7256<phrase>
@@ -7264,7 +7264,7 @@
7264 *: "Prędkość transmisji" 7264 *: "Prędkość transmisji"
7265 </dest> 7265 </dest>
7266 <voice> 7266 <voice>
7267 *: "" 7267 *: "Prędkość transmisji"
7268 </voice> 7268 </voice>
7269</phrase> 7269</phrase>
7270<phrase> 7270<phrase>
@@ -7278,7 +7278,7 @@
7278 *: "Wykonawca Albumu" 7278 *: "Wykonawca Albumu"
7279 </dest> 7279 </dest>
7280 <voice> 7280 <voice>
7281 *: "" 7281 *: "Wykonawca Albumu"
7282 </voice> 7282 </voice>
7283</phrase> 7283</phrase>
7284<phrase> 7284<phrase>
@@ -7292,7 +7292,7 @@
7292 *: "Numer płyty" 7292 *: "Numer płyty"
7293 </dest> 7293 </dest>
7294 <voice> 7294 <voice>
7295 *: "" 7295 *: "Numer płyty"
7296 </voice> 7296 </voice>
7297</phrase> 7297</phrase>
7298<phrase> 7298<phrase>
@@ -7306,7 +7306,7 @@
7306 *: "Komentarz" 7306 *: "Komentarz"
7307 </dest> 7307 </dest>
7308 <voice> 7308 <voice>
7309 *: "" 7309 *: "Komentarz"
7310 </voice> 7310 </voice>
7311</phrase> 7311</phrase>
7312<phrase> 7312<phrase>
@@ -7320,7 +7320,7 @@
7320 *: " (VBR)" 7320 *: " (VBR)"
7321 </dest> 7321 </dest>
7322 <voice> 7322 <voice>
7323 *: "" 7323 *: "VBR"
7324 </voice> 7324 </voice>
7325</phrase> 7325</phrase>
7326<phrase> 7326<phrase>
@@ -7334,7 +7334,7 @@
7334 *: "Częstotliwość" 7334 *: "Częstotliwość"
7335 </dest> 7335 </dest>
7336 <voice> 7336 <voice>
7337 *: "" 7337 *: "Częstotliwość"
7338 </voice> 7338 </voice>
7339</phrase> 7339</phrase>
7340<phrase> 7340<phrase>
@@ -7348,7 +7348,7 @@
7348 *: "Wzm. utworu" 7348 *: "Wzm. utworu"
7349 </dest> 7349 </dest>
7350 <voice> 7350 <voice>
7351 *: "" 7351 *: "Wzm. utworu"
7352 </voice> 7352 </voice>
7353</phrase> 7353</phrase>
7354<phrase> 7354<phrase>
@@ -7362,7 +7362,7 @@
7362 *: "Wzm. albumu" 7362 *: "Wzm. albumu"
7363 </dest> 7363 </dest>
7364 <voice> 7364 <voice>
7365 *: "" 7365 *: "Wzm. albumu"
7366 </voice> 7366 </voice>
7367</phrase> 7367</phrase>
7368<phrase> 7368<phrase>
@@ -7376,7 +7376,7 @@
7376 *: "Ścieżka" 7376 *: "Ścieżka"
7377 </dest> 7377 </dest>
7378 <voice> 7378 <voice>
7379 *: "" 7379 *: "Ścieżka"
7380 </voice> 7380 </voice>
7381</phrase> 7381</phrase>
7382<phrase> 7382<phrase>
@@ -7390,7 +7390,7 @@
7390 *: "<brak danych>" 7390 *: "<brak danych>"
7391 </dest> 7391 </dest>
7392 <voice> 7392 <voice>
7393 *: "" 7393 *: "brak danych"
7394 </voice> 7394 </voice>
7395</phrase> 7395</phrase>
7396<phrase> 7396<phrase>
@@ -10055,7 +10055,7 @@
10055 *: "Praca" 10055 *: "Praca"
10056 </dest> 10056 </dest>
10057 <voice> 10057 <voice>
10058 *: "" 10058 *: "Praca"
10059 </voice> 10059 </voice>
10060</phrase> 10060</phrase>
10061<phrase> 10061<phrase>
@@ -12518,7 +12518,7 @@
12518 *: "Kompozytor" 12518 *: "Kompozytor"
12519 </dest> 12519 </dest>
12520 <voice> 12520 <voice>
12521 *: "" 12521 *: "Kompozytor"
12522 </voice> 12522 </voice>
12523</phrase> 12523</phrase>
12524<phrase> 12524<phrase>
diff --git a/apps/lang/portugues-brasileiro.lang b/apps/lang/portugues-brasileiro.lang
index 2a608c065a..e6968adb18 100644
--- a/apps/lang/portugues-brasileiro.lang
+++ b/apps/lang/portugues-brasileiro.lang
@@ -7139,7 +7139,7 @@
7139 *: "Título" 7139 *: "Título"
7140 </dest> 7140 </dest>
7141 <voice> 7141 <voice>
7142 *: "" 7142 *: "Título"
7143 </voice> 7143 </voice>
7144</phrase> 7144</phrase>
7145<phrase> 7145<phrase>
@@ -7153,7 +7153,7 @@
7153 *: "Artista" 7153 *: "Artista"
7154 </dest> 7154 </dest>
7155 <voice> 7155 <voice>
7156 *: "" 7156 *: "Artista"
7157 </voice> 7157 </voice>
7158</phrase> 7158</phrase>
7159<phrase> 7159<phrase>
@@ -7167,7 +7167,7 @@
7167 *: "Álbum" 7167 *: "Álbum"
7168 </dest> 7168 </dest>
7169 <voice> 7169 <voice>
7170 *: "" 7170 *: "Álbum"
7171 </voice> 7171 </voice>
7172</phrase> 7172</phrase>
7173<phrase> 7173<phrase>
@@ -7181,7 +7181,7 @@
7181 *: "Faixa Nº" 7181 *: "Faixa Nº"
7182 </dest> 7182 </dest>
7183 <voice> 7183 <voice>
7184 *: "" 7184 *: "Faixa Nº"
7185 </voice> 7185 </voice>
7186</phrase> 7186</phrase>
7187<phrase> 7187<phrase>
@@ -7195,7 +7195,7 @@
7195 *: "Gênero" 7195 *: "Gênero"
7196 </dest> 7196 </dest>
7197 <voice> 7197 <voice>
7198 *: "" 7198 *: "Gênero"
7199 </voice> 7199 </voice>
7200</phrase> 7200</phrase>
7201<phrase> 7201<phrase>
@@ -7209,7 +7209,7 @@
7209 *: "Ano" 7209 *: "Ano"
7210 </dest> 7210 </dest>
7211 <voice> 7211 <voice>
7212 *: "" 7212 *: "Ano"
7213 </voice> 7213 </voice>
7214</phrase> 7214</phrase>
7215<phrase> 7215<phrase>
@@ -7223,7 +7223,7 @@
7223 *: "Duração" 7223 *: "Duração"
7224 </dest> 7224 </dest>
7225 <voice> 7225 <voice>
7226 *: "" 7226 *: "Duração"
7227 </voice> 7227 </voice>
7228</phrase> 7228</phrase>
7229<phrase> 7229<phrase>
@@ -7237,7 +7237,7 @@
7237 *: "Playlist" 7237 *: "Playlist"
7238 </dest> 7238 </dest>
7239 <voice> 7239 <voice>
7240 *: "" 7240 *: "Playlist"
7241 </voice> 7241 </voice>
7242</phrase> 7242</phrase>
7243<phrase> 7243<phrase>
@@ -7251,7 +7251,7 @@
7251 *: "Taxa de Bits" 7251 *: "Taxa de Bits"
7252 </dest> 7252 </dest>
7253 <voice> 7253 <voice>
7254 *: "" 7254 *: "Taxa de Bits"
7255 </voice> 7255 </voice>
7256</phrase> 7256</phrase>
7257<phrase> 7257<phrase>
@@ -7265,7 +7265,7 @@
7265 *: "Artista do Álbum" 7265 *: "Artista do Álbum"
7266 </dest> 7266 </dest>
7267 <voice> 7267 <voice>
7268 *: "" 7268 *: "Artista do Álbum"
7269 </voice> 7269 </voice>
7270</phrase> 7270</phrase>
7271<phrase> 7271<phrase>
@@ -7279,7 +7279,7 @@
7279 *: "Disco Nº" 7279 *: "Disco Nº"
7280 </dest> 7280 </dest>
7281 <voice> 7281 <voice>
7282 *: "" 7282 *: "Disco Nº"
7283 </voice> 7283 </voice>
7284</phrase> 7284</phrase>
7285<phrase> 7285<phrase>
@@ -7293,7 +7293,7 @@
7293 *: "Comentário" 7293 *: "Comentário"
7294 </dest> 7294 </dest>
7295 <voice> 7295 <voice>
7296 *: "" 7296 *: "Comentário"
7297 </voice> 7297 </voice>
7298</phrase> 7298</phrase>
7299<phrase> 7299<phrase>
@@ -7307,7 +7307,7 @@
7307 *: " (VBR)" 7307 *: " (VBR)"
7308 </dest> 7308 </dest>
7309 <voice> 7309 <voice>
7310 *: "" 7310 *: "VBR"
7311 </voice> 7311 </voice>
7312</phrase> 7312</phrase>
7313<phrase> 7313<phrase>
@@ -7321,7 +7321,7 @@
7321 *: "Frequência" 7321 *: "Frequência"
7322 </dest> 7322 </dest>
7323 <voice> 7323 <voice>
7324 *: "" 7324 *: "Frequência"
7325 </voice> 7325 </voice>
7326</phrase> 7326</phrase>
7327<phrase> 7327<phrase>
@@ -7335,7 +7335,7 @@
7335 *: "Ganho da Faixa" 7335 *: "Ganho da Faixa"
7336 </dest> 7336 </dest>
7337 <voice> 7337 <voice>
7338 *: "" 7338 *: "Ganho da Faixa"
7339 </voice> 7339 </voice>
7340</phrase> 7340</phrase>
7341<phrase> 7341<phrase>
@@ -7349,7 +7349,7 @@
7349 *: "Ganho do Álbum" 7349 *: "Ganho do Álbum"
7350 </dest> 7350 </dest>
7351 <voice> 7351 <voice>
7352 *: "" 7352 *: "Ganho do Álbum"
7353 </voice> 7353 </voice>
7354</phrase> 7354</phrase>
7355<phrase> 7355<phrase>
@@ -7363,7 +7363,7 @@
7363 *: "Caminho" 7363 *: "Caminho"
7364 </dest> 7364 </dest>
7365 <voice> 7365 <voice>
7366 *: "" 7366 *: "Caminho"
7367 </voice> 7367 </voice>
7368</phrase> 7368</phrase>
7369<phrase> 7369<phrase>
@@ -7377,7 +7377,7 @@
7377 *: "<Informação Ausente>" 7377 *: "<Informação Ausente>"
7378 </dest> 7378 </dest>
7379 <voice> 7379 <voice>
7380 *: "" 7380 *: "Informação Ausente"
7381 </voice> 7381 </voice>
7382</phrase> 7382</phrase>
7383<phrase> 7383<phrase>
@@ -10043,7 +10043,7 @@
10043 *: "Trabalho" 10043 *: "Trabalho"
10044 </dest> 10044 </dest>
10045 <voice> 10045 <voice>
10046 *: "" 10046 *: "Trabalho"
10047 </voice> 10047 </voice>
10048</phrase> 10048</phrase>
10049<phrase> 10049<phrase>
@@ -12441,7 +12441,7 @@
12441 *: "Compositor" 12441 *: "Compositor"
12442 </dest> 12442 </dest>
12443 <voice> 12443 <voice>
12444 *: "" 12444 *: "Compositor"
12445 </voice> 12445 </voice>
12446</phrase> 12446</phrase>
12447<phrase> 12447<phrase>
diff --git a/apps/lang/portugues.lang b/apps/lang/portugues.lang
index c8b4f97f32..1fdf774768 100644
--- a/apps/lang/portugues.lang
+++ b/apps/lang/portugues.lang
@@ -4486,7 +4486,7 @@
4486 *: "Título" 4486 *: "Título"
4487 </dest> 4487 </dest>
4488 <voice> 4488 <voice>
4489 *: "" 4489 *: "Título"
4490 </voice> 4490 </voice>
4491</phrase> 4491</phrase>
4492<phrase> 4492<phrase>
@@ -4500,7 +4500,7 @@
4500 *: "Artista" 4500 *: "Artista"
4501 </dest> 4501 </dest>
4502 <voice> 4502 <voice>
4503 *: "" 4503 *: "Artista"
4504 </voice> 4504 </voice>
4505</phrase> 4505</phrase>
4506<phrase> 4506<phrase>
@@ -4514,7 +4514,7 @@
4514 *: "Álbum" 4514 *: "Álbum"
4515 </dest> 4515 </dest>
4516 <voice> 4516 <voice>
4517 *: "" 4517 *: "Álbum"
4518 </voice> 4518 </voice>
4519</phrase> 4519</phrase>
4520<phrase> 4520<phrase>
@@ -4528,7 +4528,7 @@
4528 *: "Faixa Nº" 4528 *: "Faixa Nº"
4529 </dest> 4529 </dest>
4530 <voice> 4530 <voice>
4531 *: "" 4531 *: "Faixa Nº"
4532 </voice> 4532 </voice>
4533</phrase> 4533</phrase>
4534<phrase> 4534<phrase>
@@ -4542,7 +4542,7 @@
4542 *: "Género" 4542 *: "Género"
4543 </dest> 4543 </dest>
4544 <voice> 4544 <voice>
4545 *: "" 4545 *: "Género"
4546 </voice> 4546 </voice>
4547</phrase> 4547</phrase>
4548<phrase> 4548<phrase>
@@ -4570,7 +4570,7 @@
4570 *: " (VBR)" 4570 *: " (VBR)"
4571 </dest> 4571 </dest>
4572 <voice> 4572 <voice>
4573 *: "" 4573 *: "VBR"
4574 </voice> 4574 </voice>
4575</phrase> 4575</phrase>
4576<phrase> 4576<phrase>
@@ -4584,7 +4584,7 @@
4584 *: "Frequência" 4584 *: "Frequência"
4585 </dest> 4585 </dest>
4586 <voice> 4586 <voice>
4587 *: "" 4587 *: "Frequência"
4588 </voice> 4588 </voice>
4589</phrase> 4589</phrase>
4590<phrase> 4590<phrase>
@@ -4598,7 +4598,7 @@
4598 *: "Ganho de Faixa" 4598 *: "Ganho de Faixa"
4599 </dest> 4599 </dest>
4600 <voice> 4600 <voice>
4601 *: "" 4601 *: "Ganho de Faixa"
4602 </voice> 4602 </voice>
4603</phrase> 4603</phrase>
4604<phrase> 4604<phrase>
@@ -4612,7 +4612,7 @@
4612 *: "Ganho de Álbum" 4612 *: "Ganho de Álbum"
4613 </dest> 4613 </dest>
4614 <voice> 4614 <voice>
4615 *: "" 4615 *: "Ganho de Álbum"
4616 </voice> 4616 </voice>
4617</phrase> 4617</phrase>
4618<phrase> 4618<phrase>
@@ -4626,7 +4626,7 @@
4626 *: "Caminho" 4626 *: "Caminho"
4627 </dest> 4627 </dest>
4628 <voice> 4628 <voice>
4629 *: "" 4629 *: "Caminho"
4630 </voice> 4630 </voice>
4631</phrase> 4631</phrase>
4632<phrase> 4632<phrase>
@@ -4640,7 +4640,7 @@
4640 *: "<Sem Informação>" 4640 *: "<Sem Informação>"
4641 </dest> 4641 </dest>
4642 <voice> 4642 <voice>
4643 *: "" 4643 *: "Sem Informação"
4644 </voice> 4644 </voice>
4645</phrase> 4645</phrase>
4646<phrase> 4646<phrase>
@@ -8320,7 +8320,7 @@
8320 *: "Trabalho" 8320 *: "Trabalho"
8321 </dest> 8321 </dest>
8322 <voice> 8322 <voice>
8323 *: "" 8323 *: "Trabalho"
8324 </voice> 8324 </voice>
8325</phrase> 8325</phrase>
8326<phrase> 8326<phrase>
@@ -9736,7 +9736,7 @@
9736 *: "Comentário" 9736 *: "Comentário"
9737 </dest> 9737 </dest>
9738 <voice> 9738 <voice>
9739 *: "" 9739 *: "Comentário"
9740 </voice> 9740 </voice>
9741</phrase> 9741</phrase>
9742<phrase> 9742<phrase>
@@ -10173,7 +10173,7 @@
10173 *: "Taxa de Bits" 10173 *: "Taxa de Bits"
10174 </dest> 10174 </dest>
10175 <voice> 10175 <voice>
10176 *: "" 10176 *: "Taxa de Bits"
10177 </voice> 10177 </voice>
10178</phrase> 10178</phrase>
10179<phrase> 10179<phrase>
@@ -10218,7 +10218,7 @@
10218 *: "Comprimento" 10218 *: "Comprimento"
10219 </dest> 10219 </dest>
10220 <voice> 10220 <voice>
10221 *: "" 10221 *: "Comprimento"
10222 </voice> 10222 </voice>
10223</phrase> 10223</phrase>
10224<phrase> 10224<phrase>
@@ -10277,7 +10277,7 @@
10277 *: "Número do Disco" 10277 *: "Número do Disco"
10278 </dest> 10278 </dest>
10279 <voice> 10279 <voice>
10280 *: "" 10280 *: "Número do Disco"
10281 </voice> 10281 </voice>
10282</phrase> 10282</phrase>
10283<phrase> 10283<phrase>
@@ -10291,7 +10291,7 @@
10291 *: "Artista do Álbum" 10291 *: "Artista do Álbum"
10292 </dest> 10292 </dest>
10293 <voice> 10293 <voice>
10294 *: "" 10294 *: "Artista do Álbum"
10295 </voice> 10295 </voice>
10296</phrase> 10296</phrase>
10297<phrase> 10297<phrase>
@@ -10946,7 +10946,7 @@
10946 *: "Playlist" 10946 *: "Playlist"
10947 </dest> 10947 </dest>
10948 <voice> 10948 <voice>
10949 *: "" 10949 *: "Playlist"
10950 </voice> 10950 </voice>
10951</phrase> 10951</phrase>
10952<phrase> 10952<phrase>
@@ -12371,7 +12371,7 @@
12371 *: "Compositor" 12371 *: "Compositor"
12372 </dest> 12372 </dest>
12373 <voice> 12373 <voice>
12374 *: "" 12374 *: "Compositor"
12375 </voice> 12375 </voice>
12376</phrase> 12376</phrase>
12377<phrase> 12377<phrase>
diff --git a/apps/lang/romaneste.lang b/apps/lang/romaneste.lang
index fcf0f2b9ee..8fde10a4f3 100644
--- a/apps/lang/romaneste.lang
+++ b/apps/lang/romaneste.lang
@@ -1662,7 +1662,7 @@
1662 *: "Titlu" 1662 *: "Titlu"
1663 </dest> 1663 </dest>
1664 <voice> 1664 <voice>
1665 *: "" 1665 *: "Titlu"
1666 </voice> 1666 </voice>
1667</phrase> 1667</phrase>
1668<phrase> 1668<phrase>
@@ -1676,7 +1676,7 @@
1676 *: "Artist" 1676 *: "Artist"
1677 </dest> 1677 </dest>
1678 <voice> 1678 <voice>
1679 *: "" 1679 *: "Artist"
1680 </voice> 1680 </voice>
1681</phrase> 1681</phrase>
1682<phrase> 1682<phrase>
@@ -1690,7 +1690,7 @@
1690 *: "Album" 1690 *: "Album"
1691 </dest> 1691 </dest>
1692 <voice> 1692 <voice>
1693 *: "" 1693 *: "Album"
1694 </voice> 1694 </voice>
1695</phrase> 1695</phrase>
1696<phrase> 1696<phrase>
@@ -1704,7 +1704,7 @@
1704 *: "Nr. pistă" 1704 *: "Nr. pistă"
1705 </dest> 1705 </dest>
1706 <voice> 1706 <voice>
1707 *: "" 1707 *: "Nr. pistă"
1708 </voice> 1708 </voice>
1709</phrase> 1709</phrase>
1710<phrase> 1710<phrase>
@@ -1718,7 +1718,7 @@
1718 *: "Gen" 1718 *: "Gen"
1719 </dest> 1719 </dest>
1720 <voice> 1720 <voice>
1721 *: "" 1721 *: "Gen"
1722 </voice> 1722 </voice>
1723</phrase> 1723</phrase>
1724<phrase> 1724<phrase>
@@ -1732,7 +1732,7 @@
1732 *: "An" 1732 *: "An"
1733 </dest> 1733 </dest>
1734 <voice> 1734 <voice>
1735 *: "" 1735 *: "An"
1736 </voice> 1736 </voice>
1737</phrase> 1737</phrase>
1738<phrase> 1738<phrase>
@@ -1746,7 +1746,7 @@
1746 *: "Lista de redare" 1746 *: "Lista de redare"
1747 </dest> 1747 </dest>
1748 <voice> 1748 <voice>
1749 *: "" 1749 *: "Lista de redare"
1750 </voice> 1750 </voice>
1751</phrase> 1751</phrase>
1752<phrase> 1752<phrase>
@@ -1760,7 +1760,7 @@
1760 *: "Bitrate" 1760 *: "Bitrate"
1761 </dest> 1761 </dest>
1762 <voice> 1762 <voice>
1763 *: "" 1763 *: "Bitrate"
1764 </voice> 1764 </voice>
1765</phrase> 1765</phrase>
1766<phrase> 1766<phrase>
@@ -1774,7 +1774,7 @@
1774 *: "Frecvență" 1774 *: "Frecvență"
1775 </dest> 1775 </dest>
1776 <voice> 1776 <voice>
1777 *: "" 1777 *: "Frecvență"
1778 </voice> 1778 </voice>
1779</phrase> 1779</phrase>
1780<phrase> 1780<phrase>
@@ -1788,7 +1788,7 @@
1788 *: "Cale" 1788 *: "Cale"
1789 </dest> 1789 </dest>
1790 <voice> 1790 <voice>
1791 *: "" 1791 *: "Cale"
1792 </voice> 1792 </voice>
1793</phrase> 1793</phrase>
1794<phrase> 1794<phrase>
@@ -1802,7 +1802,7 @@
1802 *: "<date lipsă>" 1802 *: "<date lipsă>"
1803 </dest> 1803 </dest>
1804 <voice> 1804 <voice>
1805 *: "" 1805 *: "date lipsă"
1806 </voice> 1806 </voice>
1807</phrase> 1807</phrase>
1808<phrase> 1808<phrase>
@@ -2872,7 +2872,7 @@
2872 *: "(VBR)" 2872 *: "(VBR)"
2873 </dest> 2873 </dest>
2874 <voice> 2874 <voice>
2875 *: "" 2875 *: "VBR"
2876 </voice> 2876 </voice>
2877</phrase> 2877</phrase>
2878<phrase> 2878<phrase>
@@ -3049,7 +3049,7 @@
3049 *: "Comentariu" 3049 *: "Comentariu"
3050 </dest> 3050 </dest>
3051 <voice> 3051 <voice>
3052 *: "" 3052 *: "Comentariu"
3053 </voice> 3053 </voice>
3054</phrase> 3054</phrase>
3055<phrase> 3055<phrase>
@@ -4024,7 +4024,7 @@
4024 *: "Normalizare volum pentru album" 4024 *: "Normalizare volum pentru album"
4025 </dest> 4025 </dest>
4026 <voice> 4026 <voice>
4027 *: "" 4027 *: "Normalizare volum pentru album"
4028 </voice> 4028 </voice>
4029</phrase> 4029</phrase>
4030<phrase> 4030<phrase>
@@ -5762,7 +5762,7 @@
5762 *: "Amplificare pistă" 5762 *: "Amplificare pistă"
5763 </dest> 5763 </dest>
5764 <voice> 5764 <voice>
5765 *: "" 5765 *: "Amplificare pistă"
5766 </voice> 5766 </voice>
5767</phrase> 5767</phrase>
5768<phrase> 5768<phrase>
@@ -6722,7 +6722,7 @@
6722 *: "Lucru" 6722 *: "Lucru"
6723 </dest> 6723 </dest>
6724 <voice> 6724 <voice>
6725 *: "" 6725 *: "Lucru"
6726 </voice> 6726 </voice>
6727</phrase> 6727</phrase>
6728<phrase> 6728<phrase>
@@ -6910,7 +6910,7 @@
6910 *: "Lungime" 6910 *: "Lungime"
6911 </dest> 6911 </dest>
6912 <voice> 6912 <voice>
6913 *: "" 6913 *: "Lungime"
6914 </voice> 6914 </voice>
6915</phrase> 6915</phrase>
6916<phrase> 6916<phrase>
@@ -8227,7 +8227,7 @@
8227 *: "Nr. disc" 8227 *: "Nr. disc"
8228 </dest> 8228 </dest>
8229 <voice> 8229 <voice>
8230 *: "" 8230 *: "Nr. disc"
8231 </voice> 8231 </voice>
8232</phrase> 8232</phrase>
8233<phrase> 8233<phrase>
@@ -9371,7 +9371,7 @@
9371 *: "Artistul albumului" 9371 *: "Artistul albumului"
9372 </dest> 9372 </dest>
9373 <voice> 9373 <voice>
9374 *: "" 9374 *: "Artistul albumului"
9375 </voice> 9375 </voice>
9376</phrase> 9376</phrase>
9377<phrase> 9377<phrase>
@@ -11321,7 +11321,7 @@
11321 *: "Compozitor" 11321 *: "Compozitor"
11322 </dest> 11322 </dest>
11323 <voice> 11323 <voice>
11324 *: "" 11324 *: "Compozitor"
11325 </voice> 11325 </voice>
11326</phrase> 11326</phrase>
11327<phrase> 11327<phrase>
diff --git a/apps/lang/slovak.lang b/apps/lang/slovak.lang
index 09c7f41be6..861761a9c7 100644
--- a/apps/lang/slovak.lang
+++ b/apps/lang/slovak.lang
@@ -7141,7 +7141,7 @@
7141 *: "Názov" 7141 *: "Názov"
7142 </dest> 7142 </dest>
7143 <voice> 7143 <voice>
7144 *: "" 7144 *: "Názov"
7145 </voice> 7145 </voice>
7146</phrase> 7146</phrase>
7147<phrase> 7147<phrase>
@@ -7155,7 +7155,7 @@
7155 *: "Interprét" 7155 *: "Interprét"
7156 </dest> 7156 </dest>
7157 <voice> 7157 <voice>
7158 *: "" 7158 *: "Interprét"
7159 </voice> 7159 </voice>
7160</phrase> 7160</phrase>
7161<phrase> 7161<phrase>
@@ -7169,7 +7169,7 @@
7169 *: "Album" 7169 *: "Album"
7170 </dest> 7170 </dest>
7171 <voice> 7171 <voice>
7172 *: "" 7172 *: "Album"
7173 </voice> 7173 </voice>
7174</phrase> 7174</phrase>
7175<phrase> 7175<phrase>
@@ -7183,7 +7183,7 @@
7183 *: "Č. Stopy" 7183 *: "Č. Stopy"
7184 </dest> 7184 </dest>
7185 <voice> 7185 <voice>
7186 *: "" 7186 *: "Č. Stopy"
7187 </voice> 7187 </voice>
7188</phrase> 7188</phrase>
7189<phrase> 7189<phrase>
@@ -7197,7 +7197,7 @@
7197 *: "Žáner" 7197 *: "Žáner"
7198 </dest> 7198 </dest>
7199 <voice> 7199 <voice>
7200 *: "" 7200 *: "Žáner"
7201 </voice> 7201 </voice>
7202</phrase> 7202</phrase>
7203<phrase> 7203<phrase>
@@ -7211,7 +7211,7 @@
7211 *: "Rok" 7211 *: "Rok"
7212 </dest> 7212 </dest>
7213 <voice> 7213 <voice>
7214 *: "" 7214 *: "Rok"
7215 </voice> 7215 </voice>
7216</phrase> 7216</phrase>
7217<phrase> 7217<phrase>
@@ -7225,7 +7225,7 @@
7225 *: "Trvanie" 7225 *: "Trvanie"
7226 </dest> 7226 </dest>
7227 <voice> 7227 <voice>
7228 *: "" 7228 *: "Trvanie"
7229 </voice> 7229 </voice>
7230</phrase> 7230</phrase>
7231<phrase> 7231<phrase>
@@ -7239,7 +7239,7 @@
7239 *: "Plejlist" 7239 *: "Plejlist"
7240 </dest> 7240 </dest>
7241 <voice> 7241 <voice>
7242 *: "" 7242 *: "Plejlist"
7243 </voice> 7243 </voice>
7244</phrase> 7244</phrase>
7245<phrase> 7245<phrase>
@@ -7253,7 +7253,7 @@
7253 *: "Počet Bitov" 7253 *: "Počet Bitov"
7254 </dest> 7254 </dest>
7255 <voice> 7255 <voice>
7256 *: "" 7256 *: "Počet Bitov"
7257 </voice> 7257 </voice>
7258</phrase> 7258</phrase>
7259<phrase> 7259<phrase>
@@ -7267,7 +7267,7 @@
7267 *: "Interprét Albumu" 7267 *: "Interprét Albumu"
7268 </dest> 7268 </dest>
7269 <voice> 7269 <voice>
7270 *: "" 7270 *: "Interprét Albumu"
7271 </voice> 7271 </voice>
7272</phrase> 7272</phrase>
7273<phrase> 7273<phrase>
@@ -7281,7 +7281,7 @@
7281 *: "Č. Disku" 7281 *: "Č. Disku"
7282 </dest> 7282 </dest>
7283 <voice> 7283 <voice>
7284 *: "" 7284 *: "Č. Disku"
7285 </voice> 7285 </voice>
7286</phrase> 7286</phrase>
7287<phrase> 7287<phrase>
@@ -7295,7 +7295,7 @@
7295 *: "Komentár" 7295 *: "Komentár"
7296 </dest> 7296 </dest>
7297 <voice> 7297 <voice>
7298 *: "" 7298 *: "Komentár"
7299 </voice> 7299 </voice>
7300</phrase> 7300</phrase>
7301<phrase> 7301<phrase>
@@ -7309,7 +7309,7 @@
7309 *: " (VBR)" 7309 *: " (VBR)"
7310 </dest> 7310 </dest>
7311 <voice> 7311 <voice>
7312 *: "" 7312 *: "VBR"
7313 </voice> 7313 </voice>
7314</phrase> 7314</phrase>
7315<phrase> 7315<phrase>
@@ -7323,7 +7323,7 @@
7323 *: "Frekvencia" 7323 *: "Frekvencia"
7324 </dest> 7324 </dest>
7325 <voice> 7325 <voice>
7326 *: "" 7326 *: "Frekvencia"
7327 </voice> 7327 </voice>
7328</phrase> 7328</phrase>
7329<phrase> 7329<phrase>
@@ -7337,7 +7337,7 @@
7337 *: "Zosilnenie Stopy" 7337 *: "Zosilnenie Stopy"
7338 </dest> 7338 </dest>
7339 <voice> 7339 <voice>
7340 *: "" 7340 *: "Zosilnenie Stopy"
7341 </voice> 7341 </voice>
7342</phrase> 7342</phrase>
7343<phrase> 7343<phrase>
@@ -7351,7 +7351,7 @@
7351 *: "Zosilnenie Albumu" 7351 *: "Zosilnenie Albumu"
7352 </dest> 7352 </dest>
7353 <voice> 7353 <voice>
7354 *: "" 7354 *: "Zosilnenie Albumu"
7355 </voice> 7355 </voice>
7356</phrase> 7356</phrase>
7357<phrase> 7357<phrase>
@@ -7365,7 +7365,7 @@
7365 *: "Cesta" 7365 *: "Cesta"
7366 </dest> 7366 </dest>
7367 <voice> 7367 <voice>
7368 *: "" 7368 *: "Cesta"
7369 </voice> 7369 </voice>
7370</phrase> 7370</phrase>
7371<phrase> 7371<phrase>
@@ -7379,7 +7379,7 @@
7379 *: "<Bez Infa>" 7379 *: "<Bez Infa>"
7380 </dest> 7380 </dest>
7381 <voice> 7381 <voice>
7382 *: "" 7382 *: "Bez Infa"
7383 </voice> 7383 </voice>
7384</phrase> 7384</phrase>
7385<phrase> 7385<phrase>
@@ -10045,7 +10045,7 @@
10045 *: "Práca" 10045 *: "Práca"
10046 </dest> 10046 </dest>
10047 <voice> 10047 <voice>
10048 *: "" 10048 *: "Práca"
10049 </voice> 10049 </voice>
10050</phrase> 10050</phrase>
10051<phrase> 10051<phrase>
@@ -12443,7 +12443,7 @@
12443 *: "Autor" 12443 *: "Autor"
12444 </dest> 12444 </dest>
12445 <voice> 12445 <voice>
12446 *: "" 12446 *: "Autor"
12447 </voice> 12447 </voice>
12448</phrase> 12448</phrase>
12449<phrase> 12449<phrase>
diff --git a/apps/lang/slovenscina.lang b/apps/lang/slovenscina.lang
index 54d5104798..18639f2568 100644
--- a/apps/lang/slovenscina.lang
+++ b/apps/lang/slovenscina.lang
@@ -1790,7 +1790,7 @@
1790 *: "Naslov" 1790 *: "Naslov"
1791 </dest> 1791 </dest>
1792 <voice> 1792 <voice>
1793 *: "" 1793 *: "Naslov"
1794 </voice> 1794 </voice>
1795</phrase> 1795</phrase>
1796<phrase> 1796<phrase>
@@ -1804,7 +1804,7 @@
1804 *: "Avtor" 1804 *: "Avtor"
1805 </dest> 1805 </dest>
1806 <voice> 1806 <voice>
1807 *: "" 1807 *: "Avtor"
1808 </voice> 1808 </voice>
1809</phrase> 1809</phrase>
1810<phrase> 1810<phrase>
@@ -1818,7 +1818,7 @@
1818 *: "Album" 1818 *: "Album"
1819 </dest> 1819 </dest>
1820 <voice> 1820 <voice>
1821 *: "" 1821 *: "Album"
1822 </voice> 1822 </voice>
1823</phrase> 1823</phrase>
1824<phrase> 1824<phrase>
@@ -1832,7 +1832,7 @@
1832 *: "Stevika skladbe" 1832 *: "Stevika skladbe"
1833 </dest> 1833 </dest>
1834 <voice> 1834 <voice>
1835 *: "" 1835 *: "Stevika skladbe"
1836 </voice> 1836 </voice>
1837</phrase> 1837</phrase>
1838<phrase> 1838<phrase>
@@ -1846,7 +1846,7 @@
1846 *: "Stil" 1846 *: "Stil"
1847 </dest> 1847 </dest>
1848 <voice> 1848 <voice>
1849 *: "" 1849 *: "Stil"
1850 </voice> 1850 </voice>
1851</phrase> 1851</phrase>
1852<phrase> 1852<phrase>
@@ -1860,7 +1860,7 @@
1860 *: "Leto" 1860 *: "Leto"
1861 </dest> 1861 </dest>
1862 <voice> 1862 <voice>
1863 *: "" 1863 *: "Leto"
1864 </voice> 1864 </voice>
1865</phrase> 1865</phrase>
1866<phrase> 1866<phrase>
@@ -1874,7 +1874,7 @@
1874 *: "Seznam" 1874 *: "Seznam"
1875 </dest> 1875 </dest>
1876 <voice> 1876 <voice>
1877 *: "" 1877 *: "Seznam"
1878 </voice> 1878 </voice>
1879</phrase> 1879</phrase>
1880<phrase> 1880<phrase>
@@ -1888,7 +1888,7 @@
1888 *: "Bitrate" 1888 *: "Bitrate"
1889 </dest> 1889 </dest>
1890 <voice> 1890 <voice>
1891 *: "" 1891 *: "Bitrate"
1892 </voice> 1892 </voice>
1893</phrase> 1893</phrase>
1894<phrase> 1894<phrase>
@@ -1902,7 +1902,7 @@
1902 *: "Frekvenca" 1902 *: "Frekvenca"
1903 </dest> 1903 </dest>
1904 <voice> 1904 <voice>
1905 *: "" 1905 *: "Frekvenca"
1906 </voice> 1906 </voice>
1907</phrase> 1907</phrase>
1908<phrase> 1908<phrase>
@@ -1916,7 +1916,7 @@
1916 *: "Pot" 1916 *: "Pot"
1917 </dest> 1917 </dest>
1918 <voice> 1918 <voice>
1919 *: "" 1919 *: "Pot"
1920 </voice> 1920 </voice>
1921</phrase> 1921</phrase>
1922<phrase> 1922<phrase>
@@ -1930,7 +1930,7 @@
1930 *: "<Ni podatka>" 1930 *: "<Ni podatka>"
1931 </dest> 1931 </dest>
1932 <voice> 1932 <voice>
1933 *: "" 1933 *: "Ni podatka"
1934 </voice> 1934 </voice>
1935</phrase> 1935</phrase>
1936<phrase> 1936<phrase>
@@ -3276,7 +3276,7 @@
3276 *: " (VBR)" 3276 *: " (VBR)"
3277 </dest> 3277 </dest>
3278 <voice> 3278 <voice>
3279 *: "" 3279 *: "VBR"
3280 </voice> 3280 </voice>
3281</phrase> 3281</phrase>
3282<phrase> 3282<phrase>
@@ -3470,7 +3470,7 @@
3470 *: "Comment" 3470 *: "Comment"
3471 </dest> 3471 </dest>
3472 <voice> 3472 <voice>
3473 *: "" 3473 *: "Comment"
3474 </voice> 3474 </voice>
3475</phrase> 3475</phrase>
3476<phrase> 3476<phrase>
@@ -4528,7 +4528,7 @@
4528 *: "Album Gain" 4528 *: "Album Gain"
4529 </dest> 4529 </dest>
4530 <voice> 4530 <voice>
4531 *: "" 4531 *: "Album Gain"
4532 </voice> 4532 </voice>
4533</phrase> 4533</phrase>
4534<phrase> 4534<phrase>
@@ -6580,7 +6580,7 @@
6580 *: "Track Gain" 6580 *: "Track Gain"
6581 </dest> 6581 </dest>
6582 <voice> 6582 <voice>
6583 *: "" 6583 *: "Track Gain"
6584 </voice> 6584 </voice>
6585</phrase> 6585</phrase>
6586<phrase> 6586<phrase>
@@ -7648,7 +7648,7 @@
7648 *: "Work" 7648 *: "Work"
7649 </dest> 7649 </dest>
7650 <voice> 7650 <voice>
7651 *: "" 7651 *: "Work"
7652 </voice> 7652 </voice>
7653</phrase> 7653</phrase>
7654<phrase> 7654<phrase>
@@ -7842,7 +7842,7 @@
7842 *: "Length" 7842 *: "Length"
7843 </dest> 7843 </dest>
7844 <voice> 7844 <voice>
7845 *: "" 7845 *: "Length"
7846 </voice> 7846 </voice>
7847</phrase> 7847</phrase>
7848<phrase> 7848<phrase>
@@ -9386,7 +9386,7 @@
9386 *: "Discnum" 9386 *: "Discnum"
9387 </dest> 9387 </dest>
9388 <voice> 9388 <voice>
9389 *: "" 9389 *: "Discnum"
9390 </voice> 9390 </voice>
9391</phrase> 9391</phrase>
9392<phrase> 9392<phrase>
@@ -10736,7 +10736,7 @@
10736 *: "Album Artist" 10736 *: "Album Artist"
10737 </dest> 10737 </dest>
10738 <voice> 10738 <voice>
10739 *: "" 10739 *: "Album Artist"
10740 </voice> 10740 </voice>
10741</phrase> 10741</phrase>
10742<phrase> 10742<phrase>
@@ -12651,7 +12651,7 @@
12651 *: "Sestavljalnik" 12651 *: "Sestavljalnik"
12652 </dest> 12652 </dest>
12653 <voice> 12653 <voice>
12654 *: "" 12654 *: "Sestavljalnik"
12655 </voice> 12655 </voice>
12656</phrase> 12656</phrase>
12657<phrase> 12657<phrase>
diff --git a/apps/lang/srpski.lang b/apps/lang/srpski.lang
index 11b6e5a65b..3f98ae1d14 100644
--- a/apps/lang/srpski.lang
+++ b/apps/lang/srpski.lang
@@ -7124,7 +7124,7 @@
7124 *: "Наслов" 7124 *: "Наслов"
7125 </dest> 7125 </dest>
7126 <voice> 7126 <voice>
7127 *: "" 7127 *: "Наслов"
7128 </voice> 7128 </voice>
7129</phrase> 7129</phrase>
7130<phrase> 7130<phrase>
@@ -7138,7 +7138,7 @@
7138 *: "Уметник" 7138 *: "Уметник"
7139 </dest> 7139 </dest>
7140 <voice> 7140 <voice>
7141 *: "" 7141 *: "Уметник"
7142 </voice> 7142 </voice>
7143</phrase> 7143</phrase>
7144<phrase> 7144<phrase>
@@ -7152,7 +7152,7 @@
7152 *: "Албум" 7152 *: "Албум"
7153 </dest> 7153 </dest>
7154 <voice> 7154 <voice>
7155 *: "" 7155 *: "Албум"
7156 </voice> 7156 </voice>
7157</phrase> 7157</phrase>
7158<phrase> 7158<phrase>
@@ -7166,7 +7166,7 @@
7166 *: "Бр.нумере" 7166 *: "Бр.нумере"
7167 </dest> 7167 </dest>
7168 <voice> 7168 <voice>
7169 *: "" 7169 *: "Бр.нумере"
7170 </voice> 7170 </voice>
7171</phrase> 7171</phrase>
7172<phrase> 7172<phrase>
@@ -7180,7 +7180,7 @@
7180 *: "Жанр" 7180 *: "Жанр"
7181 </dest> 7181 </dest>
7182 <voice> 7182 <voice>
7183 *: "" 7183 *: "Жанр"
7184 </voice> 7184 </voice>
7185</phrase> 7185</phrase>
7186<phrase> 7186<phrase>
@@ -7194,7 +7194,7 @@
7194 *: "Година" 7194 *: "Година"
7195 </dest> 7195 </dest>
7196 <voice> 7196 <voice>
7197 *: "" 7197 *: "Година"
7198 </voice> 7198 </voice>
7199</phrase> 7199</phrase>
7200<phrase> 7200<phrase>
@@ -7208,7 +7208,7 @@
7208 *: "Дужина" 7208 *: "Дужина"
7209 </dest> 7209 </dest>
7210 <voice> 7210 <voice>
7211 *: "" 7211 *: "Дужина"
7212 </voice> 7212 </voice>
7213</phrase> 7213</phrase>
7214<phrase> 7214<phrase>
@@ -7222,7 +7222,7 @@
7222 *: "Плејлиста" 7222 *: "Плејлиста"
7223 </dest> 7223 </dest>
7224 <voice> 7224 <voice>
7225 *: "" 7225 *: "Плејлиста"
7226 </voice> 7226 </voice>
7227</phrase> 7227</phrase>
7228<phrase> 7228<phrase>
@@ -7236,7 +7236,7 @@
7236 *: "Битски проток" 7236 *: "Битски проток"
7237 </dest> 7237 </dest>
7238 <voice> 7238 <voice>
7239 *: "" 7239 *: "Битски проток"
7240 </voice> 7240 </voice>
7241</phrase> 7241</phrase>
7242<phrase> 7242<phrase>
@@ -7250,7 +7250,7 @@
7250 *: "Уметник Албума" 7250 *: "Уметник Албума"
7251 </dest> 7251 </dest>
7252 <voice> 7252 <voice>
7253 *: "" 7253 *: "Уметник Албума"
7254 </voice> 7254 </voice>
7255</phrase> 7255</phrase>
7256<phrase> 7256<phrase>
@@ -7264,7 +7264,7 @@
7264 *: "Бр.диска" 7264 *: "Бр.диска"
7265 </dest> 7265 </dest>
7266 <voice> 7266 <voice>
7267 *: "" 7267 *: "Бр.диска"
7268 </voice> 7268 </voice>
7269</phrase> 7269</phrase>
7270<phrase> 7270<phrase>
@@ -7278,7 +7278,7 @@
7278 *: "Коментар" 7278 *: "Коментар"
7279 </dest> 7279 </dest>
7280 <voice> 7280 <voice>
7281 *: "" 7281 *: "Коментар"
7282 </voice> 7282 </voice>
7283</phrase> 7283</phrase>
7284<phrase> 7284<phrase>
@@ -7292,7 +7292,7 @@
7292 *: " (VBR)" 7292 *: " (VBR)"
7293 </dest> 7293 </dest>
7294 <voice> 7294 <voice>
7295 *: "" 7295 *: "VBR"
7296 </voice> 7296 </voice>
7297</phrase> 7297</phrase>
7298<phrase> 7298<phrase>
@@ -7306,7 +7306,7 @@
7306 *: "Фреквенција" 7306 *: "Фреквенција"
7307 </dest> 7307 </dest>
7308 <voice> 7308 <voice>
7309 *: "" 7309 *: "Фреквенција"
7310 </voice> 7310 </voice>
7311</phrase> 7311</phrase>
7312<phrase> 7312<phrase>
@@ -7320,7 +7320,7 @@
7320 *: "Track појачање" 7320 *: "Track појачање"
7321 </dest> 7321 </dest>
7322 <voice> 7322 <voice>
7323 *: "" 7323 *: "Track појачање"
7324 </voice> 7324 </voice>
7325</phrase> 7325</phrase>
7326<phrase> 7326<phrase>
@@ -7334,7 +7334,7 @@
7334 *: "Album појачање" 7334 *: "Album појачање"
7335 </dest> 7335 </dest>
7336 <voice> 7336 <voice>
7337 *: "" 7337 *: "Album појачање"
7338 </voice> 7338 </voice>
7339</phrase> 7339</phrase>
7340<phrase> 7340<phrase>
@@ -7348,7 +7348,7 @@
7348 *: "Путања" 7348 *: "Путања"
7349 </dest> 7349 </dest>
7350 <voice> 7350 <voice>
7351 *: "" 7351 *: "Путања"
7352 </voice> 7352 </voice>
7353</phrase> 7353</phrase>
7354<phrase> 7354<phrase>
@@ -7362,7 +7362,7 @@
7362 *: "<Нема инфо>" 7362 *: "<Нема инфо>"
7363 </dest> 7363 </dest>
7364 <voice> 7364 <voice>
7365 *: "" 7365 *: "Нема инфо"
7366 </voice> 7366 </voice>
7367</phrase> 7367</phrase>
7368<phrase> 7368<phrase>
@@ -10028,7 +10028,7 @@
10028 *: "Дело" 10028 *: "Дело"
10029 </dest> 10029 </dest>
10030 <voice> 10030 <voice>
10031 *: "" 10031 *: "Дело"
10032 </voice> 10032 </voice>
10033</phrase> 10033</phrase>
10034<phrase> 10034<phrase>
@@ -12358,7 +12358,7 @@
12358 *: "Композитор" 12358 *: "Композитор"
12359 </dest> 12359 </dest>
12360 <voice> 12360 <voice>
12361 *: "" 12361 *: "Композитор"
12362 </voice> 12362 </voice>
12363</phrase> 12363</phrase>
12364<phrase> 12364<phrase>
diff --git a/apps/lang/svenska.lang b/apps/lang/svenska.lang
index 93cc69f378..e563e938e9 100644
--- a/apps/lang/svenska.lang
+++ b/apps/lang/svenska.lang
@@ -7146,7 +7146,7 @@
7146 *: "Titel" 7146 *: "Titel"
7147 </dest> 7147 </dest>
7148 <voice> 7148 <voice>
7149 *: "" 7149 *: "Titel"
7150 </voice> 7150 </voice>
7151</phrase> 7151</phrase>
7152<phrase> 7152<phrase>
@@ -7160,7 +7160,7 @@
7160 *: "Artist" 7160 *: "Artist"
7161 </dest> 7161 </dest>
7162 <voice> 7162 <voice>
7163 *: "" 7163 *: "Artist"
7164 </voice> 7164 </voice>
7165</phrase> 7165</phrase>
7166<phrase> 7166<phrase>
@@ -7174,7 +7174,7 @@
7174 *: "Album" 7174 *: "Album"
7175 </dest> 7175 </dest>
7176 <voice> 7176 <voice>
7177 *: "" 7177 *: "Album"
7178 </voice> 7178 </voice>
7179</phrase> 7179</phrase>
7180<phrase> 7180<phrase>
@@ -7188,7 +7188,7 @@
7188 *: "Spårnummer" 7188 *: "Spårnummer"
7189 </dest> 7189 </dest>
7190 <voice> 7190 <voice>
7191 *: "" 7191 *: "Spårnummer"
7192 </voice> 7192 </voice>
7193</phrase> 7193</phrase>
7194<phrase> 7194<phrase>
@@ -7202,7 +7202,7 @@
7202 *: "Genre" 7202 *: "Genre"
7203 </dest> 7203 </dest>
7204 <voice> 7204 <voice>
7205 *: "" 7205 *: "Genre"
7206 </voice> 7206 </voice>
7207</phrase> 7207</phrase>
7208<phrase> 7208<phrase>
@@ -7216,7 +7216,7 @@
7216 *: "År" 7216 *: "År"
7217 </dest> 7217 </dest>
7218 <voice> 7218 <voice>
7219 *: "" 7219 *: "År"
7220 </voice> 7220 </voice>
7221</phrase> 7221</phrase>
7222<phrase> 7222<phrase>
@@ -7230,7 +7230,7 @@
7230 *: "Längd" 7230 *: "Längd"
7231 </dest> 7231 </dest>
7232 <voice> 7232 <voice>
7233 *: "" 7233 *: "Längd"
7234 </voice> 7234 </voice>
7235</phrase> 7235</phrase>
7236<phrase> 7236<phrase>
@@ -7244,7 +7244,7 @@
7244 *: "Spellista" 7244 *: "Spellista"
7245 </dest> 7245 </dest>
7246 <voice> 7246 <voice>
7247 *: "" 7247 *: "Spellista"
7248 </voice> 7248 </voice>
7249</phrase> 7249</phrase>
7250<phrase> 7250<phrase>
@@ -7258,7 +7258,7 @@
7258 *: "Datahastighet" 7258 *: "Datahastighet"
7259 </dest> 7259 </dest>
7260 <voice> 7260 <voice>
7261 *: "" 7261 *: "Datahastighet"
7262 </voice> 7262 </voice>
7263</phrase> 7263</phrase>
7264<phrase> 7264<phrase>
@@ -7272,7 +7272,7 @@
7272 *: "Albumartist" 7272 *: "Albumartist"
7273 </dest> 7273 </dest>
7274 <voice> 7274 <voice>
7275 *: "" 7275 *: "Albumartist"
7276 </voice> 7276 </voice>
7277</phrase> 7277</phrase>
7278<phrase> 7278<phrase>
@@ -7286,7 +7286,7 @@
7286 *: "Skivnummer" 7286 *: "Skivnummer"
7287 </dest> 7287 </dest>
7288 <voice> 7288 <voice>
7289 *: "" 7289 *: "Skivnummer"
7290 </voice> 7290 </voice>
7291</phrase> 7291</phrase>
7292<phrase> 7292<phrase>
@@ -7300,7 +7300,7 @@
7300 *: "Kommentar" 7300 *: "Kommentar"
7301 </dest> 7301 </dest>
7302 <voice> 7302 <voice>
7303 *: "" 7303 *: "Kommentar"
7304 </voice> 7304 </voice>
7305</phrase> 7305</phrase>
7306<phrase> 7306<phrase>
@@ -7314,7 +7314,7 @@
7314 *: " (VBR)" 7314 *: " (VBR)"
7315 </dest> 7315 </dest>
7316 <voice> 7316 <voice>
7317 *: "" 7317 *: "VBR"
7318 </voice> 7318 </voice>
7319</phrase> 7319</phrase>
7320<phrase> 7320<phrase>
@@ -7328,7 +7328,7 @@
7328 *: "Frekvens" 7328 *: "Frekvens"
7329 </dest> 7329 </dest>
7330 <voice> 7330 <voice>
7331 *: "" 7331 *: "Frekvens"
7332 </voice> 7332 </voice>
7333</phrase> 7333</phrase>
7334<phrase> 7334<phrase>
@@ -7342,7 +7342,7 @@
7342 *: "Spårvolymutjämning" 7342 *: "Spårvolymutjämning"
7343 </dest> 7343 </dest>
7344 <voice> 7344 <voice>
7345 *: "" 7345 *: "Spårvolymutjämning"
7346 </voice> 7346 </voice>
7347</phrase> 7347</phrase>
7348<phrase> 7348<phrase>
@@ -7356,7 +7356,7 @@
7356 *: "Albumvolymutjämning" 7356 *: "Albumvolymutjämning"
7357 </dest> 7357 </dest>
7358 <voice> 7358 <voice>
7359 *: "" 7359 *: "Albumvolymutjämning"
7360 </voice> 7360 </voice>
7361</phrase> 7361</phrase>
7362<phrase> 7362<phrase>
@@ -7370,7 +7370,7 @@
7370 *: "Sökväg" 7370 *: "Sökväg"
7371 </dest> 7371 </dest>
7372 <voice> 7372 <voice>
7373 *: "" 7373 *: "Sökväg"
7374 </voice> 7374 </voice>
7375</phrase> 7375</phrase>
7376<phrase> 7376<phrase>
@@ -7384,7 +7384,7 @@
7384 *: "<Saknas>" 7384 *: "<Saknas>"
7385 </dest> 7385 </dest>
7386 <voice> 7386 <voice>
7387 *: "" 7387 *: "Saknas"
7388 </voice> 7388 </voice>
7389</phrase> 7389</phrase>
7390<phrase> 7390<phrase>
@@ -10049,7 +10049,7 @@
10049 *: "Verk" 10049 *: "Verk"
10050 </dest> 10050 </dest>
10051 <voice> 10051 <voice>
10052 *: "" 10052 *: "Verk"
10053 </voice> 10053 </voice>
10054</phrase> 10054</phrase>
10055<phrase> 10055<phrase>
@@ -12447,7 +12447,7 @@
12447 *: "Kompositör" 12447 *: "Kompositör"
12448 </dest> 12448 </dest>
12449 <voice> 12449 <voice>
12450 *: "" 12450 *: "Kompositör"
12451 </voice> 12451 </voice>
12452</phrase> 12452</phrase>
12453<phrase> 12453<phrase>
diff --git a/apps/lang/tagalog.lang b/apps/lang/tagalog.lang
index efe9cacd48..63cc716e39 100644
--- a/apps/lang/tagalog.lang
+++ b/apps/lang/tagalog.lang
@@ -6368,7 +6368,7 @@
6368 *: " (VBR)" 6368 *: " (VBR)"
6369 </dest> 6369 </dest>
6370 <voice> 6370 <voice>
6371 *: "" 6371 *: "VBR"
6372 </voice> 6372 </voice>
6373</phrase> 6373</phrase>
6374<phrase> 6374<phrase>
@@ -6466,7 +6466,7 @@
6466 *: "Pansin" 6466 *: "Pansin"
6467 </dest> 6467 </dest>
6468 <voice> 6468 <voice>
6469 *: "" 6469 *: "Pansin"
6470 </voice> 6470 </voice>
6471</phrase> 6471</phrase>
6472<phrase> 6472<phrase>
@@ -6618,7 +6618,7 @@
6618 *: "Playlist" 6618 *: "Playlist"
6619 </dest> 6619 </dest>
6620 <voice> 6620 <voice>
6621 *: "" 6621 *: "Playlist"
6622 </voice> 6622 </voice>
6623</phrase> 6623</phrase>
6624<phrase> 6624<phrase>
@@ -6719,7 +6719,7 @@
6719 *: "<Wala Inpormasyon>" 6719 *: "<Wala Inpormasyon>"
6720 </dest> 6720 </dest>
6721 <voice> 6721 <voice>
6722 *: "" 6722 *: "Wala Inpormasyon"
6723 </voice> 6723 </voice>
6724</phrase> 6724</phrase>
6725<phrase> 6725<phrase>
@@ -6879,7 +6879,7 @@
6879 *: "Typo" 6879 *: "Typo"
6880 </dest> 6880 </dest>
6881 <voice> 6881 <voice>
6882 *: "" 6882 *: "Typo"
6883 </voice> 6883 </voice>
6884</phrase> 6884</phrase>
6885<phrase> 6885<phrase>
@@ -6997,7 +6997,7 @@
6997 *: "Album tubo" 6997 *: "Album tubo"
6998 </dest> 6998 </dest>
6999 <voice> 6999 <voice>
7000 *: "" 7000 *: "Album tubo"
7001 </voice> 7001 </voice>
7002</phrase> 7002</phrase>
7003<phrase> 7003<phrase>
@@ -7011,7 +7011,7 @@
7011 *: "Artista" 7011 *: "Artista"
7012 </dest> 7012 </dest>
7013 <voice> 7013 <voice>
7014 *: "" 7014 *: "Artista"
7015 </voice> 7015 </voice>
7016</phrase> 7016</phrase>
7017<phrase> 7017<phrase>
@@ -7137,7 +7137,7 @@
7137 *: "Dalas" 7137 *: "Dalas"
7138 </dest> 7138 </dest>
7139 <voice> 7139 <voice>
7140 *: "" 7140 *: "Dalas"
7141 </voice> 7141 </voice>
7142</phrase> 7142</phrase>
7143<phrase> 7143<phrase>
@@ -7359,7 +7359,7 @@
7359 *: "Pamagat" 7359 *: "Pamagat"
7360 </dest> 7360 </dest>
7361 <voice> 7361 <voice>
7362 *: "" 7362 *: "Pamagat"
7363 </voice> 7363 </voice>
7364</phrase> 7364</phrase>
7365<phrase> 7365<phrase>
@@ -7516,7 +7516,7 @@
7516 *: "Taon" 7516 *: "Taon"
7517 </dest> 7517 </dest>
7518 <voice> 7518 <voice>
7519 *: "" 7519 *: "Taon"
7520 </voice> 7520 </voice>
7521</phrase> 7521</phrase>
7522<phrase> 7522<phrase>
@@ -7953,7 +7953,7 @@
7953 *: "Landas Tubo" 7953 *: "Landas Tubo"
7954 </dest> 7954 </dest>
7955 <voice> 7955 <voice>
7956 *: "" 7956 *: "Landas Tubo"
7957 </voice> 7957 </voice>
7958</phrase> 7958</phrase>
7959<phrase> 7959<phrase>
@@ -8206,7 +8206,7 @@
8206 *: "Bitrate" 8206 *: "Bitrate"
8207 </dest> 8207 </dest>
8208 <voice> 8208 <voice>
8209 *: "" 8209 *: "Bitrate"
8210 </voice> 8210 </voice>
8211</phrase> 8211</phrase>
8212<phrase> 8212<phrase>
@@ -8406,7 +8406,7 @@
8406 *: "Landas" 8406 *: "Landas"
8407 </dest> 8407 </dest>
8408 <voice> 8408 <voice>
8409 *: "" 8409 *: "Landas"
8410 </voice> 8410 </voice>
8411</phrase> 8411</phrase>
8412<phrase> 8412<phrase>
@@ -8532,7 +8532,7 @@
8532 *: "Trabaho" 8532 *: "Trabaho"
8533 </dest> 8533 </dest>
8534 <voice> 8534 <voice>
8535 *: "" 8535 *: "Trabaho"
8536 </voice> 8536 </voice>
8537</phrase> 8537</phrase>
8538<phrase> 8538<phrase>
@@ -8602,7 +8602,7 @@
8602 *: "Album" 8602 *: "Album"
8603 </dest> 8603 </dest>
8604 <voice> 8604 <voice>
8605 *: "" 8605 *: "Album"
8606 </voice> 8606 </voice>
8607</phrase> 8607</phrase>
8608<phrase> 8608<phrase>
@@ -8644,7 +8644,7 @@
8644 *: "Haba" 8644 *: "Haba"
8645 </dest> 8645 </dest>
8646 <voice> 8646 <voice>
8647 *: "" 8647 *: "Haba"
8648 </voice> 8648 </voice>
8649</phrase> 8649</phrase>
8650<phrase> 8650<phrase>
@@ -9273,7 +9273,7 @@
9273 *: "Discnum" 9273 *: "Discnum"
9274 </dest> 9274 </dest>
9275 <voice> 9275 <voice>
9276 *: "" 9276 *: "Discnum"
9277 </voice> 9277 </voice>
9278</phrase> 9278</phrase>
9279<phrase> 9279<phrase>
@@ -9391,7 +9391,7 @@
9391 *: "Tracknum" 9391 *: "Tracknum"
9392 </dest> 9392 </dest>
9393 <voice> 9393 <voice>
9394 *: "" 9394 *: "Tracknum"
9395 </voice> 9395 </voice>
9396</phrase> 9396</phrase>
9397<phrase> 9397<phrase>
@@ -9759,7 +9759,7 @@
9759 *: "Album Artista" 9759 *: "Album Artista"
9760 </dest> 9760 </dest>
9761 <voice> 9761 <voice>
9762 *: "" 9762 *: "Album Artista"
9763 </voice> 9763 </voice>
9764</phrase> 9764</phrase>
9765<phrase> 9765<phrase>
@@ -12165,7 +12165,7 @@
12165 *: "Kompositor" 12165 *: "Kompositor"
12166 </dest> 12166 </dest>
12167 <voice> 12167 <voice>
12168 *: "" 12168 *: "Kompositor"
12169 </voice> 12169 </voice>
12170</phrase> 12170</phrase>
12171<phrase> 12171<phrase>
diff --git a/apps/lang/thai.lang b/apps/lang/thai.lang
index b3b17bf484..284a1ba17a 100644
--- a/apps/lang/thai.lang
+++ b/apps/lang/thai.lang
@@ -7104,7 +7104,7 @@
7104 *: "ชื่อ" 7104 *: "ชื่อ"
7105 </dest> 7105 </dest>
7106 <voice> 7106 <voice>
7107 *: "" 7107 *: "ชื่อ"
7108 </voice> 7108 </voice>
7109</phrase> 7109</phrase>
7110<phrase> 7110<phrase>
@@ -7118,7 +7118,7 @@
7118 *: "นักร้อง" 7118 *: "นักร้อง"
7119 </dest> 7119 </dest>
7120 <voice> 7120 <voice>
7121 *: "" 7121 *: "นักร้อง"
7122 </voice> 7122 </voice>
7123</phrase> 7123</phrase>
7124<phrase> 7124<phrase>
@@ -7132,7 +7132,7 @@
7132 *: "อัลบัม" 7132 *: "อัลบัม"
7133 </dest> 7133 </dest>
7134 <voice> 7134 <voice>
7135 *: "" 7135 *: "อัลบัม"
7136 </voice> 7136 </voice>
7137</phrase> 7137</phrase>
7138<phrase> 7138<phrase>
@@ -7146,7 +7146,7 @@
7146 *: "เพลงที่" 7146 *: "เพลงที่"
7147 </dest> 7147 </dest>
7148 <voice> 7148 <voice>
7149 *: "" 7149 *: "เพลงที่"
7150 </voice> 7150 </voice>
7151</phrase> 7151</phrase>
7152<phrase> 7152<phrase>
@@ -7160,7 +7160,7 @@
7160 *: "ประเภท" 7160 *: "ประเภท"
7161 </dest> 7161 </dest>
7162 <voice> 7162 <voice>
7163 *: "" 7163 *: "ประเภท"
7164 </voice> 7164 </voice>
7165</phrase> 7165</phrase>
7166<phrase> 7166<phrase>
@@ -7174,7 +7174,7 @@
7174 *: "ปี" 7174 *: "ปี"
7175 </dest> 7175 </dest>
7176 <voice> 7176 <voice>
7177 *: "" 7177 *: "ปี"
7178 </voice> 7178 </voice>
7179</phrase> 7179</phrase>
7180<phrase> 7180<phrase>
@@ -7188,7 +7188,7 @@
7188 *: "ความยาว" 7188 *: "ความยาว"
7189 </dest> 7189 </dest>
7190 <voice> 7190 <voice>
7191 *: "" 7191 *: "ความยาว"
7192 </voice> 7192 </voice>
7193</phrase> 7193</phrase>
7194<phrase> 7194<phrase>
@@ -7202,7 +7202,7 @@
7202 *: "รายการเพลง" 7202 *: "รายการเพลง"
7203 </dest> 7203 </dest>
7204 <voice> 7204 <voice>
7205 *: "" 7205 *: "รายการเพลง"
7206 </voice> 7206 </voice>
7207</phrase> 7207</phrase>
7208<phrase> 7208<phrase>
@@ -7216,7 +7216,7 @@
7216 *: "Bitrate" 7216 *: "Bitrate"
7217 </dest> 7217 </dest>
7218 <voice> 7218 <voice>
7219 *: "" 7219 *: "Bitrate"
7220 </voice> 7220 </voice>
7221</phrase> 7221</phrase>
7222<phrase> 7222<phrase>
@@ -7230,7 +7230,7 @@
7230 *: "ศิลปิน" 7230 *: "ศิลปิน"
7231 </dest> 7231 </dest>
7232 <voice> 7232 <voice>
7233 *: "" 7233 *: "ศิลปิน"
7234 </voice> 7234 </voice>
7235</phrase> 7235</phrase>
7236<phrase> 7236<phrase>
@@ -7244,7 +7244,7 @@
7244 *: "แผ่นที่" 7244 *: "แผ่นที่"
7245 </dest> 7245 </dest>
7246 <voice> 7246 <voice>
7247 *: "" 7247 *: "แผ่นที่"
7248 </voice> 7248 </voice>
7249</phrase> 7249</phrase>
7250<phrase> 7250<phrase>
@@ -7258,7 +7258,7 @@
7258 *: "หมายเหตุ" 7258 *: "หมายเหตุ"
7259 </dest> 7259 </dest>
7260 <voice> 7260 <voice>
7261 *: "" 7261 *: "หมายเหตุ"
7262 </voice> 7262 </voice>
7263</phrase> 7263</phrase>
7264<phrase> 7264<phrase>
@@ -7272,7 +7272,7 @@
7272 *: " (VBR)" 7272 *: " (VBR)"
7273 </dest> 7273 </dest>
7274 <voice> 7274 <voice>
7275 *: "" 7275 *: "VBR"
7276 </voice> 7276 </voice>
7277</phrase> 7277</phrase>
7278<phrase> 7278<phrase>
@@ -7286,7 +7286,7 @@
7286 *: "ความถี่" 7286 *: "ความถี่"
7287 </dest> 7287 </dest>
7288 <voice> 7288 <voice>
7289 *: "" 7289 *: "ความถี่"
7290 </voice> 7290 </voice>
7291</phrase> 7291</phrase>
7292<phrase> 7292<phrase>
@@ -7300,7 +7300,7 @@
7300 *: "อัตราขยายของเพลง" 7300 *: "อัตราขยายของเพลง"
7301 </dest> 7301 </dest>
7302 <voice> 7302 <voice>
7303 *: "" 7303 *: "อัตราขยายของเพลง"
7304 </voice> 7304 </voice>
7305</phrase> 7305</phrase>
7306<phrase> 7306<phrase>
@@ -7314,7 +7314,7 @@
7314 *: "อัตราขยายของอัลบัม" 7314 *: "อัตราขยายของอัลบัม"
7315 </dest> 7315 </dest>
7316 <voice> 7316 <voice>
7317 *: "" 7317 *: "อัตราขยายของอัลบัม"
7318 </voice> 7318 </voice>
7319</phrase> 7319</phrase>
7320<phrase> 7320<phrase>
@@ -7328,7 +7328,7 @@
7328 *: "ที่เก็บ" 7328 *: "ที่เก็บ"
7329 </dest> 7329 </dest>
7330 <voice> 7330 <voice>
7331 *: "" 7331 *: "ที่เก็บ"
7332 </voice> 7332 </voice>
7333</phrase> 7333</phrase>
7334<phrase> 7334<phrase>
@@ -7342,7 +7342,7 @@
7342 *: "<ไม่มีข้อมูล>" 7342 *: "<ไม่มีข้อมูล>"
7343 </dest> 7343 </dest>
7344 <voice> 7344 <voice>
7345 *: "" 7345 *: "ไม่มีข้อมูล"
7346 </voice> 7346 </voice>
7347</phrase> 7347</phrase>
7348<phrase> 7348<phrase>
@@ -10009,7 +10009,7 @@
10009 *: "งาน" 10009 *: "งาน"
10010 </dest> 10010 </dest>
10011 <voice> 10011 <voice>
10012 *: "" 10012 *: "งาน"
10013 </voice> 10013 </voice>
10014</phrase> 10014</phrase>
10015<phrase> 10015<phrase>
@@ -12370,7 +12370,7 @@
12370 *: "ผู้แต่ง" 12370 *: "ผู้แต่ง"
12371 </dest> 12371 </dest>
12372 <voice> 12372 <voice>
12373 *: "" 12373 *: "ผู้แต่ง"
12374 </voice> 12374 </voice>
12375</phrase> 12375</phrase>
12376<phrase> 12376<phrase>
diff --git a/apps/lang/turkce.lang b/apps/lang/turkce.lang
index 0eb368cdde..72adeff236 100644
--- a/apps/lang/turkce.lang
+++ b/apps/lang/turkce.lang
@@ -2493,7 +2493,7 @@
2493 *: "Adi" 2493 *: "Adi"
2494 </dest> 2494 </dest>
2495 <voice> 2495 <voice>
2496 *: "" 2496 *: "Adi"
2497 </voice> 2497 </voice>
2498</phrase> 2498</phrase>
2499<phrase> 2499<phrase>
@@ -2507,7 +2507,7 @@
2507 *: "Sanatci" 2507 *: "Sanatci"
2508 </dest> 2508 </dest>
2509 <voice> 2509 <voice>
2510 *: "" 2510 *: "Sanatci"
2511 </voice> 2511 </voice>
2512</phrase> 2512</phrase>
2513<phrase> 2513<phrase>
@@ -2521,7 +2521,7 @@
2521 *: "Sarki no" 2521 *: "Sarki no"
2522 </dest> 2522 </dest>
2523 <voice> 2523 <voice>
2524 *: "" 2524 *: "Sarki no"
2525 </voice> 2525 </voice>
2526</phrase> 2526</phrase>
2527<phrase> 2527<phrase>
@@ -2535,7 +2535,7 @@
2535 *: "Sarki Listesi" 2535 *: "Sarki Listesi"
2536 </dest> 2536 </dest>
2537 <voice> 2537 <voice>
2538 *: "" 2538 *: "Sarki Listesi"
2539 </voice> 2539 </voice>
2540</phrase> 2540</phrase>
2541<phrase> 2541<phrase>
@@ -2549,7 +2549,7 @@
2549 *: "Frekans" 2549 *: "Frekans"
2550 </dest> 2550 </dest>
2551 <voice> 2551 <voice>
2552 *: "" 2552 *: "Frekans"
2553 </voice> 2553 </voice>
2554</phrase> 2554</phrase>
2555<phrase> 2555<phrase>
@@ -2563,7 +2563,7 @@
2563 *: "YOL" 2563 *: "YOL"
2564 </dest> 2564 </dest>
2565 <voice> 2565 <voice>
2566 *: "" 2566 *: "YOL"
2567 </voice> 2567 </voice>
2568</phrase> 2568</phrase>
2569<phrase> 2569<phrase>
@@ -3057,7 +3057,7 @@
3057 *: "Çalış" 3057 *: "Çalış"
3058 </dest> 3058 </dest>
3059 <voice> 3059 <voice>
3060 *: "" 3060 *: "Çalış"
3061 </voice> 3061 </voice>
3062</phrase> 3062</phrase>
3063<phrase> 3063<phrase>
diff --git a/apps/lang/ukrainian.lang b/apps/lang/ukrainian.lang
index 306abec29d..b8a478e00c 100644
--- a/apps/lang/ukrainian.lang
+++ b/apps/lang/ukrainian.lang
@@ -7136,7 +7136,7 @@
7136 *: "Назва" 7136 *: "Назва"
7137 </dest> 7137 </dest>
7138 <voice> 7138 <voice>
7139 *: "" 7139 *: "Назва"
7140 </voice> 7140 </voice>
7141</phrase> 7141</phrase>
7142<phrase> 7142<phrase>
@@ -7150,7 +7150,7 @@
7150 *: "Виконавець" 7150 *: "Виконавець"
7151 </dest> 7151 </dest>
7152 <voice> 7152 <voice>
7153 *: "" 7153 *: "Виконавець"
7154 </voice> 7154 </voice>
7155</phrase> 7155</phrase>
7156<phrase> 7156<phrase>
@@ -7164,7 +7164,7 @@
7164 *: "Альбом" 7164 *: "Альбом"
7165 </dest> 7165 </dest>
7166 <voice> 7166 <voice>
7167 *: "" 7167 *: "Альбом"
7168 </voice> 7168 </voice>
7169</phrase> 7169</phrase>
7170<phrase> 7170<phrase>
@@ -7178,7 +7178,7 @@
7178 *: "Номер треку" 7178 *: "Номер треку"
7179 </dest> 7179 </dest>
7180 <voice> 7180 <voice>
7181 *: "" 7181 *: "Номер треку"
7182 </voice> 7182 </voice>
7183</phrase> 7183</phrase>
7184<phrase> 7184<phrase>
@@ -7192,7 +7192,7 @@
7192 *: "Жанр" 7192 *: "Жанр"
7193 </dest> 7193 </dest>
7194 <voice> 7194 <voice>
7195 *: "" 7195 *: "Жанр"
7196 </voice> 7196 </voice>
7197</phrase> 7197</phrase>
7198<phrase> 7198<phrase>
@@ -7206,7 +7206,7 @@
7206 *: "Рiк" 7206 *: "Рiк"
7207 </dest> 7207 </dest>
7208 <voice> 7208 <voice>
7209 *: "" 7209 *: "Рiк"
7210 </voice> 7210 </voice>
7211</phrase> 7211</phrase>
7212<phrase> 7212<phrase>
@@ -7220,7 +7220,7 @@
7220 *: "Тривалiсть" 7220 *: "Тривалiсть"
7221 </dest> 7221 </dest>
7222 <voice> 7222 <voice>
7223 *: "" 7223 *: "Тривалiсть"
7224 </voice> 7224 </voice>
7225</phrase> 7225</phrase>
7226<phrase> 7226<phrase>
@@ -7234,7 +7234,7 @@
7234 *: "Список вiдтворення" 7234 *: "Список вiдтворення"
7235 </dest> 7235 </dest>
7236 <voice> 7236 <voice>
7237 *: "" 7237 *: "Список вiдтворення"
7238 </voice> 7238 </voice>
7239</phrase> 7239</phrase>
7240<phrase> 7240<phrase>
@@ -7248,7 +7248,7 @@
7248 *: "Бiтрейт" 7248 *: "Бiтрейт"
7249 </dest> 7249 </dest>
7250 <voice> 7250 <voice>
7251 *: "" 7251 *: "Бiтрейт"
7252 </voice> 7252 </voice>
7253</phrase> 7253</phrase>
7254<phrase> 7254<phrase>
@@ -7262,7 +7262,7 @@
7262 *: "Обкладинка Альбому" 7262 *: "Обкладинка Альбому"
7263 </dest> 7263 </dest>
7264 <voice> 7264 <voice>
7265 *: "" 7265 *: "Обкладинка Альбому"
7266 </voice> 7266 </voice>
7267</phrase> 7267</phrase>
7268<phrase> 7268<phrase>
@@ -7276,7 +7276,7 @@
7276 *: "Номер диску" 7276 *: "Номер диску"
7277 </dest> 7277 </dest>
7278 <voice> 7278 <voice>
7279 *: "" 7279 *: "Номер диску"
7280 </voice> 7280 </voice>
7281</phrase> 7281</phrase>
7282<phrase> 7282<phrase>
@@ -7290,7 +7290,7 @@
7290 *: "Коментар" 7290 *: "Коментар"
7291 </dest> 7291 </dest>
7292 <voice> 7292 <voice>
7293 *: "" 7293 *: "Коментар"
7294 </voice> 7294 </voice>
7295</phrase> 7295</phrase>
7296<phrase> 7296<phrase>
@@ -7304,7 +7304,7 @@
7304 *: " (VBR)" 7304 *: " (VBR)"
7305 </dest> 7305 </dest>
7306 <voice> 7306 <voice>
7307 *: "" 7307 *: "VBR"
7308 </voice> 7308 </voice>
7309</phrase> 7309</phrase>
7310<phrase> 7310<phrase>
@@ -7318,7 +7318,7 @@
7318 *: "Частота" 7318 *: "Частота"
7319 </dest> 7319 </dest>
7320 <voice> 7320 <voice>
7321 *: "" 7321 *: "Частота"
7322 </voice> 7322 </voice>
7323</phrase> 7323</phrase>
7324<phrase> 7324<phrase>
@@ -7332,7 +7332,7 @@
7332 *: "Пiдсилення Треку" 7332 *: "Пiдсилення Треку"
7333 </dest> 7333 </dest>
7334 <voice> 7334 <voice>
7335 *: "" 7335 *: "Пiдсилення Треку"
7336 </voice> 7336 </voice>
7337</phrase> 7337</phrase>
7338<phrase> 7338<phrase>
@@ -7346,7 +7346,7 @@
7346 *: "Пiдсилення Альбому" 7346 *: "Пiдсилення Альбому"
7347 </dest> 7347 </dest>
7348 <voice> 7348 <voice>
7349 *: "" 7349 *: "Пiдсилення Альбому"
7350 </voice> 7350 </voice>
7351</phrase> 7351</phrase>
7352<phrase> 7352<phrase>
@@ -7360,7 +7360,7 @@
7360 *: "Шлях" 7360 *: "Шлях"
7361 </dest> 7361 </dest>
7362 <voice> 7362 <voice>
7363 *: "" 7363 *: "Шлях"
7364 </voice> 7364 </voice>
7365</phrase> 7365</phrase>
7366<phrase> 7366<phrase>
@@ -7374,7 +7374,7 @@
7374 *: "<Iнформацiя вiдсутня>" 7374 *: "<Iнформацiя вiдсутня>"
7375 </dest> 7375 </dest>
7376 <voice> 7376 <voice>
7377 *: "" 7377 *: "Iнформацiя вiдсутня"
7378 </voice> 7378 </voice>
7379</phrase> 7379</phrase>
7380<phrase> 7380<phrase>
@@ -10040,7 +10040,7 @@
10040 *: "Робота" 10040 *: "Робота"
10041 </dest> 10041 </dest>
10042 <voice> 10042 <voice>
10043 *: "" 10043 *: "Робота"
10044 </voice> 10044 </voice>
10045</phrase> 10045</phrase>
10046<phrase> 10046<phrase>
@@ -12321,7 +12321,7 @@
12321 *: "Композитор" 12321 *: "Композитор"
12322 </dest> 12322 </dest>
12323 <voice> 12323 <voice>
12324 *: "" 12324 *: "Композитор"
12325 </voice> 12325 </voice>
12326</phrase> 12326</phrase>
12327<phrase> 12327<phrase>
diff --git a/apps/lang/wallisertitsch.lang b/apps/lang/wallisertitsch.lang
index 8fe7d46619..d09ce8ab20 100644
--- a/apps/lang/wallisertitsch.lang
+++ b/apps/lang/wallisertitsch.lang
@@ -2715,7 +2715,7 @@
2715 *: "Titel" 2715 *: "Titel"
2716 </dest> 2716 </dest>
2717 <voice> 2717 <voice>
2718 *: "" 2718 *: "Titel"
2719 </voice> 2719 </voice>
2720</phrase> 2720</phrase>
2721<phrase> 2721<phrase>
@@ -2729,7 +2729,7 @@
2729 *: "Künschtler" 2729 *: "Künschtler"
2730 </dest> 2730 </dest>
2731 <voice> 2731 <voice>
2732 *: "" 2732 *: "Künschtler"
2733 </voice> 2733 </voice>
2734</phrase> 2734</phrase>
2735<phrase> 2735<phrase>
@@ -2743,7 +2743,7 @@
2743 *: "Album" 2743 *: "Album"
2744 </dest> 2744 </dest>
2745 <voice> 2745 <voice>
2746 *: "" 2746 *: "Album"
2747 </voice> 2747 </voice>
2748</phrase> 2748</phrase>
2749<phrase> 2749<phrase>
@@ -2757,7 +2757,7 @@
2757 *: "Lied Nr." 2757 *: "Lied Nr."
2758 </dest> 2758 </dest>
2759 <voice> 2759 <voice>
2760 *: "" 2760 *: "Lied Nr."
2761 </voice> 2761 </voice>
2762</phrase> 2762</phrase>
2763<phrase> 2763<phrase>
@@ -2771,7 +2771,7 @@
2771 *: "Stil" 2771 *: "Stil"
2772 </dest> 2772 </dest>
2773 <voice> 2773 <voice>
2774 *: "" 2774 *: "Stil"
2775 </voice> 2775 </voice>
2776</phrase> 2776</phrase>
2777<phrase> 2777<phrase>
@@ -2785,7 +2785,7 @@
2785 *: "Jahr" 2785 *: "Jahr"
2786 </dest> 2786 </dest>
2787 <voice> 2787 <voice>
2788 *: "" 2788 *: "Jahr"
2789 </voice> 2789 </voice>
2790</phrase> 2790</phrase>
2791<phrase> 2791<phrase>
@@ -2799,7 +2799,7 @@
2799 *: "Liederlischta" 2799 *: "Liederlischta"
2800 </dest> 2800 </dest>
2801 <voice> 2801 <voice>
2802 *: "" 2802 *: "Liederlischta"
2803 </voice> 2803 </voice>
2804</phrase> 2804</phrase>
2805<phrase> 2805<phrase>
@@ -2813,7 +2813,7 @@
2813 *: "Bitrata" 2813 *: "Bitrata"
2814 </dest> 2814 </dest>
2815 <voice> 2815 <voice>
2816 *: "" 2816 *: "Bitrata"
2817 </voice> 2817 </voice>
2818</phrase> 2818</phrase>
2819<phrase> 2819<phrase>
@@ -2827,7 +2827,7 @@
2827 *: "Frequänz" 2827 *: "Frequänz"
2828 </dest> 2828 </dest>
2829 <voice> 2829 <voice>
2830 *: "" 2830 *: "Frequänz"
2831 </voice> 2831 </voice>
2832</phrase> 2832</phrase>
2833<phrase> 2833<phrase>
@@ -2841,7 +2841,7 @@
2841 *: "Pfad" 2841 *: "Pfad"
2842 </dest> 2842 </dest>
2843 <voice> 2843 <voice>
2844 *: "" 2844 *: "Pfad"
2845 </voice> 2845 </voice>
2846</phrase> 2846</phrase>
2847<phrase> 2847<phrase>
@@ -2855,7 +2855,7 @@
2855 *: "<kei Info>" 2855 *: "<kei Info>"
2856 </dest> 2856 </dest>
2857 <voice> 2857 <voice>
2858 *: "" 2858 *: "kei Info"
2859 </voice> 2859 </voice>
2860</phrase> 2860</phrase>
2861<phrase> 2861<phrase>
diff --git a/apps/lang/walon.lang b/apps/lang/walon.lang
index 94b7e7c6c1..87facfe8d4 100644
--- a/apps/lang/walon.lang
+++ b/apps/lang/walon.lang
@@ -7144,7 +7144,7 @@
7144 *: "Tite" 7144 *: "Tite"
7145 </dest> 7145 </dest>
7146 <voice> 7146 <voice>
7147 *: "" 7147 *: "Tite"
7148 </voice> 7148 </voice>
7149</phrase> 7149</phrase>
7150<phrase> 7150<phrase>
@@ -7158,7 +7158,7 @@
7158 *: "Årtisse" 7158 *: "Årtisse"
7159 </dest> 7159 </dest>
7160 <voice> 7160 <voice>
7161 *: "" 7161 *: "Årtisse"
7162 </voice> 7162 </voice>
7163</phrase> 7163</phrase>
7164<phrase> 7164<phrase>
@@ -7172,7 +7172,7 @@
7172 *: "Albom" 7172 *: "Albom"
7173 </dest> 7173 </dest>
7174 <voice> 7174 <voice>
7175 *: "" 7175 *: "Albom"
7176 </voice> 7176 </voice>
7177</phrase> 7177</phrase>
7178<phrase> 7178<phrase>
@@ -7186,7 +7186,7 @@
7186 *: "Lim. boket" 7186 *: "Lim. boket"
7187 </dest> 7187 </dest>
7188 <voice> 7188 <voice>
7189 *: "" 7189 *: "Lim. boket"
7190 </voice> 7190 </voice>
7191</phrase> 7191</phrase>
7192<phrase> 7192<phrase>
@@ -7200,7 +7200,7 @@
7200 *: "Cogne" 7200 *: "Cogne"
7201 </dest> 7201 </dest>
7202 <voice> 7202 <voice>
7203 *: "" 7203 *: "Cogne"
7204 </voice> 7204 </voice>
7205</phrase> 7205</phrase>
7206<phrase> 7206<phrase>
@@ -7214,7 +7214,7 @@
7214 *: "Anêye" 7214 *: "Anêye"
7215 </dest> 7215 </dest>
7216 <voice> 7216 <voice>
7217 *: "" 7217 *: "Anêye"
7218 </voice> 7218 </voice>
7219</phrase> 7219</phrase>
7220<phrase> 7220<phrase>
@@ -7228,7 +7228,7 @@
7228 *: "Longueu" 7228 *: "Longueu"
7229 </dest> 7229 </dest>
7230 <voice> 7230 <voice>
7231 *: "" 7231 *: "Longueu"
7232 </voice> 7232 </voice>
7233</phrase> 7233</phrase>
7234<phrase> 7234<phrase>
@@ -7242,7 +7242,7 @@
7242 *: "Djivêye" 7242 *: "Djivêye"
7243 </dest> 7243 </dest>
7244 <voice> 7244 <voice>
7245 *: "" 7245 *: "Djivêye"
7246 </voice> 7246 </voice>
7247</phrase> 7247</phrase>
7248<phrase> 7248<phrase>
@@ -7256,7 +7256,7 @@
7256 *: "Debit" 7256 *: "Debit"
7257 </dest> 7257 </dest>
7258 <voice> 7258 <voice>
7259 *: "" 7259 *: "Debit"
7260 </voice> 7260 </voice>
7261</phrase> 7261</phrase>
7262<phrase> 7262<phrase>
@@ -7270,7 +7270,7 @@
7270 *: "Årtisse di l'albom" 7270 *: "Årtisse di l'albom"
7271 </dest> 7271 </dest>
7272 <voice> 7272 <voice>
7273 *: "" 7273 *: "Årtisse di l'albom"
7274 </voice> 7274 </voice>
7275</phrase> 7275</phrase>
7276<phrase> 7276<phrase>
@@ -7284,7 +7284,7 @@
7284 *: "Limero del plake" 7284 *: "Limero del plake"
7285 </dest> 7285 </dest>
7286 <voice> 7286 <voice>
7287 *: "" 7287 *: "Limero del plake"
7288 </voice> 7288 </voice>
7289</phrase> 7289</phrase>
7290<phrase> 7290<phrase>
@@ -7298,7 +7298,7 @@
7298 *: "Rawete" 7298 *: "Rawete"
7299 </dest> 7299 </dest>
7300 <voice> 7300 <voice>
7301 *: "" 7301 *: "Rawete"
7302 </voice> 7302 </voice>
7303</phrase> 7303</phrase>
7304<phrase> 7304<phrase>
@@ -7312,7 +7312,7 @@
7312 *: " (VBR)" 7312 *: " (VBR)"
7313 </dest> 7313 </dest>
7314 <voice> 7314 <voice>
7315 *: "" 7315 *: "VBR"
7316 </voice> 7316 </voice>
7317</phrase> 7317</phrase>
7318<phrase> 7318<phrase>
@@ -7326,7 +7326,7 @@
7326 *: "Frécwince" 7326 *: "Frécwince"
7327 </dest> 7327 </dest>
7328 <voice> 7328 <voice>
7329 *: "" 7329 *: "Frécwince"
7330 </voice> 7330 </voice>
7331</phrase> 7331</phrase>
7332<phrase> 7332<phrase>
@@ -7340,7 +7340,7 @@
7340 *: "Crexhaedje pa boket" 7340 *: "Crexhaedje pa boket"
7341 </dest> 7341 </dest>
7342 <voice> 7342 <voice>
7343 *: "" 7343 *: "Crexhaedje pa boket"
7344 </voice> 7344 </voice>
7345</phrase> 7345</phrase>
7346<phrase> 7346<phrase>
@@ -7354,7 +7354,7 @@
7354 *: "Crexhaedje pa albom" 7354 *: "Crexhaedje pa albom"
7355 </dest> 7355 </dest>
7356 <voice> 7356 <voice>
7357 *: "" 7357 *: "Crexhaedje pa albom"
7358 </voice> 7358 </voice>
7359</phrase> 7359</phrase>
7360<phrase> 7360<phrase>
@@ -7368,7 +7368,7 @@
7368 *: "Tchimin" 7368 *: "Tchimin"
7369 </dest> 7369 </dest>
7370 <voice> 7370 <voice>
7371 *: "" 7371 *: "Tchimin"
7372 </voice> 7372 </voice>
7373</phrase> 7373</phrase>
7374<phrase> 7374<phrase>
@@ -7382,7 +7382,7 @@
7382 *: "<Nole infô.>" 7382 *: "<Nole infô.>"
7383 </dest> 7383 </dest>
7384 <voice> 7384 <voice>
7385 *: "" 7385 *: "Nole infô."
7386 </voice> 7386 </voice>
7387</phrase> 7387</phrase>
7388<phrase> 7388<phrase>
@@ -10047,7 +10047,7 @@
10047 *: "Ouve" 10047 *: "Ouve"
10048 </dest> 10048 </dest>
10049 <voice> 10049 <voice>
10050 *: "" 10050 *: "Ouve"
10051 </voice> 10051 </voice>
10052</phrase> 10052</phrase>
10053<phrase> 10053<phrase>
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index 05b39b4a4e..54451992a7 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -326,7 +326,7 @@ static bool playlist_viewer_init(struct playlist_viewer * viewer,
326 if (!have_list) 326 if (!have_list)
327 { 327 {
328 /* Nothing to view, exit */ 328 /* Nothing to view, exit */
329 splash(HZ, str(LANG_CATALOG_NO_PLAYLISTS)); 329 splash(HZ, ID2P(LANG_CATALOG_NO_PLAYLISTS));
330 return false; 330 return false;
331 } 331 }
332 332
@@ -638,27 +638,28 @@ static enum themable_icons playlist_callback_icons(int selected_item,
638static int playlist_callback_voice(int selected_item, void *data) 638static int playlist_callback_voice(int selected_item, void *data)
639{ 639{
640 struct playlist_viewer *local_viewer = (struct playlist_viewer *)data; 640 struct playlist_viewer *local_viewer = (struct playlist_viewer *)data;
641 641 struct playlist_entry *track=
642 int track_num = get_track_num(local_viewer, selected_item); 642 playlist_buffer_get_track(&(local_viewer->buffer),
643 struct playlist_entry *track = 643 selected_item);
644 playlist_buffer_get_track(&(local_viewer->buffer), track_num); 644 (void)selected_item;
645 645 if(global_settings.playlist_viewer_icons) {
646 bool enqueue = false; 646 if (track->index == local_viewer->current_playing_track)
647 647 talk_id(LANG_NOW_PLAYING, true);
648 if (global_settings.talk_file_clip || global_settings.talk_file == 2) 648 if (track->index == local_viewer->moving_track)
649 { 649 talk_id(VOICE_TRACK_TO_MOVE, true);
650 if (global_settings.playlist_viewer_indices) 650 if (track->queued)
651 { 651 talk_id(VOICE_QUEUED, true);
652 talk_number(track->display_index, false);
653 enqueue = true;
654 }
655 talk_file_or_spell(NULL, track->name, NULL, enqueue);
656 } 652 }
657 else if (global_settings.talk_file == 1) /* as numbers */ 653 if (track->skipped)
658 { 654 talk_id(VOICE_BAD_TRACK, true);
659 talk_id(VOICE_FILE, false); 655 if (global_settings.playlist_viewer_indices)
660 talk_number(track->display_index, true); 656 talk_number(track->display_index, true);
661 } 657
658 if(global_settings.playlist_viewer_track_display)
659 talk_fullpath(track->name, true);
660 else talk_file_or_spell(NULL, track->name, NULL, true);
661 if (viewer.moving_track != -1)
662 talk_ids(true,VOICE_PAUSE, VOICE_MOVING_TRACK);
662 663
663 return 0; 664 return 0;
664} 665}
@@ -678,7 +679,9 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
678 push_current_activity(ACTIVITY_PLAYLISTVIEWER); 679 push_current_activity(ACTIVITY_PLAYLISTVIEWER);
679 gui_synclist_init(&playlist_lists, playlist_callback_name, 680 gui_synclist_init(&playlist_lists, playlist_callback_name,
680 &viewer, false, 1, NULL); 681 &viewer, false, 1, NULL);
681 gui_synclist_set_voice_callback(&playlist_lists, playlist_callback_voice); 682 gui_synclist_set_voice_callback(&playlist_lists,
683 global_settings.talk_file?
684 &playlist_callback_voice:NULL);
682 gui_synclist_set_icon_callback(&playlist_lists, 685 gui_synclist_set_icon_callback(&playlist_lists,
683 global_settings.playlist_viewer_icons? 686 global_settings.playlist_viewer_icons?
684 &playlist_callback_icons:NULL); 687 &playlist_callback_icons:NULL);
@@ -708,6 +711,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
708 gui_synclist_set_nb_items(&playlist_lists, viewer.num_tracks); 711 gui_synclist_set_nb_items(&playlist_lists, viewer.num_tracks);
709 712
710 gui_synclist_draw(&playlist_lists); 713 gui_synclist_draw(&playlist_lists);
714 gui_synclist_speak_item(&playlist_lists);
711 } 715 }
712 716
713 /* Timeout so we can determine if play status has changed */ 717 /* Timeout so we can determine if play status has changed */
@@ -740,6 +744,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
740 viewer.moving_track = -1; 744 viewer.moving_track = -1;
741 viewer.moving_playlist_index = -1; 745 viewer.moving_playlist_index = -1;
742 gui_synclist_draw(&playlist_lists); 746 gui_synclist_draw(&playlist_lists);
747 gui_synclist_speak_item(&playlist_lists);
743 } 748 }
744 else 749 else
745 { 750 {
@@ -763,8 +768,11 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
763 viewer.moving_playlist_index, 768 viewer.moving_playlist_index,
764 current_track->index); 769 current_track->index);
765 if (ret_val < 0) 770 if (ret_val < 0)
771 {
772 cond_talk_ids_fq(LANG_MOVE, LANG_FAILED);
766 splashf(HZ, (unsigned char *)"%s %s", str(LANG_MOVE), 773 splashf(HZ, (unsigned char *)"%s %s", str(LANG_MOVE),
767 str(LANG_FAILED)); 774 str(LANG_FAILED));
775 }
768 update_playlist(true); 776 update_playlist(true);
769 viewer.moving_track = -1; 777 viewer.moving_track = -1;
770 viewer.moving_playlist_index = -1; 778 viewer.moving_playlist_index = -1;
@@ -800,6 +808,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
800 exit = true; 808 exit = true;
801 } 809 }
802 gui_synclist_draw(&playlist_lists); 810 gui_synclist_draw(&playlist_lists);
811 gui_synclist_speak_item(&playlist_lists);
803 812
804 break; 813 break;
805 } 814 }
@@ -833,6 +842,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
833 global_settings.playlist_viewer_icons? 842 global_settings.playlist_viewer_icons?
834 &playlist_callback_icons:NULL); 843 &playlist_callback_icons:NULL);
835 gui_synclist_draw(&playlist_lists); 844 gui_synclist_draw(&playlist_lists);
845 gui_synclist_speak_item(&playlist_lists);
836 break; 846 break;
837 } 847 }
838 case ACTION_STD_MENU: 848 case ACTION_STD_MENU:
@@ -849,6 +859,7 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
849 } 859 }
850 860
851exit: 861exit:
862 talk_shutup();
852 pop_current_activity(); 863 pop_current_activity();
853 if (viewer.playlist) 864 if (viewer.playlist)
854 { 865 {
@@ -870,6 +881,17 @@ static const char* playlist_search_callback_name(int selected_item, void * data,
870 return buffer; 881 return buffer;
871} 882}
872 883
884static int say_search_item(int selected_item, void *data)
885{
886 int *found_indicies = (int*)data;
887 static struct playlist_track_info track;
888 playlist_get_track_info(viewer.playlist,found_indicies[selected_item],&track);
889 if(global_settings.playlist_viewer_track_display)
890 talk_fullpath(track.filename, false);
891 else talk_file_or_spell(NULL, track.filename, NULL, false);
892 return 0;
893}
894
873bool search_playlist(void) 895bool search_playlist(void)
874{ 896{
875 char search_str[32] = ""; 897 char search_str[32] = "";
@@ -887,6 +909,7 @@ bool search_playlist(void)
887 return ret; 909 return ret;
888 lcd_clear_display(); 910 lcd_clear_display();
889 playlist_count = playlist_amount_ex(viewer.playlist); 911 playlist_count = playlist_amount_ex(viewer.playlist);
912 cond_talk_ids_fq(LANG_WAIT);
890 913
891 cpu_boost(true); 914 cpu_boost(true);
892 915
@@ -913,6 +936,8 @@ bool search_playlist(void)
913 936
914 cpu_boost(false); 937 cpu_boost(false);
915 938
939 cond_talk_ids_fq(TALK_ID(found_indicies_count, UNIT_INT),
940 LANG_PLAYLIST_SEARCH_MSG);
916 if (!found_indicies_count) 941 if (!found_indicies_count)
917 { 942 {
918 return ret; 943 return ret;
@@ -923,9 +948,14 @@ bool search_playlist(void)
923 found_indicies, false, 1, NULL); 948 found_indicies, false, 1, NULL);
924 gui_synclist_set_title(&playlist_lists, str(LANG_SEARCH_RESULTS), NOICON); 949 gui_synclist_set_title(&playlist_lists, str(LANG_SEARCH_RESULTS), NOICON);
925 gui_synclist_set_icon_callback(&playlist_lists, NULL); 950 gui_synclist_set_icon_callback(&playlist_lists, NULL);
951 if(global_settings.talk_file)
952 gui_synclist_set_voice_callback(&playlist_lists,
953 global_settings.talk_file?
954 &say_search_item:NULL);
926 gui_synclist_set_nb_items(&playlist_lists, found_indicies_count); 955 gui_synclist_set_nb_items(&playlist_lists, found_indicies_count);
927 gui_synclist_select_item(&playlist_lists, 0); 956 gui_synclist_select_item(&playlist_lists, 0);
928 gui_synclist_draw(&playlist_lists); 957 gui_synclist_draw(&playlist_lists);
958 gui_synclist_speak_item(&playlist_lists);
929 while (!exit) 959 while (!exit)
930 { 960 {
931 if (list_do_action(CONTEXT_LIST, HZ/4, 961 if (list_do_action(CONTEXT_LIST, HZ/4,
@@ -954,5 +984,6 @@ bool search_playlist(void)
954 break; 984 break;
955 } 985 }
956 } 986 }
987 talk_shutup();
957 return ret; 988 return ret;
958} 989}
diff --git a/apps/screens.c b/apps/screens.c
index 5fa92f5fbd..d341fa8eef 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -22,6 +22,7 @@
22#include <stdbool.h> 22#include <stdbool.h>
23#include <string.h> 23#include <string.h>
24#include <stdio.h> 24#include <stdio.h>
25#include <stdlib.h>
25#include "backlight.h" 26#include "backlight.h"
26#include "action.h" 27#include "action.h"
27#include "lcd.h" 28#include "lcd.h"
@@ -81,6 +82,7 @@ int mmc_remove_request(void)
81 } 82 }
82} 83}
83#endif 84#endif
85#include "ctype.h"
84 86
85/* the charging screen is only used for archos targets */ 87/* the charging screen is only used for archos targets */
86#if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING) && defined(CPU_SH) 88#if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING) && defined(CPU_SH)
@@ -643,14 +645,102 @@ struct id3view_info {
643 int info_id[ARRAYLEN(id3_headers)]; 645 int info_id[ARRAYLEN(id3_headers)];
644}; 646};
645 647
646static const char* id3_get_info(int selected_item, void* data, 648/* Spell out a buffer, but when successive digits are encountered, say
647 char *buffer, size_t buffer_len) 649 the whole number. Useful for some ID3 tags that usually contain a
650 number but are in fact free-form. */
651static void say_number_and_spell(char *buf, bool year_style)
652{
653 char *ptr = buf;
654 while(*ptr) {
655 if(isdigit(*ptr)) {
656 /* parse the number */
657 int n = atoi(ptr);
658 /* skip over digits to rest of string */
659 while(isdigit(*++ptr));
660 /* say the number */
661 if(year_style)
662 talk_value(n, UNIT_DATEYEAR, true);
663 else talk_number(n, true);
664 }else{
665 /* Spell a sequence of non-digits */
666 char tmp, *start = ptr;
667 while(*++ptr && !isdigit(*ptr));
668 /* temporarily truncate the string here */
669 tmp = *ptr;
670 *ptr = '\0';
671 talk_spell(start, true);
672 *ptr = tmp; /* restore string */
673 }
674 }
675}
676
677/* Say a replaygain ID3 value from its text form */
678static void say_gain(char *buf)
679{
680 /* Expected form is "-5.74 dB". We'll try to parse out the number
681 until the dot, say it (forcing the + sign), then say dot and
682 spell the following numbers, and then say the decibel unit. */
683 char *ptr = buf;
684 if(*ptr == '-' || *ptr == '+')
685 /* skip sign */
686 ++ptr;
687 /* See if we can parse out a number. */
688 if(isdigit(*ptr)) {
689 char tmp;
690 /* skip successive digits */
691 while(isdigit(*++ptr));
692 /* temporarily truncate the string here */
693 tmp = *ptr;
694 *ptr = '\0';
695 /* parse out the number we just skipped */
696 talk_value(atoi(buf), UNIT_SIGNED, true); /* say the number with sign */
697 *ptr = tmp; /* restore the string */
698 if(*ptr == '.') {
699 /* found the dot, get fractional part */
700 buf = ptr;
701 while (isdigit(*++ptr));
702 while (*--ptr == '0');
703 if (ptr > buf) {
704 tmp = *++ptr;
705 *ptr = '\0';
706 talk_id(LANG_POINT, true);
707 while (*++buf == '0')
708 talk_id(VOICE_ZERO, true);
709 talk_number(atoi(buf), true);
710 *ptr = tmp;
711 }
712 ptr = buf;
713 while (isdigit(*++ptr));
714 }
715 buf = ptr;
716 if(strlen(buf) >2 && !strcmp(buf+strlen(buf)-2, "dB")) {
717 /* String does end with "dB" */
718 /* point to that "dB" */
719 ptr = buf+strlen(buf)-2;
720 /* backup any spaces */
721 while (ptr >buf && ptr[-1] == ' ')
722 --ptr;
723 if (ptr > buf)
724 talk_spell(buf, true);
725 else talk_id(VOICE_DB, true); /* say the dB unit */
726 }else /* doesn't end with dB, just spell everything after the
727 number of dot. */
728 talk_spell(buf, true);
729 }else /* we didn't find a number, just spell everything */
730 talk_spell(buf, true);
731}
732
733static const char * id3_get_or_speak_info(int selected_item, void* data,
734 char *buffer, size_t buffer_len,
735 bool say_it)
648{ 736{
649 struct id3view_info *info = (struct id3view_info*)data; 737 struct id3view_info *info = (struct id3view_info*)data;
650 struct mp3entry* id3 =info->id3; 738 struct mp3entry* id3 =info->id3;
651 int info_no=selected_item/2; 739 int info_no=selected_item/2;
652 if(!(selected_item%2)) 740 if(!(selected_item%2))
653 {/* header */ 741 {/* header */
742 if(say_it)
743 talk_id(id3_headers[info->info_id[info_no]], false);
654 snprintf(buffer, buffer_len, 744 snprintf(buffer, buffer_len,
655 "[%s]", str(id3_headers[info->info_id[info_no]])); 745 "[%s]", str(id3_headers[info->info_id[info_no]]));
656 return buffer; 746 return buffer;
@@ -663,35 +753,57 @@ static const char* id3_get_info(int selected_item, void* data,
663 { 753 {
664 case LANG_ID3_TITLE: 754 case LANG_ID3_TITLE:
665 val=id3->title; 755 val=id3->title;
756 if(say_it && val)
757 talk_spell(val, true);
666 break; 758 break;
667 case LANG_ID3_ARTIST: 759 case LANG_ID3_ARTIST:
668 val=id3->artist; 760 val=id3->artist;
761 if(say_it && val)
762 talk_spell(val, true);
669 break; 763 break;
670 case LANG_ID3_ALBUM: 764 case LANG_ID3_ALBUM:
671 val=id3->album; 765 val=id3->album;
766 if(say_it && val)
767 talk_spell(val, true);
672 break; 768 break;
673 case LANG_ID3_ALBUMARTIST: 769 case LANG_ID3_ALBUMARTIST:
674 val=id3->albumartist; 770 val=id3->albumartist;
771 if(say_it && val)
772 talk_spell(val, true);
675 break; 773 break;
676 case LANG_ID3_GROUPING: 774 case LANG_ID3_GROUPING:
677 val=id3->grouping; 775 val=id3->grouping;
776 if(say_it && val)
777 talk_spell(val, true);
678 break; 778 break;
679 case LANG_ID3_DISCNUM: 779 case LANG_ID3_DISCNUM:
680 if (id3->disc_string) 780 if (id3->disc_string)
781 {
681 val = id3->disc_string; 782 val = id3->disc_string;
783 if(say_it)
784 say_number_and_spell(val, true);
785 }
682 else if (id3->discnum) 786 else if (id3->discnum)
683 { 787 {
684 snprintf(buffer, buffer_len, "%d", id3->discnum); 788 snprintf(buffer, buffer_len, "%d", id3->discnum);
685 val = buffer; 789 val = buffer;
790 if(say_it)
791 talk_number(id3->discnum, true);
686 } 792 }
687 break; 793 break;
688 case LANG_ID3_TRACKNUM: 794 case LANG_ID3_TRACKNUM:
689 if (id3->track_string) 795 if (id3->track_string)
796 {
690 val = id3->track_string; 797 val = id3->track_string;
798 if(say_it)
799 say_number_and_spell(val, true);
800 }
691 else if (id3->tracknum) 801 else if (id3->tracknum)
692 { 802 {
693 snprintf(buffer, buffer_len, "%d", id3->tracknum); 803 snprintf(buffer, buffer_len, "%d", id3->tracknum);
694 val = buffer; 804 val = buffer;
805 if(say_it)
806 talk_number(id3->tracknum, true);
695 } 807 }
696 break; 808 break;
697 case LANG_ID3_COMMENT: 809 case LANG_ID3_COMMENT:
@@ -699,62 +811,119 @@ static const char* id3_get_info(int selected_item, void* data,
699 return NULL; 811 return NULL;
700 snprintf(buffer, buffer_len, "%s", id3->comment); 812 snprintf(buffer, buffer_len, "%s", id3->comment);
701 val=buffer; 813 val=buffer;
814 if(say_it && val)
815 talk_spell(val, true);
702 break; 816 break;
703 case LANG_ID3_GENRE: 817 case LANG_ID3_GENRE:
704 val = id3->genre_string; 818 val = id3->genre_string;
819 if(say_it && val)
820 talk_spell(val, true);
705 break; 821 break;
706 case LANG_ID3_YEAR: 822 case LANG_ID3_YEAR:
707 if (id3->year_string) 823 if (id3->year_string)
824 {
708 val = id3->year_string; 825 val = id3->year_string;
826 if(say_it && val)
827 say_number_and_spell(val, true);
828 }
709 else if (id3->year) 829 else if (id3->year)
710 { 830 {
711 snprintf(buffer, buffer_len, "%d", id3->year); 831 snprintf(buffer, buffer_len, "%d", id3->year);
712 val = buffer; 832 val = buffer;
833 if(say_it)
834 talk_value(id3->year, UNIT_DATEYEAR, true);
713 } 835 }
714 break; 836 break;
715 case LANG_ID3_LENGTH: 837 case LANG_ID3_LENGTH:
716 format_time(buffer, buffer_len, id3->length); 838 format_time(buffer, buffer_len, id3->length);
717 val=buffer; 839 val=buffer;
840 if(say_it)
841 talk_value(id3->length /1000, UNIT_TIME, true);
718 break; 842 break;
719 case LANG_ID3_PLAYLIST: 843 case LANG_ID3_PLAYLIST:
720 snprintf(buffer, buffer_len, "%d/%d", 844 snprintf(buffer, buffer_len, "%d/%d",
721 playlist_get_display_index(), playlist_amount()); 845 playlist_get_display_index(), playlist_amount());
722 val=buffer; 846 val=buffer;
847 if(say_it)
848 {
849 talk_number(playlist_get_display_index(), true);
850 talk_id(VOICE_OF, true);
851 talk_number(playlist_amount(), true);
852 }
723 break; 853 break;
724 case LANG_ID3_BITRATE: 854 case LANG_ID3_BITRATE:
725 snprintf(buffer, buffer_len, "%d kbps%s", id3->bitrate, 855 snprintf(buffer, buffer_len, "%d kbps%s", id3->bitrate,
726 id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) ""); 856 id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) "");
727 val=buffer; 857 val=buffer;
858 if(say_it)
859 {
860 talk_value(id3->bitrate, UNIT_KBIT, true);
861 if(id3->vbr)
862 talk_id(LANG_ID3_VBR, true);
863 }
728 break; 864 break;
729 case LANG_ID3_FREQUENCY: 865 case LANG_ID3_FREQUENCY:
730 snprintf(buffer, buffer_len, "%ld Hz", id3->frequency); 866 snprintf(buffer, buffer_len, "%ld Hz", id3->frequency);
731 val=buffer; 867 val=buffer;
868 if(say_it)
869 talk_value(id3->frequency, UNIT_HERTZ, true);
732 break; 870 break;
733#if CONFIG_CODEC == SWCODEC 871#if CONFIG_CODEC == SWCODEC
734 case LANG_ID3_TRACK_GAIN: 872 case LANG_ID3_TRACK_GAIN:
735 replaygain_itoa(buffer, buffer_len, id3->track_level); 873 replaygain_itoa(buffer, buffer_len, id3->track_level);
736 val=(id3->track_level) ? buffer : NULL; /* only show level!=0 */ 874 val=(id3->track_level) ? buffer : NULL; /* only show level!=0 */
875 if(say_it && val)
876 say_gain(val);
737 break; 877 break;
738 case LANG_ID3_ALBUM_GAIN: 878 case LANG_ID3_ALBUM_GAIN:
739 replaygain_itoa(buffer, buffer_len, id3->album_level); 879 replaygain_itoa(buffer, buffer_len, id3->album_level);
740 val=(id3->album_level) ? buffer : NULL; /* only show level!=0 */ 880 val=(id3->album_level) ? buffer : NULL; /* only show level!=0 */
881 if(say_it && val)
882 say_gain(val);
741 break; 883 break;
742#endif 884#endif
743 case LANG_ID3_PATH: 885 case LANG_ID3_PATH:
744 val=id3->path; 886 val=id3->path;
887 if(say_it && val)
888 talk_fullpath(val, true);
745 break; 889 break;
746 case LANG_ID3_COMPOSER: 890 case LANG_ID3_COMPOSER:
747 val=id3->composer; 891 val=id3->composer;
892 if(say_it && val)
893 talk_spell(val, true);
748 break; 894 break;
749 case LANG_FILESIZE: /* not LANG_ID3_FILESIZE because the string is shared */ 895 case LANG_FILESIZE: /* not LANG_ID3_FILESIZE because the string is shared */
750 output_dyn_value(buffer, buffer_len, id3->filesize, byte_units, 4, true); 896 output_dyn_value(buffer, buffer_len, id3->filesize, byte_units, 4, true);
751 val=buffer; 897 val=buffer;
898 if(say_it && val)
899 output_dyn_value(NULL, 0, id3->filesize, byte_units, true);
752 break; 900 break;
753 } 901 }
902 if((!val || !*val) && say_it)
903 talk_id(LANG_ID3_NO_INFO, true);
754 return val && *val ? val : NULL; 904 return val && *val ? val : NULL;
755 } 905 }
756} 906}
757 907
908/* gui_synclist callback */
909static const char* id3_get_info(int selected_item, void* data,
910 char *buffer, size_t buffer_len)
911{
912 return id3_get_or_speak_info(selected_item, data, buffer,
913 buffer_len, false);
914}
915
916static int id3_speak_item(int selected_item, void* data)
917{
918 char buffer[MAX_PATH];
919 selected_item &= ~1; /* Make sure it's even, to indicate the header */
920 /* say field name */
921 id3_get_or_speak_info(selected_item, data, buffer, MAX_PATH, true);
922 /* and field value */
923 id3_get_or_speak_info(selected_item+1, data, buffer, MAX_PATH, true);
924 return 0;
925}
926
758bool browse_id3(void) 927bool browse_id3(void)
759{ 928{
760 struct gui_synclist id3_lists; 929 struct gui_synclist id3_lists;
@@ -775,11 +944,15 @@ bool browse_id3(void)
775 } 944 }
776 945
777 gui_synclist_init(&id3_lists, &id3_get_info, &info, true, 2, NULL); 946 gui_synclist_init(&id3_lists, &id3_get_info, &info, true, 2, NULL);
947 if(global_settings.talk_menu)
948 gui_synclist_set_voice_callback(&id3_lists, id3_speak_item);
778 gui_synclist_set_nb_items(&id3_lists, info.count*2); 949 gui_synclist_set_nb_items(&id3_lists, info.count*2);
779 gui_synclist_draw(&id3_lists); 950 gui_synclist_draw(&id3_lists);
951 gui_synclist_speak_item(&id3_lists);
780 while (true) { 952 while (true) {
781 key = get_action(CONTEXT_LIST,HZ/2); 953 if(!list_do_action(CONTEXT_LIST,HZ/2,
782 if(!gui_synclist_do_button(&id3_lists, &key,LIST_WRAP_UNLESS_HELD)) 954 &id3_lists, &key,LIST_WRAP_UNLESS_HELD)
955 && key!=ACTION_NONE && key!=ACTION_UNKNOWN)
783 { 956 {
784 if (key == ACTION_STD_OK || key == ACTION_STD_CANCEL) 957 if (key == ACTION_STD_OK || key == ACTION_STD_CANCEL)
785 { 958 {
diff --git a/apps/talk.c b/apps/talk.c
index aae33283ae..bcf7a49acc 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -1191,6 +1191,33 @@ int talk_dir_or_spell(const char* dirname,
1191} 1191}
1192#endif 1192#endif
1193 1193
1194/* Speak thumbnail for each component of a full path, again falling
1195 back or going straight to spelling depending on settings. */
1196int talk_fullpath(const char* path, bool enqueue)
1197{
1198 if (!enqueue)
1199 talk_shutup();
1200 if(path[0] != '/')
1201 /* path ought to start with /... */
1202 return talk_spell(path, true);
1203 talk_id(VOICE_CHAR_SLASH, true);
1204 char buf[MAX_PATH];
1205 strlcpy(buf, path, MAX_PATH);
1206 char *start = buf+1; /* start of current component */
1207 char *ptr = strchr(start, '/'); /* end of current component */
1208 while(ptr) { /* There are more slashes ahead */
1209 /* temporarily poke a NULL at end of component to truncate string */
1210 *ptr = '\0';
1211 talk_dir_or_spell(buf, NULL, true);
1212 *ptr = '/'; /* restore string */
1213 talk_id(VOICE_CHAR_SLASH, true);
1214 start = ptr+1; /* setup for next component */
1215 ptr = strchr(start, '/');
1216 }
1217 /* no more slashes, final component is a filename */
1218 return talk_file_or_spell(NULL, buf, NULL, true);
1219}
1220
1194/* say a numeric value, this word ordering works for english, 1221/* say a numeric value, this word ordering works for english,
1195 but not necessarily for other languages (e.g. german) */ 1222 but not necessarily for other languages (e.g. german) */
1196int talk_number(long n, bool enqueue) 1223int talk_number(long n, bool enqueue)
@@ -1257,6 +1284,27 @@ int talk_number(long n, bool enqueue)
1257 return 0; 1284 return 0;
1258} 1285}
1259 1286
1287/* Say year like "nineteen ninety nine" instead of "one thousand 9
1288 hundred ninety nine". */
1289static int talk_year(long year, bool enqueue)
1290{
1291 int rem;
1292 if(year < 1100 || year >=2000)
1293 /* just say it as a regular number */
1294 return talk_number(year, enqueue);
1295 /* Say century */
1296 talk_number(year/100, enqueue);
1297 rem = year%100;
1298 if(rem == 0)
1299 /* as in 1900 */
1300 return talk_id(VOICE_HUNDRED, true);
1301 if(rem <10)
1302 /* as in 1905 */
1303 talk_id(VOICE_ZERO, true);
1304 /* sub-century year */
1305 return talk_number(rem, true);
1306}
1307
1260/* Say time duration/interval. Input is time in seconds, 1308/* Say time duration/interval. Input is time in seconds,
1261 say hours,minutes,seconds. */ 1309 say hours,minutes,seconds. */
1262static int talk_time_unit(long secs, bool enqueue) 1310static int talk_time_unit(long secs, bool enqueue)
@@ -1349,6 +1397,9 @@ int talk_value_decimal(long n, int unit, int decimals, bool enqueue)
1349 if (!check_audio_status()) 1397 if (!check_audio_status())
1350 return -1; 1398 return -1;
1351 1399
1400 /* special pronounciation for year number */
1401 if (unit == UNIT_DATEYEAR)
1402 return talk_year(n, enqueue);
1352 /* special case for time duration */ 1403 /* special case for time duration */
1353 if (unit == UNIT_TIME) 1404 if (unit == UNIT_TIME)
1354 return talk_time_unit(n, enqueue); 1405 return talk_time_unit(n, enqueue);
@@ -1496,10 +1547,7 @@ void talk_time(const struct tm *tm, bool enqueue)
1496 /* Voice the time in 24 hour format */ 1547 /* Voice the time in 24 hour format */
1497 talk_number(tm->tm_hour, enqueue); 1548 talk_number(tm->tm_hour, enqueue);
1498 if (tm->tm_min == 0) 1549 if (tm->tm_min == 0)
1499 { 1550 talk_ids(true, VOICE_HUNDRED, VOICE_HOUR);
1500 talk_id(VOICE_HUNDRED, true);
1501 talk_id(VOICE_HOUR, true);
1502 }
1503 else 1551 else
1504 { 1552 {
1505 /* Pronounce the leading 0 */ 1553 /* Pronounce the leading 0 */
diff --git a/apps/talk.h b/apps/talk.h
index 5ffc9ae5e6..c77c32e06f 100644
--- a/apps/talk.h
+++ b/apps/talk.h
@@ -51,6 +51,7 @@ enum {
51 UNIT_KBIT, /* kilobits per sec */ 51 UNIT_KBIT, /* kilobits per sec */
52 UNIT_PM_TICK, /* peak meter units per tick */ 52 UNIT_PM_TICK, /* peak meter units per tick */
53 UNIT_TIME, /* time duration/interval in seconds, says hours,mins,secs */ 53 UNIT_TIME, /* time duration/interval in seconds, says hours,mins,secs */
54 UNIT_DATEYEAR,/* for 1999 say nineteen ninety nine */
54 UNIT_LAST /* END MARKER */ 55 UNIT_LAST /* END MARKER */
55}; 56};
56 57
@@ -111,6 +112,8 @@ int talk_file_or_spell(const char *dirname, const char* filename,
111int talk_dir_or_spell(const char* filename, 112int talk_dir_or_spell(const char* filename,
112 const long *prefix_ids, bool enqueue); 113 const long *prefix_ids, bool enqueue);
113#endif 114#endif
115/* play thumbnails for each components of full path, or spell */
116int talk_fullpath(const char* path, bool enqueue);
114int talk_number(long n, bool enqueue); /* say a number */ 117int talk_number(long n, bool enqueue); /* say a number */
115int talk_value(long n, int unit, bool enqueue); /* say a numeric value */ 118int talk_value(long n, int unit, bool enqueue); /* say a numeric value */
116int talk_value_decimal(long n, int unit, int decimals, bool enqueue); 119int talk_value_decimal(long n, int unit, int decimals, bool enqueue);
diff --git a/apps/tree.c b/apps/tree.c
index b5c9ddc11d..ddaf955ce6 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -102,7 +102,7 @@ static int curr_context = false;/* id3db or tree*/
102 102
103static int dirbrowse(void); 103static int dirbrowse(void);
104static int ft_play_dirname(char* name); 104static int ft_play_dirname(char* name);
105static void ft_play_filename(char *dir, char *file); 105static int ft_play_filename(char *dir, char *file, int attr);
106static void say_filetype(int attr); 106static void say_filetype(int attr);
107 107
108struct entry* tree_get_entries(struct tree_context *t) 108struct entry* tree_get_entries(struct tree_context *t)
@@ -238,7 +238,7 @@ static int tree_voice_cb(int selected_item, void * data)
238 if(global_settings.talk_dir_clip) 238 if(global_settings.talk_dir_clip)
239 { 239 {
240 did_clip = true; 240 did_clip = true;
241 if(ft_play_dirname(name) <0) 241 if (ft_play_dirname(name) <= 0)
242 /* failed, not existing */ 242 /* failed, not existing */
243 did_clip = false; 243 did_clip = false;
244 } 244 }
@@ -246,7 +246,9 @@ static int tree_voice_cb(int selected_item, void * data)
246 if (global_settings.talk_file_clip && (attr & FILE_ATTR_THUMBNAIL)) 246 if (global_settings.talk_file_clip && (attr & FILE_ATTR_THUMBNAIL))
247 { 247 {
248 did_clip = true; 248 did_clip = true;
249 ft_play_filename(local_tc->currdir, name); 249 if (ft_play_filename(local_tc->currdir, name, attr) <= 0)
250 /* failed, not existing */
251 did_clip = false;
250 } 252 }
251 } 253 }
252 if(!did_clip) 254 if(!did_clip)
@@ -1175,17 +1177,25 @@ bool bookmark_play(char *resume_file, int index, unsigned long elapsed,
1175 return started; 1177 return started;
1176} 1178}
1177 1179
1178static void say_filetype(int attr) 1180static long filetype_voiceclip(int attr)
1179{ 1181{
1180 /* try to find a voice ID for the extension, if known */
1181 int j; 1182 int j;
1182 attr &= FILE_ATTR_MASK; /* file type */ 1183 if (global_settings.talk_filetype)
1183 for (j=0; j<filetypes_count; j++) 1184 {
1184 if (attr == filetypes[j].tree_attr) 1185 /* try to find a voice ID for the extension, if known */
1185 { 1186 attr &= FILE_ATTR_MASK; /* file type */
1186 talk_id(filetypes[j].voiceclip, true); 1187 for (j=0; j<filetypes_count; j++)
1187 return; 1188 if (attr == filetypes[j].tree_attr)
1188 } 1189 {
1190 return filetypes[j].voiceclip;
1191 }
1192 }
1193 return -1;
1194}
1195
1196static void say_filetype(int attr)
1197{
1198 talk_id(filetype_voiceclip(attr), true);
1189} 1199}
1190 1200
1191static int ft_play_dirname(char* name) 1201static int ft_play_dirname(char* name)
@@ -1195,34 +1205,29 @@ static int ft_play_dirname(char* name)
1195 return 0; 1205 return 0;
1196#endif 1206#endif
1197 1207
1198 if(talk_file(tc.currdir, name, dir_thumbnail_name, NULL, 1208 return talk_file(tc.currdir, name, dir_thumbnail_name, NULL,
1199 NULL, false)) 1209 global_settings.talk_filetype ?
1200 { 1210 TALK_IDARRAY(VOICE_DIR) : NULL,
1201 if(global_settings.talk_filetype) 1211 false);
1202 talk_id(VOICE_DIR, true);
1203 return 1;
1204 }
1205 else
1206 return -1;
1207} 1212}
1208 1213
1209static void ft_play_filename(char *dir, char *file) 1214static int ft_play_filename(char *dir, char *file, int attr)
1210{ 1215{
1211#if CONFIG_CODEC != SWCODEC 1216#if CONFIG_CODEC != SWCODEC
1212 if (audio_status() & AUDIO_STATUS_PLAY) 1217 if (audio_status() & AUDIO_STATUS_PLAY)
1213 return; 1218 return 0;
1214#endif 1219#endif
1215 1220
1216 if (strlen(file) >= strlen(file_thumbnail_ext) 1221 if (strlen(file) >= strlen(file_thumbnail_ext)
1217 && strcasecmp(&file[strlen(file) - strlen(file_thumbnail_ext)], 1222 && strcasecmp(&file[strlen(file) - strlen(file_thumbnail_ext)],
1218 file_thumbnail_ext)) 1223 file_thumbnail_ext))
1219 /* file has no .talk extension */ 1224 /* file has no .talk extension */
1220 talk_file(dir, NULL, file, file_thumbnail_ext, 1225 return talk_file(dir, NULL, file, file_thumbnail_ext,
1221 NULL, false); 1226 TALK_IDARRAY(filetype_voiceclip(attr)), false);
1222 else 1227
1223 /* it already is a .talk file, play this directly, but prefix it. */ 1228 /* it already is a .talk file, play this directly, but prefix it. */
1224 talk_file(dir, NULL, file, NULL, 1229 return talk_file(dir, NULL, file, NULL,
1225 TALK_IDARRAY(LANG_VOICE_DIR_HOVER), false); 1230 TALK_IDARRAY(LANG_VOICE_DIR_HOVER), false);
1226} 1231}
1227 1232
1228/* These two functions are called by the USB and shutdown handlers */ 1233/* These two functions are called by the USB and shutdown handlers */