From 6babde5845b23844f4f032341eb87f027fefea69 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 1 Jan 2023 09:06:57 -0500 Subject: [PATCH] Crowdin: fix string in `Arch/ArchStairs.py` Props to david69 in https://crowdin.com/translate/freecad/6766/en-fr#6605247:drl:44875:david69 --- src/Mod/Arch/ArchStairs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchStairs.py b/src/Mod/Arch/ArchStairs.py index 22311a06ef..4db3b35b7b 100644 --- a/src/Mod/Arch/ArchStairs.py +++ b/src/Mod/Arch/ArchStairs.py @@ -413,7 +413,7 @@ class _Stairs(ArchComponent.Component): if not "UpSlabThickness" in pl: obj.addProperty("App::PropertyLength","UpSlabThickness","Structure",QT_TRANSLATE_NOOP("App::Property","The thickness of the upper floor slab")) if not "ConnectionDownStartStairs" in pl: - obj.addProperty("App::PropertyEnumeration","ConnectionDownStartStairs","Structure",QT_TRANSLATE_NOOP("App::Property","The type of connection between the lower slab and the start of the stairs")) + obj.addProperty("App::PropertyEnumeration","ConnectionDownStartStairs","Structure",QT_TRANSLATE_NOOP("App::Property","The type of connection between the lower floor slab and the start of the stairs")) obj.ConnectionDownStartStairs = ["HorizontalCut","VerticalCut","HorizontalVerticalCut"] if not "ConnectionEndStairsUp" in pl: obj.addProperty("App::PropertyEnumeration","ConnectionEndStairsUp","Structure",QT_TRANSLATE_NOOP("App::Property","The type of connection between the end of the stairs and the upper floor slab"))