Mark tooltip strings for translation. Tools Rotation, Flipping by line and

Flipping by axis.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-09-17 19:18:27 +03:00
parent 255db32720
commit d556508265
3 changed files with 7 additions and 7 deletions

View File

@ -173,7 +173,7 @@ void DialogFlippingByAxis::ShowDialog(bool click)
scene->ToggleSplineHover(false); scene->ToggleSplineHover(false);
scene->ToggleSplinePathHover(false); scene->ToggleSplinePathHover(false);
emit ToolTip("Select origin point"); emit ToolTip(tr("Select origin point"));
} }
else if (not stage1 && prepare && click) else if (not stage1 && prepare && click)
{ {
@ -192,7 +192,7 @@ void DialogFlippingByAxis::ChosenObject(quint32 id, const SceneObject &type)
{ {
if (objects.contains(id)) if (objects.contains(id))
{ {
emit ToolTip("Select origin point that is not part of the list of objects"); emit ToolTip(tr("Select origin point that is not part of the list of objects"));
return; return;
} }

View File

@ -172,7 +172,7 @@ void DialogFlippingByLine::ShowDialog(bool click)
scene->ToggleSplineHover(false); scene->ToggleSplineHover(false);
scene->ToggleSplinePathHover(false); scene->ToggleSplinePathHover(false);
emit ToolTip("Select first line point"); emit ToolTip(tr("Select first line point"));
} }
else if (not stage1 && prepare && click) else if (not stage1 && prepare && click)
{ {
@ -194,7 +194,7 @@ void DialogFlippingByLine::ChosenObject(quint32 id, const SceneObject &type)
case 0: case 0:
if (objects.contains(id)) if (objects.contains(id))
{ {
emit ToolTip("Select first line point that is not part of the list of objects"); emit ToolTip(tr("Select first line point that is not part of the list of objects"));
return; return;
} }
@ -210,7 +210,7 @@ void DialogFlippingByLine::ChosenObject(quint32 id, const SceneObject &type)
case 1: case 1:
if (objects.contains(id)) if (objects.contains(id))
{ {
emit ToolTip("Select second line point that is not part of the list of objects"); emit ToolTip(tr("Select second line point that is not part of the list of objects"));
return; return;
} }

View File

@ -197,7 +197,7 @@ void DialogRotation::ShowDialog(bool click)
scene->ToggleSplineHover(false); scene->ToggleSplineHover(false);
scene->ToggleSplinePathHover(false); scene->ToggleSplinePathHover(false);
emit ToolTip("Select origin point"); emit ToolTip(tr("Select origin point"));
} }
else if (not stage1 && prepare && click) else if (not stage1 && prepare && click)
{ {
@ -234,7 +234,7 @@ void DialogRotation::ChosenObject(quint32 id, const SceneObject &type)
{ {
if (objects.contains(id)) if (objects.contains(id))
{ {
emit ToolTip("Select origin point that is not part of the list of objects"); emit ToolTip(tr("Select origin point that is not part of the list of objects"));
return; return;
} }