Fix Techdraw UI typo found via crowdin + misc. typos

Ref: https://crowdin.com/translate/freecad/27911/en-eu#6503377
This commit is contained in:
luzpaz
2017-11-26 08:01:19 -05:00
committed by wmayer
parent 0973dd5e7b
commit 56af703746
14 changed files with 17 additions and 17 deletions

View File

@@ -834,11 +834,11 @@ Version: V0.1B63 Date: Sun Jun 08 20:21:25 2003 +++++++++++++++++++++++++++++++
* drop down button completely new reimplemented
Version: V0.1B62 Date: Sat May 31 11:53:56 2003 +++++++++++++++++++++++++++++++
* redesign of Document view modell
* redesign of Document view model
* removing ViewContainer
* adding the OnHasMsg methodes
* switching some stdCommands to message stile to allow views with own document
* moving scintila to a passiv view modell
* moving scintila to a passive view model
* updated to new version of Scintilla (1.53)
Version: V0.1B61 Date: Sat May 24 17:35:52 2003 +++++++++++++++++++++++++++++++

View File

@@ -253,7 +253,7 @@ Py::List DocumentObjectPy::getOutListRecursive(void) const
try {
std::vector<DocumentObject*> list = getDocumentObjectPtr()->getOutListRecursive();
// creat the python list for the output
// create the python list for the output
for (std::vector<DocumentObject*>::iterator It = list.begin(); It != list.end(); ++It)
ret.append(Py::Object((*It)->getPyObject(), true));
}

View File

@@ -165,7 +165,7 @@ template<> void _class_::init(void){\
* extension, which works exactly like the normal FreeCAD python object workflow. There is nothing
* special at all for extension python objects, the normal xml + imp.cpp approach is used. It must
* only be taken care that the objects father is the correct extension base class. Of course also
* make sure your extension returns the correct python ojbect in its "getPyObject" call.
* make sure your extension returns the correct python object in its "getPyObject" call.
* Every method you create in the extensions python will be later added to an extended object. This
* happens automatically for both, c++ and python extension, if "getPyObject" returns the correct
* python object. No extra work needs to be done.

View File

@@ -92,7 +92,7 @@ namespace App {
* @endcode
*
* From python adding an extension is easier, it must be simply registered to a document object
* at object initialisation like done with proeprties. Note that the special python extension objects
* at object initialisation like done with properties. Note that the special python extension objects
* need to be added, not the c++ objects. Normally the only difference in name is the additional
* "Python" at the end of the extension name.
* @code{.py}

View File

@@ -114,7 +114,7 @@ public:
/** @name methods for group handling */
//@{
/// get a handle to a sub group or creat one
/// get a handle to a sub group or create one
Base::Reference<ParameterGrp> GetGroup(const char* Name);
/// get a vector of all sub groups in this group
std::vector<Base::Reference<ParameterGrp> > GetGroups(void);

View File

@@ -930,7 +930,7 @@ void Application::onUpdate(void)
std::map<const App::Document*, Gui::Document*>::iterator It;
for (It = d->documents.begin();It != d->documents.end();++It)
It->second->onUpdate();
// update all the independed views
// update all the independent views
for (std::list<Gui::BaseView*>::iterator It2 = d->passive.begin();It2 != d->passive.end();++It2)
(*It2)->onUpdate();
}

View File

@@ -518,10 +518,10 @@ void TaskView::showDialog(TaskDialog *dlg)
assert(!ActiveDialog);
assert(!ActiveCtrl);
// remove the TaskWatcher as long the Dialog is up
// remove the TaskWatcher as long as the Dialog is up
removeTaskWatcher();
// first creat the control element set it up and wire it:
// first create the control element, set it up and wire it:
ActiveCtrl = new TaskEditControl(this);
ActiveCtrl->buttonBox->setStandardButtons(dlg->getStandardButtons());
@@ -604,7 +604,7 @@ void TaskView::removeDialog(void)
void TaskView::updateWatcher(void)
{
// In case a child of the TaskView has the focus and get hidden we have
// to make sure that set the focus on a widget that won't be hidden or
// to make sure to set the focus on a widget that won't be hidden or
// deleted because otherwise Qt may forward the focus via focusNextPrevChild()
// to the mdi area which may switch to another mdi view which is not an
// acceptable behaviour.

View File

@@ -129,7 +129,7 @@ ViewProviderConstraint::ViewProviderConstraint() : m_selected(false)
{
Selectable.setValue(false);
//constraint entiti color
//constraint entity color
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/View");
unsigned long scol = hGrp->GetUnsigned("ConstructionColor", 56319UL);
float r, g, b;

View File

@@ -151,7 +151,7 @@ TaskPadParameters::TaskPadParameters(ViewProviderPad *PadView, QWidget *parent,
void TaskPadParameters::updateUI(int index)
{
// disable/hide evrything unless we are sure we don't need it
// disable/hide everything unless we are sure we don't need it
bool isLengthEditVisable = false;
bool isLengthEdit2Visable = false;
bool isOffsetEditVisable = false;

View File

@@ -141,7 +141,7 @@ TaskPocketParameters::TaskPocketParameters(ViewProviderPocket *PocketView,QWidge
void TaskPocketParameters::updateUI(int index)
{
// disable/hide evrything unless we are sure we don't need it
// disable/hide everything unless we are sure we don't need it
bool isLengthEditVisable = false;
bool isOffsetEditVisable = false;
bool isOffsetEditEnabled = true;

View File

@@ -251,7 +251,7 @@ void ViewProvider::setBodyMode(bool bodymode) {
void ViewProvider::makeTemporaryVisible(bool onoff)
{
//make sure to not use the overridden versions, as they change proeprties
//make sure to not use the overridden versions, as they change properties
if (onoff) {
if (VisualTouched) {
updateVisual(static_cast<Part::Feature*>(getObject())->Shape.getValue());

View File

@@ -99,7 +99,7 @@ class DlgJobCreate:
class CommandJobCreate:
'''
Command used to creat a command.
Command used to create a command.
When activated the command opens a dialog allowing the user to select a base object (has to be a solid)
and a template to be used for the initial creation.
'''

View File

@@ -217,7 +217,7 @@ class TaskPanel:
None))
def fillStyles(self):
"""Fill the style combo boxes with the availabel ones."""
"""Fill the style combo boxes with the available ones."""
mw = self.getMainWindow()
form = mw.findChild(QtGui.QWidget, "TaskPanel")
form.style = self.widget(QtGui.QComboBox, "lineStyle")

View File

@@ -366,7 +366,7 @@
</item>
<item>
<property name="text">
<string>Sollid</string>
<string>Solid</string>
</property>
</item>
<item>