From 2d5d8059c8ab75b54ae7d73773c4c26bb8423683 Mon Sep 17 00:00:00 2001 From: Alexander Kojevnikov Date: Sun, 5 Feb 2023 18:35:29 -0800 Subject: [PATCH] Fix stream description for translated strings --- src/spek-pipeline.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spek-pipeline.cc b/src/spek-pipeline.cc index 0cf2c19..b5de425 100644 --- a/src/spek-pipeline.cc +++ b/src/spek-pipeline.cc @@ -277,7 +277,7 @@ std::string spek_pipeline_desc(const struct spek_pipeline *pipeline) // TRANSLATORS: first %d is the stream number, second %d is the // total number of streams, %s is the stream description. _("Stream %d / %d: %s"), - pipeline->stream + 1, pipeline->file->get_streams(), desc.c_str() + pipeline->stream + 1, pipeline->file->get_streams(), wxString::FromUTF8(desc.c_str()) ).utf8_str() ); } else if (!error_string.empty()) {