From 4cd6f209a1092f9ff93a7f4737cc2466cafd5080 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sat, 14 May 2022 07:03:46 +0300 Subject: [PATCH 44/44] Make "Couldn't find audioset..." translatable See osdn #44556 Signed-off-by: Marko Lindqvist --- client/audio.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/audio.c b/client/audio.c index 5a50bb9cd0..f634f44cbe 100644 --- a/client/audio.c +++ b/client/audio.c @@ -220,7 +220,11 @@ static const char *audiospec_fullname(const char *audioset_name, return NULL; } - log_error("Couldn't find audioset \"%s\", trying \"%s\".", + /* Marked for translation, as user may see this when + * their client configuration from older version has + * a musicset that they have not yet installed for the + * new version. */ + log_error(_("Couldn't find audioset \"%s\", trying \"%s\"."), audioset_name, audioset_default); return audiospec_fullname(audioset_default, music); -- 2.35.1