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: LANG_PLUGIN_CANT_OPEN

Change-Id: Icbcbd7ed2dff88065726ce2520fbcc718bc3eba0

authored by

Christian Soffke and committed by
Solomon Peachy
f6cdcc8c f2356303

+8 -1
+1 -1
apps/lang/english.lang
··· 7333 7333 *: "Can't open %s" 7334 7334 </dest> 7335 7335 <voice> 7336 - *: "" 7336 + *: "Can't open plugin" 7337 7337 </voice> 7338 7338 </phrase> 7339 7339 <phrase>
+7
apps/plugin.c
··· 902 902 strcpy(current_plugin, plugin); 903 903 current_plugin_handle = lc_open(plugin, pluginbuf, PLUGIN_BUFFER_SIZE); 904 904 if (current_plugin_handle == NULL) { 905 + if (global_settings.talk_menu) 906 + { 907 + talk_id(LANG_PLUGIN_CANT_OPEN, false); 908 + talk_spell(plugin, true); 909 + talk_force_enqueue_next(); 910 + } 911 + /* (voiced above) */ 905 912 splashf(HZ*2, str(LANG_PLUGIN_CANT_OPEN), plugin); 906 913 return -1; 907 914 }