Skip to content

Commit

Permalink
fixed a few small typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jreinhardt authored and wwmayer committed May 12, 2014
1 parent a96d5ba commit 2b28d41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Gui/DlgPropertyLink.cpp
Expand Up @@ -67,7 +67,7 @@ void DlgPropertyLink::accept()
{
QList<QListWidgetItem*> items = ui->listWidget->selectedItems();
if (items.isEmpty()) {
QMessageBox::warning(this, tr("No selection"), tr("Please select an object of the list"));
QMessageBox::warning(this, tr("No selection"), tr("Please select an object from the list"));
}
else {
QDialog::accept();
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Raytracing/Gui/Command.cpp
Expand Up @@ -131,7 +131,7 @@ void CmdRaytracingWriteCamera::activated(int iMsg)
float Dist = Cam->focalDistance.getValue();

QStringList filter;
filter << QObject::tr("Povray(*.pov)");
filter << QObject::tr("Povray (*.pov)");
filter << QObject::tr("All Files (*.*)");
QString fn = Gui::FileDialog::getSaveFileName(Gui::getMainWindow(), QObject::tr("Export page"), QString(), filter.join(QLatin1String(";;")));
if (fn.isEmpty())
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Sketcher/Gui/SketcherSettings.ui
Expand Up @@ -262,7 +262,7 @@
</size>
</property>
<property name="text">
<string>Constrain color</string>
<string>Constraint color</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit 2b28d41

Please sign in to comment.