From 9979bcea7204f1b0a533257d2da537cb35c4322f Mon Sep 17 00:00:00 2001 From: manongjohn <19245851+manongjohn@users.noreply.github.com> Date: Mon, 20 Mar 2023 21:54:54 -0400 Subject: [PATCH] Make Motion Path panel strings translatable --- toonz/sources/toonz/motionpathpanel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/toonz/sources/toonz/motionpathpanel.cpp b/toonz/sources/toonz/motionpathpanel.cpp index 11dcc691..4e3c94c7 100644 --- a/toonz/sources/toonz/motionpathpanel.cpp +++ b/toonz/sources/toonz/motionpathpanel.cpp @@ -403,10 +403,10 @@ void MotionPathPanel::refreshPaths(bool force) { if (tree->getSplineCount() > 0) { m_pathsLayout->addWidget(new QLabel(""), 0, 0, Qt::AlignLeft); - m_pathsLayout->addWidget(new QLabel("Path Name"), 0, 1, Qt::AlignLeft); - m_pathsLayout->addWidget(new QLabel("Width"), 0, 2, Qt::AlignCenter); - m_pathsLayout->addWidget(new QLabel("Color"), 0, 3, Qt::AlignCenter); - m_pathsLayout->addWidget(new QLabel("Steps"), 0, 4, Qt::AlignCenter); + m_pathsLayout->addWidget(new QLabel(tr("Path Name")), 0, 1, Qt::AlignLeft); + m_pathsLayout->addWidget(new QLabel(tr("Width")), 0, 2, Qt::AlignCenter); + m_pathsLayout->addWidget(new QLabel(tr("Color")), 0, 3, Qt::AlignCenter); + m_pathsLayout->addWidget(new QLabel(tr("Steps")), 0, 4, Qt::AlignCenter); int i = 0; for (; i < tree->getSplineCount(); i++) { createControl(tree->getSpline(i), i + 1);