summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2019-01-14 12:32:38 +0000
committerluz.paz <luzpaz@users.noreply.github.com>2019-01-14 12:32:38 +0000
commitc74cd14f7ec7a98ec1319539faac2fce06f8655c (patch)
treefcaad78e89d45ee7c1ba5304c8a5fe9129775fab
parentMerge !482 (diff)
downloadinkscape-c74cd14f7ec7a98ec1319539faac2fce06f8655c.tar.gz
inkscape-c74cd14f7ec7a98ec1319539faac2fce06f8655c.zip
Misc. typo and whitespace fixes
Found via `codespell` and `atom editor`
Diffstat (limited to '')
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--src/actions/actions-output.cpp2
-rw-r--r--src/live_effects/lpe-envelope.cpp2
-rw-r--r--src/live_effects/lpe-perspective-envelope.cpp2
-rw-r--r--src/live_effects/lpe-perspective-envelope.h2
-rw-r--r--src/ui/dialog/cssdialog.cpp2
-rw-r--r--src/ui/tool/multi-path-manipulator.cpp4
-rw-r--r--src/ui/view/README2
-rw-r--r--src/widgets/toolbox.cpp4
9 files changed, 11 insertions, 11 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f6489187d..dd57d9456 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -207,7 +207,7 @@ translations:
git diff POTFILES.in;
echo "New translatable strings in source files found.";
echo "Please add the paths to POTFILES.in so they can be translated";
- echo "(or add them to POTFILES.skip to exlude them from translations).";
+ echo "(or add them to POTFILES.skip to exclude them from translations).";
exit 1;
fi'
- rm POTFILES.in.1 POTFILES.in.2
diff --git a/src/actions/actions-output.cpp b/src/actions/actions-output.cpp
index 1d6946553..f10781890 100644
--- a/src/actions/actions-output.cpp
+++ b/src/actions/actions-output.cpp
@@ -18,7 +18,7 @@
#include "inkscape.h" // Inkscape::Application
-// Actions for command line output (should be intergrated with file dialog).
+// Actions for command line output (should be integrated with file dialog).
// These actions are currently stateless and result in changes to an instance of the
// InkFileExportCmd class owned by the application.
diff --git a/src/live_effects/lpe-envelope.cpp b/src/live_effects/lpe-envelope.cpp
index 6b94352b1..968714cf7 100644
--- a/src/live_effects/lpe-envelope.cpp
+++ b/src/live_effects/lpe-envelope.cpp
@@ -66,7 +66,7 @@ LPEEnvelope::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd
/*
The code below is inspired from the Bend Path code developed by jfb and mgsloan
- Please, read it before tring to understand this one
+ Please, read it before trying to understand this one
*/
Piecewise<D2<SBasis> > uskeleton1 = arc_length_parametrization(bend_path1.get_pwd2(),2,.1);
diff --git a/src/live_effects/lpe-perspective-envelope.cpp b/src/live_effects/lpe-perspective-envelope.cpp
index 541055bdb..39db3d8c6 100644
--- a/src/live_effects/lpe-perspective-envelope.cpp
+++ b/src/live_effects/lpe-perspective-envelope.cpp
@@ -6,7 +6,7 @@
/*
* Authors:
* Jabiertxof Code migration from python extensions envelope and perspective
- * Aaron Spike, aaron@ekips.org from envelope and perspective phyton code
+ * Aaron Spike, aaron@ekips.org from envelope and perspective python code
* Dmitry Platonov, shadowjack@mail.ru, 2006 perspective approach & math
* Jose Hevia (freon) Transform algorithm from envelope
*
diff --git a/src/live_effects/lpe-perspective-envelope.h b/src/live_effects/lpe-perspective-envelope.h
index f042e3d67..5c00cded2 100644
--- a/src/live_effects/lpe-perspective-envelope.h
+++ b/src/live_effects/lpe-perspective-envelope.h
@@ -9,7 +9,7 @@
/*
* Authors:
* Jabiertxof Code migration from python extensions envelope and perspective
- * Aaron Spike, aaron@ekips.org from envelope and perspective phyton code
+ * Aaron Spike, aaron@ekips.org from envelope and perspective python code
* Dmitry Platonov, shadowjack@mail.ru, 2006 perspective approach & math
* Jose Hevia (freon) Transform algorithm from envelope
*
diff --git a/src/ui/dialog/cssdialog.cpp b/src/ui/dialog/cssdialog.cpp
index 9b68c207c..3ad621f06 100644
--- a/src/ui/dialog/cssdialog.cpp
+++ b/src/ui/dialog/cssdialog.cpp
@@ -153,7 +153,7 @@ void CssDialog::css_reset_context(gint css)
const gchar *name = g_quark_to_string(css);
_message_context->setF(
Inkscape::NORMAL_MESSAGE,
- _("Propery <b>%s</b> selected. Press <b>Ctrl+Enter</b> when done editing to commit changes."), name);
+ _("Property <b>%s</b> selected. Press <b>Ctrl+Enter</b> when done editing to commit changes."), name);
}
}
diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp
index 08114ac03..90662237e 100644
--- a/src/ui/tool/multi-path-manipulator.cpp
+++ b/src/ui/tool/multi-path-manipulator.cpp
@@ -483,7 +483,7 @@ void MultiPathManipulator::distributeNodes(Geom::Dim2 d)
if (_selection.empty()) return;
_selection.distribute(d);
if (d == Geom::X) {
- _done("Distrubute nodes horizontally");
+ _done("Distribute nodes horizontally");
} else {
_done("Distribute nodes vertically");
}
@@ -827,7 +827,7 @@ void MultiPathManipulator::_commit(CommitEvent cps)
break;
default: return;
}
-
+
_selection.signal_update.emit();
invokeForAll(&PathManipulator::writeXML);
if (key) {
diff --git a/src/ui/view/README b/src/ui/view/README
index a2091cb2f..9316f8bc3 100644
--- a/src/ui/view/README
+++ b/src/ui/view/README
@@ -33,7 +33,7 @@ SPDesktopWidget:
SVGViewWidget:
- Used many places as a convienient way to show an SVG (file dialog, Inkview).
+ Used many places as a convenient way to show an SVG (file dialog, Inkview).
Derived, rather uselessly, from Gtk::Scrollbar.
It no longer is dependent on View (and really doesn't belong here anymore).
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 3e93d70b3..ffc829789 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -759,7 +759,7 @@ EgeAdjustmentAction * create_adjustment_action( gchar const *name,
if (unit_tracker) {
unit_tracker->addAdjustment(adj);
- }
+ }
// Using a cast just to make sure we pass in the right kind of function pointer
g_object_set( G_OBJECT(act), "tool-post", static_cast<EgeWidgetFixup>(sp_set_font_size_smaller), NULL );
@@ -977,7 +977,7 @@ void update_tool_toolbox( SPDesktop *desktop, ToolBase *eventcontext, GtkWidget
}
/**
- * \brief Generate the auxilliary toolbox
+ * \brief Generate the auxiliary toolbox
*
* \details This is the one that appears below the main menu, and contains
* tool-specific toolbars. Each toolbar is created here, using