LibreCAD / LibreCAD

LibreCAD is a cross-platform 2D CAD program written in C++17. It can read DXF/DWG files and can write DXF/PDF/SVG files. It supports point/line/circle/ellipse/parabola/spline primitives. The user interface is highly customizable, and has dozens of translations.

Home Page:http://librecad.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LC_ActionLayersExport: Mark messages for translation

thep opened this issue · comments

In librecad/src/actions/lc_actionlayersexport.cpp, a translated message in LC_ActionLayersExport::trigger(), "No %1 layers found", acquires the argument for the %1 placeholder from untranslated strings:

        QString exportModeString = (exportMode == SelectedMode) ? "selected" : "visible";

which should also be marked for translation.