Editor: Mark remaining undo command strings as translatable

Ensures that we're marking the remnant potential display strings
properly.
This commit is contained in:
Lioncache
2025-12-01 14:34:33 -05:00
parent db7e832f32
commit 5fc6b50923
27 changed files with 84 additions and 32 deletions

View File

@@ -1,7 +1,9 @@
#include "CEditLinkCommand.h"
#include <QCoreApplication>
CEditLinkCommand::CEditLinkCommand(CWorldEditor *pEditor, CLink *pLink, CLink NewLink)
: IUndoCommand("Edit Link")
: IUndoCommand(QCoreApplication::translate("CEditLinkCommand", "Edit Link"))
, mpEditor(pEditor)
, mpEditLink(pLink)
, mOldLink(*pLink)