CompilerExplorer: Add missing translation

Change-Id: If12a0530addf3c815d7b3a25b6dfdd90d29361a6
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Marcus Tillmanns
2023-10-16 09:52:08 +02:00
parent 3e404945cf
commit 8475872e10

View File

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