Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

voice: fix regression 39f8685 (already voiced)

Some of the splashf messages that were converted
to support voicing in commit 39f8685 already had
a voice equivalent that was more appropriate,
since it also voiced parameters, and included
pauses between announcements where necessary.

Change-Id: Ia91a01c82acd6148afb4afadd64b1105802aea36

+12 -10
+2 -1
apps/alarm_menu.c
··· 74 74 talk_value(mins_togo % 60, UNIT_MIN, true); 75 75 talk_force_enqueue_next(); 76 76 } 77 - splashf(HZ*2, ID2P(LANG_ALARM_MOD_TIME_TO_GO), 77 + /* (voiced above) */ 78 + splashf(HZ*2, str(LANG_ALARM_MOD_TIME_TO_GO), 78 79 mins_togo / 60, mins_togo % 60); 79 80 } else { 80 81 splash(HZ, ID2P(LANG_ALARM_MOD_ERROR));
+1 -1
apps/playlist.c
··· 684 684 } 685 685 } 686 686 687 - splashf(0, fmt, count, str(LANG_OFF_ABORT)); 687 + splashf(0, P2STR(fmt), count, str(LANG_OFF_ABORT)); /* (voiced above) */ 688 688 } 689 689 690 690 /*
+2 -2
apps/playlist_catalog.c
··· 264 264 talk_number(count, false); 265 265 talk_id(LANG_PLAYLIST_INSERT_COUNT, true); 266 266 } 267 - 268 - splashf(0, ID2P(LANG_PLAYLIST_INSERT_COUNT), count, str(LANG_OFF_ABORT)); 267 + /* (voiced above) */ 268 + splashf(0, str(LANG_PLAYLIST_INSERT_COUNT), count, str(LANG_OFF_ABORT)); 269 269 } 270 270 271 271 /* Add specified track into playlist. Callback from directory insert */
+2 -1
apps/plugins/mikmod/mikmod.c
··· 711 711 rb->talk_value_decimal(MikMod_errno, UNIT_INT, 0, true); 712 712 rb->talk_force_enqueue_next(); 713 713 } 714 - rb->splashf(HZ, ID2P(LANG_ERROR_FORMATSTR), MikMod_strerror(MikMod_errno)); 714 + /* (voiced above) */ 715 + rb->splashf(HZ, rb->str(LANG_ERROR_FORMATSTR), MikMod_strerror(MikMod_errno)); 715 716 quit = true; 716 717 } 717 718
+1 -1
apps/plugins/vbrfix.c
··· 130 130 rb->talk_force_enqueue_next(); 131 131 } 132 132 133 - rb->splashf(HZ*2, ID2P(LANG_FILE_ERROR), rc); 133 + rb->splashf(HZ*2, rb->str(LANG_FILE_ERROR), rc); /* (voiced above) */ 134 134 } 135 135 136 136 static const unsigned char empty_id3_header[] =
+2 -2
apps/root_menu.c
··· 257 257 } 258 258 else 259 259 { 260 - splashf(0, ID2P(LANG_BUILDING_DATABASE), 261 - stat->processed_entries); 260 + splashf(0, str(LANG_BUILDING_DATABASE), 261 + stat->processed_entries); /* (voiced above) */ 262 262 } 263 263 } 264 264 }
+2 -2
apps/tagtree.c
··· 2404 2404 n, slots_remaining); 2405 2405 2406 2406 talk_id(LANG_RANDOM_SHUFFLE_RANDOM_SELECTIVE_SONGS_SUMMARY, true); 2407 - splashf(HZ * 2, ID2P(LANG_RANDOM_SHUFFLE_RANDOM_SELECTIVE_SONGS_SUMMARY), 2408 - slots_remaining); 2407 + splashf(HZ * 2, str(LANG_RANDOM_SHUFFLE_RANDOM_SELECTIVE_SONGS_SUMMARY), 2408 + slots_remaining); /* voiced above */ 2409 2409 } 2410 2410 } 2411 2411