diff --git a/src/Mod/Surface/Gui/Resources/translations/Surface.ts b/src/Mod/Surface/Gui/Resources/translations/Surface.ts new file mode 100644 index 0000000000..03b2d5b85d --- /dev/null +++ b/src/Mod/Surface/Gui/Resources/translations/Surface.ts @@ -0,0 +1,551 @@ + + + + + SurfaceGui::TaskFillingEdge + + + Edge Constraints + + + + + Constrains the surface to pass through the selected edges + + + + + Non-Boundary Edges + + + + + Add Edge + + + + + Remove Edge + + + + + Faces + + + + + Continuity + + + + + Accept + + + + + Ignore + + + + + SurfaceGui::TaskFilling + + + Boundaries + + + + + Support Surface + + + + + Edges that will limit the surface + + + + + Boundary Edges + + + + + Add Edge + + + + + Remove Edge + + + + + + Drag the items to reorder the list + + + + + Faces + + + + + Continuity + + + + + Accept + + + + + Ignore + + + + + SurfaceGui::Sections + + + + Sectional Edges + + + + + Constrains the surface to follow the selected sectional edges + + + + + Add Edge + + + + + Remove Edge + + + + + <html><head/><body><p>List can be reordered by dragging</p></body></html> + + + + + SurfaceGui::GeomFillSurface + + + Filling + + + + + Fill Type + + + + + Stretch + + + + + Coons + + + + + Curved + + + + + Add Edge + + + + + Remove Edge + + + + + Remove + + + + + Flip orientation + + + + + Too many edges + + + + + + The tool requires two, three or four edges + + + + + Too less edges + + + + + Invalid object + + + + + SurfaceGui::TaskFillingVertex + + + Vertex Constraints + + + + + Constrains the surface to pass through the selected vertices + + + + + Non-Boundary Vertices + + + + + Add Vertex + + + + + Remove Vertex + + + + + SurfaceGui::BlendCurve + + + Blend Curve + + + + + Start Edge + + + + + + Edge + + + + + + Continuity + + + + + + Parameter + + + + + + Size + + + + + End Edge + + + + + SurfaceGui::FillingVertexPanel + + + Remove + + + + + CmdSurfaceCut + + + Surface + + + + + Surface Cut + + + + + Cuts one shape using another + + + + + CmdSurfaceFilling + + + Surface + + + + + Filling + + + + + Creates a surface from a series of selected boundary edges. +Additionally, the surface may be constrained by edges and +vertices that are not on the boundary. + + + + + Command + + + + + Create surface + + + + + Blend Curve + + + + + Extend surface + + + + + Edit blending curve + + + + + CmdSurfaceGeomFillSurface + + + Surface + + + + + Fill Boundary Curves + + + + + Creates a surface from 2, 3, or 4 boundary edges + + + + + CmdSurfaceCurveOnMesh + + + Surface + + + + + Curve on Mesh + + + + + Creates an approximated curve on top of a mesh. +This command only works with a mesh object. + + + + + CmdBlendCurve + + + Surface + + + + + Blend Curve + + + + + Joins 2 edges with continuity + + + + + CmdSurfaceExtendFace + + + Surface + + + + + Extend Face + + + + + Extrapolates the selected face or surface at its boundaries with its local U and V parameters + + + + + Surface_ExtendFace + + + Wrong selection + + + + + Select a single face + + + + + CmdSurfaceSections + + + Surface + + + + + Sections + + + + + Creates a surface from a series of sectional edges + + + + + SurfaceGui::FillingEdgePanel + + + Remove + + + + + Invalid object + + + + + Edge has %n adjacent face(s) + + + + + + + None + + + + + Edge has no adjacent faces + + + + + QObject + + + + Edit Filling + + + + + Surface + + + + + Edit Sections + + + + + Edit %1 + + + + + SurfaceGui::FillingPanel + + + Remove + + + + + Invalid object + + + + + Edge has %n adjacent faces + + + + + + + None + + + + + Edge has no adjacent faces + + + + + SurfaceGui::SectionsPanel + + + Remove + + + + + Invalid object + + + + diff --git a/src/Tools/updatecrowdin.py b/src/Tools/updatecrowdin.py index 8eeadd359b..4895eca5ad 100755 --- a/src/Tools/updatecrowdin.py +++ b/src/Tools/updatecrowdin.py @@ -205,6 +205,11 @@ locations = [ "../Mod/Start/Gui/Resources/translations", "../Mod/Start/Gui/Resources/Start.qrc", ], + [ + "Surface", + "../Mod/Surface/Gui/Resources/translations", + "../Mod/Surface/Gui/Resources/Surface.qrc", + ], [ "Test", "../Mod/Test/Gui/Resources/translations", diff --git a/src/Tools/updatets.py b/src/Tools/updatets.py index bf2981dde9..b7bf047b50 100755 --- a/src/Tools/updatets.py +++ b/src/Tools/updatets.py @@ -141,6 +141,11 @@ directories = [ "workingdir": "./src/Mod/Start/", "tsdir": "Gui/Resources/translations", }, + { + "tsname": "Surface", + "workingdir": "./src/Mod/Surface/", + "tsdir": "Gui/Resources/translations", + }, { "tsname": "TechDraw", "workingdir": "./src/Mod/TechDraw/",