summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
committerluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
commit202e75590f8200823ef0efd36cc0edbd1bf1edcc (patch)
tree1a18f646f7e49b0e1836efd6401793f6e9c38d68 /share
parentRestore ability to switch mode while using spray tool (is this even useful?). (diff)
downloadinkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.tar.gz
inkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.zip
Misc. typos
Found via `codespell`
Diffstat (limited to 'share')
-rw-r--r--share/extensions/Barcode/Upce.py2
-rw-r--r--share/extensions/hpgl_encoder.py2
-rw-r--r--share/extensions/jessyInk.js2
-rwxr-xr-xshare/extensions/jessyInk_install.py2
-rwxr-xr-xshare/extensions/markers_strokepaint.py2
-rwxr-xr-xshare/extensions/nicechart.py2
-rwxr-xr-xshare/extensions/polyhedron_3d.py2
-rwxr-xr-xshare/extensions/printing_marks.py2
-rw-r--r--share/extensions/svg2fxg.xsl4
-rwxr-xr-xshare/extensions/synfig_output.py2
-rw-r--r--share/keys/macromedia-freehand-mx.xml2
-rw-r--r--share/tutorials/edge3d.svg2
12 files changed, 13 insertions, 13 deletions
diff --git a/share/extensions/Barcode/Upce.py b/share/extensions/Barcode/Upce.py
index 193d605a0..2ee9d8db2 100644
--- a/share/extensions/Barcode/Upce.py
+++ b/share/extensions/Barcode/Upce.py
@@ -61,7 +61,7 @@ class Upce(EanBarcode):
# There are 4 cases to convert:
if maker[2:] == '000' or maker[2:] == '100' or maker[2:] == '200':
- # Maxium number product code digits can be encoded
+ # Maximum number product code digits can be encoded
if product[:2] == '00':
return maker[:2] + product[2:] + maker[2]
elif maker[3:5] == '00':
diff --git a/share/extensions/hpgl_encoder.py b/share/extensions/hpgl_encoder.py
index 353b8aa0a..e8c7a6151 100644
--- a/share/extensions/hpgl_encoder.py
+++ b/share/extensions/hpgl_encoder.py
@@ -293,7 +293,7 @@ class hpglEncoder:
oldPosY = posY
def getLength(self, x1, y1, x2, y2, absolute=True):
- # calc absoulute or relative length between two points
+ # calc absolute or relative length between two points
length = math.sqrt((x2 - x1) ** 2.0 + (y2 - y1) ** 2.0)
if absolute:
length = math.fabs(length)
diff --git a/share/extensions/jessyInk.js b/share/extensions/jessyInk.js
index e4758899e..3ccf707d3 100644
--- a/share/extensions/jessyInk.js
+++ b/share/extensions/jessyInk.js
@@ -557,7 +557,7 @@ function jessyInkInit()
jessyInkInitialised = true;
}
-/** Function to subtitute the auto-texts.
+/** Function to substitute the auto-texts.
*
* @param node the node
* @param slideName name of the slide the node is on
diff --git a/share/extensions/jessyInk_install.py b/share/extensions/jessyInk_install.py
index f1e951ec6..5183cc14f 100755
--- a/share/extensions/jessyInk_install.py
+++ b/share/extensions/jessyInk_install.py
@@ -102,7 +102,7 @@ class JessyInk_Install(inkex.Effect):
for node in self.document.xpath("//*[@jessyink:masterSlide]", namespaces=inkex.NSS):
node.attrib["{" + inkex.NSS["jessyink"] + "}masterSlide"] = node.attrib["{" + inkex.NSS["jessyink"] + "}masterSlide"].replace("=", ":")
- # Udpate transitions.
+ # Update transitions.
for node in self.document.xpath("//*[@jessyInk_transitionIn]", namespaces=inkex.NSS):
node.attrib["{" + inkex.NSS["jessyink"] + "}transitionIn"] = node.attrib["jessyInk_transitionIn"]
del node.attrib["jessyInk_transitionIn"]
diff --git a/share/extensions/markers_strokepaint.py b/share/extensions/markers_strokepaint.py
index d922ef474..2d0d3e44b 100755
--- a/share/extensions/markers_strokepaint.py
+++ b/share/extensions/markers_strokepaint.py
@@ -67,7 +67,7 @@ class MyEffect(inkex.Effect):
self.OptionParser.add_option("--colortab",
action="store", type="string",
dest="colortab",
- help="The selected cutom color tab when OK was pressed")
+ help="The selected custom color tab when OK was pressed")
def effect(self):
defs = self.xpathSingle('/svg:svg//svg:defs')
diff --git a/share/extensions/nicechart.py b/share/extensions/nicechart.py
index d4a819ccc..3c46a6143 100755
--- a/share/extensions/nicechart.py
+++ b/share/extensions/nicechart.py
@@ -273,7 +273,7 @@ class NiceChart(inkex.Effect):
# Get access to main SVG document element and get its dimensions.
svg = self.document.getroot()
- # Get the page attibutes:
+ # Get the page attributes:
width = self.getUnittouu(svg.get('width'))
height = self.getUnittouu(svg.attrib['height'])
diff --git a/share/extensions/polyhedron_3d.py b/share/extensions/polyhedron_3d.py
index a74a64e69..4f8462782 100755
--- a/share/extensions/polyhedron_3d.py
+++ b/share/extensions/polyhedron_3d.py
@@ -219,7 +219,7 @@ def get_normal( pts, face): #returns the normal vector for the plane passing tho
def get_unit_normal(pts, face, cw_wound): #returns the unit normal for the plane passing through the first three points of face, taking account of winding
if cw_wound:
- winding = -1 #if it is clockwise wound, reverse the vecotr direction
+ winding = -1 #if it is clockwise wound, reverse the vector direction
else:
winding = 1 #else leave alone
diff --git a/share/extensions/printing_marks.py b/share/extensions/printing_marks.py
index 6c718da01..4f0158e8c 100755
--- a/share/extensions/printing_marks.py
+++ b/share/extensions/printing_marks.py
@@ -68,7 +68,7 @@ class Printing_Marks (inkex.Effect):
self.OptionParser.add_option("--unit",
action="store", type="string",
dest="unit", default="px",
- help="Draw measurment")
+ help="Draw measurement")
self.OptionParser.add_option("--crop_offset",
action="store", type="float",
dest="crop_offset", default=0,
diff --git a/share/extensions/svg2fxg.xsl b/share/extensions/svg2fxg.xsl
index d459dd123..fee5a858f 100644
--- a/share/extensions/svg2fxg.xsl
+++ b/share/extensions/svg2fxg.xsl
@@ -901,7 +901,7 @@ extension-element-prefixes="math">
<!--
// Use //
- Could be implemented via librairies
+ Could be implemented via libraries
(but since it is not supported by Inkscape, not implemented yet)
-->
<xsl:template mode="forward" match="*[name(.) = 'use']">
@@ -2257,7 +2257,7 @@ extension-element-prefixes="math">
* Generic fonts.
* Embedded fonts (in defs).
* Character rotation.
- * Character positionning (x and y).
+ * Character positioning (x and y).
* Text-anchor.
* Text stroke.
diff --git a/share/extensions/synfig_output.py b/share/extensions/synfig_output.py
index 06a9c6e72..a69981bc8 100755
--- a/share/extensions/synfig_output.py
+++ b/share/extensions/synfig_output.py
@@ -1000,7 +1000,7 @@ def path_to_bline_list(path_d, nodetypes=None, mtx=[[1.0, 0.0, 0.0], [0.0, 1.0,
def extract_style(node, style_attrib="style"):
#return simplestyle.parseStyle(node.get("style"))
- # Work around a simplestyle bug in older verions of Inkscape
+ # Work around a simplestyle bug in older versions of Inkscape
# that leaves spaces at the beginning and end of values
s = node.get(style_attrib)
if s is None:
diff --git a/share/keys/macromedia-freehand-mx.xml b/share/keys/macromedia-freehand-mx.xml
index 89069a217..54322fd85 100644
--- a/share/keys/macromedia-freehand-mx.xml
+++ b/share/keys/macromedia-freehand-mx.xml
@@ -38,7 +38,7 @@ File, Edit, View, Modify, Text, Xtras, Window, Help.
<!-- Freehand has separate tools for Ellipse and Arc unlike Inkscape. -->
<bind key="F3" modifiers="Shift" action="ToolArc" display="true"/>
- <!-- Star (Inkscape). Polygon (Freehand) inlcudes star options. -->
+ <!-- Star (Inkscape). Polygon (Freehand) includes star options. -->
<bind key="F8" modifiers="Shift" action="ToolStar" />
<!-- Freehand does not use a keybinding for the Spiral tool.
diff --git a/share/tutorials/edge3d.svg b/share/tutorials/edge3d.svg
index 2a712e944..14a060a5a 100644
--- a/share/tutorials/edge3d.svg
+++ b/share/tutorials/edge3d.svg
@@ -795,7 +795,7 @@ gC6QcSuT/PL/NVnEzfZJ6sAAAAAASUVORK5CYII=
id="rect9616" /></flowRegion><flowPara
id="flowPara9618">Sometimes the lighting may be reversed (see the eyes in step 4). When this happens you have to Path&gt;Reverse the parts of the path that are opposite to what you want, before applying the effect. If all the lighting is reversed you can just change the illumination angle.</flowPara><flowPara
id="flowPara9702" /><flowPara
- id="flowPara9704">In or outsetting or scaling a duplicate of your shape can generate a set of shadows/highlights you can recombine with your orignal shape for different effects.</flowPara><flowPara
+ id="flowPara9704">In or outsetting or scaling a duplicate of your shape can generate a set of shadows/highlights you can recombine with your original shape for different effects.</flowPara><flowPara
id="flowPara9656" /><flowPara
id="flowPara9658">If using many blurred paths slows down Inkscape too much, set the blur quality to minimum in Inkscape preferences, use outline mode, or move things to hidden layers.</flowPara><flowPara
id="flowPara9646" /><flowPara