diff --git a/src/plugins/projectexplorer/toolchain.cpp b/src/plugins/projectexplorer/toolchain.cpp index 700604a3ff5..6bc98f111e3 100644 --- a/src/plugins/projectexplorer/toolchain.cpp +++ b/src/plugins/projectexplorer/toolchain.cpp @@ -74,7 +74,8 @@ ToolChain::ToolChain(const ToolChain &other) : m_d(new Internal::ToolChainPrivate(other.id(), false)) { // leave the autodetection bit at false. - m_d->m_displayName = other.displayName(); + m_d->m_displayName = QCoreApplication::translate("ProjectExplorer::ToolChain", "Clone of %1") + .arg(other.displayName()); } ToolChain::~ToolChain()