From c7649c4e100a7abcdfb6caed08d25ea8e1ad7a50 Mon Sep 17 00:00:00 2001 From: Konstantin Dmitriev Date: Oct 19 2020 10:18:06 +0000 Subject: Use "X" and "Y" instead of "E/W" and "N/S". Closes https://github.com/opentoonz/opentoonz/issues/3337. (#3340) --- diff --git a/stuff/config/current.txt b/stuff/config/current.txt index 87c93cf..d9701fa 100644 --- a/stuff/config/current.txt +++ b/stuff/config/current.txt @@ -816,8 +816,8 @@ - W_NS "N/S" - W_EW "E/W" + W_Y "Y" + W_X "X" W_Z "Z" W_SO "SO" W_Rotation "Rotation" diff --git a/toonz/sources/tnztools/edittool.cpp b/toonz/sources/tnztools/edittool.cpp index e4b3a17..406dd3c 100644 --- a/toonz/sources/tnztools/edittool.cpp +++ b/toonz/sources/tnztools/edittool.cpp @@ -765,17 +765,17 @@ EditTool::EditTool() , m_scaleConstraint("Scale Constraint:") // W_ToolOptions_ScaleConstraint , m_autoSelect("Auto Select Column") // W_ToolOptions_AutoSelect , m_globalKeyframes("Global Key", false) // W_ToolsOptions_GlobalKeyframes - , m_lockCenterX("Lock Center E/W", false) - , m_lockCenterY("Lock Center N/S", false) - , m_lockPositionX("Lock Position E/W", false) - , m_lockPositionY("Lock Position N/S", false) + , m_lockCenterX("Lock Center X", false) + , m_lockCenterY("Lock Center Y", false) + , m_lockPositionX("Lock Position X", false) + , m_lockPositionY("Lock Position Y", false) , m_lockRotation("Lock Rotation", false) , m_lockShearH("Lock Shear H", false) , m_lockShearV("Lock Shear V", false) , m_lockScaleH("Lock Scale H", false) , m_lockScaleV("Lock Scale V", false) , m_lockGlobalScale("Lock Global Scale", false) - , m_showEWNSposition("E/W and N/S Positions", true) + , m_showEWNSposition("X and Y Positions", true) , m_showZposition("Z Position", true) , m_showSOposition("SO", true) , m_showRotation("Rotation", true) @@ -858,17 +858,17 @@ void EditTool::updateTranslation() { m_autoSelect.setItemUIName(L"Pegbar", tr("Pegbar")); m_globalKeyframes.setQStringName(tr("Global Key")); - m_lockCenterX.setQStringName(tr("Lock Center E/W")); - m_lockCenterY.setQStringName(tr("Lock Center N/S")); - m_lockPositionX.setQStringName(tr("Lock Position E/W")); - m_lockPositionY.setQStringName(tr("Lock Position N/S")); + m_lockCenterX.setQStringName(tr("Lock Center X")); + m_lockCenterY.setQStringName(tr("Lock Center Y")); + m_lockPositionX.setQStringName(tr("Lock Position X")); + m_lockPositionY.setQStringName(tr("Lock Position Y")); m_lockRotation.setQStringName(tr("Lock Rotation")); m_lockShearH.setQStringName(tr("Lock Shear H")); m_lockShearV.setQStringName(tr("Lock Shear V")); m_lockScaleH.setQStringName(tr("Lock Scale H")); m_lockScaleV.setQStringName(tr("Lock Scale V")); m_lockGlobalScale.setQStringName(tr("Lock Global Scale")); - m_showEWNSposition.setQStringName(tr("E/W and N/S Positions")); + m_showEWNSposition.setQStringName(tr("X and Y Positions")); m_showZposition.setQStringName(tr("Z Position")); m_showSOposition.setQStringName(tr("SO")); m_showRotation.setQStringName(tr("Rotation")); diff --git a/toonz/sources/tnztools/tooloptions.cpp b/toonz/sources/tnztools/tooloptions.cpp index 5a29c47..0db784e 100644 --- a/toonz/sources/tnztools/tooloptions.cpp +++ b/toonz/sources/tnztools/tooloptions.cpp @@ -542,18 +542,18 @@ ArrowToolOptionsBox::ArrowToolOptionsBox( m_zLabel = new ClickableLabel(tr("Z:"), this); m_motionPathPosLabel = new ClickableLabel(tr("Position:"), this); - m_ewPosLabel = new ClickableLabel(tr("E/W:"), this); - m_nsPosLabel = new ClickableLabel(tr("N/S:"), this); + m_ewPosLabel = new ClickableLabel(tr("X:"), this); + m_nsPosLabel = new ClickableLabel(tr("Y:"), this); - // Lock E/W + // Lock X TBoolProperty *lockProp = - dynamic_cast(m_pg->getProperty("Lock Position E/W")); + dynamic_cast(m_pg->getProperty("Lock Position X")); if (lockProp) m_lockEWPosCheckbox = new ToolOptionCheckbox(m_tool, lockProp, toolHandle, this); - // Lock N/S + // Lock Y lockProp = - dynamic_cast(m_pg->getProperty("Lock Position N/S")); + dynamic_cast(m_pg->getProperty("Lock Position Y")); if (lockProp) m_lockNSPosCheckbox = new ToolOptionCheckbox(m_tool, lockProp, toolHandle, this); @@ -625,18 +625,18 @@ ArrowToolOptionsBox::ArrowToolOptionsBox( new PegbarCenterField(m_tool, 0, "field", objHandle, xshHandle, this); m_nsCenterField = new PegbarCenterField(m_tool, 1, "field", objHandle, xshHandle, this); - m_ewCenterLabel = new ClickableLabel(tr("E/W:"), this); - m_nsCenterLabel = new ClickableLabel(tr("N/S:"), this); + m_ewCenterLabel = new ClickableLabel(tr("X:"), this); + m_nsCenterLabel = new ClickableLabel(tr("Y:"), this); - // Lock E/W Center + // Lock X Center lockProp = - dynamic_cast(m_pg->getProperty("Lock Center E/W")); + dynamic_cast(m_pg->getProperty("Lock Center X")); if (lockProp) m_lockEWCenterCheckbox = new ToolOptionCheckbox(m_tool, lockProp, toolHandle, this); - // Lock N/S Center + // Lock Y Center lockProp = - dynamic_cast(m_pg->getProperty("Lock Center N/S")); + dynamic_cast(m_pg->getProperty("Lock Center Y")); if (lockProp) m_lockNSCenterCheckbox = new ToolOptionCheckbox(m_tool, lockProp, toolHandle, this); @@ -1207,9 +1207,9 @@ SelectionToolOptionsBox::SelectionToolOptionsBox(QWidget *parent, TTool *tool, new SimpleIconViewField("edit_rotation", tr("Rotation")); m_rotationField = new SelectionRotationField(selectionTool, tr("Rotation")); - m_moveXLabel = new ClickableLabel(tr("E/W:"), this); + m_moveXLabel = new ClickableLabel(tr("X:"), this); m_moveXField = new SelectionMoveField(selectionTool, 0, "Move X"); - m_moveYLabel = new ClickableLabel(tr("N/S:"), this); + m_moveYLabel = new ClickableLabel(tr("Y:"), this); m_moveYField = new SelectionMoveField(selectionTool, 1, "Move Y"); if (rasterSelectionTool) { diff --git a/toonz/sources/toonzlib/stageobjectutil.cpp b/toonz/sources/toonzlib/stageobjectutil.cpp index e88f052..84c5033 100644 --- a/toonz/sources/toonzlib/stageobjectutil.cpp +++ b/toonz/sources/toonzlib/stageobjectutil.cpp @@ -164,10 +164,10 @@ QString TStageObjectValues::getStringForHistory() { channelStr = QObject::tr("Edit Rotation"); break; case TStageObject::T_X: - channelStr = QObject::tr("Move E/W"); + channelStr = QObject::tr("Move X"); break; case TStageObject::T_Y: - channelStr = QObject::tr("Move N/S"); + channelStr = QObject::tr("Move Y"); break; case TStageObject::T_Z: channelStr = QObject::tr("Move Z"); diff --git a/toonz/sources/toonzlib/tstageobject.cpp b/toonz/sources/toonzlib/tstageobject.cpp index 6f0d6e1..dd7288f 100644 --- a/toonz/sources/toonzlib/tstageobject.cpp +++ b/toonz/sources/toonzlib/tstageobject.cpp @@ -385,11 +385,11 @@ TStageObject::TStageObject(TStageObjectTree *tree, TStageObjectId id) , m_ikflag(0) , m_groupSelector(-1) { // NOTA: per le unita' di misura controlla anche tooloptions.cpp - m_x->setName("W_EW"); + m_x->setName("W_X"); m_x->setMeasureName("length.x"); m_x->addObserver(this); - m_y->setName("W_NS"); + m_y->setName("W_Y"); m_y->setMeasureName("length.y"); m_y->addObserver(this); diff --git a/toonz/sources/toonzlib/txsheetexpr.cpp b/toonz/sources/toonzlib/txsheetexpr.cpp index fd904d0..c4a5030 100644 --- a/toonz/sources/toonzlib/txsheetexpr.cpp +++ b/toonz/sources/toonzlib/txsheetexpr.cpp @@ -193,9 +193,9 @@ public: TStageObject::Channel matchChannelName(const Token &token) const { std::string s = toLower(token.getText()); - if (s == "ns") + if (s == "y" || s == "ns") return TStageObject::T_Y; - else if (s == "ew") + else if (s == "x" || s == "ew") return TStageObject::T_X; else if (s == "rot" || s == "ang" || s == "angle") return TStageObject::T_Angle; diff --git a/toonz/sources/toonzqt/cleanupcamerasettingswidget.cpp b/toonz/sources/toonzqt/cleanupcamerasettingswidget.cpp index 9c6cd4f..41ee0d6 100644 --- a/toonz/sources/toonzqt/cleanupcamerasettingswidget.cpp +++ b/toonz/sources/toonzqt/cleanupcamerasettingswidget.cpp @@ -54,10 +54,10 @@ CleanupCameraSettingsWidget::CleanupCameraSettingsWidget() { offsetLay->setVerticalSpacing(3); offsetLay->setMargin(3); { - offsetLay->addWidget(new QLabel(tr("N/S")), 0, 0); + offsetLay->addWidget(new QLabel(tr("Y")), 0, 0); offsetLay->addWidget(m_offsY, 0, 1); offsetLay->addWidget(m_offsy_lock, 0, 2); - offsetLay->addWidget(new QLabel(tr("E/W")), 1, 0); + offsetLay->addWidget(new QLabel(tr("X")), 1, 0); offsetLay->addWidget(m_offsX, 1, 1); offsetLay->addWidget(m_offsx_lock, 1, 2); } diff --git a/toonz/sources/toonzqt/functiontreeviewer.cpp b/toonz/sources/toonzqt/functiontreeviewer.cpp index 3a9aae3..1ce6d11 100644 --- a/toonz/sources/toonzqt/functiontreeviewer.cpp +++ b/toonz/sources/toonzqt/functiontreeviewer.cpp @@ -637,10 +637,10 @@ QString FunctionTreeModel::Channel::getExprRefName() const { StageObjectChannelGroup *stageGroup = dynamic_cast(m_group); if (stageGroup) { - if (tmpName == "N/S") - tmpName = "ns"; - else if (tmpName == "E/W") - tmpName = "ew"; + if (tmpName == "Y") + tmpName = "y"; + else if (tmpName == "X") + tmpName = "x"; else if (tmpName == "Z") tmpName = "z"; else if (tmpName == "Rotation") diff --git a/toonz/sources/translations/chinese/tnztools.ts b/toonz/sources/translations/chinese/tnztools.ts index 64eca38..4c1edec 100644 --- a/toonz/sources/translations/chinese/tnztools.ts +++ b/toonz/sources/translations/chinese/tnztools.ts @@ -12,11 +12,11 @@ 位置 - E/W: + X: 左右: - N/S: + Y: 上下: @@ -294,19 +294,19 @@ 全局关键帧 - Lock Center E/W + Lock Center X 锁定中心点(左右) - Lock Center N/S + Lock Center Y 锁定中心点(上下) - Lock Position E/W + Lock Position X 锁定位置(左右) - Lock Position N/S + Lock Position Y 锁定位置(上下) @@ -334,7 +334,7 @@ 锁定缩放(全局) - E/W and N/S Positions + X and Y Positions 左右和上下位置 @@ -1379,11 +1379,11 @@ Do you want to proceed? 旋转 - E/W: + X: 左右: - N/S: + Y: 上下: diff --git a/toonz/sources/translations/chinese/toonzlib.ts b/toonz/sources/translations/chinese/toonzlib.ts index c306d6e..d0f0a08 100644 --- a/toonz/sources/translations/chinese/toonzlib.ts +++ b/toonz/sources/translations/chinese/toonzlib.ts @@ -451,11 +451,11 @@ 编辑旋转 - Move E/W + Move X 左右移动 - Move N/S + Move Y 上下移动 diff --git a/toonz/sources/translations/chinese/toonzqt.ts b/toonz/sources/translations/chinese/toonzqt.ts index f4cb8fa..a6400e4 100644 --- a/toonz/sources/translations/chinese/toonzqt.ts +++ b/toonz/sources/translations/chinese/toonzqt.ts @@ -210,11 +210,11 @@ Possibly the preset file has been corrupted 最靠近的: - E/W: + X: 左右: - N/S: + Y: 上下: @@ -246,11 +246,11 @@ Possibly the preset file has been corrupted 结果层级信息 - N/S + Y 上下 - E/W + X 左右 diff --git a/toonz/sources/translations/czech/tnztools.ts b/toonz/sources/translations/czech/tnztools.ts index 37c7287..49531f4 100644 --- a/toonz/sources/translations/czech/tnztools.ts +++ b/toonz/sources/translations/czech/tnztools.ts @@ -16,13 +16,13 @@ - E/W: + X: V/Z: - N/S: + Y: S/J: @@ -298,22 +298,22 @@ - Lock Center E/W + Lock Center X Uzmknout střed [X] - Lock Center N/S + Lock Center Y Uzmknout střed [Y] - Lock Position E/W + Lock Position X Uzmknout polohu [X] - Lock Position N/S + Lock Position Y Uzmknout polohu [Y] @@ -348,7 +348,7 @@ - E/W and N/S Positions + X and Y Positions Polohy X a Y @@ -1607,12 +1607,12 @@ Chcete pokračovat? - E/W: + X: X: - N/S: + Y: Y: diff --git a/toonz/sources/translations/czech/toonzlib.ts b/toonz/sources/translations/czech/toonzlib.ts index a707255..98f2afb 100644 --- a/toonz/sources/translations/czech/toonzlib.ts +++ b/toonz/sources/translations/czech/toonzlib.ts @@ -383,12 +383,12 @@ Pravděpodobně kodek nemůže pracovat řádně. - Move E/W + Move X Posunout V/Z - Move N/S + Move Y Posunout S/J diff --git a/toonz/sources/translations/czech/toonzqt.ts b/toonz/sources/translations/czech/toonzqt.ts index 222d9e4..4aff86d 100644 --- a/toonz/sources/translations/czech/toonzqt.ts +++ b/toonz/sources/translations/czech/toonzqt.ts @@ -216,12 +216,12 @@ Možná byl soubor s přednastavením poškozen CleanupCameraSettingsWidget - N/S + Y S/J - E/W + X V/Z diff --git a/toonz/sources/translations/french/tnztools.ts b/toonz/sources/translations/french/tnztools.ts index d8f2f04..76743bf 100644 --- a/toonz/sources/translations/french/tnztools.ts +++ b/toonz/sources/translations/french/tnztools.ts @@ -12,12 +12,12 @@ Position - E/W: - E/O: + X: + X: - N/S: - N/S: + Y: + Y: Z: @@ -194,20 +194,20 @@ Clé Globale - Lock Center E/W - Verrouiller le Centre E/O + Lock Center X + Verrouiller le Centre X - Lock Center N/S - Verrouiller le Centre N/S + Lock Center Y + Verrouiller le Centre Y - Lock Position E/W - Verrouiller la Position E/O + Lock Position X + Verrouiller la Position X - Lock Position N/S - Verrouiller la Position N/S + Lock Position Y + Verrouiller la Position Y Lock Rotation @@ -234,8 +234,8 @@ Verrouiller l' Échelle Globale - E/W and N/S Positions - Positions E/O et N/S + X and Y Positions + Positions X et Y Z Position @@ -1276,12 +1276,12 @@ Voulez-vous continuer? Rotation - E/W: - E/O: + X: + X: - N/S: - N/S: + Y: + Y: Thickness diff --git a/toonz/sources/translations/french/toonzlib.ts b/toonz/sources/translations/french/toonzlib.ts index e46ff02..813b058 100644 --- a/toonz/sources/translations/french/toonzlib.ts +++ b/toonz/sources/translations/french/toonzlib.ts @@ -451,11 +451,11 @@ Probablement le codec peut ne pas fonctionner correctement. - Move E/W + Move X - Move N/S + Move Y diff --git a/toonz/sources/translations/french/toonzqt.ts b/toonz/sources/translations/french/toonzqt.ts index bb0997c..c4757ef 100644 --- a/toonz/sources/translations/french/toonzqt.ts +++ b/toonz/sources/translations/french/toonzqt.ts @@ -204,12 +204,12 @@ Possibly the preset file has been corrupted Closest: - E/W: + X: E/O: - N/S: - N/S: + Y: + Y: DPI: @@ -240,11 +240,11 @@ Possibly the preset file has been corrupted Informations de niveau résultant - N/S + Y - E/W + X diff --git a/toonz/sources/translations/german/tnztools.ts b/toonz/sources/translations/german/tnztools.ts index b8216a9..94932b7 100644 --- a/toonz/sources/translations/german/tnztools.ts +++ b/toonz/sources/translations/german/tnztools.ts @@ -12,12 +12,12 @@ Position - E/W: - E/W: + X: + X: - N/S: - N/S: + Y: + Y: Z: @@ -210,19 +210,19 @@ Globale Taste - Lock Center E/W + Lock Center X Mitte [X] sperren - Lock Center N/S + Lock Center Y Mitte [Y] sperren - Lock Position E/W + Lock Position X Position [X] sperren - Lock Position N/S + Lock Position Y Position [Y] sperren @@ -250,7 +250,7 @@ Globalen Maßstab sperren - E/W and N/S Positions + X and Y Positions X- und Y-Positionen @@ -1291,11 +1291,11 @@ Möchten Sie fortfahren? Rotation - E/W: + X: X: - N/S: + Y: Y: diff --git a/toonz/sources/translations/german/toonzlib.ts b/toonz/sources/translations/german/toonzlib.ts index 1dc66a6..2a1e27c 100644 --- a/toonz/sources/translations/german/toonzlib.ts +++ b/toonz/sources/translations/german/toonzlib.ts @@ -281,11 +281,11 @@ Wahrscheinlich funktioniert der Codec nicht korrekt. Rotation bearbeiten - Move E/W + Move X X verschieben - Move N/S + Move Y Y verschieben diff --git a/toonz/sources/translations/german/toonzqt.ts b/toonz/sources/translations/german/toonzqt.ts index 85618a3..4e189c2 100644 --- a/toonz/sources/translations/german/toonzqt.ts +++ b/toonz/sources/translations/german/toonzqt.ts @@ -207,11 +207,11 @@ Possibly the preset file has been corrupted Nächste Position: - E/W: + X: X: - N/S: + Y: Y: @@ -243,11 +243,11 @@ Possibly the preset file has been corrupted Fertige Ebenen-Information - N/S + Y - E/W + X diff --git a/toonz/sources/translations/italian/tnztools.ts b/toonz/sources/translations/italian/tnztools.ts index 458c9eb..0f46e06 100644 --- a/toonz/sources/translations/italian/tnztools.ts +++ b/toonz/sources/translations/italian/tnztools.ts @@ -12,12 +12,12 @@ Posizione - E/W: - E/O: + X: + X: - N/S: - N/S: + Y: + Y: Z: @@ -194,20 +194,20 @@ Chiave Globale - Lock Center E/W - Blocca il Centro E/O + Lock Center X + Blocca il Centro X - Lock Center N/S - Blocca il Centro N/S + Lock Center Y + Blocca il Centro Y - Lock Position E/W - Blocca la Posizione E/O + Lock Position X + Blocca la Posizione X - Lock Position N/S - Blocca la Posizione N/S + Lock Position Y + Blocca la Posizione Y Lock Rotation @@ -234,8 +234,8 @@ Blocca la Scalatura Globale - E/W and N/S Positions - Posizioni E/O e N/S + X and Y Positions + Posizioni X e Y Z Position @@ -1274,12 +1274,12 @@ Procedere? Rotazione - E/W: - E/O: + X: + X: - N/S: - N/S: + Y: + Y: Thickness diff --git a/toonz/sources/translations/italian/toonzlib.ts b/toonz/sources/translations/italian/toonzlib.ts index fa0436c..b0d0526 100644 --- a/toonz/sources/translations/italian/toonzlib.ts +++ b/toonz/sources/translations/italian/toonzlib.ts @@ -450,11 +450,11 @@ - Move E/W + Move X - Move N/S + Move Y diff --git a/toonz/sources/translations/italian/toonzqt.ts b/toonz/sources/translations/italian/toonzqt.ts index 770d229..76b5dcf 100644 --- a/toonz/sources/translations/italian/toonzqt.ts +++ b/toonz/sources/translations/italian/toonzqt.ts @@ -204,12 +204,12 @@ E' possibile che il file sia corrotto. Closest: - E/W: + X: E/O - N/S: - N/S + Y: + Y DPI: @@ -240,11 +240,11 @@ E' possibile che il file sia corrotto. Informazioni sul Livello - N/S + Y - E/W + X diff --git a/toonz/sources/translations/japanese/tnztools.ts b/toonz/sources/translations/japanese/tnztools.ts index 5d5f586..d32095f 100644 --- a/toonz/sources/translations/japanese/tnztools.ts +++ b/toonz/sources/translations/japanese/tnztools.ts @@ -12,12 +12,12 @@ 位置 - E/W: - E/W: + X: + X: - N/S: - N/S: + Y: + Y: Z: @@ -294,19 +294,19 @@ グローバルキー - Lock Center E/W + Lock Center X 基準点 [X] - Lock Center N/S + Lock Center Y 基準点[Y] - Lock Position E/W + Lock Position X 位置 [X] - Lock Position N/S + Lock Position Y 位置[Y] @@ -334,7 +334,7 @@ 拡大・縮小[全体] - E/W and N/S Positions + X and Y Positions X と Y の位置 @@ -1375,12 +1375,12 @@ Do you want to proceed? 回転 - E/W: - E/W: + X: + X: - N/S: - N/S: + Y: + Y: Thickness diff --git a/toonz/sources/translations/japanese/toonzlib.ts b/toonz/sources/translations/japanese/toonzlib.ts index d148586..b7d5457 100644 --- a/toonz/sources/translations/japanese/toonzlib.ts +++ b/toonz/sources/translations/japanese/toonzlib.ts @@ -281,11 +281,11 @@ 回転角を変更 - Move E/W + Move X 左右に移動 - Move N/S + Move Y 上下に移動 diff --git a/toonz/sources/translations/japanese/toonzqt.ts b/toonz/sources/translations/japanese/toonzqt.ts index b3e671c..d95c600 100644 --- a/toonz/sources/translations/japanese/toonzqt.ts +++ b/toonz/sources/translations/japanese/toonzqt.ts @@ -204,11 +204,11 @@ Possibly the preset file has been corrupted フィールドの最大拡大値: - E/W: + X: X: - N/S: + Y: Y: @@ -240,11 +240,11 @@ Possibly the preset file has been corrupted 完成レベルの情報 - N/S + Y Y - E/W + X X diff --git a/toonz/sources/translations/korean/tnztools.ts b/toonz/sources/translations/korean/tnztools.ts index 8e6924c..a5f27ce 100644 --- a/toonz/sources/translations/korean/tnztools.ts +++ b/toonz/sources/translations/korean/tnztools.ts @@ -12,11 +12,11 @@ 이동: - E/W: + X: - N/S: + Y: @@ -262,19 +262,19 @@ 글로벌 키 - Lock Center E/W + Lock Center X 중심점 좌우 잠금 - Lock Center N/S + Lock Center Y 중심점 위아래 잠금 - Lock Position E/W + Lock Position X 위치 좌우 잠금 - Lock Position N/S + Lock Position Y 위치 위아래 잠금 @@ -302,7 +302,7 @@ 잠금 확대/축소(전체) - E/W and N/S Positions + X and Y Positions 좌우/상하 위치 @@ -1307,11 +1307,11 @@ Do you want to proceed? 회전 - E/W: + X: - N/S: + Y: diff --git a/toonz/sources/translations/korean/toonzlib.ts b/toonz/sources/translations/korean/toonzlib.ts index 6e2639f..d05d3b7 100644 --- a/toonz/sources/translations/korean/toonzlib.ts +++ b/toonz/sources/translations/korean/toonzlib.ts @@ -475,12 +475,12 @@ 회전 편집 - Move E/W - E/W 이동 + Move X + X 이동 - Move N/S - N/S 이동 + Move Y + Y 이동 Move Z diff --git a/toonz/sources/translations/korean/toonzqt.ts b/toonz/sources/translations/korean/toonzqt.ts index bf744ba..0bb1973 100644 --- a/toonz/sources/translations/korean/toonzqt.ts +++ b/toonz/sources/translations/korean/toonzqt.ts @@ -172,11 +172,11 @@ Possibly the preset file has been corrupted CleanupCameraSettingsWidget - N/S + Y - E/W + X diff --git a/toonz/sources/translations/russian/tnztools.ts b/toonz/sources/translations/russian/tnztools.ts index 10ec525..d8aec17 100644 --- a/toonz/sources/translations/russian/tnztools.ts +++ b/toonz/sources/translations/russian/tnztools.ts @@ -6,16 +6,16 @@ - E/W: + X: запад/восток - E/W: + X: - N/S: + Y: север/юг - N/S: + Y: @@ -339,23 +339,23 @@ - Lock Center E/W - Блокировать центр E/W + Lock Center X + Блокировать центр X - Lock Center N/S - Блокировать центр N/S + Lock Center Y + Блокировать центр Y - Lock Position E/W - Блокировать положение E/W + Lock Position X + Блокировать положение X - Lock Position N/S - Блокировать положение N/S + Lock Position Y + Блокировать положение Y @@ -389,8 +389,8 @@ - E/W and N/S Positions - E/W и N/S положение + X and Y Positions + X и Y положение @@ -1655,13 +1655,13 @@ Do you want to proceed? - E/W: - E/W: + X: + X: - N/S: - N/S: + Y: + Y: diff --git a/toonz/sources/translations/russian/toonzlib.ts b/toonz/sources/translations/russian/toonzlib.ts index d9d5f07..d9cd3cb 100644 --- a/toonz/sources/translations/russian/toonzlib.ts +++ b/toonz/sources/translations/russian/toonzlib.ts @@ -551,13 +551,13 @@ - Move E/W - Перемещение E/W + Move X + Перемещение X - Move N/S - Перемещение N/S + Move Y + Перемещение Y diff --git a/toonz/sources/translations/russian/toonzqt.ts b/toonz/sources/translations/russian/toonzqt.ts index fd73daa..9daba41 100644 --- a/toonz/sources/translations/russian/toonzqt.ts +++ b/toonz/sources/translations/russian/toonzqt.ts @@ -216,12 +216,12 @@ Possibly the preset file has been corrupted CleanupCameraSettingsWidget - N/S + Y Y - E/W + X X diff --git a/toonz/sources/translations/spanish/tnztools.ts b/toonz/sources/translations/spanish/tnztools.ts index 5058966..5f3a2dd 100644 --- a/toonz/sources/translations/spanish/tnztools.ts +++ b/toonz/sources/translations/spanish/tnztools.ts @@ -12,11 +12,11 @@ Posición - E/W: + X: X: - N/S: + Y: Y: @@ -294,19 +294,19 @@ Clave global - Lock Center E/W + Lock Center X Bloquear centro X - Lock Center N/S + Lock Center Y Bloquear centro Y - Lock Position E/W + Lock Position X Bloquear posición X - Lock Position N/S + Lock Position Y Bloquear posición Y @@ -334,7 +334,7 @@ Bloquear escala global - E/W and N/S Positions + X and Y Positions Posiciones X e Y @@ -1375,11 +1375,11 @@ Do you want to proceed? Rotación - E/W: + X: X: - N/S: + Y: Y: diff --git a/toonz/sources/translations/spanish/toonzlib.ts b/toonz/sources/translations/spanish/toonzlib.ts index 8d30f30..47ab38f 100644 --- a/toonz/sources/translations/spanish/toonzlib.ts +++ b/toonz/sources/translations/spanish/toonzlib.ts @@ -281,11 +281,11 @@ Editar rotación - Move E/W + Move X Mover en X - Move N/S + Move Y Mover en Y diff --git a/toonz/sources/translations/spanish/toonzqt.ts b/toonz/sources/translations/spanish/toonzqt.ts index e1d0b3d..5ed177c 100644 --- a/toonz/sources/translations/spanish/toonzqt.ts +++ b/toonz/sources/translations/spanish/toonzqt.ts @@ -204,11 +204,11 @@ Es posible que el archivo de dicho ajuste se encuentre corrupto. Más cercano: - E/W: + X: X: - N/S: + Y: Y: @@ -240,11 +240,11 @@ Es posible que el archivo de dicho ajuste se encuentre corrupto. Información del nivel - N/S + Y Y - E/W + X X diff --git a/toonz/sources/translations_docs/english/MotionBlurIno.tex b/toonz/sources/translations_docs/english/MotionBlurIno.tex index ac13633..7cf0dd9 100644 --- a/toonz/sources/translations_docs/english/MotionBlurIno.tex +++ b/toonz/sources/translations_docs/english/MotionBlurIno.tex @@ -37,7 +37,7 @@ Use the X1,Y1,X2,Y2 parameters to specify movement in a fixed direction and\par magnitude.\\ \par \noindent \ \ \, Motion\par -It will take into account the object movements along the E/W and N/S channels,\par +It will take into account the object movements along the X and Y channels,\par on a frame-by-frame basis.\par The X1,Y1,X2,Y2 parameters values will be ignored.\\ \\ diff --git a/toonz/sources/translations_docs/japanese/MotionBlurIno.tex b/toonz/sources/translations_docs/japanese/MotionBlurIno.tex index 383a48c..eb28676 100644 --- a/toonz/sources/translations_docs/japanese/MotionBlurIno.tex +++ b/toonz/sources/translations_docs/japanese/MotionBlurIno.tex @@ -38,7 +38,7 @@ Depend Move\par 固定した方向と大きさで移動を指定します。\\ \par \noindent \ \ \, Motion\par -Geometry の、E/W,H/S からフレーム毎に移動を指定します。\par +Geometry の、X,Y からフレーム毎に移動を指定します。\par X1,Y1,X2,Y2の指定値は無視します。\\ \\ X1\\