From 6e063199889d72cf4d796a7fd8c91c5c354f8701 Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Wed, 28 May 2025 12:52:10 +0200 Subject: [PATCH] addendum to 498d581 two more that I missed Change-Id: I48863fb870375328228d2c4caf1ea83931ccc218 --- apps/playlist_catalog.c | 3 ++- apps/tagtree.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/playlist_catalog.c b/apps/playlist_catalog.c index a7096ca213..736e5595dc 100644 --- a/apps/playlist_catalog.c +++ b/apps/playlist_catalog.c @@ -100,7 +100,8 @@ static int initialize_catalog_buf(char* dirbuf, size_t dirbuf_sz) talk_dir_or_spell(dirbuf, NULL, true); talk_force_enqueue_next(); } - splashf(HZ*2, ID2P(LANG_CATALOG_NO_DIRECTORY), dirbuf); + /* (voiced above) */ + splashf(HZ*2, str(LANG_CATALOG_NO_DIRECTORY), dirbuf); return -1; } else { diff --git a/apps/tagtree.c b/apps/tagtree.c index 1317122eed..94854083b1 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1872,7 +1872,8 @@ entry_skip_formatter: talk_value(total_count, UNIT_INT, true); } - splashf(HZ*4, ID2P(LANG_SHOWDIR_BUFFER_FULL), total_count); + /* (voiced above) */ + splashf(HZ*4, str(LANG_SHOWDIR_BUFFER_FULL), total_count); logf("Too small dir buffer"); return 0; }