From 8475872e10b1881258bdbe14a7c9010a74a2b929 Mon Sep 17 00:00:00 2001 From: Marcus Tillmanns Date: Mon, 16 Oct 2023 09:52:08 +0200 Subject: [PATCH] CompilerExplorer: Add missing translation Change-Id: If12a0530addf3c815d7b3a25b6dfdd90d29361a6 Reviewed-by: Eike Ziller --- src/plugins/compilerexplorer/compilerexplorereditor.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/compilerexplorer/compilerexplorereditor.cpp b/src/plugins/compilerexplorer/compilerexplorereditor.cpp index 6ca54b356ac..ac0dd963bb1 100644 --- a/src/plugins/compilerexplorer/compilerexplorereditor.cpp +++ b/src/plugins/compilerexplorer/compilerexplorereditor.cpp @@ -474,7 +474,9 @@ void CompilerWidget::doCompile() if (l.opcodes.empty()) continue; - auto mark = new TextMark(m_asmDocument.get(), i, TextMarkCategory{"Bytes", "Bytes"}); + auto mark = new TextMark(m_asmDocument.get(), + i, + TextMarkCategory{Tr::tr("Bytes"), "Bytes"}); mark->setLineAnnotation(l.opcodes.join(' ')); m_marks.append(mark); }