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); }