summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-11-25 20:51:17 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-11-25 20:51:17 +0000
commit0bd9f7e209d522dbcebe0449a91397fdd9e38977 (patch)
tree834c7d02456658b57625ab68cc28f7854a5a85dc /doc
parentFix handling of x and y attributes of patterns (diff)
parentFix ruler redraw issue on GTK 2.22 (diff)
downloadinkscape-0bd9f7e209d522dbcebe0449a91397fdd9e38977.tar.gz
inkscape-0bd9f7e209d522dbcebe0449a91397fdd9e38977.zip
Merge from trunk
(bzr r9508.1.70)
Diffstat (limited to 'doc')
-rw-r--r--doc/keys-html.xsl208
-rw-r--r--doc/keys-svg.xsl1315
-rw-r--r--doc/keys.README29
-rw-r--r--doc/keys.de.xml1107
-rw-r--r--doc/keys.fr.xml1135
-rw-r--r--doc/keys.html299
-rw-r--r--doc/keys.xml1429
7 files changed, 152 insertions, 5370 deletions
diff --git a/doc/keys-html.xsl b/doc/keys-html.xsl
deleted file mode 100644
index 02dcb795d..000000000
--- a/doc/keys-html.xsl
+++ /dev/null
@@ -1,208 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<xsl:stylesheet
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
- xmlns="http://www.w3.org/1999/xhtml"
- xmlns:k="http://www.inkscape.org/namespaces/keys"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- exclude-result-prefixes="k #default inkscape sodipodi xlink"
->
-<xsl:output method="html" encoding="utf-8" indent="no" doctype-public="-//W3C//DTD HTML 4.0 Transitional//EN"/>
-
-<xsl:template match="k:root">
-<xsl:comment>
-Do not edit this file.
-It is generated automatically from doc/keys.xml by doc/keys-html.xsl.
-</xsl:comment>
-<html>
-<head>
-<title>Inkscape keys and mouse reference</title>
-<style type="text/css">
-.key {font-weight: bold}
-.action {}
-.note {padding-left: 10em; font-size: 70%}
-.contents {padding: 1em; padding-left: 5em; background-color: #eeeeee; font-size: small; line-height: 1.7em;}
-.contents-title {font-size: large; font-weight: bold; letter-spacing: 0.4em;}
-.contents-section {font-size: large; font-weight: bold;}
-.contents-group {font-size: small; }
-body {margin: 1em; background-color: #ffffff;}
-h1 {margin-top: 0.5em; padding-left: 2em; padding-bottom: 0em; margin-bottom: 0em; letter-spacing: -0.02em}
-h2 {margin-top: 0.0em; padding-left: 6em; padding-bottom: 0em; margin-bottom: 0em; font-size: small;}
-h4 {font-weight: bold; font-style: italic; margin-top: 1em; padding-left: 5em; padding-bottom: 0em; margin-bottom: 0em}
-</style>
-</head>
-<body>
-<h1><xsl:value-of select="/k:root/@title"/></h1>
-<h2>Version <xsl:value-of select="/k:root/@ver"/></h2>
-
-<xsl:apply-templates select="k:p"/>
-
-<p class="contents"><span class="contents-title">Contents:</span><xsl:text> </xsl:text>
-<xsl:for-each select="//k:section">
-<a class="contents-section" href="#{generate-id()}"><xsl:value-of select="./@title"/></a>
-<xsl:if test="./k:group[k:title]">
-<span class="contents-section">: </span>
-</xsl:if>
-<xsl:for-each select="./k:group[k:title]">
-<a class="contents-group" href="#{generate-id()}"><xsl:value-of select="./k:title"/></a>
-<xsl:if test="following-sibling::k:group[k:title]"><xsl:text>&#160;&#183; </xsl:text></xsl:if>
-</xsl:for-each>
-<span class="contents-section"><xsl:if test="following::k:section"><xsl:text>&#160;| </xsl:text></xsl:if></span>
-</xsl:for-each>
-</p>
-
-<center>
-<table border="0" cellspacing="0" cellpadding="4" width="100%">
-<xsl:apply-templates select="k:column"/>
-</table>
-</center>
-
- <p>
- <a href="http://validator.w3.org/check/referer"><img border="0"
- src="http://www.w3.org/Icons/valid-html40"
- alt="Valid HTML 4.0!" height="31" width="88" /></a>
- </p>
-
-</body>
-</html>
-</xsl:template>
-
-<xsl:template match="k:p">
-<p><xsl:apply-templates/></p>
-</xsl:template>
-
-<xsl:template match="k:a">
-<a href="{@href}"><xsl:apply-templates/></a>
-</xsl:template>
-
-<xsl:template match="k:root/text() | k:column/text()"/>
-
-<xsl:template match="k:column">
-<xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="k:section">
-<tr><td colspan="3"><a name="{generate-id()}"/><h1><xsl:value-of select="@title"/></h1></td></tr>
-<xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="k:group/k:title">
-<tr bgcolor="{ancestor::k:section/@color}"><td colspan="3"><h4><a name="{generate-id(..)}"/><xsl:value-of select="text()"/></h4></td></tr>
-</xsl:template>
-
-<xsl:template match="k:note">
-<tr bgcolor="{ancestor::k:section/@color}"><td colspan="3"><span class="note"><xsl:value-of select="text()"/></span></td></tr>
-</xsl:template>
-
-<xsl:template match="k:keys | k:mouse">
-<tr bgcolor="{ancestor::k:section/@color}">
-<td align="right" width="40%">
-<xsl:choose>
-<xsl:when test="count(k:key) = 2">
-<span class="key"><xsl:apply-templates select="k:key[1]"/></span>,
-<span class="key"><xsl:apply-templates select="k:key[2]"/></span>
-</xsl:when>
-<xsl:otherwise>
-<span class="key"><xsl:apply-templates select="k:key[1]"/></span>
-</xsl:otherwise>
-</xsl:choose>
-</td>
-<td>
-<span class="action">
-<xsl:apply-templates select="k:action"/>
-</span>
-</td>
-</tr>
-</xsl:template>
-
-<xsl:template match="k:action">
-<xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="k:key">
-<xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="k:shift">
-<xsl:text>Shift+</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:ctrl">
-<xsl:text>Ctrl+</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:alt">
-<xsl:text>Alt+</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:left">
-<xsl:text>Left </xsl:text>
-</xsl:template>
-
-<xsl:template match="k:right">
-<xsl:text>Right </xsl:text>
-</xsl:template>
-
-<xsl:template match="k:keyf | k:misc | k:misc-wide">
-<xsl:value-of select="@f"/>
-</xsl:template>
-
-<xsl:template match="k:arrows">
-<xsl:text>arrows</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:up">
-<xsl:text>Up arrow</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:down">
-<xsl:text>Down arrow</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:left-arrow">
-<xsl:text>Left arrow</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:right-arrow">
-<xsl:text>Right arrow</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:up-arrow">
-<xsl:text>Up arrow</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:down-arrow">
-<xsl:text>Down arrow</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:wheel">
-<xsl:text>mouse wheel</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:left-drag">
-<xsl:text>mouse drag</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:left-click">
-<xsl:text>click</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:mid-drag">
-<xsl:text>middle button drag</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:mid-click">
-<xsl:text>middle click</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:right-drag">
-<xsl:text>right button drag</xsl:text>
-</xsl:template>
-
-<xsl:template match="k:right-click">
-<xsl:text>right click</xsl:text>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/doc/keys-svg.xsl b/doc/keys-svg.xsl
deleted file mode 100644
index 688356666..000000000
--- a/doc/keys-svg.xsl
+++ /dev/null
@@ -1,1315 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<xsl:stylesheet
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:k="http://www.inkscape.org/namespaces/keys"
- xmlns:h="http://www.w3.org/1999/xhtml"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- exclude-result-prefixes="k"
->
-
-<xsl:output method="xml" encoding="utf-8" indent="no"/>
-
-<xsl:variable name="style-section" select="'fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;'"/>
-<xsl:variable name="space-section" select="28"/>
-<xsl:variable name="skip-section-title" select="21"/>
-<xsl:variable name="skip-section-content" select="25"/>
-
-<xsl:variable name="space-group" select="3"/>
-<xsl:variable name="skip-group-content" select="1.5"/>
-
-<xsl:variable name="style-title" select="'fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;'"/>
-<xsl:variable name="space-title" select="7"/>
-<xsl:variable name="skip-title-content" select="5"/>
-
-<xsl:variable name="space-keys" select="8"/>
-<xsl:variable name="skip-keys-content" select="1"/>
-<xsl:variable name="skip-keys-action" select="5"/> <!-- from keys-content -->
-
-<xsl:variable name="space-mouse" select="11.5"/>
-<xsl:variable name="skip-mouse-content" select="1.5"/>
-<xsl:variable name="skip-mouse-action" select="5"/> <!-- from mouse-content -->
-
-<xsl:variable name="style-note" select="'fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;'"/>
-<xsl:variable name="space-note" select="4"/>
-<xsl:variable name="skip-note-content" select="3"/>
-
-<xsl:variable name="style-letterkey" select="'fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;'"/>
-<xsl:variable name="style-keyf" select="'fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;'"/>
-<xsl:variable name="style-keymisc" select="'fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;'"/>
-<xsl:variable name="style-action" select="'fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;'"/>
-
-<xsl:variable name="section-width" select="215"/>
-<xsl:variable name="section-hskip" select="2"/>
-<xsl:variable name="note-hskip" select="6"/>
-
-<xsl:variable name="action-hskip" select="3"/>
-
-<xsl:variable name="w-shift" select="15.46"/>
-<xsl:variable name="w-ctrl" select="12.38"/>
-<xsl:variable name="w-alt" select="10.67"/>
-<xsl:variable name="w-left" select="8.7"/>
-<xsl:variable name="w-right" select="10.9"/>
-<xsl:variable name="w-letterkey" select="8.00"/>
-<xsl:variable name="w-misc-wide" select="17.46"/>
-<xsl:variable name="w-misc" select="12.38"/>
-<xsl:variable name="w-arrows" select="12.38"/>
-<xsl:variable name="w-mouse" select="7.0"/>
-
-<xsl:variable name="w-key" select="31"/>
-
-<xsl:template match="k:root">
-<xsl:comment>
-
-Do not edit this file.
-It is generated automatically from doc/keys.xml by doc/keys-svg.xsl.
-
-</xsl:comment>
-<svg
- version="1.0"
- x="0"
- y="0"
- width="744.094482"
- height="1052.36218"
- id="svg559"
- sodipodi:version="0.32"
- inkscape:version="0.37cvs"
- sodipodi:docname="keys-sample.svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- sodipodi:docbase="/home/d/ink/inkscape">
- <sodipodi:namedview
- id="base"
- inkscape:zoom="0.48"
- inkscape:cx="736"
- inkscape:cy="588"
- inkscape:window-width="780"
- inkscape:window-height="580"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showborder="false" />
- <defs
- id="defs561">
- <linearGradient
- id="linearGradient711">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0.00000000"
- id="stop712" />
- <stop
- style="stop-color:#868686;stop-opacity:1;"
- offset="1.00000000"
- id="stop713" />
- </linearGradient>
- <linearGradient
- id="linearGradient607">
- <stop
- style="stop-color:#cfcfcf;stop-opacity:1;"
- offset="0.000000"
- id="stop608" />
- <stop
- style="stop-color:#efefef;stop-opacity:1;"
- offset="1.000000"
- id="stop609" />
- </linearGradient>
- <linearGradient
- id="linearGradient565">
- <stop
- style="stop-color:#9d9d9f;stop-opacity:1;"
- offset="0.000000"
- id="stop566" />
- <stop
- style="stop-color:#e5e5e5;stop-opacity:1;"
- offset="1.000000"
- id="stop567" />
- </linearGradient>
- <radialGradient
- id="radialGradient568"
- xlink:href="#linearGradient711"
- cx="0.69677418"
- cy="0.30366492"
- r="0.87194777"
- fx="0.69677418"
- fy="0.30366492"
- spreadMethod="reflect" />
- <linearGradient
- id="linearGradient569"
- xlink:href="#linearGradient565"
- y2="-0.03731298"
- x2="0.72092992"
- y1="0.99253702"
- x1="-0.08527008"
- spreadMethod="pad"
- gradientUnits="objectBoundingBox" />
- <linearGradient
- id="linearGradient580"
- xlink:href="#linearGradient565"
- y2="0.00000002"
- x2="-0.04651194"
- y1="0.99253708"
- x1="-0.00775294"
- spreadMethod="pad"
- gradientUnits="objectBoundingBox" />
- <linearGradient
- xlink:href="#linearGradient565"
- id="linearGradient576" />
- <linearGradient
- xlink:href="#linearGradient607"
- id="linearGradient610"
- x1="0.11764701"
- y1="0.86885244"
- x2="0.78280514"
- y2="0.12295082"
- gradientUnits="objectBoundingBox"
- spreadMethod="pad" />
- <linearGradient
- xlink:href="#linearGradient565"
- id="linearGradient611"
- x1="0.10837435"
- y1="0.94531250"
- x2="0.76847297"
- y2="0.28125000"
- gradientUnits="objectBoundingBox"
- spreadMethod="pad" />
- <linearGradient
- xlink:href="#linearGradient607"
- id="linearGradient613"
- x1="0.23529346"
- y1="0.85156250"
- x2="0.82805431"
- y2="0.12499999"
- gradientUnits="objectBoundingBox"
- spreadMethod="pad" />
- <linearGradient
- xlink:href="#linearGradient565"
- id="linearGradient615"
- x1="0.10731713"
- y1="0.82031238"
- x2="0.87804890"
- y2="0.07812499"
- gradientUnits="objectBoundingBox"
- spreadMethod="pad" />
- <linearGradient
- xlink:href="#linearGradient607"
- id="linearGradient620" />
- </defs>
-
-<!-- Inkscape does not yet support svg:use of an object in defs, therefore we define the key graphics here (on the canvas at 0,0) -->
-<!-- They will be overlaid by the background rectangle of the first section -->
-
-<!-- mouse images -->
-
- <g
- id="left-click">
- <path
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- d="M 3.6677089 0.69866497 C 2.5111219 0.70247797 0.60176688 0.87400498 0.48616554 2.6404201 C 0.36648452 4.20794 0.58434883 5.5470015 1.1224739 6.7127964 C 1.6478125 7.8945497 2.3280327 8.770865 3.7101306 8.791406 C 3.7261892 8.791406 3.7366738 8.791641 3.7525494 8.791406 C 5.1346474 8.770865 5.8148662 7.8945497 6.3402062 6.7127964 C 6.8783313 5.5470015 7.0961985 4.20794 6.9765161 2.6404201 C 6.8609133 0.87400498 4.9515568 0.70247797 3.7949711 0.69866497 C 3.7582543 0.69854407 3.702741 0.69866497 3.6677089 0.69866497 z "
- id="path742"
- transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.137792;"
- d="M 4.9596784 0.75757138 L 4.9596784 4.5604601 "
- id="path741"
- transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 2.5836552 0.75683638 C 1.5807894 0.90294429 0.56647766 1.3378565 0.48232843 2.6236796 C 0.42599755 3.3614571 0.43206257 3.9104527 0.52347935 4.5527658 L 2.5836552 4.5527658 L 2.5836552 0.75683638 z "
- id="path740"
- transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.137792;"
- d="M 2.5571164 0.75757138 L 2.5571164 4.5604601 "
- id="path739"
- transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.137792;"
- d="M 0.52620977 4.5687418 L 6.9386881 4.5687418 "
- id="path738"
- transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="0.44536325"
- y="0.10000575"
- id="text743"
- sodipodi:linespacing="100%"
- transform="matrix(1.288158,0.000000,0.000000,1.288158,0.279045,1.170720)"><tspan
- x="0.44536325"
- y="0.10000575"
- sodipodi:role="line"
- id="tspan748">click</tspan></text>
- </g>
-
- <g
- id="left-drag"
- transform="translate(0.000000,1.125000e-6)">
- <path
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- d="M 4.2811092,3.6456834 C 3.5204235,3.6481912 2.2646447,3.7610042 2.1886133,4.9227722 C 2.1098991,5.9537272 2.2531880,6.8344255 2.6071123,7.6011667 C 2.9526262,8.3784037 3.4000056,8.9547546 4.3090093,8.9682645 C 4.3195716,8.9682645 4.3264664,8.9684190 4.3369079,8.9682645 C 5.2459115,8.9547546 5.6932901,8.3784037 6.0388055,7.6011667 C 6.3927298,6.8344255 6.5360202,5.9537272 6.4573052,4.9227722 C 6.3812739,3.7610042 5.1254936,3.6481912 4.3648094,3.6456834 C 4.3406607,3.6456039 4.3041493,3.6456834 4.2811092,3.6456834 z "
- id="path737" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0906254;"
- d="M 5.1308348,3.6844260 L 5.1308348,6.1855791"
- id="path736" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 3.5681284,3.6839426 C 2.9085453,3.7800375 2.2414340,4.0660784 2.1860899,4.9117621 C 2.1490409,5.3969969 2.1530295,5.7580703 2.2131543,6.1805185 L 3.5681284,6.1805185 L 3.5681284,3.6839426 z "
- id="path735" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0906254;"
- d="M 2.2149502,6.1910258 L 6.4324262,6.1910258"
- id="path733" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 0.87308887,0.18494458 C 1.9614707,0.76553855 2.1048185,1.7016907 2.2121750,2.6779119 C 2.6396563,2.5147384 2.5518759,2.6983745 2.9793570,2.5352012 C 3.0152194,1.1271410 2.9896720,0.37476438 2.2995828,-0.38186391 C 1.8611988,-0.016212694 1.4403488,0.10428085 0.87308887,0.18494458 z "
- id="path732"
- sodipodi:nodetypes="ccccc" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 1.5112588,2.4479293 L 4.3111764,2.3405949 L 2.5176694,3.6888367 L 1.5112588,2.4479293 z "
- id="path731"
- sodipodi:nodetypes="cccc" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="2.55886233"
- y="1.00883842"
- id="text750"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="2.55886245"
- y="1.00883842"
- sodipodi:role="line"
- id="tspan751">drag</tspan></text>
- </g>
-
- <g
- id="mid-click">
- <path
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- d="M 3.5020868 1.7911048 C 2.4762557 1.7944862 0.78275968 1.9466216 0.68022768 3.5133391 C 0.57407668 4.9036459 0.76731068 6.0913227 1.2445987 7.125321 C 1.7105457 8.1734737 2.3138647 8.9507193 3.5397118 8.9689372 C 3.5539558 8.9689372 3.5632548 8.9691456 3.5773358 8.9689372 C 4.8031828 8.9507193 5.4065018 8.1734737 5.8724498 7.125321 C 6.3497388 6.0913227 6.5429749 4.9036459 6.4368238 3.5133391 C 6.3342898 1.9466216 4.6407908 1.7944862 3.6149618 1.7911048 C 3.5823958 1.7909978 3.5331588 1.7911048 3.5020868 1.7911048 z "
- id="path753" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 0.71574468 5.2236579 L 6.4032718 5.2236579 "
- id="path757" />
- <text
- xml:space="preserve"
- style="font-size:1.3;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="1.24093144"
- y="1.00938547"
- id="text765"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="1.24093139"
- y="1.00938547"
- sodipodi:role="line"
- id="tspan766">click</tspan></text>
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 2.4989727 1.8559797 L 2.4989727 5.265219 L 4.6627718 5.265219 L 4.6627718 1.8559797 C 3.9666658 1.7238863 3.2453998 1.7238863 2.4989727 1.8559797 z "
- id="path772"
- sodipodi:nodetypes="ccccc" />
- </g>
-
- <g
- id="mid-drag"
- transform="translate(-1.125000e-6,1.125000e-6)">
- <path
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- d="M 4.2312960,3.5918108 C 3.4643678,3.5943388 2.1982835,3.7080776 2.1216282,4.8793802 C 2.0422680,5.9187954 2.1867335,6.8067213 2.5435616,7.5797547 C 2.8919109,8.3633701 3.3429624,8.9444505 4.2594258,8.9580711 C 4.2700748,8.9580711 4.2770261,8.9582270 4.2875525,8.9580711 C 5.2040158,8.9444505 5.6550659,8.3633701 6.0034166,7.5797547 C 6.3602447,6.8067213 6.5047117,5.9187954 6.4253508,4.8793802 C 6.3486955,3.7080776 5.0826097,3.5943388 4.3156823,3.5918108 C 4.2913355,3.5917309 4.2545251,3.5918108 4.2312960,3.5918108 z "
- id="path758" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0913691;"
- d="M 2.1481820,6.1580415 L 6.4002675,6.1580415"
- id="path762" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 2.6941421,0.077840626 C 3.2444435,0.89346617 3.7063783,1.4221344 3.8046827,2.4788033 C 4.1961179,2.3256075 4.1391312,2.6208327 4.5305676,2.4676346 C 4.6094779,1.3820095 4.6609893,0.26064772 4.2105546,-0.46832581 C 3.9270868,0.098242238 3.3768906,0.24398760 2.6941421,0.077840626 z "
- id="path763"
- sodipodi:nodetypes="ccccc" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 2.7030627,2.3593309 L 5.5454954,2.2669081 L 4.2415509,3.3675109 L 2.7030627,2.3593309 z "
- id="path764"
- sodipodi:nodetypes="cccc" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="3.72539061"
- y="0.98140591"
- id="text768"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="3.72539067"
- y="0.98140591"
- sodipodi:role="line"
- id="tspan769">drag</tspan></text>
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 3.4954917,3.6403128 L 3.4954917,6.1891133 L 5.1131813,6.1891133 L 5.1131813,3.6403128 C 4.5927615,3.5415570 4.0535324,3.5415570 3.4954917,3.6403128 z "
- id="path773"
- sodipodi:nodetypes="ccccc" />
- </g>
-
- <g
- id="right-click">
- <path
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- d="M 3.5470928 1.7706068 C 2.5212607 1.7739882 0.82776368 1.9261236 0.72523168 3.4928414 C 0.61908168 4.8831481 0.81231568 6.0708248 1.2896037 7.1048231 C 1.7555517 8.1529757 2.3588707 8.9302211 3.5847188 8.948439 C 3.5989618 8.948439 3.6082608 8.9486483 3.6223418 8.948439 C 4.8481898 8.9302211 5.4515078 8.1529757 5.9174568 7.1048231 C 6.3947448 6.0708248 6.5879819 4.8831481 6.4818299 3.4928414 C 6.3792958 1.9261236 4.6857978 1.7739882 3.6599678 1.7706068 C 3.6274018 1.7705 3.5781648 1.7706068 3.5470928 1.7706068 z "
- id="path774" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 0.76074868 5.2031601 L 6.4482788 5.2031601 "
- id="path775" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="2.13629596"
- y="0.99347234"
- id="text780"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="2.13629603"
- y="0.99347234"
- sodipodi:role="line"
- id="tspan813">click</tspan></text>
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 4.5998098 1.8222014 C 5.4892978 1.9517915 6.3889388 2.3375356 6.4635749 3.4779927 C 6.5135369 4.132363 6.5081579 4.619292 6.4270768 5.1889904 L 4.5998098 5.1889904 L 4.5998098 1.8222014 z "
- id="path788" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 2.5620557 1.8228546 L 2.5620557 5.1958163 "
- id="path789" />
- </g>
-
-
- <g
- id="right-drag"
- transform="translate(1.125000e-6,1.125000e-6)">
- <path
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- d="M 4.3685855,3.7242673 C 3.6248392,3.7267190 2.3970228,3.8370198 2.3226845,4.9729187 C 2.2457230,5.9809166 2.3858220,6.8420041 2.7318645,7.5916719 C 3.0696846,8.3516015 3.5071027,8.9151187 4.3958651,8.9283270 C 4.4061923,8.9283270 4.4129335,8.9284789 4.4231424,8.9283270 C 5.3119040,8.9151187 5.7493213,8.3516015 6.0871422,7.5916719 C 6.4331854,6.8420041 6.5732851,5.9809166 6.4963237,4.9729187 C 6.4219845,3.8370198 5.1941675,3.7267190 4.4504219,3.7242673 C 4.4268110,3.7241898 4.3911133,3.7242673 4.3685855,3.7242673 z "
- id="path776" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0886073;"
- d="M 2.3484358,6.2129311 L 6.4719977,6.2129311"
- id="path777" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 4.1311923,0.26532657 C 5.1283963,0.70189914 5.7345773,1.4458530 5.6790143,2.6209236 C 6.0994583,2.4561351 6.0854903,2.8238471 6.5059344,2.6590563 C 6.4931134,1.7804446 6.7046664,0.84138473 5.7023623,-0.30709515 C 5.1736773,0.064120851 4.6683523,0.21983456 4.1311923,0.26532657 z "
- id="path778"
- sodipodi:nodetypes="ccccc" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 4.4887093,2.5180790 L 7.1399773,2.4849831 L 6.2899294,3.7543860 L 4.4887093,2.5180790 z "
- id="path779"
- sodipodi:nodetypes="cccc" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="0.49732296"
- y="0.95831662"
- id="text783"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="0.49732295"
- y="0.95831662"
- sodipodi:role="line"
- id="tspan784">drag</tspan></text>
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:1pt;"
- d="M 5.1310314,3.7616744 C 5.7759272,3.8556295 6.4281828,4.1353010 6.4822960,4.9621532 C 6.5185187,5.4365836 6.5146188,5.7896161 6.4558335,6.2026579 L 5.1310314,6.2026579 L 5.1310314,3.7616744 z "
- id="path790" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0886073;"
- d="M 3.6536224,3.7621480 L 3.6536224,6.2076068"
- id="path791" />
- </g>
-
-
-
- <g
- id="wheel">
- <path
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- d="M 3.5370048 1.7303644 C 2.5111727 1.7337458 0.81767667 1.8858811 0.71514468 3.4525986 C 0.60899368 4.8429053 0.80222768 6.0305822 1.2795157 7.0645805 C 1.7454637 8.112733 2.3487827 8.8899785 3.5746308 8.9081964 C 3.5888738 8.9081964 3.5981728 8.9084057 3.6122538 8.9081964 C 4.8381018 8.8899785 5.4414198 8.112733 5.9073688 7.0645805 C 6.3846568 6.0305822 6.5778939 4.8429053 6.4717419 3.4525986 C 6.3692078 1.8858811 4.6757098 1.7337458 3.6498798 1.7303644 C 3.6173138 1.7302575 3.5680768 1.7303644 3.5370048 1.7303644 z "
- id="path792" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 0.75066068 5.1629174 L 2.6033227 5.1629174 "
- id="path793"
- sodipodi:nodetypes="cc" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="0.97063343"
- y="0.96223223"
- id="text794"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="0.97063345"
- y="0.96223223"
- sodipodi:role="line"
- id="tspan795">wheel</tspan></text>
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 6.4381888 5.1629174 L 4.5855278 5.1629174 "
- id="path799"
- sodipodi:nodetypes="cc" />
- <rect
- style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;"
- id="rect801"
- width="1.10310698"
- height="2.92336941"
- x="3.06589717"
- y="2.08157873" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 2.0980692 L 4.1477788 2.0980692 "
- id="path802" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 2.1870294 L 4.1477788 2.1870294 "
- id="path803" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 2.3115737 L 4.1477788 2.3115737 "
- id="path804" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 2.5428703 L 4.1477788 2.5428703 "
- id="path805" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 2.9165032 L 4.1477788 2.9165032 "
- id="path806" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 3.5214326 L 4.1477788 3.5214326 "
- id="path807" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 4.9892801 L 4.1477788 4.9892801 "
- id="path808" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 4.9003199 L 4.1477788 4.9003199 "
- id="path809" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 4.7757756 L 4.1477788 4.7757756 "
- id="path810" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 4.544479 L 4.1477788 4.544479 "
- id="path811" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;"
- d="M 3.0713508 4.1708461 L 4.1477788 4.1708461 "
- id="path812" />
- </g>
-
-
-<!-- key images -->
-
- <g
- id="shift">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;"
- id="rect682"
- width="14.46854401"
- height="6.57892704"
- x="0.03756316"
- y="0.07391790"
- ry="0.68839085" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;"
- id="rect683"
- width="12.71428394"
- height="5.05001116"
- x="0.84218349"
- y="0.77243602"
- ry="0.38310501" />
- <text
- style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;"
- x="1.37996908"
- y="4.35733509"
- id="text685"
- sodipodi:linespacing="100%"><tspan
- x="1.37996912"
- y="4.35733509"
- sodipodi:role="line"
- id="tspan692">Shift</tspan></text>
- </g>
- <g
- id="ctrl">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;"
- id="rect695"
- width="11.38750172"
- height="6.57892704"
- x="0"
- y="0"
- ry="0.68839085" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;"
- id="rect696"
- width="9.74373341"
- height="5.05001116"
- x="0.77"
- y="0.77"
- ry="0.38310501" />
- <text
- style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;"
- x="1.3"
- y="4.35733509"
- id="text697"
- sodipodi:linespacing="100%"><tspan
- x="1.3"
- y="4.35733509"
- sodipodi:role="line"
- id="tspan698">Ctrl</tspan></text>
- </g>
- <g
- id="alt">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;"
- id="rect703"
- width="9.67487087"
- height="6.57892704"
- x="0"
- y="0"
- ry="0.68839085" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;"
- id="rect704"
- width="7.97585612"
- height="5.05001116"
- x="0.77"
- y="0.77"
- ry="0.38310501" />
- <text
- style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;"
- x="1.3"
- y="4.35733509"
- id="text705"
- sodipodi:linespacing="100%"><tspan
- x="1.3"
- y="4.35733509"
- sodipodi:role="line"
- id="tspan706">Alt</tspan></text>
- </g>
-
- <g
- id="left">
- <text
- style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;letter-spacing:-0.3;"
- x="1.3"
- y="4.35733509"
- sodipodi:linespacing="100%"><tspan
- x="1.3"
- y="4.35733509"
- sodipodi:role="line"
- >Left</tspan></text>
- </g>
-
- <g
- id="right">
- <text
- style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;letter-spacing:-0.3;"
- x="1.3"
- y="4.35733509"
- sodipodi:linespacing="100%"><tspan
- x="1.3"
- y="4.35733509"
- sodipodi:role="line"
- >Right</tspan></text>
- </g>
-
- <g
- id="letterkey">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;"
- id="rect708"
- width="7.00721359"
- height="6.57892704"
- x="0"
- y="0"
- ry="0.97501397" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;"
- id="rect709"
- width="5.07888126"
- height="5.05001116"
- x="0.77"
- y="0.77"
- ry="0.48707163"
- rx="0.35459363" />
- </g>
-
- <g
- id="misc-wide">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;"
- width="16.46854401"
- height="6.57892704"
- x="0.0"
- y="0.0"
- ry="0.68839085" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;"
- width="14.7"
- height="5.0"
- x="0.77"
- y="0.77"
- ry="0.38310501" />
- </g>
-
- <g
- id="misc">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;"
- width="11.4"
- height="6.57892704"
- x="0.0"
- y="0.0"
- ry="0.68839085" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;"
- width="9.7"
- height="5.0"
- x="0.77"
- y="0.77"
- ry="0.38310501" />
- </g>
-
- <g
- id="arrows">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;"
- id="rect708"
- width="3.50360680"
- height="3.28946352"
- x="3.72818561"
- y="0.09945580"
- ry="0.48750699" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;"
- id="rect709"
- width="2.53944063"
- height="2.52500558"
- x="4.19200130"
- y="0.44871032"
- ry="0.24353582"
- rx="0.17729682" />
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;"
- id="rect787"
- width="3.50360680"
- height="3.28946352"
- x="3.72818561"
- y="3.64276290"
- ry="0.48750699" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;"
- id="rect788"
- width="2.53944063"
- height="2.52500558"
- x="4.19200130"
- y="3.99201751"
- ry="0.24353582"
- rx="0.17729682" />
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;"
- id="rect789"
- width="3.50360680"
- height="3.28946352"
- x="-0.00256788"
- y="3.64276290"
- ry="0.48750699" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;"
- id="rect790"
- width="2.53944063"
- height="2.52500558"
- x="0.46125068"
- y="3.99201751"
- ry="0.24353582"
- rx="0.17729682" />
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;"
- id="rect791"
- width="3.50360680"
- height="3.28946352"
- x="7.45893283"
- y="3.64276290"
- ry="0.48750699" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;"
- id="rect792"
- width="2.53944063"
- height="2.52500558"
- x="7.92275138"
- y="3.99201751"
- ry="0.24353582"
- rx="0.17729682" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="2.21508991"
- y="6.47878742"
- id="text796"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="2.21508980"
- y="6.47878742"
- sodipodi:role="line"
- id="tspan797">arrows</tspan></text>
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 5.1322313 0.90289456 L 5.1322313 2.6190467 "
- id="path801"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
- d="M 4.6182793 1.3212845 L 5.1418233 0.81871946 L 5.6541543 1.3212845 L 4.6182793 1.3212845 z "
- id="path813"
- sodipodi:nodetypes="cccc" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 5.1322313 6.0781819 L 5.1322313 4.3620297 "
- id="path814"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
- d="M 4.6182793 5.6597919 L 5.1418233 6.162357 L 5.6541543 5.6597919 L 4.6182793 5.6597919 z "
- id="path815"
- sodipodi:nodetypes="cccc" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 9.868405 5.2661777 L 8.1522594 5.2661777 "
- id="path816"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
- d="M 9.4500205 5.7801297 L 9.952579 5.2565857 L 9.4500205 4.7442547 L 9.4500205 5.7801297 z "
- id="path817"
- sodipodi:nodetypes="cccc" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;"
- d="M 0.76312022 5.2661777 L 2.4792643 5.2661777 "
- id="path818"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
- d="M 1.1815105 5.7801297 L 0.67894514 5.2565857 L 1.1815105 4.7442547 L 1.1815105 5.7801297 z "
- id="path819"
- sodipodi:nodetypes="cccc" />
- </g>
-
- <g
- id="up">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;"
- id="rect800"
- width="7.00721359"
- height="6.57892704"
- x="-0.00741097"
- y="0.11458590"
- ry="0.97501397" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;"
- id="rect802"
- width="5.07888126"
- height="5.05001116"
- x="0.92021832"
- y="0.81310272"
- ry="0.48707163"
- rx="0.35459363" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.244428;"
- d="M 2.8349462 1.7275401 L 2.8349462 5.1598442 "
- id="path825"
- sodipodi:nodetypes="cc" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:0;"
- d="M 1.8070423 2.5643198 L 2.8541302 1.5591899 L 3.8787922 2.5643198 L 1.8070423 2.5643198 z "
- id="path826"
- sodipodi:nodetypes="cccc" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="1.82973492"
- y="6.29683936"
- id="text827"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="1.82973492"
- y="6.29683924"
- sodipodi:role="line"
- id="tspan828">up</tspan></text>
- </g>
- <g
- id="down">
- <rect
- style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;"
- id="rect839"
- width="7.00721359"
- height="6.57892704"
- x="-0.00740963"
- y="0.11458590"
- ry="0.97501397" />
- <rect
- style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;"
- id="rect840"
- width="5.07888126"
- height="5.05001116"
- x="0.92021960"
- y="0.81310272"
- ry="0.48707163"
- rx="0.35459363" />
- <path
- style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.244428;"
- d="M 2.8349477 4.9915303 L 2.8349477 1.5592262 "
- id="path841"
- sodipodi:nodetypes="cc" />
- <path
- style="font-size:12;fill-rule:evenodd;stroke-width:0;"
- d="M 1.8070437 4.1547506 L 2.8541317 5.1598805 L 3.8787938 4.1547506 L 1.8070437 4.1547506 z "
- id="path842"
- sodipodi:nodetypes="cccc" />
- <text
- xml:space="preserve"
- style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;"
- x="1.04129975"
- y="6.29683924"
- id="text843"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="1.04129970"
- y="6.29683924"
- sodipodi:role="line"
- id="tspan844">down</tspan></text>
- </g>
-
-
- <g
- id="left-arrow">
- <rect
- style="font-size:12.000000;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.062500000pt;"
- id="rect4608"
- width="7.0072136"
- height="6.5789270"
- x="-0.0074096299"
- y="0.11458590"
- ry="0.97501397"
- rx="0.97501397" />
- <rect
- style="font-size:12.000000;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625000;"
- id="rect4609"
- width="5.0788813"
- height="5.0500112"
- x="0.92021960"
- y="0.81310272"
- ry="0.48707163"
- rx="0.35459363" />
- <path
- style="font-size:12.000000;fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.24442799;"
- d="M 1.6924937,3.3980186 L 5.1247978,3.3980185"
- id="path4610"
- sodipodi:nodetypes="cc" />
- <path
- style="font-size:12.000000;fill-rule:evenodd;stroke-width:0.0000000;"
- d="M 2.5292733,2.3701144 L 1.5241435,3.4172024 L 2.5292733,4.4418646 L 2.5292733,2.3701144 z "
- id="path4611"
- sodipodi:nodetypes="cccc" />
- <text
- xml:space="preserve"
- style="font-size:1.2000000;font-weight:normal;stroke-width:1.0000000pt;font-family:Bitstream Vera Sans;"
- x="1.0412997"
- y="6.2968392"
- id="text4612"
- sodipodi:linespacing="100%"
- transform="matrix(1.288158,0.000000,0.000000,1.288158,0.717169,2.842171e-14)"><tspan
- x="1.0412997"
- y="6.2968392"
- sodipodi:role="line"
- id="tspan4613">left</tspan></text>
- </g>
- <g
- id="right-arrow">
- <rect
- style="font-size:12.000000;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.062500000pt;"
- id="rect4598"
- width="7.0072136"
- height="6.5789270"
- x="-0.0074096299"
- y="0.11458590"
- ry="0.97501397"
- rx="0.97501397" />
- <rect
- style="font-size:12.000000;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625000;"
- id="rect4599"
- width="5.0788813"
- height="5.0500112"
- x="0.92021960"
- y="0.81310272"
- ry="0.48707163"
- rx="0.35459363" />
- <path
- style="font-size:12.000000;fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.24442799;"
- d="M 5.1234847,3.4139604 L 1.6911806,3.4139605"
- id="path4600"
- sodipodi:nodetypes="cc" />
- <path
- style="font-size:12.000000;fill-rule:evenodd;stroke-width:0.0000000;"
- d="M 4.2867051,4.4418646 L 5.2918349,3.3947766 L 4.2867051,2.3701144 L 4.2867051,4.4418646 z "
- id="path4601"
- sodipodi:nodetypes="cccc" />
- <text
- xml:space="preserve"
- style="font-size:1.2000000;font-weight:normal;stroke-width:1.0000000pt;font-family:Bitstream Vera Sans;"
- x="1.0412997"
- y="6.2968392"
- id="text4602"
- sodipodi:linespacing="100%"
- transform="scale(1.288158,1.288158)"><tspan
- x="1.0412997"
- y="6.2968392"
- sodipodi:role="line"
- id="tspan4603">right</tspan></text>
- </g>
-
-<xsl:apply-templates/>
-</svg>
-</xsl:template>
-
-<xsl:template match="k:root/text() | k:column/text() | k:root/k:p"/>
-
-<xsl:template match="k:column">
-<xsl:variable name="y" select="
- count(preceding::k:section)*$space-section +
- count(preceding::k:group)*$space-group +
- count(preceding::k:title)*$space-title +
- count(preceding::k:keys)*$space-keys +
- count(preceding::k:mouse)*$space-mouse +
- count(preceding::k:note)*$space-note"/>
-<xsl:variable name="x" select="count(preceding::k:column)*$section-width"/>
- <g transform="translate({$x},{-$y})">
- <xsl:apply-templates/>
- </g>
-</xsl:template>
-
-<xsl:template match="k:section">
-<xsl:variable name="y" select="
- count(preceding::k:section)*$space-section +
- count(preceding::k:group)*$space-group +
- count(preceding::k:title)*$space-title +
- count(preceding::k:keys)*$space-keys +
- count(preceding::k:mouse)*$space-mouse +
- count(preceding::k:note)*$space-note"/>
-<xsl:variable name="h" select="
- $space-section +
- count(descendant::k:group)*$space-group +
- count(descendant::k:title)*$space-title +
- count(descendant::k:keys)*$space-keys +
- count(descendant::k:mouse)*$space-mouse +
- count(descendant::k:note)*$space-note"/>
- <rect
- style="fill:#{@color};fill-rule:evenodd;stroke:none"
- width="{$section-width}"
- height="{$h}"
- x="0"
- y="{$y}"/>
- <text
- xml:space="preserve"
- style="{$style-section}"
- x="{$section-hskip + 1*$w-key}"
- y="{$y + $skip-section-title}"
- id="sect{count(preceding-sibling::k:section) + 1}"
- ><tspan
- x="{$section-hskip + 1*$w-key}"
- y="{$y + $skip-section-title}"
- sodipodi:role="line"
- id="sect-tspan{count(preceding-sibling::k:section) + 1}"
- ><xsl:value-of select="@title"/></tspan></text>
-<xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="k:title">
-<xsl:variable name="y" select="
- count(preceding::k:section) * $space-section +
- count(preceding::k:group)*$space-group +
- count(preceding::k:title)*$space-title +
- count(preceding::k:keys)*$space-keys +
- count(preceding::k:mouse)*$space-mouse +
- count(preceding::k:note)*$space-note +
- $skip-section-content +
- $skip-group-content +
- $skip-title-content"/>
-
- <text
- xml:space="preserve"
- style="{$style-title}"
- x="{$section-hskip + 1*$w-key}"
- y="{$y}"
- id="title{count(preceding::k:title)+1}"
- ><tspan
- x="{$section-hskip + 1*$w-key}"
- y="{$y}"
- sodipodi:role="line"
- id="title-tspan{count(preceding::k:title)+1}"><xsl:value-of select="text()"/></tspan></text>
-
-</xsl:template>
-
-<xsl:template match="k:note">
-<xsl:variable name="y" select="
- count(preceding::k:section) * $space-section +
- count(preceding::k:group)*$space-group +
- count(preceding::k:title)*$space-title +
- count(preceding::k:keys)*$space-keys +
- count(preceding::k:mouse)*$space-mouse +
- count(preceding::k:note)*$space-note +
- $skip-section-content +
- $skip-group-content +
- $skip-note-content"/>
-
- <text
- xml:space="preserve"
- style="{$style-note}"
- x="{$section-hskip + $note-hskip}"
- y="{$y}"
- id="note{count(preceding::k:note)+1}"
- ><tspan
- x="{$section-hskip + $note-hskip}"
- y="{$y}"
- sodipodi:role="line"
- id="note-tspan{count(preceding::k:note)+1}"><xsl:value-of select="text()"/></tspan></text>
-
-</xsl:template>
-
-
-<xsl:template match="k:keys">
-<xsl:variable name="y" select="
- count(preceding::k:section) * $space-section +
- count(preceding::k:group)*$space-group +
- count(preceding::k:title)*$space-title +
- count(preceding::k:keys)*$space-keys +
- count(preceding::k:mouse)*$space-mouse +
- count(preceding::k:note)*$space-note +
- $skip-section-content +
- $skip-group-content +
- $skip-keys-content"/>
-<xsl:apply-templates select="k:key | k:action">
-<xsl:with-param name="y" select="$y"/>
-</xsl:apply-templates>
-</xsl:template>
-
-<xsl:template match="k:mouse">
-<xsl:variable name="y" select="
- count(preceding::k:section) * $space-section +
- count(preceding::k:group)*$space-group +
- count(preceding::k:title)*$space-title +
- count(preceding::k:keys)*$space-keys +
- count(preceding::k:mouse)*$space-mouse +
- count(preceding::k:note)*$space-note +
- $skip-section-content +
- $skip-group-content +
- $skip-mouse-content"/>
-<xsl:apply-templates select="k:key | k:action">
-<xsl:with-param name="y" select="$y"/>
-</xsl:apply-templates>
-</xsl:template>
-
-<xsl:template match="k:action">
-<xsl:param name="y"/>
-<xsl:variable name="x" select="2*$w-key + $section-hskip + $action-hskip"/> <!--max two keys-->
- <text
- xml:space="preserve"
- style="{$style-action}"
- x="{$x}"
- y="{$y + $skip-keys-action}"
- id="action{count(preceding::k:action)+1}"
- ><tspan
- x="{$x}"
- y="{$y + $skip-keys-action}"
- sodipodi:role="line"
- id="action-tspan{count(preceding::k:action)+1}"
- ><xsl:value-of select="text()"/></tspan></text>
-</xsl:template>
-
-<xsl:template match="k:key">
-<xsl:param name="y"/>
-<xsl:variable name="x" select="(1 - count(following-sibling::k:key))*$w-key + $section-hskip"/> <!--max two keys-->
-<xsl:apply-templates>
-<xsl:with-param name="x" select="$x"/>
-<xsl:with-param name="y" select="$y"/>
-</xsl:apply-templates>
-<xsl:variable name="comma-skip">
-<xsl:choose>
-<xsl:when test="k:wheel | k:left-click | k:left-drag | k:mid-click | k:mid-drag | k:right-click | k:right-drag">0.4</xsl:when>
-<xsl:otherwise>1.0</xsl:otherwise>
-</xsl:choose>
-</xsl:variable>
-<xsl:if test="following-sibling::k:key/node()">
- <text
- xml:space="preserve"
- style="{$style-action}"
- x="{$x + $w-key - $comma-skip}"
- y="{$y + $skip-keys-action}"
- ><tspan
- x="{$x + $w-key - $comma-skip}"
- y="{$y + $skip-keys-action}"
- sodipodi:role="line"
- >,</tspan></text>
-</xsl:if>
-</xsl:template>
-
-<xsl:template match="k:left-click | k:shift | k:ctrl | k:alt | k:left | k:right">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- count(following-sibling::k:shift | self::k:shift)*$w-shift -
- count(following-sibling::k:ctrl | self::k:ctrl)*$w-ctrl -
- count(following-sibling::k:alt | self::k:alt)*$w-alt -
- count(following-sibling::k:left | self::k:left)*$w-left -
- count(following-sibling::k:right | self::k:right)*$w-right -
- count(following-sibling::text())*$w-letterkey -
- count(following-sibling::k:keyf)*$w-letterkey -
- count(following-sibling::k:misc-wide)*$w-misc-wide -
- count(following-sibling::k:misc)*$w-misc -
- count(following-sibling::k:arrows)*$w-arrows -
- count(following-sibling::k:wheel | following-sibling::k:left-click | following-sibling::k:left-drag | following-sibling::k:mid-click | following-sibling::k:mid-drag | following-sibling::k:right-click | following-sibling::k:right-drag | self::k:left-click)*$w-mouse
-"/>
-<use xlink:href="#{name()}"
-transform="translate({$xx},{$y})"/>
-</xsl:template>
-
-<xsl:template match="k:key/text()">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- $w-letterkey"/>
-<use xlink:href="#letterkey"
-transform="translate({$xx},{$y})"/>
- <text
- xml:space="preserve"
- style="{$style-letterkey}"
- x="{1.7 + $xx}"
- y="{4.66851145 + $y}"
- ><tspan
- x="{1.7 + $xx}"
- y="{4.66851145 + $y}"
- sodipodi:role="line"
- ><xsl:value-of select="."/></tspan></text>
-</xsl:template>
-
-<xsl:template match="k:keyf">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- $w-letterkey"/>
-<use xlink:href="#letterkey"
-transform="translate({$xx},{$y})"/>
- <text
- xml:space="preserve"
- style="{$style-keyf}"
- x="{0.9 + $xx}"
- y="{3.5 + $y}"
- ><tspan
- x="{0.9 + $xx}"
- y="{3.5 + $y}"
- sodipodi:role="line"
- ><xsl:value-of select="@f"/></tspan></text>
-</xsl:template>
-
-<xsl:template match="k:misc-wide">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- $w-misc-wide"/>
-<use xlink:href="#misc-wide"
-transform="translate({$xx},{$y})"/>
- <text
- xml:space="preserve"
- style="{$style-keymisc}"
- x="{1.1 + $xx}"
- y="{3.7 + $y}"
- ><tspan
- x="{1.1 + $xx}"
- y="{3.7 + $y}"
- sodipodi:role="line"
- ><xsl:value-of select="@f"/></tspan></text>
-</xsl:template>
-
-<xsl:template match="k:misc">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- $w-misc"/>
-<use xlink:href="#misc"
-transform="translate({$xx},{$y})"/>
- <text
- xml:space="preserve"
- style="{$style-keymisc}"
- x="{1.1 + $xx}"
- y="{3.7 + $y}"
- ><tspan
- x="{1.1 + $xx}"
- y="{3.7 + $y}"
- sodipodi:role="line"
- ><xsl:value-of select="@f"/></tspan></text>
-</xsl:template>
-
-<xsl:template match="k:arrows">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- $w-arrows"/>
-<use xlink:href="#arrows"
-transform="translate({$xx},{$y})"/>
-</xsl:template>
-
-<xsl:template match="k:up | k:down | k:left-arrow | k:right-arrow">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- $w-letterkey"/>
-<use xlink:href="#{name()}"
-transform="translate({$xx},{$y})"/>
-</xsl:template>
-
-<xsl:template match="k:wheel | k:left-drag | k:mid-click | k:mid-drag | k:right-click | k:right-drag">
-<xsl:param name="x"/>
-<xsl:param name="y"/>
-<xsl:variable name="xx" select="
- $x +
- $w-key -
- $w-mouse -
- count(following-sibling::k:misc-wide)*($w-misc-wide + 1)"/>
-<use xlink:href="#{name()}"
-transform="translate({$xx},{$y})"/>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/doc/keys.README b/doc/keys.README
index 7a71c758a..5289fb6bc 100644
--- a/doc/keys.README
+++ b/doc/keys.README
@@ -1,26 +1,3 @@
-To generate HTML and SVG files from keys.xml, you'll need an XSLT
-processor. Any decent XSLT 1.0 or XSLT 2.0 processor should work. For example:
-
-I. Using xsltproc (available on most Linux systems):
-
-xsltproc keys-html.xsl keys.xml > keys.html
-xsltproc keys-svg.xsl keys.xml > keys.svg
-
-II. Using Saxon (a Java processor that works on any Java-supporting platform):
-
-1. Install Java
-
-2. Install Saxon (http://saxon.sf.net) so that saxon.jar is in your Java classpath
-
-3. Run:
-
-java net.sf.saxon.Transform doc/keys.xml doc/keys-svg.xsl > icons/keys.svg
-java net.sf.saxon.Transform doc/keys.xml doc/keys-html.xsl > doc/keys.html
-
-(for Saxon 7.*) or
-
-java com.icl.saxon.StyleSheet doc/keys.xml doc/keys-svg.xsl > icons/keys.svg
-java com.icl.saxon.StyleSheet doc/keys.xml doc/keys-html.xsl > doc/keys.html
-
-(for Saxon 6.*)
-
+The Keyboard and mouse reference HTML files are now extracted from the
+inkscape-doc project.
+See http://bazaar.launchpad.net/~inkscape.dev/inkscape-docs/trunk/files/head%3A/keys/ for details.
diff --git a/doc/keys.de.xml b/doc/keys.de.xml
deleted file mode 100644
index afde0367f..000000000
--- a/doc/keys.de.xml
+++ /dev/null
@@ -1,1107 +0,0 @@
-<root xmlns="http://www.inkscape.org/namespaces/keys">
-
-<p>Wenn nicht etwas anderes angegeben ist arbeiten die Tasten der Zehnertastatur (Pfeiltasten, Pos1, Ende, +, -, Ziffern)
-genauso wie die Tasten auf der Haupttastatur. Wenn Sie eine Idee zu einem neuen Tastatur-KĂŒrzel haben,
-kontaktieren Sie bitte die Entwickler (durch Mail an die <a
-href="http://lists.sourceforge.net/lists/listinfo/inkscape-devel">Entwickler-Mailingliste</a>
-oder durch <a href="http://sourceforge.net/tracker/?group_id=93438&amp;atid=604309">einen
-Verbesserungsvorschlag</a>).</p>
-
-<column>
-
-*<section title="Werkzeuge" color="f5f5f5">
-
-<group>
-<keys><key><keyf f="F1"/></key><key>s</key> <action>Auswahlwerkzeug</action></keys>
-<keys><key><misc-wide f="Leertaste"/></key> <action>Auswahlwerkzeug (temporÀr)</action></keys>
-<note>Die Leertaste wechselt temporĂ€r zum Auswahlwerkzeug; erneutes DrĂŒcken wechselt zurĂŒck.</note>
-<keys><key><keyf f="F2"/></key><key>n</key> <action>Knotenwerkzeug</action></keys>
-<keys><key><keyf f="F3"/></key><key>z</key> <action>Zoomwerkzeug</action></keys>
-<keys><key><keyf f="F4"/></key><key>r</key> <action>Rechteckwerkzeug</action></keys>
-<keys><key><keyf f="F5"/></key><key>e</key> <action>Ellipsenwerkzeug</action></keys>
-<keys><key><keyf f="F6"/></key><key>p</key> <action>Malwerkzeug (Freihandlinien)</action></keys>
-<keys><key><shift/><keyf f="F6"/></key><key>b</key> <action>Zeichenwerkzeug (Linien und Bézierkurven)</action></keys>
-<keys><key><ctrl/><keyf f="F6"/></key><key>c</key> <action>Kalligrafiewerkzeug</action></keys>
-<keys><key><ctrl/><keyf f="F1"/></key><key>g</key> <action>Farbverlaufswerkzeug</action></keys>
-<keys><key><keyf f="F7"/></key><key>d</key> <action>Farbpipette</action></keys>
-<keys><key><keyf f="F8"/></key><key>t</key> <action>Textwerkzeug</action></keys>
-<keys><key><keyf f="F9"/></key><key>i</key> <action>Spiralwerkzeug</action></keys>
-<keys><key><shift/><keyf f="F9"/></key><key>*</key> <action>Sternwerkzeug</action></keys>
-<keys><key><ctrl/><keyf f="F2"/></key><key>o</key> <action>Objektverbinder</action></keys>
-<note>Doppelklick auf die Werkzeug-SchaltflÀchen öffnet den Einstellungsdialog mit der passenden Seite.</note>
-</group>
-</section>
-
-
-*<section title="Dialoge" color="f0eae7">
-<group>
-<keys><key><shift/><ctrl/>F</key> <action>FĂŒllung und Kontur</action></keys>
-<keys><key><shift/><ctrl/>W</key> <action>Farbfelder-Palette</action></keys>
-<keys><key><shift/><ctrl/>T</key> <action>Schrift und Text</action></keys>
-<keys><key><shift/><ctrl/>M</key> <action>VerÀndern</action></keys>
-<keys><key><shift/><ctrl/>A</key> <action>Anordungen und AbstÀnde</action></keys>
-<keys><key><shift/><ctrl/>O</key> <action>Objekteigenschaften</action></keys>
-<keys><key><shift/><ctrl/>X</key> <action>XML-Editor</action></keys>
-<keys><key><shift/><ctrl/>D</key> <action>Dokumenteneinstellungen</action></keys>
-<keys><key><shift/><ctrl/>P</key> <action>Inkscape-Einstellungen</action></keys>
-<keys><key><shift/><ctrl/>E</key> <action>Bitmap exportieren</action></keys>
-<keys><key><ctrl/>F</key> <action>Suchen</action></keys>
-<keys><key><shift/><alt/>B</key> <action>Bitmap vektorisieren</action></keys>
-<note>Neuen Dialog öffnen, wenn dieser noch nicht geöffnet wurde. Der entsprechende Dialog erhÀlt den Fokus.</note>
-</group>
-
-<group>
-<title>Sichtbarkeit umschalten</title><keys><key><keyf f="F12"/></key> <action>Dialoge umschalten</action></keys>
-<note>Versteckt alle geöffneten Dialoge temporÀr; erneutes F12 zeigt sie wieder.</note>
-</group>
-
-<group>
-<title>Innerhalb eines Dialoges</title>
-<keys><key><misc f="Esc"/></key> <action>ZurĂŒck zur ArbeitsflĂ€che</action></keys>
-<keys><key><ctrl/><keyf f="F4"/></key> <key><ctrl/>W</key> <action>Dialog schließen</action></keys>
-<keys><key><misc f="Tab"/></key> <action>Zum nÀchsten Element springen</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>Zum vorhergehenden Element springen</action></keys>
-<keys><key><misc-wide f="Eingabe"/></key> <action>Neue Werte setzen</action></keys>
-<note>Übernimmt die neuen Werte, die Sie eingegeben haben und kehrt zur ArbeitsflĂ€che zurĂŒck.</note>
-<keys><key><ctrl/><misc-wide f="Eingabe"/></key> <action>»attr«-Wert im XML-Editor setzen</action></keys>
-<note>Setzen des neuen Wertes (entspricht dem Klicken des »Setzen«-Knopfes) beim Bearbeiten eines Attribut-Wertes im XML-Editor.</note>
-<keys><key><misc-wide f="Leertaste"/></key> <key><misc-wide f="Eingabe"/></key> <action>Aktuellen Knopf oder Liste aktivieren</action></keys>
-<keys><key><ctrl/><misc f="PgUp"/></key> <key><ctrl/><misc f="PgDn"/></key> <action>Reiter in einem Dialog wechseln</action></keys>
-</group>
-</section>
-
-*<section title="Einstellungen" color="f8f3e9">
-
-<group>
-<note>Die Werkzeugeinstellungsleiste ĂŒber dem Dokument bietet verschiedene Knöpfe und Einsteller fĂŒr jedes Werkzeug.</note>
-<keys><key><alt/>X</key> <action>Zum ersten Eingabefeld springen</action></keys>
-<keys><key><misc-wide f="Eingabe"/></key> <action>Neuen Wert bestÀtigen</action></keys>
-<note>BestĂ€tigt den neuen Wert, den Sie gerade in einem Textfeld eingegeben haben und kehrt zur ArbeitsflĂ€che zurĂŒck.</note>
-<keys><key><misc f="Esc"/></key> <action>Abbrechen der Änderungen</action></keys>
-<note>Bricht die Änderungen, die Sie in einem Textfeld gemacht haben, ab, und kehrt zur ArbeitsflĂ€che zurĂŒck.</note>
-<keys><key><ctrl/>Z</key> <action>Änderungen abbrechen</action></keys>
-<note>Bricht die Änderungen, die Sie in einem Textfeld gemacht haben, ab, aber Sie verbleiben in diesem Textfeld.</note>
-<keys><key><misc f="Tab"/></key> <action>Zum nÀchsten Feld springen</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>Zum vorhergehenden springen Feld</action></keys>
-<note>Navigieren zwischen den Feldern in der Werkzeugeinstellungsleiste (geĂ€nderte Werte werden ĂŒbernommen).</note>
-</group>
-
-<group>
-<title>Ändern von Werten</title>
-<mouse><key><up/></key> <key><down/></key> <action>Wert um 0,1 verÀndern</action></mouse>
-<keys><key><misc f="PgUp"/></key><key><misc f="PgDn"/></key> <action>Wert um 5,0 verÀndern</action></keys>
-</group>
-
-</section>
-
-*<section title="ArbeitsflÀche" color="e5f1e7">
-
-<group>
-<title>Zoom</title>
-<keys><key>=</key> <key>+</key> <action>VergrĂ¶ĂŸern</action></keys>
-<keys><key>-</key> <action>Verkleinern</action></keys>
-<note>+/- auf der Nummerntastatur (mit »NumLock« aus) vergrĂ¶ĂŸert/verkleinert, auch wenn Sie einen Text editieren.</note>
-<mouse><key><mid-click/></key> <key><ctrl/><right-click/></key> <action>vergrĂ¶ĂŸern</action></mouse>
-<mouse><key><shift/><mid-click/></key> <key><shift/><right-click/></key> <action>verkleinern</action></mouse>
-<mouse><key><ctrl/><wheel/></key> <action>VergrĂ¶ĂŸern bzw. Verkleinern</action></mouse>
-<mouse><key><shift/><mid-drag/></key> <action>Bereich vergrĂ¶ĂŸern</action></mouse>
-<keys><key><alt/>Z</key> <action>Zoom-Feld aktivieren</action></keys>
-<note>Das Zoom-Feld in der unteren linken Ecke des Fensters erlaubt das prÀzise Festlegen des Zoom-Wertes.</note>
-</group>
-
-<group>
-<title>Voreingestellte Zoom-Stufen</title>
-<keys><key>1</key> <action>Zoomfaktor 1:1</action></keys>
-<keys><key>2</key> <action>Zoomfaktor 1:2</action></keys>
-<keys><key>3</key> <action>Auswahl in das Fenster einpassen</action></keys>
-<keys><key>4</key> <action>Zeichnung in das Fenster einpassen</action></keys>
-<keys><key>5</key> <action>Seite in das Fenster einpassen</action></keys>
-<keys><key><ctrl/>E</key><key>6</key> <action>Seitenbreite in das Fenster einpassen</action></keys>
-</group>
-
-<group>
-<title>Liste bisheriger Zoomfaktoren</title>
-<keys><key>`</key> <action>Vorheriger Zoomfaktor </action></keys>
-<keys><key><shift/>`</key> <action>NĂ€chster Zoomfaktor</action></keys>
-<note>Mit diesen Tasten können Sie vor- und rĂŒckwĂ€rts in der Liste der bisherigen Zoomfaktoren gehen.</note>
-</group>
-
-<group>
-<title>Verschieben</title>
-<mouse><key><ctrl/><arrows/></key> <action>ArbeitsflÀche verschieben</action></mouse>
-<note>Verschieben mittels Tasten ist beschleunigt, d.h. es verschnellert sich, wenn Sie Strg+Pfeil in schneller Folge drĂŒcken.</note>
-<mouse><key><mid-drag/></key> <action>ArbeitsflÀche verschieben</action></mouse>
-<mouse><key><shift/><right-drag/></key> <key><ctrl/><right-drag/></key> <action>ArbeitsflÀche verschieben</action></mouse>
-<mouse><key><wheel/></key> <action>ArbeitsflÀche vertikal verschieben</action></mouse>
-<mouse><key><shift/><wheel/></key> <action>ArbeitsflÀche horizontal verschieben</action></mouse>
-</group>
-
-<group>
-<title>Hilfslinien und Gitter</title>
-<mouse><key><left-drag/></key> <action>FĂŒhrungslinie durch Herunterziehen eines Lineals erstellen</action></mouse>
-<note>Ziehen Sie das horizontale oder vertikale Lineal, um eine neue FĂŒhrungslinie zu erzeugen.</note>
-<note>Ziehen Sie eine FĂŒhrungslinie wieder auf das Lineal, um sie zu löschen.</note>
-<keys><key>|</key> <key><shift/>\</key> <action>Hilfslinien und Einrasten an Hilfslinien umschalten</action></keys>
-<note>Unterschiedliche Werte fĂŒr Sichtbarkeit und Einrasten an Hilfslinien sind in den Dokumenteneinstellungen Ă€nderbar.</note>
-<note>Erzeugen einer neuen FĂŒhrungslinie durch das Ziehen eines Lineals schaltet FĂŒhrungsliniensichtbarkeit und Einrasten an Hilfslinien ein.</note>
-<keys><key>#</key> <key><shift/>3</key> <action>Gitter und Einrasten am Gitter umschalten</action></keys>
-<note>Unterschiedliche Werte fĂŒr Sichtbarkeit und Einrasten am Gitter sind in den Dokumenteneinstellungen Ă€nderbar.</note>
-<note>Beachten Sie, dass nur die Taste 3 der Haupttastatur funktioniert, nicht die auf der Zehnertastatur.</note>
-</group>
-</section>
-
-
-</column>
-
-
-
-
-
-<column>
-
-*<section title="Datei" color="f3f2e2">
-
-<group>
-<keys><key><ctrl/>N</key> <action>Neues Dokument anlegen</action></keys>
-<keys><key><ctrl/>O</key> <action>Bestehendes Dokument öffnen</action></keys>
-<keys><key><shift/><ctrl/>E</key> <action>Bitmap exportieren</action></keys>
-<keys><key><ctrl/>I</key> <action>Bitmap oder SVG-Bild importieren</action></keys>
-<keys><key><ctrl/>P</key> <action>Dokument drucken</action></keys>
-<keys><key><ctrl/>S</key> <action>Dokument speichern</action></keys>
-<keys><key><shift/><ctrl/>S</key><action>Dokument unter anderen Namen speichern</action></keys>
-<keys><key><ctrl/>Q</key> <action>Inkscape verlassen</action></keys>
-</group>
-
-</section>
-
-*<section title="Fenster" color="e8fae1">
-
-<group>
-<keys><key><ctrl/>R</key> <action>Lineale ein/aus</action></keys>
-<keys><key><ctrl/>B</key> <action>Rollbalken ein/aus</action></keys>
-<keys><key><keyf f="F11"/></key> <action>Vollbildmodus ein/aus</action></keys>
-</group>
-
-<group>
-<keys><key><keyf f="F10"/></key> <action>HauptmenĂŒ</action></keys>
-<note>MenĂŒeintrĂ€ge können auch durch das DrĂŒcken von Alt und dem im MenĂŒnamen unterstrichenen Buchstaben aktiviert werden.</note>
-<keys><key><shift/><keyf f="F10"/></key> <key><right-click/></key> <action>Aufklappbares (Kontext)menĂŒ</action></keys>
-</group>
-
-<group>
-<keys><key><ctrl/><keyf f="F4"/></key> <key><ctrl/>W</key> <action>Dokument schließen</action></keys>
-<note>Beendet Inkscape, wenn nur ein Dokument geöffnet ist.</note>
-<keys><key><ctrl/><misc f="Tab"/></key> <action>Zum nÀchsten Dokumentenfenster</action></keys>
-<keys><key><shift/><ctrl/><misc f="Tab"/></key> <action>Zum vorhergehenden Dokumentenfenster</action></keys>
-<note>Es werden die aktiven Dokumentenfenster vor- und rĂŒckwarts durchlaufen.</note>
-</group>
-
-</section>
-
-
-*<section title="Ebenen" color="f6f9d9">
-<group>
-<keys><key><shift/><misc f="PgUp"/></key> <action>Zur darĂŒberliegenden Ebene verschieben</action></keys>
-<keys><key><shift/><misc f="PgDn"/></key> <action>Zur darunterliegenden Ebene verschieben</action></keys>
-<note>Die ausgewÀhlten Objekte werden von einer in eine andere Ebene verschoben.</note>
-
-<keys><key><shift/><ctrl/><misc f="PgUp"/></key> <action>Ebene anheben</action></keys>
-<keys><key><shift/><ctrl/><misc f="PgDn"/></key> <action>Ebene absenken</action></keys>
-<keys><key><shift/><ctrl/><misc f="Pos1"/></key> <action>Ebene ganz nach oben</action></keys>
-<keys><key><shift/><ctrl/><misc f="Ende"/></key> <action>Ebene ganz nach unten</action></keys>
-<note>Die aktuell ausgewÀhlte Ebene entlang ihrer Geschwister (normalerweise andere Ebenen) verschieben.</note>
-</group>
-</section>
-
-
-*<section title="Objekt" color="f4ecf5">
-
-<group>
-<title>RĂŒckgĂ€ngig/Wiederholen</title>
-<keys><key><shift/><ctrl/>Y</key> <key><ctrl/>Z</key> <action>RĂŒckgĂ€ngig</action></keys>
-<keys><key><shift/><ctrl/>Z</key> <key><ctrl/>Y</key> <action>Wiederholen</action></keys>
-</group>
-
-<group>
-<title>Zwischenablage</title>
-<keys><key><ctrl/>C</key> <action>Auswahl kopieren</action></keys>
-<note>EinfĂŒgen einer Kopie der Auswahl in die Inkscape-Zwischenablage. Text eines Textobjektes wird auch in die Zwischenablage ĂŒbernommen.</note>
-<keys><key><ctrl/>X</key> <action>Auswahl verschieben</action></keys>
-<note>Funktioniert wie »Auswahl kopieren«, jodoch wird die Auswahl im Dokument gelöscht.</note>
-<keys><key><ctrl/>V</key> <action>Zwischenablage einfĂŒgen</action></keys>
-<note>EinfĂŒgen an der Mausposition oder in der Mitte des Dokumentes (wenn Mausposition ausserhalb der ZeichenflĂ€che).</note>
-<note>Bei aktivem Textwerkzeug wird der Text aus der System-Zwischenablage in das aktuelle Textobjekt eingefĂŒgt.</note>
-<keys><key><ctrl/><alt/>V</key> <action>EinfĂŒgen an Ursprungsposition</action></keys>
-<note>FĂŒgt die Objekte der Zwischenablage an der Position ein, von der sie kopiert wurden.</note>
-<keys><key><shift/><ctrl/>V</key> <action>Stil anwenden</action></keys>
-<note>Anwenden des Stils des (zuerst) kopierten Objektes auf die aktuelle Auswahl.</note>
-<note>Wenn ein Farbverlaufsanfasser oder ein Textabschnitt ausgewÀhlt sind, dann bekommen nur genau diese den Stil.</note>
-</group>
-
-<group>
-<title>Duplizieren</title>
-<keys><key><ctrl/>D</key> <action>Auswahl duplizieren</action></keys>
-<note>Neue Objekte werden genau ĂŒber den Originalen eingefĂŒgt und ausgewĂ€hlt.</note>
-</group>
-
-<group>
-<title>Klonen</title>
-<keys><key><alt/>D</key> <action>Auswahl klonen</action></keys>
-<note>Ein Klon kann unabhĂ€ngig verschoben, skaliert, rotiert und geschert werden. Er behĂ€lt Form, FĂŒllung und Kontur seines Originals.</note>
-<note>Der Klon wird genau ĂŒber dem Original eingefĂŒgt und ausgewĂ€hlt.</note>
-<note>Sie können nur jeweils ein Objekt klonen; mehrere Objekte können als Gruppe geklont werden.</note>
-<keys><key><shift/><alt/>D</key> <action>Klonverbindung auflösen</action></keys>
-<note>Durch das Auflösen der Klonverbindung verliert der Klon jeden Bezug zu seinem Original und wird zur exakten Kopie.</note>
-<keys><key><shift/>D</key> <action>Original auswÀhlen</action></keys>
-<note>Klon auswÀhlen, um das Original zu finden. Das Original wird ausgewÀhlt.</note>
-</group>
-
-<group>
-<title>Bitmap</title>
-<keys><key><alt/>B</key> <action>Kopie als Bitmap</action></keys>
-<note>Exportiert die ausgewÀhlten Objekte als PNG in das Dokumentenverzeichnis und importiert es wieder.</note>
-<note>Die importierte Bitmap liegt ĂŒber der Originalauswahl und ist ausgewĂ€hlt.</note>
-<keys><key><shift/><alt/>B</key> <action>Bitmap vektorisieren</action></keys>
-<note>Öffnet den Dialog »Bitmap vektorisieren«, mit dem Sie ein Bitmap in einen oder mehrere Pfade umwandeln können.</note>
-</group>
-
-<group>
-<title>FĂŒllmuster</title>
-<keys><key><alt/>I</key> <action>Objekte in FĂŒllmuster umwandeln</action></keys>
-<note>Konvertiert die Auswahl zu einem Rechteck mit geteilter FĂŒllungsmuster.</note>
-<keys><key><shift/><alt/>I</key> <action>FĂŒllmuster in Objekte umwandeln</action></keys>
-<note>Jedes ausgewĂ€hlte Objekt mit FĂŒllmuster ist in die gleichen Objekte ohne FĂŒllung zerbrochen und besitzt ein Einheitsmuster.</note>
-</group>
-
-<group>
-<title>Gruppieren</title>
-<keys> <key><shift/><ctrl/>U</key> <key><ctrl/>G</key> <action>AusgewÀhlte Objekte gruppieren</action></keys>
-<note>Strg+Klick, um Objekte innerhalb einer Gruppe auszuwÀhlen.</note>
-<keys><key><shift/><ctrl/>G</key> <key><ctrl/>U</key> <action>AusgewÀhlte Gruppe(n) auflösen</action></keys>
-<note>Löscht nur die erste Ebene einer Gruppierung; Strg+U wiederholt fĂŒr verschachtelte Gruppen drĂŒcken.</note>
-</group>
-
-<group>
-<title>Z-Tiefe</title>
-<keys><key><misc f="Pos1"/></key> <action>Auswahl ganz nach oben anheben</action></keys>
-<keys><key><misc f="Ende"/></key> <action>Auswahl ganz nach unten anheben</action></keys>
-<keys><key><misc f="PgUp"/></key> <action>Auswahl eine Stufe anheben</action></keys>
-<keys><key><misc f="PgDn"/></key> <action>Auswahl eine Stufe absenken</action></keys>
- </group>
-
-</section>
-
-*<section title="Pfad" color="f9f1d9">
-
-<group>
-<title>In Pfad umwandeln</title>
-<keys><key><shift/><ctrl/>C</key> <action>Umwandeln ausgewÀhlter Objekte in Pfade</action></keys>
-<keys><key><ctrl/><alt/>C</key> <action>Kontur in Pfad umwandeln</action></keys>
-</group>
-
-<group>
-<title>Boolesche Operationen</title>
-<keys><key><ctrl/>+</key> <action>Vereinigung</action></keys>
-<note>Vereinigung verknĂŒpft mehrere Pfade so, dass ein einziger Pfad ohne Überschneidungen entsteht.</note>
-<keys><key><ctrl/>-</key> <action>Differenz</action></keys>
-<note>Differenz verknĂŒpft genau 2 Objekte so, dass das Obere vom Unteren abgezogen wird.</note>
-<keys><key><ctrl/>*</key> <action>Intersektion</action></keys>
-<note>Intersektion erzeugt einen Pfad, der den gemeinsamen (ĂŒberlappenden) Bereich aller Objekte darstellt.</note>
-<keys><key><ctrl/>^</key> <action>Exklusiv-Oder (Ausschluss)</action></keys>
-<note>Ausschluss ist Ă€hnlich zur Vereinigung, arbeitet jedoch nur mit genau 2 Objekten und entfernt ĂŒberlappende Bereiche.</note>
-<keys><key><ctrl/>/</key> <action>Division</action></keys>
-<note>Division erzeugt mehrere Objekte; den ĂŒberlappenden Bereich aller Objekte und den ausgeschlossenen Bereich des unteren Objektes.</note>
-<keys><key><ctrl/><alt/>/</key> <action>Pfad zerschneiden</action></keys>
-<note>Zerschneidet die Konturlinie des unteren Objektes an den Überschneidungen mit dem oberen Objekt. Die FĂŒllung wird entfernt.</note>
-<note>Das Ergebnis von Vereinigung, Differenz, Intersektion und Ausschluss erbt das »id«-Attribut und so auch die Klone des unteren Objektes.</note>
-<note>Division und Zerschneiden erzeugen normalerweise mehrere Pfade, von denen ein zufÀlliger das »id«-Attribut des unteren Objektes erbt.</note>
-</group>
-
-<group>
-<title>Versatz</title>
-<keys><key><ctrl/>(</key> <action>Pfad schrumpfen (zum Zentrum hin)</action></keys>
-<keys><key><ctrl/>)</key> <action>Pfad erweitern (vom Zentrum weg)</action></keys>
-<note>Die voreingestellte Versatz-Schrittweite ist 2 px (SVG-Pixel-Einheiten, keine Bildschirm-Pixel).</note>
-<keys><key><alt/>(</key> <action>Pfad um 1 Pixel schrumpfen</action></keys>
-<keys><key><alt/>)</key> <action>Pfad um 1 Pixel erweitern</action></keys>
-<keys><key><shift/><alt/>(</key> <action>Pfad um 10 Pixel schrumpfen</action></keys>
-<keys><key><shift/><alt/>)</key> <action>Pfad um 10 Pixel erweitern</action></keys>
-<note>Die aktuelle Distanz der Pixel fĂŒr den Versatz ist vom Zoomfaktor abhĂ€ngig. FĂŒr feinere Einstellungen hineinzoomen.</note>
-<note>Alle (- und )-Befehles konvertieren die Objekte zu Pfaden wenn notwendig und erstellen regulÀre Pfade.</note>
-<keys><key><ctrl/>J</key> <action>Dynamischen Versatz erzeugen</action></keys>
-<keys><key><ctrl/><alt/>J</key> <action>VerknĂŒpften Versatz erzeugen</action></keys>
-<note>Diese Befehle produzieren ein Versatz-Objekt, editierbar durch das Knotenwerkzeug, allein fĂŒr sich, oder verknĂŒpft zum Original.</note>
-<keys><key><shift/>D</key> <action>Quelle wÀhlen</action></keys>
-<note>Bei der Auswahl eines verknĂŒpften Versatzes wĂ€hlt dieses Befehl den Quellpfad des verlinkten Versatzes.</note>
-</group>
-
-<group>
-<title>Kombinieren</title>
-<keys><key><ctrl/>K</key> <action>Pfade kombinieren</action></keys>
-<note>Im Unterschied zum Gruppieren wird genau ein Objekt erzeugt.</note>
-<note>Im Unterschied zur Vereinigung werden Überlappungen nicht verĂ€ndert.</note>
-<note>Ob ĂŒberlappende Bereiche gefĂŒllt werden, hĂ€ngt von den Einstellungen im Dialog »FĂŒllung und Kontur« ab.</note>
-<keys><key><shift/><ctrl/>K</key> <action>Pfade zerlegen</action></keys>
-<note>Versucht einen Pfad in Unterpfade zu zerlegen. Funktioniert nicht an einem einzelnen geschlossenen Pfad.</note>
-</group>
-
-<group>
-<title>Vereinfachen</title>
-<keys><key><ctrl/>L</key> <action>Vereinfachen</action></keys>
-<note>AusgewĂ€hlte Pfade durch Entfernen ĂŒberflĂŒssiger Knoten vereinfachen. Objekte werden zuerst in Pfade umgewandelt.</note>
-<note>Wird diese Operation mehrmals schnell hintereinander ausgefĂŒhrt, erhöht sich die StĂ€rke.</note>
-<note>Eine kurze Pause dazwischen setzt die StĂ€rke wieder zurĂŒck (einstellbar im Dialog »Inkscape-Einstellungen«).</note>
-</group>
-
-</section>
-
-</column>
-
-<column>
-
-*<section title="Auswahl" color="eee4dc">
-
-<group>
-<title>Tastaturbefehle zur Auswahl</title>
-<keys><key><misc f="Tab"/></key> <action>NÀchstes Object auswÀhlen</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>Vorheriges Objekt auswÀhlen</action></keys>
-<note>Diese Tasten wÀhlen die Objekte nach deren Z-Tiefe (Tab von unten nach oben, Umschalttaste+Tab von oben nach unten).</note>
-<note>Sofern Sie nicht manuelle Umordnungen gemacht haben, ist das zuletzt erstellte Objekt ganz oben.</note>
-<note>Falls nichts ausgewĂ€hlt ist, wĂ€hlt das einmalige DrĂŒcken von Umschalttaste+Tab das zuletzt erzeugte Objekt.</note>
-<note>Das funktioniert an Objekten in der aktuellen Ebene (falls Sie das nicht in den Einstellungen geÀndert haben).</note>
-<keys><key><ctrl/>A</key> <action>Alles auswÀhlen (aktuelle Ebene)</action></keys>
-<note>Das funktioniert an Objekten der aktuellen Ebene (falls Sie das nicht in den Einstellungen geÀndert haben).</note>
-<keys><key><ctrl/><alt/>A</key> <action>Alles auswÀhlen (alle Ebenen)</action></keys>
-<note>Das funktioniert an allen Objekten in allen sichtbaren und entsperrten Ebenen.</note>
-<keys><key>!</key> <action>Auswahl invertieren (aktuelle Ebene)</action></keys>
-<note>Auswahl invertieren (alle ausgewÀhlten Objekte deselektieren und alle anderen auswÀhlen) in aktueller Ebene.</note>
-<keys><key><alt/>!</key> <action>Auswahl invertieren (alle Ebenen)</action></keys>
-<note>Auswahl invertieren (alle ausgewÀhlten Objekte deselektieren und alle anderen auswÀhlen) in sichbaren und entsperrten Ebenen.</note>
-<keys><key><misc f="Esc"/></key> <action>Auswahl aufheben</action></keys>
-<keys><key><misc-wide f="RĂŒckschr."/></key><key><misc f="Del"/></key> <action>Auswahl löschen</action></keys>
-</group>
-
-<group>
-<title>Verschieben mittels Tastatur</title>
-<mouse><key><arrows/></key> <action>Auswahl um Mindestschrittweite verschieben</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>Auswahl um 10-fache Mindestschrittweite verschieben.</action></mouse>
-<note>Die Mindestschrittweite betrÀgt 2 px (SVG-Pixel-Einheiten, nicht Bildschirm-Pixel).</note>
-<mouse><key><alt/><arrows/></key> <action>Auswahl um 1 Pixel verschieben</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>Auswahl um 10 Pixel verschieben</action></mouse>
-<note>Die Schrittweite in Pixel hĂ€ngt vom aktuellen Zoomfaktor ab. VergrĂ¶ĂŸern Sie fĂŒr kleinere Schrittweiten.</note>
-</group>
-
-<group>
-<title>VergrĂ¶ĂŸern mittels Tastatur</title>
-<keys><key>.</key> <key>&gt;</key> <action>Auswahl um eine Stufe vergrĂ¶ĂŸern</action></keys>
-<keys><key>,</key> <key>&lt;</key> <action>Auswahl um eine Stufe verkleinern</action></keys>
-<note>Die Standard-VergrĂ¶ĂŸerungsstufe betrĂ€gt 2 px (SVG-Pixel-Einheiten, nicht Bildschirm-Pixel).</note>
-<keys><key><ctrl/>.</key> <key><ctrl/>&gt;</key> <action>Auswahl auf 200% vergrĂ¶ĂŸern</action></keys>
-<keys><key><ctrl/>,</key> <key><ctrl/>&lt;</key> <action>Auswahl auf 50% verkleinern</action></keys>
-<keys><key><alt/>.</key> <key><alt/>&gt;</key> <action>Auswahl um 1 Pixel vergrĂ¶ĂŸern</action></keys>
-<keys><key><alt/>,</key> <key><alt/>&lt;</key> <action>Auswahl um 1 Pixel verkleinern</action></keys>
-<note>FIXME Der VergrĂ¶ĂŸerungsschritt hĂ€ngt von der VergrĂ¶ĂŸerung ab. VergrĂ¶ĂŸern Sie fĂŒr kleinere Schrittweite.</note>
-<note>Die VergrĂ¶ĂŸerung ist gleichmĂ€ssig um das Zentrum, so dass der VergrĂ¶ĂŸerungsschritt auf die grĂ¶ĂŸere der zwei Dimensionen angewendet wird.</note>
-</group>
-
-<group>
-<title>Drehen mittels Tastatur</title>
-<keys><key>[</key> <key>]</key> <action>Auswahl drehen um Winkelschrittweite</action></keys>
-<note>Die Standard-Winkelschrittweite betrÀgt 15°. ] dreht im Uhrzeigersinn, [ dreht entgegen.</note>
-<keys><key><ctrl/>[</key> <key><ctrl/>]</key> <action>Auswahl um 90° drehen</action></keys>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>Auswahl um 1 Pixel drehen </action></keys>
-<note>Der Winkel fĂŒr die Drehung um ein Pixel hĂ€ngt vom aktuellen Zoomfaktor ab. VergrĂ¶ĂŸern Sie fĂŒr feinere Winkel.</note>
-</group>
-
-<group>
-<title>Spiegeln mittels Tastatur</title>
-<keys><key>h</key> <action>Auswahl horizontal spiegeln</action></keys>
-<keys><key>v</key> <action>Auswahl vertikal spiegeln</action></keys>
-</group>
-
-<group>
-<title>Auswahl mittels Maus</title>
-<mouse><key><left-click/></key> <action>Objekt auswÀhlen</action></mouse>
-<note>Beim Links-Klicken auf ein Objekt wird die vorherige Auswahl aufgehoben.</note>
-<mouse><key><shift/><left-click/></key> <action>Auswahl umschalten</action></mouse>
-<note>Umschalttaste+Klick fĂŒgt ein Objekt der aktuellen Auswahl hinzu oder, falls es schon ausgewĂ€hlt war, entfernt es von dieser.</note>
-<mouse><key><left-click/><left-click/></key> <action>Objekt bearbeiten</action></mouse>
-<note>Bei Pfaden schaltet Doppelklicken zum Knotenwerkzeug, bei Formen zum entsprechenden Formenwerkzeug, bei Text zum Textwerkzeug.</note>
-<note>Bei Gruppen bewirkt Doppelklicken den Befehl »Gruppe bearbeiten« (die Gruppe wird eine vorĂŒbergehende Ebene).</note>
-<note>Doppelklicken in einem leeren Bereich schaltet wieder in die ĂŒbergeordnete Ebene zurĂŒck.</note>
-</group>
-
-<group>
-<title>Auswahl innerhalb einer Gruppe und verdeckter Objekte</title>
-<mouse><key><ctrl/><left-click/></key> <action>Auswahl innerhalb einer Gruppe</action></mouse>
-<note>Strg+Klick wÀhlt das Objekt an diesem Punkt, ungeachtet jeglicher Gruppierungen, zu dem das Objekt gehören könnte.</note>
-<mouse><key><ctrl/><shift/><left-click/></key> <action>Auswahl innerhalb der Gruppe umschalten</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>Auswahl verdeckter Objekte</action></mouse>
-<note>Alt+Klick wÀhlt das Objekt, dass sich an diesem Punkt unter dem an diesem Punkt untersten aktuell gewÀhlten Objekt befindet.</note>
-<note>Wenn das unterste Objekt erreicht ist, wÀhlt Alt+Klick wieder das oberste Objekt.</note>
-<note>Durch das mehrfache betÀtigen von Alt+Klick werden die Objekte an diesem Punkt in Z-Tiefe immer wieder durchlaufen.</note>
-<note>Unter Linux kann Alt+Klick und Klicken+Ziehen durch den Fenstermanager reserviert sein.</note>
-<note>Stellen Sie ihn so ein, dass Sie diese unter Inkscape benutzen können.</note>
-<mouse><key><shift/><alt/><left-click/></key> <action>Verdeckte Objekte umschalten</action></mouse>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>FIXME WĂ€hlt das darunter, in Gruppen</action></mouse>
-<mouse><key><shift/><ctrl/><alt/><left-click/></key> <action>FIXME Schaltet auf das untere um, in Gruppen</action></mouse>
-<keys><key><ctrl/><misc-wide f="Eingabe"/></key> <action>Gruppe öffnen</action></keys>
-<keys><key><ctrl/><misc-wide f="RĂŒckschr."/></key> <action>Zur ĂŒbergeordneten Gruppe</action></keys>
-</group>
-
-<group>
-<title>Gummiband</title>
-<mouse><key><left-drag/></key> <action>Mehrere Objekte auswÀhlen</action></mouse>
-<note>Ziehen um Objekte wÀhlt mit Gummiband aus; vorhergehende Auswahl wird abgewÀhlt.</note>
-<mouse><key><shift/><left-drag/></key> <action>Objekte der Auswahl hinzufĂŒgen</action></mouse>
-<note>Normalerweise mĂŒssen Sie auf einem leeren Platz starten, um das Gummiband auszulösen.</note>
-<note>Mit gedrĂŒckter Umschalttaste vor dem Ziehen wird immer das Gummiband ausgelöst, auch wenn ein Objekt unter der Maus liegt.</note>
-</group>
-
-<group>
-<title>Verschiebung mit der Maus</title>
-<mouse><key><left-drag/></key> <action>AuswÀhlen + Verschieben</action></mouse>
-<note>Ziehen eines Objektes wÀhlt es aus, wenn es nicht angewÀhlt war und verschiebt es.</note>
-<mouse><key><alt/><left-drag/></key> <action>Verschiebung ausgewÀhlt</action></mouse>
-<note>Alt+Ziehen bewegt die derzeitige Auswahl (ohne AuszuwÀhlen, was unter dem Cursor ist), egal wo Sie mit dem Ziehen beginnen.</note>
-<note>Unter Linux können Alt+Klick sowie Alt+Ziehen durch den Fenstermanager reserviert sein.</note>
-<note>Konfigurieren Sie diese um, damit Sie diese unter Inkscape benutzen können.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>Verschiebung horizontal oder vertikal beschrÀnken</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>Einrasten temporÀr verhindern</action></mouse>
-<note>Verhindert temporĂ€r das Einrasten am Gitter oder den FĂŒhrungslinien, wenn Sie mit »Gitter und FĂŒhrungslinie eingeschaltet« arbeiten.</note>
-<mouse><key><left-drag/><misc-wide f="Leertaste"/></key> <action>Ziehen einer Kopie</action></mouse>
-<note>Wenn Sie mit der Maus ziehen oder transformieren, hinterlĂ€ĂŸt jeder Druck der Leertaste eine Kopie der ausgewĂ€hlten Objekte.</note>
-<note>Sie können die Leertaste fĂŒr einen schönen »Pfad« wĂ€hrend des Ziehens drĂŒcken und halten.</note>
-</group>
-
-<group>
-<title>Transformationen mit der Maus</title>
-<mouse><key><left-click/></key> <action>Skalieren/Rotieren der Anfasser umschalten</action></mouse>
-<mouse><key><left-drag/></key> <action>Skalieren (Skalierungsanfasser)</action></mouse>
-<mouse><key><left-drag/></key> <action>Rotieren oder verzerren (Rotationsanfasser)</action></mouse>
-</group>
-
-<group>
-<title>Skalierungsanfasser</title>
-<mouse><key><ctrl/><left-drag/></key> <action>Mit Beibehalten des VerhÀltnisses skalieren</action></mouse>
-<!--<mouse><key><ctrl/><left-drag/></key> only smaller, keep aspect ratio--> <!-- TO BE REMOVED -->
-<mouse><key><shift/><left-drag/></key> <action>Symmetrische Transformation</action></mouse>
-<note>DrĂŒcken Sie die Umschalttaste wĂ€hrend der Transformation, damit die Transformation symmetrisch um das Zentrum der Auswahl wird.</note>
-<!-- FIXME: why not disable snapping? inconsistent! -->
-<mouse><key><alt/><left-drag/></key> <action>Langsame Bewegung</action></mouse>
-<note>DrĂŒcken Sie Alt wĂ€hrend der Transformation, damit die Transformation hinter der Mausbewegung bleibt. Dies erlaubt feinere Änderungen.</note>
-</group>
-
-<group>
-<title>Rotationsanfasser</title>
-<mouse><key><ctrl/><left-drag/></key> <action>Verzerrunswinkel einrasten</action></mouse>
-<note>Wenn Strg wĂ€hrend des Ziehen eines Verzerrungsanfassers (keine Ecke) gedrĂŒckt ist, rastet der Verzerrungswinkel in Schritten im Winkel ein. (Standard 15°).</note>
-<mouse><key><ctrl/><left-drag/></key> <action>Rotationswinkel einrasten</action></mouse>
-<note>Wenn Strg wĂ€hrend des Ziehen eines Rotationsanfassers (Ecke) gedrĂŒckt ist, rastet die Rotation in Schritten im Winkel ein. (Standard 15°).</note>
-</group>
-
-<group>
-<title>Abbruch</title>
-<keys><key><misc f="Esc"/></key> <action>Gummiband, Bewegung und Transformation abbrechen</action></keys>
-<note>DrĂŒcken Sie Esc wĂ€hrend die Maustaste gedrĂŒckt ist, um Gummiband-Auswahl, Verschiebung oder Transformation jeglicher Art abzubrechen.</note>
-</group>
-
-</section>
-
-</column>
-
-<column>
-*<section title="Knoten" color="f9f1d9">
-
-<group>
-<title>Mit der Tastatur auswÀhlen</title>
-<keys><key><misc f="Tab"/></key> <action>NÀchsten Knoten auswÀhlen</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>Vorherigen Knoten auswÀhlen</action></keys>
-<note>Diese Tasten wÀhlen Knoten im ausgewÀhlten Pfad aus.</note>
-<keys><key><ctrl/>A</key> <action>Alle Knoten in Unterpfaden auswÀhlen</action></keys>
-<note>Hat der Pfad mehrere Unterpfade und einige ausgewÀhlte Knoten, wÀhlt dieser alle Knoten, die sich im Unterpfad befinden und deren Knoten bereits ausgewÀhlt sind.</note>
-<keys><key><ctrl/><alt/>A</key> <action>Alle Knoten im Pfad auswÀhlen</action></keys>
-<note>WĂ€hlt alle Knoten im gesamten Pfad aus.</note>
-<keys><key>!</key> <action>Auswahl in Unterpfaden invertieren</action></keys>
-<note>Hat der Pfad mehrere Unterpfade mit einigen ausgewÀhlten Knoten, dreht es die Auswahl der Knoten herum, die sich im Unterpfad der ausgewÀhlten Knoten befinden.</note>
-<keys><key><alt/>!</key> <action>Auswahl im Pfad invertieren</action></keys>
-<note>Invertiert die Auswahl (abwÀhlen, was ausgewÀhlt war und anders herum) im gesamten Pfad.</note>
-<keys><key><misc f="Esc"/></key> <action>Alle Knoten abwÀhlen</action></keys>
-</group>
-
-<group>
-<title>Mit der Tastatur verschieben</title>
-<mouse><key><arrows/></key> <action>AusgewÀhlte Knoten um die Schubdistanz verschieben</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>AusgewÀhlte Knoten um die 10-fache Schubdistanz verschieben</action></mouse>
-<note>Die Standard-Schubdistanz ist 2 px (SVG-Pixel-Einheiten, keine Bildschirm-Pixel).</note>
-<mouse><key><alt/><arrows/></key> <action>AusgewÀhlte Knoten um 1 Pixel verschieben</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>AusgewÀhlte Knoten um 10 Pixel verschieben</action></mouse>
-<note>Die aktuelle Entfernung fĂŒr Pixel-Verschiebung ist vom Zoomfaktor abhĂ€ngig. FĂŒr feinere Justierung hineinzoomen.</note>
-</group>
-
-<group>
-<title>Anfasser mit Tastatur skalieren (1 Knoten ausgewÀhlt)</title>
-<keys><key>&lt;</key> <key>&gt;</key> <action>FIXME Verringern/Erweitern beide Anfasser um einen Schritt</action></keys>
-<note>Der Standard-Schritt betrĂ€gt 2 px (SVG-Pixel-Einheiten, keine Bildschirm-Pixel). Kann fĂŒr mehr als nur einen Knoten funktionieren.</note>
-<keys>
-<key><left/><ctrl/>&lt;</key>
-<key><left/><ctrl/>&gt;</key>
-<action>Linken Anfasser um einen Skalierungsschritt skalieren</action>
-</keys>
-<keys>
-<key><right/><ctrl/>&lt;</key>
-<key><right/><ctrl/>&gt;</key>
-<action>Rechten Anfasser um einen Skalierungsschritt skalieren</action>
-</keys>
-<keys>
-<key><left/><alt/>&lt;</key>
-<key><left/><alt/>&gt;</key>
-<action>Linken Anfasser um 1 Pixel skalieren</action>
-</keys>
-<keys>
-<key><right/><alt/>&lt;</key>
-<key><right/><alt/>&gt;</key>
-<action>Rechten Anfasser um 1 Pixel skalieren</action>
-</keys>
-<note>Die aktuelle Schrittweite fĂŒr Pixelskalierung ist abhĂ€ngig vom Zoomfaktor. Zoomen Sie fĂŒr feinere Skalierung hinein.</note>
-<note>Anstelle der &lt;- und &gt;-Tasten können Sie auch die ,- und .-Tasten (Komma und Punkt) verwenden.</note>
-</group>
-
-<group>
-<title>Anfasser mit Tastatur rotieren (1 Knoten ausgewÀhlt)</title>
-<keys><key>[</key> <key>]</key> <action>Beide Anfasser mit Winkelschritt rotieren</action></keys>
-<note>Der Standard-Winkelschritt betrĂ€gt 15°. ] drecht im Uhrzeigersinn, [ dreht gegen den Uhrzeigersinn. Kann fĂŒr mehr als nur einen Knoten funktionieren.</note>
-<keys><key><left/><ctrl/>[</key> <key><left/><ctrl/>]</key> <action>Linken Anfasser um den Winkelschritt drehen</action></keys>
-<keys><key><right/><ctrl/>[</key> <key><right/><ctrl/>]</key> <action>Rechten Anfasser um den Winkelschritt drehen</action></keys>
-<keys><key><left/><alt/>[</key> <key><left/><alt/>]</key> <action>Linken Anfasser um 1 Pixel drehen</action></keys>
-<keys><key><right/><alt/>[</key> <key><right/><alt/>]</key> <action>Rechten Anfasser um 1 Pixel drehen</action></keys>
-</group>
-
-
-<group>
-<title>Mit Tastatur skalieren (&gt;1 Knoten ausgewÀhlt)</title>
-<note>Skaliert die ausgewÀhlten Knoten, als wÀren sie ein »Objekt«, rund um das Zentrum des »Objektes«.</note>
-<keys><key>.</key> <key>&gt;</key> <action>Knoten um einen Schritt vergrĂ¶ĂŸern</action></keys>
-<keys><key>,</key> <key>&lt;</key> <action>Knoten um einen Schritt verkleinern</action></keys>
-<note>Der Standardwert betrÀgt 2 px (SVG-Pixel-Einheiten, keine Bildschirm-Pixel).</note>
-<keys><key><alt/>.</key> <key><alt/>&gt;</key> <action>Knoten um 1 Pixel vergrĂ¶ĂŸern</action></keys>
-<keys><key><alt/>,</key> <key><alt/>&lt;</key> <action>Knoten um 1 Pixel verkleinern</action></keys>
-<note>Die Skalierung ist vom Zoomfaktor abhĂ€ngig. Zoomen Sie fĂŒr feineres Skalieren hinein.</note>
-<note>FIXME Das Skalieren ist rund um das Zentrum einheitlich, so daß sich die GrĂ¶ĂŸe der Erhöhung auf die grĂ¶ĂŸere der zwei Dimensionen bezieht.</note>
-</group>
-
-<group>
-<title>Mit Tastatur rotieren (&gt;1 Knoten ausgewÀhlt)</title>
-<note>Dreht die ausgewÀhlten Knoten als wÀren sie ein »Objekt«, rund um das Zentrum dieses »Objektes«.</note>
-<keys><key>[</key> <key>]</key> <action>dreht den Knoten um einen Winkelschritt</action></keys>
-<note>Der Standardwert betrÀgt 15°. ] dreht im Uhrzeigersinn, [ dreht gegen den Uhrzeigersinn.</note>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>dreht die Knoten um 1 Pixel</action></keys>
-<note>Der aktuelle Wert fĂŒr die Erhöhung der Drehung ist vom Zoomfaktor abhĂ€ngig. Zoomen Sie fĂŒr feinere Drehungen hinein.</note>
-</group>
-
-<group>
-<title>Mit Tastatur umdrehen/spiegeln (&gt;1 Knoten ausgewÀhlt)</title>
-<note>Drehen/spiegeln der gewÀhlten Knoten als wÀren sie ein »Objekt«, rund um das Zentrum des Objektes.</note>
-<keys><key>H</key> <action>dreht/spiegelt die Knoten horizontal</action></keys>
-<keys><key>V</key> <action>dreht/spiegelt die Knoten vertikal</action></keys>
-</group>
-
-
-<group>
-<title>Segment(e) Àndern</title>
-<keys><key><shift/>L</key> <action>Erstellt Linien</action></keys>
-<keys><key><shift/>U</key> <action>Erstellt Kurven</action></keys>
-<note>Diese Befehle benötigen mehr als zwei angrenzende ausgewÀhlte Knoten.</note>
-</group>
-
-<group>
-<title>Knotentyp Àndern</title>
-<keys><key><shift/>C</key> <action>spitz</action></keys>
-<keys><key><shift/>S</key> <action>rund</action></keys>
-<keys><key><shift/>Y</key> <action>symmetrisch</action></keys>
-<mouse><key><ctrl/><left-click/></key> <action>Umschalten zwischen rund/spitz/symmetrisch</action></mouse>
-</group>
-
-<group>
-<title>Verbinden/Unterbrechen</title>
-<keys><key><shift/>J</key> <action>Verbindet die gewÀhlten Knoten</action></keys>
-<note>Benötigt exakt zwei Endknoten, die im Pfad ausgewÀhlt sind.</note>
-<keys><key><shift/>B</key> <action>Unterbricht den/die ausgewÀhlten Knoten</action></keys>
-<note>Nach dem Bruch ist nur einer der beiden neuen Knoten ausgewĂ€hlt. Kann fĂŒr mehr als nur einen Knoten gelten.</note>
-</group>
-
-<group>
-<title>Löschen, Erstellen, Duplizieren</title>
-<keys><key><misc-wide f="RĂŒckschr."/></key><key><misc f="Del"/></key> <action>Löscht den/die ausgewĂ€hlten Knoten</action></keys>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>Erstellt/Löscht Knoten</action></mouse>
-<note>Strg+Alt+Klicken auf einen Knoten löscht diesen; Strg+Alt+Klick auf den Pfad zwischen den Knoten erstellt einen neuen Knoten am Klickpunkt.</note>
-<mouse><key><left-click/><left-click/></key> <action>Erstellt Knoten</action></mouse>
-<note>Doppelklick auf den Pfad zwischen zwei Knoten erstellt einen neuen Knoten am Klickpunkt.</note>
-<keys><key><misc f="Ins"/></key> <action>FĂŒgt neue Knoten ein</action></keys>
-<note>FĂŒgt neue Knoten in der Mitte der ausgewĂ€hlten Segmente ein, so dass es mehr als nur zwei angrenzende ausgewĂ€hlte Knoten benötigt.</note>
-<keys><key><shift/>D</key> <action>Dupliziert ausgewÀhlte Knoten</action></keys>
-<note>Neue Knoten werden auf dem gleichen Pfad erstellt; sie liegen exakt ĂŒber den alten Knoten und sind ausgewĂ€hlt.</note>
-</group>
-
-<!-- does not seem to work
-<group>
-<title>Active node</title>
-<note>The active node is one under mouse or being dragged.</note>
-<note>When you have an active node, some of the single-letter tool switch shortcuts may not work;</note>
-<note>move your mouse cursor so that no node is active if you want to use them.</note>
-<keys><key>c</key> <action>make active node cusp</action></keys>
-<keys><key>s</key> <action>make active node smooth</action></keys>
-<keys><key>y</key> <action>make active node symmetric</action></keys>
-<keys><key>b</key> <action>break active node</action></keys>
-<keys><key><misc-wide f="RĂŒckschr."/></key> <action>delete active node</action></keys>
-</group>
--->
-
-<group>
-<title>Mausauswahl: Objekte</title>
-<mouse><key><left-click/></key> <action>Klicken Sie auf ein nicht ausgewÀhltes Objekt, um es auszuwÀhlen</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>WĂ€hlt das untere aus</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Schaltet die Auswahl um</action></mouse>
-<note>Diese arbeiten genauso wie im Auswahlwerkzeug. Die Knoten oder Anfasser der einzeln ausgewÀhlten Objekte werden bearbeitbar.</note>
-</group>
-
-<group>
-<title>Mausauswahl: Knoten</title>
-<mouse><key><left-click/></key> <action>WĂ€hlt einen Knoten aus</action></mouse>
-<note>Das Klicken auf einen Knoten wÀhlt diesen aus.</note>
-<mouse><key><left-click/></key> <action>WĂ€hlt zwei angrenzende Knoten aus.</action></mouse>
-<note>Das Klicken auf einen ausgewÀhlten Pfad zwischen den Knoten wÀhlt die zwei am nÀchsten liegenden zum Klickpunkt aus.</note>
-<mouse><key><shift/><left-click/></key> <action>Schaltet Auswahl um</action></mouse>
-<note>FĂŒgt einen Knoten (Klick auf Knoten) oder zwei Knoten (Klick auf Pfad) zur Auswahl hinzu oder entfernt.</note>
-<mouse><key><left-click/></key> <action>Auswahl aufheben</action></mouse>
-<note>Klicken auf einen freien Bereich wÀhlt alle Knoten ab. Der nÀchste Klick wÀhlt das Objekt ab.</note>
-</group>
-
-<group>
-<title>Gummiband</title>
-<mouse><key><left-drag/></key> <action>Auswahl mehrerer Knoten</action></mouse>
-<note>Das Ziehen um Knoten erstellt eine Gummiband-Auswahl; eine vorangegangenen Knotenauswahl wurde aufgehoben.</note>
-<mouse><key><shift/><left-drag/></key> <action>FĂŒgt der Auswahl Knoten hinzu</action></mouse>
-<note>Normalerweise mĂŒssen Sie nicht ĂŒber einen Pfad oder Knoten gehen, um von einem Punkt aus das »Gummiband« zu erstellen.</note>
-<note>Wenn Sie jedoch die Umschalttaste drĂŒcken bevor Sie ziehen macht Inkscape eine Gummiband-Auswahl, wenn Sie ĂŒber dem Pfad starten.</note>
-
-</group>
-
-<group>
-<title>Knoten verschieben (Maus)</title>
-<mouse><key><left-drag/></key> <action>Verschiebt ausgewÀhlte Knoten</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>Verschiebung auf horizontal und vertikal einschrÀnken</action></mouse>
-<mouse><key><ctrl/><alt/><left-drag/></key> <action>Verschiebt entlang der Anfasser</action></mouse>
-<note>SchrĂ€nkt die Verschiebung zu der Richtung der Knoten-Anfasser ein, ihrer FortfĂŒhrung und Senkrechten (insgesamt 8 Einrastpunkte).</note>
-<note>Wenn der Knoten gerade Linien auf einer oder beiden Seiten hat, wird es an diesen Linien einrasten anstelle der Richtungen und Senkrechten.</note>
-<mouse><key><shift/><left-drag/></key> <action>Schaltet temporÀr Einrasten aus</action></mouse>
-<note>Einrasten der Knoten wird in den Dokumenteneinstellungen gesetzt. StandardmĂ€ĂŸig rastet nur die Umrandungsbox an Gittern/FĂŒhrungslinien ein.</note>
-<mouse><key><shift/><left-drag/></key> <action>Anfasser herausziehen</action></mouse>
-<note>Hat ein Knoten einen eingezogenen Anfasser, ermöglicht das Ziehen mit der Umschalttaste aus dem Knoten herausziehen.</note>
-<mouse><key><left-drag/><misc-wide f="Leertaste"/></key> <action>Kopie fallen lasssen</action></mouse>
-<note>Wenn Sie Knoten mit der Maus ziehen, lĂ€ĂŸt jede Leertaste eine Kopie des ausgewĂ€hlten Objektes zurĂŒck.</note>
-<note>Sie können die Leertaste drĂŒcken und halten, um einen schönen »Pfad« zu bekommen.</note>
-</group>
-
-<group>
-<title>Knoten-Anfasser</title>
-<mouse><key><left-drag/></key> <action>Verschiebt einen Knoten-Anfasser</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>LĂ€ĂŸt den Anfasser in Winkelschritten einrasten</action></mouse>
-<note>Der Standard-Winkelschritt betrĂ€gt 15°. Dieser rastet auch bei dem Originalwinkel des Anfassers ein, seinen FortfĂŒhrungen und Senkrechten.</note>
-<mouse><key><shift/><left-drag/></key> <action>Dreht beide Anfasser</action></mouse>
-<mouse><key><alt/><left-drag/></key> <action>Sperrt die AnfasserlÀnge</action></mouse>
-<note>Strg, Umschalttaste und Alt können beim Ziehen der Anfasser kombiniert werden.</note>
-<mouse><key><ctrl/><left-click/></key> <action>Zieht den Anfasser ein</action></mouse>
-<note>Die eingefahrene AnfasserlÀnge ist Null; benutzen Sie Umschalttaste+Ziehen, um es wieder herauszuziehen.</note>
-</group>
-
-<group>
-<title>Umkehrung</title>
-<keys><key><shift/>r</key> <action>Kehrt die Pfadrichtung um</action></keys>
-</group>
-
-<group>
-<title>Formen bearbeiten</title>
-<note>Das Knotenwerkzeug kann auch die Anfasser einer Form (Rechteck, Ellipse, Stern, Spirale) ziehen. Klicken Sie auf eine Form, um diese auszuwÀhlen.</note>
-<note>Schauen Sie sich die Bearbeitungs-Kurzbefehle der entsprechenden Formenwerkzeuge an, diese funktionieren auch im Knotenwerkzeug.</note>
-</group>
-
-
-<group>
-<title>Abbrechen</title>
-<keys><key><misc f="Esc"/></key> <action>Bricht Gummiband oder Verschiebung ab</action></keys>
-<note>DrĂŒcken Sie Esc wĂ€hrend die Maustaste gedrĂŒckt ist, um eine Gummibandauswahl, Knotenverschiebung oder Anfasserverschiebung abzubrechen.</note>
-</group>
-
-</section>
-
-</column>
-<column>
-
-
-
-
-*<section title="Rechteck" color="ebf1fd">
-<group>
-<title>Zeichnen</title>
-<mouse><key><left-drag/></key> <action>Zeichnet ein Rechteck</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>Erstellt ein Quadrat oderein Rechteck in Ganzzahl-VerhÀltnis</action></mouse>
-<note>BeschrÀnkt das Rechteeck in einer Zahl in Höhen-/Breiten-VerhÀltnis als Ganzzahl.</note>
-<mouse><key><shift/><left-drag/></key> <action>Zeichnet um den Startpunkt herum.</action></mouse>
-<note>Erstellt ein symmetrisches Rechteck rund um den Startpunkt, der mit der Maus gezogen wurde.</note>
-</group>
-<group>
-<title>Bearbeiten</title>
-<mouse><key><left-click/></key> <action>Mit Klick auf ein Objekt wird dieses ausgewÀhlt.</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>WĂ€hlt das untere aus.</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Schaltet die Auswahl um.</action></mouse>
-<mouse><key><left-drag/></key> <action>Zieht einen Anfasser zur GrĂ¶ĂŸenĂ€nderung oder um die Ecken zu runden.</action></mouse>
-<note>Zu Anfangs sind die zwei Rundungsanfasser in der rechten oberen Ecke; zwei GrĂ¶ĂŸenĂ€nderungsanfasser sind in der oberen linken und unteren rechten Ecke.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>Sperrt Breite, Höhe oder VerhĂ€ltnis (GrĂ¶ĂŸenĂ€nderungsanfasser)</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>Sperrt die Eckenrundung (Rundungsanfasser)</action></mouse>
-<note>Die GrĂ¶ĂŸenĂ€nderungsanfasser Ă€ndern die Breite und Höhe des Rechtecks in seinen eigenen Koordinatensystem, bevor irgendwelche Transformationen angewendet werden.</note>
-<note>Wenn Sie Ecken runden, ziehen Sie nur die Rundungsanfasser (mit den anderen an der Ecke) damit die Ecken rund bleiben.</note>
-<note>Sie können beide Anfasser ziehen, um eine elliptisch gerundete Ecke zu bekommen, oder ziehen Sie eine mit Strg, um sicherzustellen, dass der andere synchronisiert ist.</note>
-<keys><key><misc f="Esc"/></key> <action>Abwahl</action></keys>
-</group>
-</section>
-
-*<section title="Ellipse" color="ffece8">
-<group>
-<title>Zeichnen</title>
-<mouse><key><left-drag/></key> <action>Zeichnet eine Ellipse</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>Erstellt eine kreisrunde oder eine Ellipse im GanzzahlverhÀltnis</action></mouse>
-<note>BeschrÀnkt die Ellipse in ihrem Höhen-/Breiten-VerhÀltnis in einer Ganzzahl.</note>
-<mouse><key><shift/><left-drag/></key> <action>Zeichnet rund um den Startpunkt</action></mouse>
-<note>Erstellt eine symmetrische Ellipse um den Startpunkt, der mit der Maus gezogen wurde.</note>
-</group>
-<group>
-<title>Bearbeitung</title>
-<mouse><key><left-click/></key> <action>Klickt ein Objekt an und wÀhlt es aus</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>WĂ€hlt das untere</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Schaltet die Auswahl um</action></mouse>
-<mouse><key><left-drag/></key> <action>Ziehen Sie ein Anfasser zur GrĂ¶ĂŸenĂ€nderung, Erstellt Bögen oder Segmente.</action></mouse>
-<note>Zu Beginn befinden sich die zwei Bogen-/Segment-Anfasser am weitesten rechten Punkt; zwei Anfasser fĂŒr GrĂ¶ĂŸenĂ€nderung sind am obersten und am weitesten linken Punkt.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>Sperrt den Kreis (Anfasser fĂŒr GrĂ¶ĂŸenĂ€nderung)</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>Einrasten in Winkelschritten (Bogen-/Segment-Anfasser)</action></mouse>
-<note>Die Anfasser fĂŒr GrĂ¶ĂŸenĂ€nderung Ă€ndern die Breite und Höhe der Ellipse in ihrem eigenen Koordinatensystem, bevor irgendwelche Transformationen angewendet werden.</note>
-<note>Der Standard-Winkelschritt betrÀgt 15°.</note>
-<keys><key><misc f="Esc"/></key> <action>WĂ€hlt ab.</action></keys>
-</group>
-</section>
-
-*<section title="Stern" color="f8f7d5">
-<group>
-<title>Zeichnen</title>
-<mouse><key><left-drag/></key> <action>Zeichnet einen Stern</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>Einrasten des Sterns in Winkelschritten</action></mouse>
-<note>Der Standard-Winkelschritt betrÀgt 15°.</note>
-</group>
-<group>
-<title>Bearbeiten</title>
-<mouse><key><left-click/></key> <action>Klickt ein Objekt, um es auszuwÀhlen</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>WĂ€hlt das untere</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Schaltet Auswahl um</action></mouse>
-<mouse><key><left-drag/></key> <action>Zieht den Anfasser, um die Form des Sterns zu variieren</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>BehÀlt die Sternen-Strahlen radial (kein Verzerren)</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>Rundet den Stern</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Löscht Rundung</action></mouse>
-<mouse><key><alt/><left-drag/></key> <action>Ändert den Stern zufĂ€llig</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>Löscht die zufĂ€llige Änderung</action></mouse>
-<keys><key><misc f="Esc"/></key> <action>WĂ€hlt ab</action></keys>
-</group>
-</section>
-
-*<section title="Spirale" color="f3f3f3">
-<group>
-<title>Zeichnen</title>
-<mouse><key><left-drag/></key> <action>Zeichnet eine Spirale</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>Einrasten der Spirale in Winkelschritten</action></mouse>
-<note>Der Standard-Winkelschritt betrÀgt 15°.</note>
-</group>
-<group>
-<title>Bearbeiten</title>
-<mouse><key><left-click/></key> <action>Klickt ein Objekt, um es auszuwÀhlen</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>WĂ€hlt das untere</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Schaltet Auswahl um</action></mouse>
-<mouse><key><left-drag/></key> <action>Einrollen/Ausrollen von der Innenseite (innerer Anfasser)</action></mouse>
-<note>Ziehen des inneren Anfasser gleicht den »Innenradius«-Parameter an.</note>
-<mouse><key><alt/><left-drag/></key> <action>Konvergieren/Divergieren (innerer Anfasser)</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>Divergenz zurĂŒcksetzen (innerer Anfasser)</action></mouse>
-<note>Vertikales Alt+Ziehen des inneren Anfassers gleicht die »Divergenz«-Parameter an, Alt+Ziehen setzt es auf 1 zurĂŒck.</note>
-<mouse><key><shift/><left-click/></key> <action>Nullt den inneren Radius (innerer Anfasser)</action></mouse>
-<note>Umschalttaste+Klicken des inneren Anfassers lĂ€ĂŸt die Spirale aus dem Zentrum heraus starten.</note>
-
-<mouse><key><left-drag/></key> <action>Einrollen/Ausrollen von der Außenseite (Ă€ußerer Anfasser)</action></mouse>
-<note>Ziehen des Ă€ußeren Anfassers gleicht die Drehungs-Parameter an. Umschalttaste+Ziehen, um ohne RadiusĂ€nderung ein- oder auszurollen.</note>
-<mouse><key><shift/><left-drag/></key> <action>Skalieren/Rotieren (Ă€ußerer Anfasser)</action></mouse>
-<note>Benutzen Sie Umschalttaste+Alt, um nur zu rotieren (sperrt den Radius der Spirale).</note>
-
-<mouse><key><ctrl/><left-drag/></key> <action>Einrasten der Anfasser im Winkelschritt</action></mouse>
-<note>Der Standard-Winkelschritt betrĂ€gt 15°. Dies gilt fĂŒr beide Anfasser.</note>
-
-<keys><key><misc f="Esc"/></key> <action>WĂ€hlt ab</action></keys>
-</group>
-</section>
-
-
-
-</column>
-
-
-
-
-<column>
-
-*<section title="Zoom" color="e7e9f3">
-<group>
-<mouse><key><left-click/></key> <action>Zoom hinein</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Zoom heraus</action></mouse>
-<mouse><key><left-drag/></key> <action>Zoom in das Gebiet</action></mouse>
-</group>
-</section>
-
-*<section title="Freihand" color="e9efc5">
-<group>
-<mouse><key><left-drag/></key> <action>Zeichnet eine Freihandlinie</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>FĂŒgt dem aktuellen Pfad hinzu</action></mouse>
-<note>Wenn ein Pfad ausgewÀhlt ist, erstellt Umschalttaste+Ziehen irgendwo einen neuen Unterpfad anstelle eines neuen eigenstÀndigen Pfades.</note>
-<mouse><key><shift/><left-drag/></key> <action>Schaltet temporÀr Einrasten aus</action></mouse>
-<note>Die Umschalttaste schaltet das Einrasten an Gitter und FĂŒhrungslinien temporĂ€r aus, auch wenn Sie mit eingeschaltetem Gitter und FĂŒhrungslinien arbeiten.</note>
-</group>
-</section>
-
-*<section title="Bézier (Stift)" color="e7f5d7">
-
-<group>
-<title>Erstellt Knoten</title>
-<mouse><key><left-click/></key> <action>Erstellt einen scharfen Knoten</action></mouse>
-<note>Wenn kein Pfad erstellt ist, startet dies einen neuen Pfad.</note>
-<mouse><key><shift/><left-click/></key> <action>FĂŒgt dem ausgewĂ€hlten Pfad hinzu</action></mouse>
-<note>Wenn ein Pfad ausgewÀhlt ist, startet Umschalttaste+Klicken irgendwo einen neuen Unterpfad anstelle eines neuen eigenstÀndigen Pfades.</note>
-<mouse><key><left-drag/></key> <action>Erstellt einen Bézier-Knoten mit zwei Anfassern</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>Verschiebt nur einen Anfasser</action></mouse>
-<!-- FIXME: also disables snapping! another conflict -->
-<note>Verschiebt nur einen Anfasser (anstelle beider Anfasser), um einen Spitzknoten zu erstellen.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>Einrasten der Anfasser in Winkelschritten</action></mouse>
-<note>Der Standard-Winkelschritt betrÀgt 15°.</note>
-</group>
-
-<group>
-<title>Erstellt Segmente</title>
-<keys><key><ctrl/></key> <action>Einrasten des Segmentes in Winkelschritten</action></keys>
-<note>LĂ€ĂŸt die neuen Knotenwinkel einrasten, relativ zu den vorherigen Knoten, in Winkelschritten (Standard 15°).</note>
-</group>
-
-<group>
-<title>Ziel</title>
-<keys><key><misc-wide f="Eingabe"/></key> <action>Beendet die derzeitige Linie</action></keys>
-<mouse><key><right-click/></key> <action>Beendet die derzeitige Linie</action></mouse>
-<mouse><key><left-click/><left-click/></key> <action>Beendet die derzeitige Linie</action></mouse>
-<note>Eingabetaste, rechte Maustaste oder Doppelklick auf linke Maustaste beenden die derzeitige Linie und verwirft das letzte unfertige (rote) Segment.</note>
-</group>
-
-<group>
-<title>Keyboard</title>
-<keys><key><misc f="Esc"/></key> <action>FIXME cancel current line</action></keys>
-<keys><key><misc-wide f="RĂŒckschr."/></key><key><misc f="Del"/></key> <action>FIXME erase last segment of current line</action></keys>
-</group>
-</section>
-
-*<section title="Kalligraphie" color="e9dfef">
-<group>
-<mouse><key><left-drag/></key> <action>Zeichnet eine kalligraphische Linie</action></mouse>
-<mouse><key><left-arrow/></key> <key><right-arrow/></key> <action>gleicht die Stiftbreite an</action></mouse>
-<mouse><key><up/></key> <key><down/></key> <action>gleicht den Stiftwinkel an</action></mouse>
-<note>Breite und Winkel können wÀhrend des Zeichnens angeglichen werden. </note>
-<keys><key><misc f="Esc"/></key> <action>WĂ€hlt ab</action></keys>
-</group>
-</section>
-
-*<section title="Farbverlauf" color="e9f3e7">
-<group>
-<title>Erstellt VerlÀufe</title>
-<mouse><key><left-drag/></key> <action>Erstellt Verlauf</action></mouse>
-<note>Erstellt einen Verlauf auf dem ausgewĂ€hlten Objekt. Mit der Einstellungsleiste können Sie Linear/Radial und FĂŒllung/Kontur fĂŒr den neuen Verlauf auswĂ€hlen.</note>
-<mouse><key><left-click/><left-click/></key> <action>Erstellt einen Standard-Verlauf</action></mouse>
-<note>Erstellt Standard-VerlĂ€ufe (horizontal Rand zu Rand fĂŒr linear, zentriert Rand zu Rand zu Rand fĂŒr radial) auf dem angeklickten Objekt. </note>
-</group>
-
-<group>
-<title>Anfasser</title>
-<keys><key><misc f="Tab"/></key> <action>WÀhlt nÀchsten Anfasser aus</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>WĂ€hlt vorherigen Anfasser aus</action></keys>
-<mouse><key><arrows/></key> <action>Verschiebt ausgewĂ€hlten Anfasser um die Anstoßdistanz</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>Verschiebt ausgewĂ€hlten Anfasser um das 10-fache der Anstoßdistanz</action></mouse>
-<note>Der Standardwert der Anstoßdistanz betrĂ€gt 2 px (SVG-Pixel-Einheiten, keine Bildschirm-Pixel).</note>
-<mouse><key><alt/><arrows/></key> <action>Verschiebt ausgewÀhlten Anfasser um 1 Pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>Verschiebt ausgewÀhlten Anfasser um 10 Pixel</action></mouse>
-<note>Die aktuelle Entfernung fĂŒr Pixel-Verschiebungen ist vom Zoomfaktor abhĂ€ngig. Zoomen Sie fĂŒr feinere Verschiebungen hinein.</note>
-<keys><key><misc f="Esc"/></key> <action>WĂ€hlt Anfasser ab</action></keys>
-<mouse><key><left-click/><left-click/></key> <action>Öffnet Verlaufseditor</action></mouse>
-<note>Doppelklicken eines Verlaufsanfassers öffnet den Verlaufseditor mit dem entsprechenden Verlauf und der angeklichte Anfasser ist in der Stop-Liste ausgewÀhlt.</note>
-</group>
-
-<group>
-<title>Umkehrung</title>
-<keys><key><shift/>r</key> <action>Kehrt Verlaufsdefinition um</action></keys>
-<note>Spiegelt die Stop-Positionen des derzeitigen Verlaufes, ohne die Verlaufsanfasser zu verschieben.</note>
-</group>
-
-<group>
-<title>Mausauswahl</title>
-<mouse><key><left-click/></key> <action>Klickt ein Objekt, um es auszuwÀhlen</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>WĂ€hlt das untere aus</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Schaltet Auswahl um</action></mouse>
-</group>
-
-</section>
-
-
-*<section title="Pipette" color="feeffa">
-<group>
-<mouse><key><left-click/></key> <action>Setzt FĂŒllfarbe</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>Setzt Linienfarbe</action></mouse>
-<mouse><key><left-drag/></key> <action>Setzt Durchschnittsfarbe</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>Setzt Durchschnittslinienfarbe</action></mouse>
-<note>Ein Klick setzt die Farbe unter dem Mauszeiger der derzeitigen Auswahl. Ziehen eines Radiuses berechnet die Durchschnittsfarbe des kreisrunden Gebietes.</note>
-<note>Ist ein Verlaufsanfasser (im Verlaufswerkzeug) ausgewÀhlt, bekommt er die Farbe anstelle des gesamten Objektes.</note>
-<mouse><key><alt/><left-click/></key><key><alt/><left-drag/></key> <action>Setzt inverse Farbe</action></mouse>
-<note>Wenn Alt gedrĂŒckt ist, setzt die gewĂ€hlte Farbe (mit oder ohne Umschalttaste, durch Klicken oder Ziehen) die inverse Farbe.</note>
-<keys><key><ctrl/>C</key> <action>Kopiert die Farbe</action></keys>
-<note>Kopiert die Farbe unter dem Mauszeiger in die Zwischenablage wie Text im RRGGBBAA-Format (8 Hex-Ziffern).</note>
-</group>
-</section>
-
-
-</column>
-
-
-
-<column>
-*<section title="Text" color="eefdf3">
-
-<group>
-<title>AuswÀhlen/Erstellen</title>
-<mouse><key><left-click/></key> <action>Erstellt ein Textobjekt oder wÀhlt eins aus</action></mouse>
-<!--<keys><key>letters, digits, space, ...</key> <action>type text in a text object</action></keys>-->
-<note>Das Klicken in einen freien Bereich oder auf ein »Nicht-Text«-Objekt, erstellt ein Textobjekt; nun können Sie Ihren Text eintippen.</note>
-<note>Das Klicken auf ein Textobjekt wÀhlt dieses aus; der Mauszeiger ist in der NÀhe des Klickpunktes</note>
-<keys><key><misc f="Esc"/></key> <action>WĂ€hlt das Textobjekt ab</action></keys>
-</group>
-
-<group>
-<title>Textnavigation</title>
-<mouse><key><arrows/></key> <action>Bewegt den Cursor um ein Zeichen</action></mouse>
-<mouse><key><ctrl/><left-arrow/></key> <key><ctrl/><right-arrow/></key> <action>Bewegt den Cursor um ein Wort</action></mouse>
-<mouse><key><ctrl/><up-arrow/></key> <key><ctrl/><down-arrow/></key> <action>Bewegt den Cursor um einen Paragraph</action></mouse>
-<keys><key><misc f="Pos1"/></key> <key><misc f="Ende"/></key> <action>Geht zum Beginn/Ende der Zeile</action></keys>
-<keys><key><ctrl/><misc f="Pos1"/></key> <key><ctrl/><misc f="Ende"/></key> <action>Geht zum Beginn/Ende des Textes</action></keys>
-<note>All diese Befehle beenden die aktuelle Textauswahl, wenn etwas ausgewÀhlt wÀre.</note>
-</group>
-
-<group>
-<title>Fließtext (interner Rahmen)</title>
-<mouse><key><left-drag/></key> <action>Erstellt Fließtext</action></mouse>
-<note>Das Klicken in einen freien Bereich oder auf einen »Nicht-Text«-Bereich erstellt ein Fließtext-Objekt mit internem Rahmen.</note>
-<mouse><key><left-drag/></key> <action>gleicht RahmengrĂ¶ĂŸe an</action></mouse>
-<note>Das Ziehen des Anfassers in die untere rechte Ecke des ausgewĂ€hlten Fließtextes Ă€ndert Breite/Höhe des Rahmen.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>Sperrt Breite, Höhe oder VerhÀltnis des Rahmen</action></mouse>
-<note>Das Ziehen des Eckenanfassers mit Strg Àndert den Rahmen unter Erhaltung der Breite, der Höhe oder des VerhÀltnisses.</note>
-</group>
-
-<group>
-<title>Fließtext (externer Rahmen)</title>
-<keys><key><alt/>W</key> <action>Fließtext in einem Rahmen</action></keys>
-<note> Sind ein Textobjekt und eine Form/Pfad ausgewĂ€hlt, fließt dieser Text in die Form/Pfad.</note>
-<note>Beide verbleiben als separate Objekte, nur verlinkt; das Bearbeiten der Form/des Pfades lĂ€ĂŸt den Text neu fließen.</note>
-<keys><key><alt/><shift/>W</key> <action>Stoppt Fließtext im Rahmen</action></keys>
-<note>Kappt die FließtextverknĂŒpfung zu Form/Pfad und erstellt ein Einlinien-Textobjekt.</note>
-<keys><key><shift/>D</key> <action>WĂ€hlt externen Rahmen aus</action></keys>
-<note>Um herauszufinden, welches Objekt der Rahmen des Fließtextes ist, wĂ€hlen Sie es aus und drĂŒcken Umschalttaste+D. Der Rahmen wird ausgewĂ€hlt.</note>
-</group>
-
-<group>
-<title>Text auf dem Pfad</title>
-<keys><key><shift/>D</key> <action>WĂ€hlt Pfad vom Text</action></keys>
-<note>Um herauszufinden, welcher Pfad zum Text gehört, wĂ€hlen Sie ihn aus und drĂŒcken Umschalttaste+D. Der Pfad wird ausgweĂ€hlt.</note>
-</group>
-
-<group>
-<title>Text bearbeiten</title>
-<note>Um + und - Zeichen zu tippen mĂŒssen Sie die Haupttastatur benutzen; Zehnertastatur + und - sind fĂŒr Zoom reserviert (außer Numlock ist eingeschaltet).</note>
-<keys><key><misc-wide f="Eingabe"/></key> <action>start a new line or paragraph</action></keys>
-<note>Die Eingabetaste erstellt im normalen Text eine neue Zeile; in Fließtext einen neuen Absatz</note>
-<keys><key><ctrl/>U</key> <action>FIXME toggle Unicode entry</action></keys>
-<note>Um ein willkĂŒrliches Unicode-Zeichen einzufĂŒgen, drĂŒcken Sie Strg+U, dann den hexadezimalen Zeichenwert, dann Eingabetaste.</note>
-<note>Zum Beispiel fĂŒgt Strg+U 2 0 1 3 Eingabetaste einen Gedankenstrich ein.</note>
-<note>Um im Unicode-Modus zu bleiben, drĂŒcken sie die Leertaste anstelle der Eingabetaste.</note>
-<note>DrĂŒcken Sie Esc oder erneut Strg+U, um den Unicode-Modus abzubrechen, ohne Zeichen einzufĂŒgen.</note>
-<keys><key><ctrl/><misc-wide f="Leertaste"/></key> <action>FĂŒgt ein geschĂŒtztes Leerzeichen ein</action></keys>
-<note>Ein geschĂŒtztes Leerzeichen ist in einem Textobjekt sichtbar, wenn nicht xml:space="preserve" eingestellt ist.</note>
-</group>
-
-<group>
-<title>Text auswÀhlen</title>
-<mouse><key><left-drag/></key> <action>WĂ€hlt Text aus</action></mouse>
-<note>Ziehen mit der linken Maustraste ĂŒber ein Textobjekt wĂ€hlt einen Textbereich aus.</note>
-<mouse><key><shift/><arrows/></key> <action>WĂ€hlt Text Zeichen fĂŒr Zeichen</action></mouse>
-<mouse><key><ctrl/><shift/><arrows/></key> <action>WĂ€hlt Text Wort fĂŒr Wort</action></mouse>
-<keys><key><shift/><misc f="Pos1"/></key> <key><shift/><misc f="Ende"/></key> <action>WĂ€hlt bis zum Beginn/Ende der Zeile aus.</action></keys>
-<keys><key><ctrl/><shift/><misc f="Pos1"/></key> <key><ctrl/><shift/><misc f="Ende"/></key> <action>WĂ€hlt bis zum Beginn/Ende des Textes aus.</action></keys>
-<mouse><key><left-click/><left-click/></key> <action>WĂ€hlt ein Wort aus</action></mouse>
-<mouse><key><left-click/><left-click/><left-click/></key> <action>WĂ€hlt eine Zeile aus</action></mouse>
-<keys><key><ctrl/>A</key> <action>WĂ€hlt den gesamten Text aus.</action></keys>
-<note>WĂ€hlt den gesamten Text des derzeitigen Textobjektes aus.</note>
-</group>
-
-<group>
-<title>Stilauswahl</title>
-<keys><key><ctrl/>B</key> <action>Macht die Textauswahl fett</action></keys>
-<keys><key><ctrl/>I</key> <action>Macht die Textauswahl kursiv</action></keys>
-<note>Sie können auch die Dialoge »FĂŒllung &amp; Kontur« oder »Schrift &amp; Text« verwenden, um Stile in der Textauswahl anzuwenden.</note>
-</group>
-
-<group>
-<title>Buchstabenabstand</title>
-<keys><key><alt/>&gt;</key> <action>Erweitert Zeile/Absatz um 1 Pixel</action></keys>
-<keys><key><shift/><alt/>&gt;</key> <action>Erweitert Zeile/Absatz um 10 Pixel</action></keys>
-<keys><key><alt/>&lt;</key> <action>Verengt Zeile/Absatz um 1 Pixel</action></keys>
-<keys><key><shift/><alt/>&lt;</key> <action>Verengt Zeile/Absatz um 10 Pixel</action></keys>
-<note>Gleicht den Buchstabenabstand in der derzeitigen Zeile (regulĂ€rer Text) oder Absatz (Fließtext) an (wenn Text bearbeitet wird).</note>
-<note>Die aktuelle Angleichung fĂŒr Pixel-Verschiebungen ist vom Zoomfaktor abhĂ€ngig. Zoomen Sie fĂŒr feinere Abgleichungen hinein.</note>
-</group>
-
-<group>
-<title>Zeilenabstand</title>
-<keys><key><ctrl/><alt/>&gt;</key> <action>macht das Textobjekt grĂ¶ĂŸer um 1 Pixel</action></keys>
-<keys><key><shift/><ctrl/><alt/>&gt;</key> <action>macht das Textobjekt grĂ¶ĂŸer um 10 Pixel</action></keys>
-<keys><key><ctrl/><alt/>&lt;</key> <action>macht das Textobjekt kĂŒrzer um 1 Pixel</action></keys>
-<keys><key><shift/><ctrl/><alt/>&lt;</key> <action>macht das Textobjekt kĂŒrzer um 10 Pixel</action></keys>
-<note>Gleicht den Zeilenabstand im gesamten Textobjekt (normal oder Fließtext) an (wenn Text bearbeitet wird).</note>
-<note>Die aktuelle Angleichung fĂŒr Pixel-Verschiebungen ist vom Zoomfaktor abhĂ€ngig. Zoomen Sie fĂŒr feinere Abgleichungen hinein.</note>
-</group>
-
-<group>
-<title>Proportionalschrift und Versatz</title>
-<mouse><key><alt/><arrows/></key> <action>versetzt Zeichen um 1 Pixel</action></mouse>
-<mouse><key><shift/><alt/><arrows/></key> <action>versetzt Zeichen um 10 Pixel</action></mouse>
-<note>Diese Befehle funktionieren, wenn Sie regulĂ€re Textobjekte bearbeiten. Proportionalschrift funktioniert nicht in Fließtext.</note>
-<note>Ohne Auswahl werden die Zeichen (horizontal oder vertikal) nach dem Cursor bis zum Ende der Zeile versetzt.</note>
-<note>FIXME With selection, they shift the selection relative to the rest of text (by inserting opposite kerns at both ends of selection).</note>
-<note>Die aktuelle Angleichung fĂŒr Pixel-Verschiebungen ist vom Zoomfaktor abhĂ€ngig. Zoomen Sie fĂŒr feinere Abgleichungen hinein.</note>
-</group>
-
-<group>
-<title>Drehungen</title>
-<keys><key><ctrl/>[</key> <key><ctrl/>]</key> <action>dreht Zeichen um 90°</action></keys>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>dreht Zeichen um 1 Pixel</action></keys>
-<note>NĂ€chstes Zeichen (ohne Auswahl) oder alle Zeichen in der Auswahl drehen.</note>
-<note>Die Drehung funktioniert nur in regulĂ€rem Text (nicht in Fließtext).</note>
-<note>Der aktuelle Winkel fĂŒr Pixel-Drehungen ist vom Zoomfaktor abhĂ€ngig. Zoomen Sie fĂŒr feinere Drehungen hinein.</note>
-</group>
-
-</section>
-</column>
-
-</root>
diff --git a/doc/keys.fr.xml b/doc/keys.fr.xml
deleted file mode 100644
index 3d545ff43..000000000
--- a/doc/keys.fr.xml
+++ /dev/null
@@ -1,1135 +0,0 @@
-ï»ż<root xmlns="http://www.inkscape.org/namespaces/keys">
-<!-- Translated to French, based on svn revision 11789 of the English version 2006, Matiphas, matiphas@free.fr -->
-
-<p>Ce document décrit les raccourcis clavier par défaut d'Inkscape, correspondant au fichier share/keys/default.xml distribué avec Inkscape. La plupart (mais pas tous) de ces raccourcis est configurable par l'utilisateur; Consultez le fichier default.xml pour plus de détails à ce sujet.</p>
-
-<p>Sauf mention contraire, les touches du pavé numérique (comme Début, Fin, +, -, les flÚches et les chiffres) sont supposées se comporter comme des touches normales. Si vous avez de nouvelles idées de raccourcis, vous pouvez s'il vous plait contacter les développeurs (en envoyant un courrier sur la <a href="http://lists.sourceforge.net/lists/listinfo/inkscape-devel">liste électronique des développeurs</a> ou en envoyant une <a href="http://sourceforge.net/tracker/?group_id=93438&amp;atid=604309">proposition de nouvelle fonctionnalité</a>).</p>
-
-<column>
-
-*<section title="Outils" color="f5f5f5">
-
-<group>
-<keys><key><keyf f="F1"/></key><key>s</key> <action>sélecteur</action></keys>
-<keys><key><misc-wide f="Espace"/></key> <action>sélecteur (temporaire)</action></keys>
-<note>Espace bascule temporairement vers le sélecteur, puis de nouveau à l'outil précédent lors d'un nouvel appui.</note>
-<keys><key><keyf f="F2"/></key><key>n</key> <action>nƓud</action></keys>
-<keys><key><keyf f="F3"/></key><key>z</key> <action>zoom</action></keys>
-<keys><key><keyf f="F4"/></key><key>r</key> <action>rectangle</action></keys>
-<keys><key><keyf f="F5"/></key><key>e</key> <action>ellipse/arc</action></keys>
-<keys><key><keyf f="F6"/></key><key>p</key> <action>crayon (main levée)</action></keys>
-<keys><key><shift/><keyf f="F6"/></key><key>b</key> <action>stylo (Bézier)</action></keys>
-<keys><key><ctrl/><keyf f="F6"/></key><key/> <action>plume calligraphique</action></keys>
-<keys><key><ctrl/><keyf f="F1"/></key><key>g</key> <action>dégradé</action></keys>
-<keys><key><keyf f="F7"/></key><key>d</key> <action>pipette</action></keys>
-<keys><key><keyf f="F8"/></key><key>t</key> <action>texte</action></keys>
-<keys><key><keyf f="F9"/></key><key>i</key> <action>spirale</action></keys>
-<keys><key><shift/><keyf f="F9"/></key><key>*</key> <action>étoile</action></keys>
-<keys><key><ctrl/><keyf f="F2"/></key><key>o</key> <action>connecteur</action></keys>
-<note>Un double clic sur le bouton d'un outil ouvre la boßte de dialogue des préférences à l'onglet de l'outil correspondant.</note>
-</group>
-</section>
-
-*<section title="Dialogues" color="f0eae7">
-<group>
-<keys><key><shift/><ctrl/>F</key> <action>Remplissage et contour</action></keys>
-<keys><key><shift/><ctrl/>W</key> <action>Palettes</action></keys>
-<keys><key><shift/><ctrl/>T</key> <action>Texte et police</action></keys>
-<keys><key><shift/><ctrl/>M</key> <action>Transformer</action></keys>
-<keys><key><shift/><ctrl/>L</key> <action>Calques</action></keys>
-<keys><key><shift/><ctrl/>A</key> <action>Aligner et distribuer</action></keys>
-<keys><key><shift/><ctrl/>O</key> <action>Propriétés de l'objet</action></keys>
-<keys><key><shift/><ctrl/>X</key> <action>Editeur XML</action></keys>
-<keys><key><shift/><ctrl/>D</key> <action>Préférences du document</action></keys>
-<keys><key><shift/><ctrl/>P</key> <action>Préférences d'Inkscape</action></keys>
-<keys><key><shift/><ctrl/>E</key> <action>Exporter en PNG</action></keys>
-<keys><key><ctrl/>F</key> <action>Rechercher</action></keys>
-<keys><key><shift/><alt/>B</key> <action>Vectoriser un bitmap</action></keys>
-<note>Ces raccourcis ouvrent si nécessaire une nouvelle boßte de dialogue, sinon réactivent la boßte correspondante.</note>
-</group>
-
-<group>
-<title>(Dés)afficher</title>
-<keys><key><keyf f="F12"/></key> <action>(dés)afficher les boßtes de dialogue</action></keys>
-<note>Masque temporairement les boĂźtes de dialogue ouvertes. Un appui de plus sur F12 les rend de nouveau visibles.</note>
-</group>
-
-<group>
-<title>Dans une boĂźte de dialogue</title>
-<keys><key><misc f="Esc"/></key> <action>retourner au canevas</action></keys>
-<keys><key><ctrl/><keyf f="F4"/></key> <key><ctrl/>W</key> <action>fermer le dialogue</action></keys>
-<keys><key><misc f="Tab"/></key> <action>passer au champ suivant</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>passer au champ précédent</action></keys>
-<keys><key><misc-wide f="Entrée"/></key> <action>valider la nouvelle valeur</action></keys>
-<note>Valide la nouvelle valeur entrée dans un champ et retourne au canevas.</note>
-<keys><key><ctrl/><misc-wide f="Entrée"/></key> <action>définir la valeur d'un attribut (éditeur XML)</action></keys>
-<note>Valide la nouvelle valeur d'un attribut dans l'éditeur XML (comme un clic sur le bouton "Définir l'attribut".</note>
-<keys><key><misc-wide f="Espace"/></key> <key><misc-wide f="Entrée"/></key> <action>activer bouton/liste courant</action></keys>
-<keys><key><ctrl/><misc f="Préc."/></key> <key><ctrl/><misc f="Suiv."/></key> <action>naviguer parmi les onglets d'un dialogue</action></keys>
-</group>
-</section>
-
-*<section title="ContrĂŽles" color="f8f3e9">
-<group>
-<note>La barre des contrĂŽles en haut de la fenĂȘtre document affiche des champs et des contrĂŽles pour chacun des outils.</note>
-<keys><key><alt/>X</key> <action>aller au premier champ</action></keys>
-<keys><key><misc-wide f="Entrée"/></key> <action>valider la nouvelle valeur</action></keys>
-<note>Valide la nouvelle valeur entrée dans un champ et retourne au canevas.</note>
-<keys><key><misc f="Esc"/></key> <action>annuler les modifications, retourner au canevas</action></keys>
-<note>Annule toute modification d'un champ et retourne au canevas.</note>
-<keys><key><ctrl/>Z</key> <action>annuler les modifications</action></keys>
-<note>Annule toute modification d'un champ mais reste dans ce champ.</note>
-<keys><key><misc f="Tab"/></key> <action>passer au champ suivant</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>passer au champ précédent</action></keys>
-<note>Permet de naviguer entre les différents champs de la barre de contrÎle (toute modification du champ quitté est validée).</note>
-</group>
-
-<group>
-<title>Modification des valeurs</title>
-<mouse><key><up/></key> <key><down/></key> <action>modifier la valeur de 0,1</action></mouse>
-<keys><key><misc f="Préc."/></key><key><misc f="Suiv."/></key> <action>modifier la valeur de 5,0</action></keys>
-</group>
-</section>
-
-
-*<section title="Canevas" color="e5f1e7">
-
-<group>
-<title>Zoom</title>
-<keys><key>=</key> <key>+</key> <action>zoommer</action></keys>
-<keys><key>-</key> <action>dézoommer</action></keys>
-<note>Les touches +/- du pavĂ© numĂ©rique permettent de zoommer mĂȘme pendant l'Ă©dition d'un objet texte, sauf si NumLock est actif.</note>
-<mouse><key><mid-click/></key> <key><ctrl/><right-click/></key> <action>zoommer</action></mouse>
-<mouse><key><shift/><mid-click/></key> <key><shift/><right-click/></key> <action>dézoommer</action></mouse>
-<mouse><key><ctrl/><wheel/></key> <action>(dé)zoommer</action></mouse>
-<mouse><key><shift/><mid-drag/></key> <action>zoommer sur la zone</action></mouse>
-<keys><key><alt/>Z</key> <action>activer le champ de zoom</action></keys>
-<note>Le champ zoom dans le coin infĂ©rieur gauche de la fenĂȘtre vous permet de spĂ©cifier prĂ©cisĂ©ment la valeur de zoom.</note>
-</group>
-
-<group>
-<title>Zooms prédéfinis</title>
-<keys><key>1</key> <action>zoommer Ă  1:1</action></keys>
-<keys><key>2</key> <action>zoommer Ă  1:2</action></keys>
-<keys><key>3</key> <action>zoommer sur la sélection</action></keys>
-<keys><key>4</key> <action>zoommmer sur le dessin</action></keys>
-<keys><key>5</key> <action>zoommer sur la page</action></keys>
-<keys><key><ctrl/>E</key><key>6</key> <action>zoommer sur la largeur de page</action></keys>
-</group>
-
-<group>
-<title>Historique du zoom</title>
-<keys><key>`</key> <action>(guillement inversé) zoom précédent</action></keys>
-<keys><key><shift/>`</key> <action>zoom suivant</action></keys>
-<note>Ces raccourcis permettent de naviguer parmi les différents niveaux de zoom utilisés pendant la session.</note>
-</group>
-
-<group>
-<title>Défilement</title>
-<mouse><key><ctrl/><arrows/></key> <action>faire défiler le canevas</action></mouse>
-<note>Ces raccourcis peuvent ĂȘtre accĂ©lĂ©rĂ©s, par une rĂ©pĂ©tition rapide ou un appui continu</note>
-<mouse><key><mid-drag/></key> <action>faire défiler le canevas</action></mouse>
-<mouse><key><shift/><right-drag/></key> <key><ctrl/><right-drag/></key> <action>faire défiler le canevas</action></mouse>
-<mouse><key><wheel/></key> <action>faire défiler le canevas verticalement</action></mouse>
-<mouse><key><shift/><wheel/></key> <action>faire défiler le canevas horizontalement</action></mouse>
-</group>
-
-<group>
-<title>Guides et grille</title>
-<mouse><key><left-drag/></key> <action>créer un guide en le tirant depuis une rÚgle</action></mouse>
-<note>Cliquer-déplacer d'une rÚgle vers le canevas pour créer un nouveau guide. Déplacer un guide vers la rÚgle pour le supprimer.</note>
-<keys><key>|</key> <key><shift/>\</key> <action>(dés)activer affichage et adhérence des guides</action></keys>
-<note>Pour des valeurs différentes d'affichage/adhérence des guides, les régler dans les Préférences du document.</note>
-<note>Lors de la création de guides par cliquer-déplacer depuis une rÚgle, l'affichage et l'adhérence des guides sont activés.</note>
-<keys><key>#</key> <key><shift/>3</key> <action>(dés)activer affichage et adhérence de la grille</action></keys>
-<note>Pour des valeurs différentes d'affichage/adhérence de la grille, les régler dans les Préférences du document.</note>
-<note>Notez que seule la touche 3 du clavier principal a une action, pas celle du pavé numérique.</note>
-</group>
-</section>
-
-*<section title="Palette" color="efcfdf">
-<group>
-<note>Ces raccourcis pour la palette fonctionnent dans le dialogue flottant et dans le cadre en bas de la fenĂȘtre.</note>
-<mouse><key><left-click/></key> <action>appliquer une couleur de remplissage à la sélection</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>appliquer une couleur de contour à la sélection</action></mouse>
-<mouse><key><left-drag/></key> <action>déplacer une couleur de remplissage sur des objets</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>déplacer une couleur de contour sur des objetss</action></mouse>
-<note>L'objet sur lequel vous dĂ©placez une couleur de remplissage/contour n'a pas besoin d'ĂȘtre sĂ©lectionnĂ©.</note>
-<note>Vous pouvez aussi déplacer des couleurs sur les indicateurs remplissage (R) et contour (C) de la barre de statut</note>
-<note> pour affecter la sélection.</note>
-</group>
-</section>
-
-</column>
-
-<column>
-
-*<section title="Fichier" color="f3f2e2">
-<group>
-<keys><key><ctrl/>N</key> <action>créer un nouveau document</action></keys>
-<keys><key><ctrl/>O</key> <action>ouvrir un document SVG</action></keys>
-<keys><key><shift/><ctrl/>E</key> <action>exporter en PNG</action></keys>
-<keys><key><ctrl/>I</key> <action>importer un bitmap ou SVG</action></keys>
-<keys><key><ctrl/>P</key> <action>imprimer le document</action></keys>
-<keys><key><ctrl/>S</key> <action>enregistrer le document</action></keys>
-<keys><key><shift/><ctrl/>S</key> <action>enregistrer sous un autre nom</action></keys>
-<keys><key><ctrl/>Q</key> <action>quitter Inkscape</action></keys>
-</group>
-</section>
-
-*<section title="FenĂȘtre" color="e8fae1">
-<group>
-<keys><key><ctrl/>R</key> <action>(dés)afficher les rÚgles</action></keys>
-<keys><key><ctrl/>B</key> <action>(dés)afficher les barres de défilement</action></keys>
-<keys><key><keyf f="F11"/></key> <action>(dés)afficher en plein écran</action></keys>
-</group>
-
-<group>
-<keys><key><keyf f="F10"/></key> <action>menu principal</action></keys>
-<note>Les menus peuvent aussi ĂȘtre activĂ©s en appuyant simultanĂ©ment sur Alt et la lettre soulignĂ©e dans le nom du menu.</note>
-<keys><key><shift/><keyf f="F10"/></key> <key><right-click/></key> <action>menu contextuel</action></keys>
-</group>
-
-<group>
-<keys><key><ctrl/><keyf f="F4"/></key> <key><ctrl/>W</key> <action>fermer la fenĂȘtre (document)</action></keys>
-<note>Quitte Inkscape si la fenĂȘtre courante est le seul document ouvert.</note>
-<keys><key><ctrl/><misc f="Tab"/></key> <action>fenĂȘtre (document) suivante</action></keys>
-<keys><key><shift/><ctrl/><misc f="Tab"/></key> <action>fenĂȘtre (document) prĂ©cĂ©dente</action></keys>
-<note>Permet de circuler entre les fenĂȘtres (documents) en avant ou en arriĂšre.</note>
-</group>
-</section>
-
-*<section title="Calques" color="f6f9d9">
-<group>
-<keys><key><shift/><misc f="Préc."/></key> <action>déplacer au calque supérieur</action></keys>
-<keys><key><shift/><misc f="Suiv."/></key> <action>déplacer au calque inférieur</action></keys>
-<note>Ces commandes déplacent les objets sélectionnés d'un calque à un autre.</note>
-
-<keys><key><shift/><ctrl/><misc f="Préc."/></key> <action>monter le calque</action></keys>
-<keys><key><shift/><ctrl/><misc f="Suiv."/></key> <action>descendre le calque</action></keys>
-<keys><key><shift/><ctrl/><misc f="Début"/></key> <action>monter le calque au premier plan</action></keys>
-<keys><key><shift/><ctrl/><misc f="Fin"/></key> <action>descendre le calque Ă  l'arriĂšre plan</action></keys>
-<note>Ces commandes déplacent le calque courant parmi sa hiérarchie (normalement d'autres calques)</note>
-</group>
-</section>
-
-*<section title="Objet" color="f4ecf5">
-<group>
-<title>Annuler/refaire</title>
-<keys><key><shift/><ctrl/>Y</key> <key><ctrl/>Z</key> <action>annuler</action></keys>
-<keys><key><shift/><ctrl/>Z</key> <key><ctrl/>Y</key> <action>refaire</action></keys>
-</group>
-
-<group>
-<title>Presse-papiers</title>
-<keys><key><ctrl/>C</key> <action>copier la sélection</action></keys>
-<note>Copie la sélection dans le presse-papiers Inkscape (et aussi dans le presse-papiers systÚme pour les textes).</note>
-<keys><key><ctrl/>X</key> <action>couper la sélection</action></keys>
-<note>Fonctionne comme un "copier la sélection" suivi de la suppression de la sélection.</note>
-<keys><key><ctrl/>V</key> <action>coller le presse-papiers</action></keys>
-<note>Ceci place les objets du presse-papier sous la souris, ou au centre de la fenĂȘtre si la souris est hors du canevas.</note>
-<note>Lors de l'édition d'un texte avec l'outil texte, colle le texte du presse-papiers systÚme dans l'objet texte courant.</note>
-<keys><key><ctrl/><alt/>V</key> <action>coller sur place</action></keys>
-<note>Ceci place les objets du presse-papiers au mĂȘme emplacement que lorsque qu'ils ont Ă©tĂ© copiĂ©s.</note>
-<keys><key><shift/><ctrl/>V</key> <action>coller le style</action></keys>
-<note>Ceci applique le style du premier des objet copiés à la sélection courante.</note>
-<note>Si une poignée de dégradé ou une plage de texte sont sélectionnés, le style leur est appliqué plutÎt qu'à l'objet entier.</note>
-</group>
-
-<group>
-<title>Duplication</title>
-<keys><key><ctrl/>D</key> <action>dupliquer la sélection</action></keys>
-<note>Les nouveaux objet(s) sont placĂ©s exactement au mĂȘme endroit, au dessus des originaux et sont sĂ©lectionnĂ©s.</note>
-</group>
-
-<group>
-<title>Clonage</title>
-<keys><key><alt/>D</key> <action>cloner l'objet</action></keys>
-<note>Un clone peut ĂȘtre dĂ©placĂ©/redimensionnĂ©/tournĂ©/inclinĂ© indĂ©pendament, mais reçoit ses tracĂ©/remplissage/contour de l'original.</note>
-<note>Le clone est placĂ© exactement au mĂȘme endroit, au dessus de l'original et est sĂ©lectionnĂ©.</note>
-<note>Vous ne pouvez cloner qu'un objet Ă  la fois; si vous voulez cloner plusieurs objets ensemble, groupez-les puis clonez le groupe.</note>
-<keys><key><shift/><alt/>D</key> <action>délier le clone</action></keys>
-<note>Délier un clone supprime le lien vers son original, le clone devenant alors une simple copie.</note>
-<keys><key><shift/>D</key> <action>sélectionner l'original</action></keys>
-<note>AprÚs sélection d'un clone, cette commande sélectionne l'objet original dont le clone est issu.</note>
-</group>
-
-<group>
-<title>Bitmaps</title>
-<keys><key><alt/>B</key> <action>créer une copie bitmap</action></keys>
-<note>Exporte en PNG les objet(s) sélectionnés (les autres objets étant masqués) dans le répertoire du document et réimporte ce PNG.</note>
-<note>Le bitmap importĂ© est placĂ© exactement au mĂȘme endroit, au dessus de la sĂ©lection originale, et est sĂ©lectionnĂ©.</note>
-<keys><key><shift/><alt/>B</key> <action>vectoriser un bitmap</action></keys>
-<note>Ceci ouvre la boĂźte de dialogue vectoriser un bitmap, vous permettant de convertir une image bitmap en chemins.</note>
-</group>
-
-<group>
-<title>Motifs</title>
-<keys><key><alt/>I</key> <action>objet(s) en motif</action></keys>
-<note>Ceci convertit la sélection en un rectangle rempli avec la sélection comme motif de remplissage.</note>
-<keys><key><shift/><alt/>I</key> <action>motif en objet(s)</action></keys>
-<note>SĂ©pare tout objet sĂ©lectionnĂ© rempli avec un motif en deux objets : ce mĂȘme objet sans remplissage et le motif seul.</note>
-</group>
-
-<group>
-<title>Groupes</title>
-<keys> <key><shift/><ctrl/>U</key> <key><ctrl/>G</key> <action>grouper les objets sélectionnés</action></keys>
-<note>Ctrl+cliquer permet de sélectionner des objets au sein d'un groupe.</note>
-<keys><key><shift/><ctrl/>G</key> <key><ctrl/>U</key> <action>dégrouper les groupe(s) sélectionnés</action></keys>
-<note>Retire un niveau de regroupement; répéter plusieurs fois Ctrl+U permet de dégrouper des groupes imbriqués.</note>
-</group>
-
-<group>
-<title>Ordre-Z (superposition)</title>
-<keys><key><misc f="Début"/></key> <action>monter la sélection au premier plan</action></keys>
-<keys><key><misc f="Fin"/></key> <action>descendre la sélection à l'arriÚre plan</action></keys>
-<keys><key><misc f="Préc."/></key> <action>monter la sélection d'un cran</action></keys>
-<keys><key><misc f="Suiv."/></key> <action>descendre la sélection d'un cran</action></keys>
- </group>
-</section>
-
-*<section title="Chemin" color="f9f1d9">
-<group>
-<title>Convertir en chemin</title>
-<keys><key><shift/><ctrl/>C</key> <action>convertir les objet(s) sélectionnés en chemin</action></keys>
-<keys><key><ctrl/><alt/>C</key> <action>convertir un contour en chemin</action></keys>
-</group>
-
-<group>
-<title>Booléens</title>
-<keys><key><ctrl/>+</key> <action>union</action></keys>
-<note>L'union combine plusieurs objets en un seul chemin, fusionnant les recouvrements.</note>
-<keys><key><ctrl/>-</key> <action>différence</action></keys>
-<note>La différence s'applique à deux objets, extrayant celui du dessus de celui du dessous.</note>
-<keys><key><ctrl/>*</key> <action>intersection</action></keys>
-<note>L'intersection crée un chemin représentant l'intersection des objets sélectionnés.</note>
-<keys><key><ctrl/>^</key> <action>exclusion (ou exclusif)</action></keys>
-<note>L'exclusion est similaire Ă  l'union, mais ne s'applique qu'Ă  deux objets et supprime les recouvrements.</note>
-<keys><key><ctrl/>/</key> <action>division (coupe)</action></keys>
-<note>La division découpe l'objet du dessous en morceaux selon l'objet du dessus, et préserve ses remplissage et contour.</note>
-<keys><key><ctrl/><alt/>/</key> <action>découpe des chemins</action></keys>
-<note>Découper en chemin découpe le contour de l'objet du dessous aux points d'intersection avec celui du dessus.</note>
-<note> Le résultat est sans remplissage.</note>
-<note>Le résultat d'une union/différence/intersection/exclusion hérite de l'attribut id (et donc des clones) de l'objet du dessous.</note>
-<note>Les division et découpe en chemin peuvent produire plusieurs objets. L'un d'eux, au hasard, hérite de l'id de l'objet du dessous.</note>
-</group>
-
-<group>
-<title>Offsets</title>
-<keys><key><ctrl/>(</key> <action>éroder le chemin</action></keys>
-<keys><key><ctrl/>)</key> <action>dilater le chemin</action></keys>
-<note>La distance d'offset par défaut est de 2 px (en pixels SVG, pas en pixels à l'écran).</note>
-<keys><key><alt/>(</key> <action>éroder le chemin d'1 pixel</action></keys>
-<keys><key><alt/>)</key> <action>dilater le chemin d'1 pixel</action></keys>
-<keys><key><shift/><alt/>(</key> <action>éroder le chemin de 10 pixels</action></keys>
-<keys><key><shift/><alt/>)</key> <action>dilater le chemin de 10 pixels</action></keys>
-<note>L'offset réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour ajuster plus finement.</note>
-<note>Toutes les commandes (, ) convertissent l'objet en chemin si nécessaire, et produisent un chemin normal.</note>
-<keys><key><ctrl/>J</key> <action>créer un offset dynamique</action></keys>
-<keys><key><ctrl/><alt/>J</key> <action>créer un offset lié</action></keys>
-<note>Ces commandes produisent un objet offset (autonome ou liĂ© Ă  l'original) que l'on peut Ă©diter avec l'outil nƓud.
-</note>
-<keys><key><shift/>D</key> <action>sélectionner l'objet source</action></keys>
-<note>AprÚs sélection d'un offset lié, cette commande sélectionne l'objet original dont il est issu.</note>
-</group>
-
-<group>
-<title>Combinaison</title>
-<keys><key><ctrl/>K</key> <action>combiner les chemins</action></keys>
-<note>Cette commande est différente de grouper : des chemins combinés créent un objet, pas un groupe.</note>
-<note>Différente aussi d'une union : les recouvrements ne sont pas affectés.</note>
-<note>Le remplissage des recouvrements est géré par le champ remplissage (complet/alternatif) du dialogue Remplissage et contour.</note>
-<keys><key><shift/><ctrl/>K</key> <action>séparer les chemins</action></keys>
-<note>Sépare les sous-chemins d'un chemin composé; ceci échouera si l'objet est constitué d'un seul chemin.</note>
-</group>
-
-<group>
-<title>Simplification</title>
-<keys><key><ctrl/>L</key> <action>simplifier</action></keys>
-<note>Simplifie les chemin(s) sĂ©lectionnĂ©s en supprimant quelques nƓuds. Si nĂ©cessaire, les objets sont convertis en chemins.</note>
-<note>En invoquant cette commande plusieurs fois de suite rapidement, elle agira de plus en plus agressivement.</note>
-<note>Le seuil par défaut (réglable dans les préférences d'Inkscape) est restauré aprÚs une pause.</note>
-</group>
-</section>
-
-</column>
-
-<column>
-
-*<section title="Sélecteur" color="eee4dc">
-<group>
-<title>Sélection au clavier</title>
-<keys><key><misc f="Tab"/></key> <action>sélectionner l'objet suivant</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>sélectionner l'objet précédent</action></keys>
-<note>Sélectionne les objets selon leur ordre-z (Tab circule de l'arriÚre au premier plan, Maj+Tab fait l'inverse).</note>
-<note>A moins d'avoir fait des réarrangements manuels, le dernier objet créé est au tout premier plan</note>
-<note>Aussi, si rien n'est sélectionné, Maj+Tab est une façon pratique de sélectionner le dernier objet créé.</note>
-<note>Cette commande s'applique aux objets du calque courant (sauf modification des préférences).</note>
-<keys><key><ctrl/>A</key> <action>tout sélectionner (calque courant)</action></keys>
-<note>Cette commande s'applique aux objets du calque courant (sauf modification des préférences).</note>
-<keys><key><ctrl/><alt/>A</key> <action>tout sélectionner (tous les calques)</action></keys>
-<note>Cette commande s'applique aux objets de tout calque visible et déverrouillé.</note>
-<keys><key>!</key> <action>inverser la sélection (calque courant)</action></keys>
-<note>Inverse la sélection (désélectionne ce qui était sélectionné, et sélectionne tout le reste) du calque courant.</note>
-<keys><key><alt/>!</key> <action>inverser la sélection (tous les calques)</action></keys>
-<note>Inverse la sélection dans tout calque visible et déverrouillé.</note>
-<keys><key><misc f="Esc"/></key> <action>désélectionner</action></keys>
-<keys><key><misc-wide f="Backspace"/></key><key><misc f="Suppr."/></key> <action>supprimer la sélection</action></keys>
-</group>
-
-<group>
-<title>Déplacement au clavier</title>
-<mouse><key><arrows/></key> <action>déplacer la sélection par incrément(s)</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>déplacer la sélection de 10x l'incrément</action></mouse>
-<note>L'incrément de déplacement par défaut est de 2 px (en pixels SVG, pas en pixels à l'écran).</note>
-<mouse><key><alt/><arrows/></key> <action>déplacer la sélection d'1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>déplacer la sélection de 10 pixels</action></mouse>
-<note>Le déplacement réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour déplacer plus finement.</note>
-</group>
-
-<group>
-<title>Redimensionnement au clavier</title>
-<keys><key>.</key> <key>&gt;</key> <action>agrandir la sélection par incrément(s)</action></keys>
-<keys><key>,</key> <key>&lt;</key> <action>rétrécir la sélection par incrément(s)</action></keys>
-<note>L'incrément de redimensionnement par défaut est de 2 px (en pixels SVG, pas en pixels à l'écran).</note>
-<keys><key><ctrl/>.</key> <key><ctrl/>&gt;</key> <action>agrandir la sélection à 200%</action></keys>
-<keys><key><ctrl/>,</key> <key><ctrl/>&lt;</key> <action>rétrécir la sélection à 50%</action></keys>
-<keys><key><alt/>.</key> <key><alt/>&gt;</key> <action>agrandir la sélection d'1 pixel</action></keys>
-<keys><key><alt/>,</key> <key><alt/>&lt;</key> <action>rétrécir la sélection d'1 pixel</action></keys>
-<note>Le redimensionnement réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour dimensionner plus finement.</note>
-<note>Le redimensionnement est uniforme autour du centre : il est donc appliqué à la plus grande des deux dimensions.</note>
-</group>
-
-<group>
-<title>Rotation au clavier</title>
-<keys><key>[</key> <key>]</key> <action>tourner la sélection par incrément(s)</action></keys>
-<note>L'incrément de rotation par défaut est 15°. ] tourne en sens horaire, [ en sens anti-horaire.</note>
-<keys><key><ctrl/>[</key> <key><ctrl/>]</key> <action>tourner la sélection de 90 degrés</action></keys>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>tourner la sélection d'1 pixel</action></keys>
-<note>La rotation réelle à l'échelle du pixel dépend du niveau de zoom. Zommer pour tourner plus finement.</note>
-<note>Ces commandes utilisent le centre de rotation (par dĂ©faut le centre de gĂ©omĂ©trie), qui peut ĂȘtre dĂ©placĂ© dans le sĂ©lecteur.</note>
-</group>
-
-<group>
-<title>Retournement au clavier</title>
-<keys><key>h</key> <action>retourner la sélection horizontalement</action></keys>
-<keys><key>v</key> <action>retourner la sélection verticalement</action></keys>
-</group>
-
-<group>
-<title>Sélection à la souris</title>
-<mouse><key><left-click/></key> <action>sélectionner un objet</action></mouse>
-<note>En cliquant (bouton gauche) sur un objet, la sélection précédente est désélectionnée.</note>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-<note>Maj+cliquer ajoute un objet à la sélection courante s'il n'était pas sélectionné, le retire sinon.</note>
-<mouse><key><left-click/><left-click/></key> <action>editer l'objet</action></mouse>
-<note>Passe Ă  l'outil chemin en double-cliquant sur un chemin; Ă  l'outil forme correspondant pour une forme; Ă  l'outil texte pour un texte.</note>
-<note>Entrer dans le groupe (qui devient un calque temporaire) en double-cliquant sur un groupe.</note>
-<note>Passe au calque parent dans la hiérarchie (s'il y en a un) en double-cliquant sur un emplacement vide.</note>
-</group>
-
-<group>
-<title>Sélection dans un groupe, en-dessous</title>
-<mouse><key><ctrl/><left-click/></key> <action>sélectionner dans un groupe</action></mouse>
-<note>Sélectionne l'objet sous le curseur, quel que soit le groupe auquel cet objet peut appartenir.</note>
-<mouse><key><ctrl/><shift/><left-click/></key> <action>alterner la sélection (dans un groupe)</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>sélectionner en-dessous</action></mouse>
-<note>Sélectionne l'objet (sous le curseur) juste en dessous (dans l'ordre-z) l'objet sélectionné le plus bas.</note>
-<note>Si l'objet le plus en bas atteint, un Alt+Cliquer de plus sélectionne l'objet au premier plan, circulant ainsi dans l'ordre-z.</note>
-<note>Sous Linux, Alt+cliquer et Alt+cliquer-dĂ©placer peuvent ĂȘtre prĂ©emptĂ©s par le gestionnaire de fenĂȘtre.</note>
-<note>Reconfigurez celui-ci afin de pouvoir utiliser ces raccourcis dans Inkscape.</note>
-<mouse><key><shift/><alt/><left-click/></key> <action>alterner en-dessous</action></mouse>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>sélectionner en-dessous, dans des groupes</action></mouse>
-<mouse><key><shift/><ctrl/><alt/><left-click/></key> <action>alterner en-dessous, dans des groupes</action></mouse>
-<keys><key><ctrl/><misc-wide f="Entrée"/></key> <action>entrer dans le groupe</action></keys>
-<keys><key><ctrl/><misc-wide f="Backspace"/></key> <action>aller au calque/groupe parent</action></keys>
-</group>
-
-<group>
-<title>Bande étirable</title>
-<mouse><key><left-drag/></key> <action>sélectionner plusieurs objets</action></mouse>
-<note>Cliquer-déplacer autour d'objets les sélectionne par bande étirable; la sélection précédente est désélectionnée.</note>
-<mouse><key><shift/><left-drag/></key> <action>ajouter des objets à la sélection</action></mouse>
-<note>Normalement, vous devez commencer une bande étirable sur une zone vide.</note>
-<note>Mais, en appuyant sur Maj avant, Inkscape effectuera une zone Ă©tirable, mĂȘme si elle commence sur un objet.</note>
-</group>
-
-<group>
-<title>Déplacement à la souris</title>
-<mouse><key><left-drag/></key> <action>sélectionner + déplacer</action></mouse>
-<note>Cliquer-déplacer sur un objet le sélectionne s'il n'était pas sélectionné, puis déplace la sélection.</note>
-<mouse><key><alt/><left-drag/></key> <action>déplacer la sélection</action></mouse>
-<note>Déplace la sélection courante (sans sélectionner ce qui est sous le curseur), quel que soit le point de départ.</note>
-<note>Sous Linux, Alt+cliquer et Alt+cliquer-dĂ©placer peuvent ĂȘtre utilisĂ©s par le gestionnaire de fenĂȘtre.</note>
-<note>Reconfigurez celui-ci afin de pouvoir utiliser ces raccourcis dans Inkscape.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>restreindre Ă  un mouvement vertical/horizontal</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>désactiver temporairement l'adhérence</action></mouse>
-<note>Désactive temporairement l'adhérence à la grille ou aux guides lors de déplacements (grille/guides étant actifs).</note>
-<mouse><key><left-drag/><misc-wide f="Espace"/></key> <action>tamponner une copie</action></mouse>
-<note>Lors de déplacements/transformations à la souris, un appui sur la barre d'espace dépose une copie de l'objet sélectionné.</note>
-<note>Vous pouvez maintenir la barre d'espace appuyée lors d'un déplacement pour obtenir une belle "trainée".</note>
-</group>
-
-<group>
-<title>Transformation Ă  la souris</title>
-<mouse><key><left-click/></key> <action>alterner poignées rotation/redimensionnement</action></mouse>
-<mouse><key><left-drag/></key> <action>redimensionner</action></mouse>
-<note>S'applique aux poignées de redimensionnement.</note>
-<mouse><key><left-drag/></key> <action>tourner ou incliner</action></mouse>
-<note>S'applique aux poignées de rotation/inclinaison.</note>
-</group>
-
-<group>
-<title>Poignées de redimensionnement</title>
-<mouse><key><left-drag/></key> <action>redimensionner</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>redimensionner en préservant le ratio</action></mouse>
-<!--<mouse><key><ctrl/><left-drag/></key> only smaller, keep aspect ratio--> <!-- TO BE REMOVED -->
-<mouse><key><shift/><left-drag/></key> <action>transformation symétrique</action></mouse>
-<note>Appuyer sur Maj pendant une transformation rend cette transformation symétrique autour du centre de la sélection.</note>
-<!-- FIXME: why not disable snapping? inconsistent! -->
-<mouse><key><alt/><left-drag/></key> <action>mouvement lent</action></mouse>
-<note>Force un ralentissement des mouvements de la souris, permettant ainsi des modifications plus fines.</note>
-</group>
-
-<group>
-<title>Poignées de rotation</title>
-<mouse><key><left-drag/></key> <action>tourner ou incliner</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>incliner par incrément(s)</action></mouse>
-<note>Appuyer sur Ctrl tout en déplaçant une poignée d'inclinaison (pas un coin) pour incliner par incréments (15 degrés par défaut).</note>
-<mouse><key><ctrl/><left-drag/></key> <action>tourner par incrément(s)</action></mouse>
-<note>Appuyer sur Ctrl tout en déplaçant une poignée de rotation (coin) pour tourer par incréments (15 degrés par défaut).</note>
-</group>
-
-<group>
-<title>Centre de rotation</title>
-<mouse><key><left-drag/></key> <action>déplacer le centre de rotation</action></mouse>
-<note>Une fois déplacé, le centre de rotation retient sa position pour tous les objets sélectionnés, jusqu'à sa remise à zéro.</note>
-<mouse><key><shift/><left-click/></key> <action>r-Ă -z du centre de rotation</action></mouse>
-<note>Remettre à zéro un centre de rotation revient à le remettre au centre géométrique de l'objet/boßte de contour de la sélection.</note>
-</group>
-
-<group>
-<title>Annulation</title>
-<keys><key><misc f="Esc"/></key> <action>annuler bande étirable/déplacer/transformer</action></keys>
-<note>Un appui sur Esc (le bouton de la souris étant encore pressé) annule la bande étirable, le déplacement ou la transformation.</note>
-</group>
-</section>
-
-</column>
-<column>
-*<section title="NƓud" color="f9f1d9">
-
-<group>
-<title>Sélection au clavier</title>
-<keys><key><misc f="Tab"/></key> <action>sĂ©lectionner le nƓud suivant</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>sĂ©lectionner le nƓud prĂ©cĂ©dent</action></keys>
-<note>Ces raccourcis vous permettent de sĂ©lectionner n'importe quel nƓud du chemin sĂ©lectionnĂ©.</note>
-<keys><key><ctrl/>A</key> <action>sĂ©lectionner tous les nƓuds du sous-chemin</action></keys>
-<note>Si le chemin a plusieurs sous-chemins, sĂ©lectionne tous les nƓuds uniquement dans le sous-chemin qui a dĂ©jĂ  des nƓuds sĂ©lectionnĂ©s.</note>
-<keys><key><ctrl/><alt/>A</key> <action>sĂ©lectionner tous les nƓuds du chemin</action></keys>
-<note>SĂ©lectionne tous les nƓuds du chemin entier.</note>
-<keys><key>!</key> <action>inverser la sélection dans le(s) sous-chemin(s)</action></keys>
-<note>Si le chemin a plusieurs sous-chemins, inverse la sĂ©lection uniquement dans les sous-chemins qui ont dĂ©jĂ  des nƓuds sĂ©lectionnĂ©s.</note>
-<keys><key><alt/>!</key> <action>inverser la sélection dans le chemin</action></keys>
-<note>Inverse la sélection (désélectionne ce qui était sélectionné et vice versa) dans le chemin entier.</note>
-<keys><key><misc f="Esc"/></key> <action>dĂ©sĂ©lectionner tous les nƓuds</action></keys>
-</group>
-
-<group>
-<title>Déplacement au clavier</title>
-<mouse><key><arrows/></key> <action>dĂ©placer les nƓuds sĂ©lect. par incrĂ©ment(s)</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>dĂ©placer les nƓuds sĂ©lect. de 10x l'incrĂ©ment</action></mouse>
-<note>L'incrément de déplacement par défaut est de 2 px (en pixels SVG, pas en pixels à l'écran).</note>
-<mouse><key><alt/><arrows/></key> <action>dĂ©placer les nƓuds sĂ©lectionnĂ©s d'1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>dĂ©placer les nƓuds sĂ©lectionnĂ©s de 10 pixels</action></mouse>
-<note>Le déplacement réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour déplacer plus finement.</note>
-</group>
-
-<group>
-<title>Redim. poignĂ©es clavier (1 nƓud sĂ©lect.)</title>
-<keys><key>&lt;</key> <key>&gt;</key> <action>redim. les deux poignées par incrément(s)</action></keys>
-<note>L'incrĂ©ment de redimensionnement par dĂ©faut est de 2 px (en pixels SVG, pas en pixels Ă  l'Ă©cran). Applicable Ă  plusieurs nƓuds.</note>
-<keys>
-<key><left/><ctrl/>&lt;</key>
-<key><left/><ctrl/>&gt;</key>
-<action>redim. la poignée gauche par incrément(s)</action>
-</keys>
-<keys>
-<key><right/><ctrl/>&lt;</key>
-<key><right/><ctrl/>&gt;</key>
-<action>redim. la poignée droite par incrément(s)</action>
-</keys>
-<keys>
-<key><left/><alt/>&lt;</key>
-<key><left/><alt/>&gt;</key>
-<action>redimensionner la poignée gauche d'1 pixel</action>
-</keys>
-<keys>
-<key><right/><alt/>&lt;</key>
-<key><right/><alt/>&gt;</key>
-<action>redimensionner la poignée droite d'1 pixel</action>
-</keys>
-<note>Le redimensionnement réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour dimensionner plus finement.</note>
-<note>A la place des touches &lt; et &gt;, vous pouvez utiliser respectivement , (virgule) et . (point).</note>
-</group>
-
-<group>
-<title>Rotation poignĂ©es clavier (1 nƓud sĂ©lect.)</title>
-<keys><key>[</key> <key>]</key> <action>tourner les deux poignées par incrément(s)</action></keys>
-<note>L'incrĂ©ment de rotation par dĂ©faut est 15 degrĂ©s. ] tourne en sens horaire, [ en sens anti-horaire. Applicable Ă  plusieurs nƓuds.</note>
-<keys><key><left/><ctrl/>[</key> <key><left/><ctrl/>]</key> <action>tourner la poignée gauche par incrément(s)</action></keys>
-<keys><key><right/><ctrl/>[</key> <key><right/><ctrl/>]</key> <action>tourner la poignée droite par incrément(s)</action></keys>
-<note>L'incrément de rotation par défaut est 15 degrés.</note>
-<keys><key><left/><alt/>[</key> <key><left/><alt/>]</key> <action>tourner la poignée gauche d'1 pixel</action></keys>
-<keys><key><right/><alt/>[</key> <key><right/><alt/>]</key> <action>tourner la poignée droite d'1 pixel</action></keys>
-<note>La rotation réelle à l'échelle du pixel dépend du niveau de zoom. Zommer pour tourner plus finement.</note>
-</group>
-
-<group>
-<title>Redim. au clavier (&gt;1 nƓuds sĂ©lect.)</title>
-<note>Ces commandes redimensionnent les nƓuds sĂ©lectionnĂ©s comme s'ils formaient un objet autour du centre de cet objet.</note>
-<keys><key>.</key> <key>&gt;</key> <action>agrandir les nƓuds par incrĂ©ment(s)</action></keys>
-<keys><key>,</key> <key>&lt;</key> <action>rĂ©trĂ©cir les nƓuds par incrĂ©ment(s)</action></keys>
-<note>L'incrément de redimensionnement par défaut est de 2 px (en pixels SVG, pas en pixels à l'écran).</note>
-<keys><key><alt/>.</key> <key><alt/>&gt;</key> <action>agrandir les nƓuds d'1 pixel</action></keys>
-<keys><key><alt/>,</key> <key><alt/>&lt;</key> <action>rĂ©trĂ©cir les nƓuds d'1 pixel</action></keys>
-<note>Le redimensionnement réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour dimensionner plus finement.</note>
-<note>Le redimensionnement est uniforme autour du centre : il est donc appliqué à la plus grande des deux dimensions.</note>
-</group>
-
-<group>
-<title>Rotation au clavier (&gt;1 nƓuds sĂ©lect.)</title>
-<note>Ces commandes font tourner les nƓuds sĂ©lectionnĂ©s comme s'ils formaient un objet autour du centre de cet objet.</note>
-<keys><key>[</key> <key>]</key> <action>tourner les nƓuds par incrĂ©ment(s)</action></keys>
-<note>L'incrément de rotation par défaut est 15 degrés. ] tourne en sens horaire, [ en sens anti-horaire.</note>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>tourner les nƓuds d'1 pixel</action></keys>
-<note>La rotation réelle à l'échelle du pixel dépend du niveau de zoom. Zommer pour tourner plus finement.</note>
-</group>
-
-<group>
-<title>Retournement au clavier (&gt;1 nƓuds sĂ©lect.)</title>
-<note>Ces commandes retournent les nƓuds sĂ©lectionnĂ©s comme s'ils formaient un objet autour du centre de cet objet.</note>
-<keys><key>h</key> <action>retourner les nƓuds horizontalement</action></keys>
-<keys><key>v</key> <action>retourner les nƓuds verticalement</action></keys>
-</group>
-
-<group>
-<title>Modification du type de segment</title>
-<keys><key><shift/>L</key> <action>rendre rectiligne</action></keys>
-<keys><key><shift/>U</key> <action>rendre courbe</action></keys>
-<note>Ces commandes exigent que plus de deux nƓuds adjacents soient sĂ©lectionnĂ©s.</note>
-</group>
-
-<group>
-<title>Modification du type de nƓud</title>
-<keys><key><shift/>C</key> <action>rendre dur</action></keys>
-<keys><key><shift/>S</key> <action>rendre doux</action></keys>
-<keys><key><shift/>Y</key> <action>rendre symétrique</action></keys>
-<note>Quand vous rendez un nƓud doux ou symĂ©trique, passer la souris au-dessus d'une des poignĂ©es pour en prĂ©server la position.</note>
-<mouse><key><ctrl/><left-click/></key> <action>alterner doux/dur/symétrique</action></mouse>
-</group>
-
-<group>
-<title>Joindre/briser</title>
-<keys><key><shift/>J</key> <action>joindre les nƓuds sĂ©lectionnĂ©s</action></keys>
-<note>NĂ©cessite que deux (et seulement deux) nƓuds terminaux du chemin soient sĂ©lectionnĂ©s.</note>
-<keys><key><shift/>B</key> <action>briser les nƓud(s) sĂ©lectionnĂ©s</action></keys>
-<note>AprĂšs brisure, un seul des deux nƓuds est sĂ©lectionnĂ©. Applicable Ă  plus d'un nƓud Ă  la fois.</note>
-</group>
-
-<group>
-<title>Suppression, création, duplication</title>
-<keys><key><misc-wide f="Backspace"/></key><key><misc f="Suppr."/></key> <action>supprimer le(s) nƓud(s) sĂ©lectionnĂ©(s)</action></keys>
-<keys><key><ctrl/><misc-wide f="Backspace"/></key><key><ctrl/><misc f="Suppr."/></key> <action>supprimer sans préserver la forme</action></keys>
-<note>Supprimer sans Ctrl ajuste les poignĂ©es des nƓuds restant afin de prĂ©server au mieux la forme de la courbe.</note>
-<note>Supprimer avec Ctrl ne modifie pas les nƓuds restant.</note>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>insĂ©rer/supprimer un nƓud</action></mouse>
-<note>Ctrl+Alt+click sur un nƓud le supprime;</note>
-<note>Ctrl+Alt+click sur un chemin entre deux nƓuds y insùre un nouveau nƓud.</note>
-<note>La suppression de nƓuds de cette maniĂšre essaie toujours de prĂ©server la forme de la courbe (comme Suppr./Backspace).</note>
-<mouse><key><left-click/><left-click/></key> <action>insĂ©rer un nƓud</action></mouse>
-<note>Double cliquer sur un chemin entre deux nƓuds y insùre un nouveau nƓud.</note>
-<keys><key><misc f="Ins."/></key> <action>insĂ©rer des nouveaux nƓuds </action></keys>
-<note>Ajoute de nouveaux nƓud(s) au milieu des segment(s) sĂ©lectionnĂ©s (nĂ©cessite donc la sĂ©lection de plus de deux nƓuds adjacents).</note>
-<keys><key><shift/>D</key> <action>dupliquer les nƓud(s) sĂ©lectionnĂ©s</action></keys>
-<note>Les nouveaux nƓuds sont créés sur le mĂȘme chemin; ils sont placĂ©s au-dessus des prĂ©cĂ©dents et sont sĂ©lectionnĂ©s.</note>
-</group>
-
-<!-- does not seem to work
-<group>
-<title>NƓud actif</title>
-<note>Le nƓud actif est celui sous la souris ou en train d'ĂȘtre dĂ©placĂ©.</note>
-<note>Lorsque qu'un nƓud est actif, certains raccourcis peuvent ne pas fonctionner;</note>
-<note>dĂ©placez votre souris de façon Ă  ce qu'il n'y ait pas de nƓud actif si vous voulez les utiliser.</note>
-<keys><key>c</key> <action>rendre le nƓud actif dur</action></keys>
-<keys><key>s</key> <action>rendre le nƓud actif doux</action></keys>
-<keys><key>y</key> <action>rendre le nƓud actif symĂ©trique</action></keys>
-<keys><key>b</key> <action>briser le nƓud actif</action></keys>
-<keys><key><misc-wide f="Backspace"/></key> <action>supprimer le nƓud actif</action></keys>
-</group>
--->
-
-<group>
-<title>Sélection à la souris : objets</title>
-<mouse><key><left-click/></key> <action>sélectionner un objet non sélectionné</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>sélectionner en dessous</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-<note>Ces raccourcis fonctionnent comme ceux du sĂ©lecteur. Les nƓuds et poignĂ©es de l'objet sĂ©lectionnĂ© deviennent Ă©ditables.</note>
-</group>
-
-<group>
-<title>SĂ©lection Ă  la souris : nƓuds</title>
-<mouse><key><left-click/></key> <action>sĂ©lectionner un nƓud</action></mouse>
-<note>Cliquer sur un nƓud pour le sĂ©lectionner.</note>
-<mouse><key><left-click/></key> <action>sĂ©lectionner deux nƓuds adjacents</action></mouse>
-<note>Cliquer sur un chemin sĂ©lectionnĂ© entre deux nƓuds sĂ©lectionne les deux nƓuds les plus proches.</note>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-<note>(DĂ©)sĂ©lectionne un nƓud (clic sur un nƓud) ou deux (clic sur le chemin entre deux nƓuds).</note>
-<mouse><key><left-click/></key> <action>désélectionner</action></mouse>
-<note>Cliquer sur une zone vide dĂ©sĂ©lectionne tous les nƓuds sĂ©lectionnĂ©s. Le clic suivant dĂ©sĂ©lectionne l'objet.</note>
-</group>
-
-<group>
-<title>Bande étirable</title>
-<mouse><key><left-drag/></key> <action>sĂ©lectionner plusieurs nƓuds</action></mouse>
-<note>Cliquer-dĂ©placer autour de nƓuds les sĂ©lectionne par bande Ă©tirable; la sĂ©lection prĂ©cĂ©dente est dĂ©sĂ©lectionnĂ©e.</note>
-<mouse><key><shift/><left-drag/></key> <action>ajouter des nƓuds Ă  la sĂ©lection</action></mouse>
-<note>Normalement, vous devez commencer la bande Ă©tirable d'un point en dehors d'un chemin ou d'un nƓud.</note>
-<note>Sauf si vous appuyez sur Maj avant de la commencer.</note>
-</group>
-
-<group>
-<title>DĂ©placement des nƓuds Ă  la souris</title>
-<mouse><key><left-drag/></key> <action>dĂ©placer les nƓuds sĂ©lectionnĂ©s</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>restreindre Ă  des mouvements horiz./vert. </action></mouse>
-<mouse><key><ctrl/><alt/><left-drag/></key> <action>déplacer le long des poignées</action></mouse>
-<note>Restreint les déplacements selon les directions des poignées et leurs perpendiculaires (soit 8 directions).</note>
-<note>Si le nƓud a des droites d'un cĂŽtĂ© ou des deux, le dĂ©placement sera restreint Ă  ces droites et leurs perpendiculaires.</note>
-<mouse><key><shift/><left-drag/></key> <action>désactiver temporairement l'adhérence</action></mouse>
-<note>L'adhĂ©rence des nƓuds est activable dans les prĂ©fĂ©rences du document. </note>
-<note>Par défaut, seules les boßtes de contour des objets adhÚrent à la grille ou aux guides.</note>
-<mouse><key><shift/><left-drag/></key> <action>extraire une poignée</action></mouse>
-<note>Si un nƓud possĂšde une poignĂ©e rĂ©tractĂ©e, Maj+dĂ©placer vous permet de la faire ressortir.</note>
-<mouse><key><left-drag/><misc-wide f="Espace"/></key> <action>tamponner une copie</action></mouse>
- <note>Lors du dĂ©placement nƓuds de Ă  la souris, un appui sur la barre d'espace dĂ©pose une copie de l'objet sĂ©lectionnĂ©.</note>
-<note>Vous pouvez maintenir la barre d'espace appuyée lors d'un déplacement pour obtenir une belle "trainée".</note>
-</group>
-
-<group>
-<title>Déplacement des poignées à la souris</title>
-<mouse><key><left-drag/></key> <action>dĂ©placer une poignĂ©e de nƓud</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>tourner la poignée par incrément(s)</action></mouse>
-<note>L'incrément de rotation par défaut est 15 degrés.</note>
-<note> Permet aussi de forcer le déplacement selon la direction de la poignée et sa perpendiculaire.</note>
-<mouse><key><shift/><left-drag/></key> <action>tourner les deux poignées</action></mouse>
-<mouse><key><alt/><left-drag/></key> <action>préserver la longueur de la poignée</action></mouse>
-<note>Ctrl, Maj, Alt peuvent ĂȘtre combinĂ©s lors du cliquer-dĂ©placer de contrĂŽles.</note>
-<mouse><key><ctrl/><left-click/></key> <action>rétracter une poignée</action></mouse>
-<note>Une poignée rétractée a une longueur nulle; Maj+déplacer permet de l'extraire à nouveau.</note>
-</group>
-
-<group>
-<title>Inversion</title>
-<keys><key>r</key> <action>inverser la direction du chemin</action></keys>
-</group>
-
-<group>
-<title>Edition de formes</title>
-<note>
-L'outil nƓud agit aussi sur les poignĂ©es des formes (rectangles, ellipses, Ă©toiles, spirales).</note>
-<note>Cliquer sur une forme pour la sélectionner.</note>
-<note>Consultez les raccourcis des outils de formes correspondant, qui fonctionnent aussi dans l'outil nƓud.</note>
-</group>
-
-<group>
-<title>Annulation</title>
-<keys><key><misc f="Esc"/></key> <action>annuler bande étirable/déplacer</action></keys>
-<note>Un appui sur Esc (le bouton de la souris Ă©tant encore pressĂ©) annule la bande Ă©tirable, le dĂ©placement de nƓud/poignĂ©e.</note>
-</group>
-</section>
-</column>
-
-
-<column>
-
-*<section title="Rectangle" color="ebf1fd">
-<group>
-<title>Création</title>
-<mouse><key><left-drag/></key> <action>dessiner un rectangle</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>dessiner un rectangle de ratio entier</action></mouse>
-<note>Ceci force le rectangle à garder un rapport hauteur/largeur entier (permet aussi de dessiner un carré).</note>
-<mouse><key><shift/><left-drag/></key> <action>dessiner autour du point de départ</action></mouse>
-<note>Ceci crée un rectangle symétriquement autour du point de départ.</note>
-</group>
-
-<group>
-<title>Edition</title>
-<mouse><key><left-click/></key> <action>cliquer sur un rectangle à sélectionner</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>sélectionner en dessous</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-<mouse><key><left-drag/></key> <action>redimensionner ou arrondir les coins</action></mouse>
-<note>Les deux poignées d'arrondi sont en haut à droite; celles de redimensionnement, en haut à gauche et en bas à droite.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>préserver largeur, hauteur ou ratio</action></mouse>
-<note>S'applique aux poignées de redimensionnement.</note>
-<note>Celles-ci redimensionnent le rectangle dans son propre systÚme de coordonnées, avant d'appliquer toute transformation.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>préserver l'arrondi</action></mouse>
-<note>S'applique aux poignées d'arrondi.</note>
-<note>Lors de l'arrondi des coins, ne déplacer qu'une poignée (l'autre restant dans le coin) préserve la circularité du coin.</note>
-<note>Déplacez les deux poignées pour un arrondi elliptique, ou une seule en appuyant sur Ctrl pour synchroniser la deuxiÚme.
-</note>
-<keys><key><misc f="Esc"/></key> <action>désélectionner</action></keys>
-</group>
-</section>
-
-*<section title="Ellipse" color="ffece8">
-<group>
-<title>Création</title>
-<mouse><key><left-drag/></key> <action>dessiner une ellipse</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>dessiner une ellipse de ratio entier</action></mouse>
-<note>Ceci force l'ellipse Ă  garder un rapport hauteur/largeur entier (permet aussi de dessiner un cercle).</note>
-<mouse><key><shift/><left-drag/></key> <action>dessiner autour du point de départ</action></mouse>
-<note>Ceci crée une ellipse symétriquement autour du point de départ.</note>
-</group>
-<group>
-<title>Edition</title>
-<mouse><key><left-click/></key> <action>cliquer sur une ellipse à sélectionner</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>sélectionner en dessous</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-<mouse><key><left-drag/></key> <action>redimensionner, former un arc ou camembert</action></mouse>
-<note>Les deux poignées d'arc/camembert sont tout à droite; celles de redimensionnement, tout en haut et tout à gauche.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>forcer la circularité</action></mouse>
-<note>S'applique aux poignées de redimensionnement.</note>
-<note>Celles-ci redimensionnent l'ellipse dans son propre systÚme de coordonnées, avant d'appliquer toute transformation.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>modifier l'angle par incréments</action></mouse>
-<note>S'applique aux poignées d'arc/camembert.</note>
-<note>L'incrément d'angle par défaut est de 15 degrés.</note>
-<keys><key><misc f="Esc"/></key> <action>désélectionner</action></keys>
-</group>
-</section>
-
-*<section title="Etoile" color="f8f7d5">
-<group>
-<title>Création</title>
-<mouse><key><left-drag/></key> <action>dessiner une étoile</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>tourner l'étoile par incréments</action></mouse>
-<note>L'incrément d'angle par défaut est de 15 degrés.</note>
-</group>
-<group>
-<title>Edition</title>
-<mouse><key><left-click/></key> <action>cliquer sur une étoile à sélectionner</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>sélectionner en dessous</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-<mouse><key><left-drag/></key> <action>déplacer une poignée pour modifier l'étoile</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>garder l'étoile strictement radiale</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>arrondir l'étoile</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>supprimer l'arrondi</action></mouse>
-<mouse><key><alt/><left-drag/></key> <action>rendre l'étoile aléatoire</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>supprimer le hasard</action></mouse>
-<keys><key><misc f="Esc"/></key> <action>désélectionner</action></keys>
-</group>
-</section>
-
-*<section title="Spirale" color="f3f3f3">
-<group>
-<title>Création</title>
-<mouse><key><left-drag/></key> <action>dessiner une spirale</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>tourner la spirale par incréments</action></mouse>
-<note>L'incrément d'angle par défaut est de 15 degrés.</note>
-</group>
-<group>
-<title>Edition</title>
-<mouse><key><left-click/></key> <action>cliquer sur une spirale à sélectionner</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>sélectionner en dessous</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-<mouse><key><left-drag/></key> <action>enrouler/dérouler (poignée intérieure)</action></mouse>
-<note>Déplacer la poignée intérieure pour modifier le paramÚtre "rayon intérieur".
-</note>
-<mouse><key><alt/><left-drag/></key> <action>converger/diverger (poignée intérieure)</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>forcer divergence=1 (poignée intérieure)</action></mouse>
-<note>Alt+déplacer verticalement sur la poignée intérieure pour modifier la divergence, Alt+cliquer la remet à 1.</note>
-<mouse><key><shift/><left-click/></key> <action>forcer rayon intérieur=0 (poignée intérieure)</action></mouse>
-<note>Maj+cliquer sur la poignée intérieure la déplace (et donc le départ de la spirale) au centre.</note>
-<mouse><key><left-drag/></key> <action>enrouler/dérouler (poignée extérieure)</action></mouse>
-<note>Déplacer la poignée extérieure modifie le nombre de tours. Maj+Alt+cliquer-déplacer pour en/dé-rouler en préservant le rayon.</note>
-<mouse><key><shift/><left-drag/></key> <action>redimensionner/tourner (poignée extérieure)</action></mouse>
-<note>Utiliser Maj+Alt pour forcer une rotation seulement (verrouille le rayon de la spirale).</note>
-
-<mouse><key><ctrl/><left-drag/></key> <action>tourner une poignée par incréments</action></mouse>
-<note>L'incrément d'angle par défaut est de 15 degrés. Ceci s'applique aux deux poignées.</note>
-
-<keys><key><misc f="Esc"/></key> <action>désélectionner</action></keys>
-</group>
-</section>
-
-</column>
-<column>
-
-
-*<section title="Zoom" color="e7e9f3">
-<group>
-<mouse><key><left-click/></key> <action>zoommer</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>dézoommer</action></mouse>
-<mouse><key><left-drag/></key> <action>zoommer sur la zone</action></mouse>
-</group>
-</section>
-
-*<section title="Main levée" color="e9efc5">
-<group>
-<mouse><key><left-drag/></key> <action>dessiner une ligne à main levée</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>ajouter au chemin sélectionné</action></mouse>
-<note>Si un chemin est sélectionné, Maj+cliquer-déplacer crée un nouveau sous-chemin plutÎt qu'un chemin indépendant.</note>
-<mouse><key><shift/><left-drag/></key> <action>désactiver temporairement l'adhérence</action></mouse>
-<note>Désactive temporairement aussi l'adhérence à la grille ou aux guides lors de déplacements (grille/guides étant actifs).</note>
-</group>
-</section>
-
-*<section title="Bézier" color="e7f5d7">
-<group>
-<title>CrĂ©ation de nƓuds</title>
-<mouse><key><left-click/></key> <action>crĂ©er un nƓud anguleux</action></mouse>
-<note>Commence un nouveau chemin si aucun chemin n'est en cours de création.</note>
-<mouse><key><shift/><left-drag/></key> <action>ajouter au chemin sélectionné</action></mouse>
-<note>Si un chemin est sélectionné, Maj+cliquer-déplacer crée un nouveau sous-chemin plutÎt qu'un chemin indépendant.</note>
-<mouse><key><left-drag/></key> <action>crĂ©er un nƓud de BĂ©zier avec 2 poignĂ©es</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>ne déplacer qu'une poignée</action></mouse>
-<!-- FIXME: also disables snapping! another conflict -->
-<note>Ceci ne dĂ©place qu'une poignĂ©e (au lieu des deux), pour crĂ©er un nƓud dur.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>tourner la poignée par incrément(s)</action></mouse>
-<note>L'incrément de rotation par défaut est 15 degrés.</note>
-</group>
-
-<group>
-<title>DĂ©placement du dernier nƓud</title>
-<note>Ces commandes permettent de dĂ©placer le dernier nƓud créé (dĂ©but du segment rouge) lors de la crĂ©ation de chemins</note>
-<mouse><key><arrows/></key> <action>dĂ©placer le dernier nƓud par incrĂ©ment(s)</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>dĂ©placer le dernier nƓud de 10x l'incrĂ©ment</action></mouse>
-<note>L'incrément de déplacement par défaut est de 2 px (en pixels SVG, pas en pixels à l'écran).</note>
-<mouse><key><alt/><arrows/></key> <action>dĂ©placer le dernier nƓud d'1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>dĂ©placer le dernier nƓud de 10 pixels</action></mouse>
-<note>Le déplacement réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour déplacer plus finement.</note>
-</group>
-
-
-<group>
-<title>Création/modification des segments</title>
-<keys><key><ctrl/></key> <action>tourner le segment par incrément(s)</action></keys>
-<note>Ceci force la rotation d'un nƓud (nouvel angle relativement au nƓud prĂ©cĂ©dent) par incrĂ©ment(s) (15 degrĂ©s par dĂ©faut).</note>
-<keys><key><shift/>L</key> <action>rendre le dernier segment rectiligne</action></keys>
-<keys><key><shift/>U</key> <action>rendre le dernier segment courbe</action></keys>
-<note>Ces commandes modifient le dernier segment (rouge) en ligne droite ou courbe.</note>
-</group>
-
-<group>
-<title>Terminaison</title>
-<keys><key><misc-wide f="Entrée"/></key> <action>terminer le tracé courant</action></keys>
-<mouse><key><right-click/></key> <action>terminer le tracé courant</action></mouse>
-<mouse><key><left-click/><left-click/></key> <action>terminer le tracé courant</action></mouse>
-<note>Entrée, clic-droit ou double-clic terminent la ligne courante, annulant le dernier segment non fini (en rouge).</note>
-</group>
-
-<group>
-<title>Annulation</title>
-<keys><key><misc f="Esc"/></key><key><ctrl/>z</key> <action>annule la ligne courante</action></keys>
-<keys><key><misc-wide f="Backspace"/></key><key><misc f="Suppr."/></key> <action>efface le dernier segment de la ligne courante</action></keys>
-</group>
-</section>
-
-*<section title="Calligraphie" color="e9dfef">
-<group>
-<mouse><key><left-drag/></key> <action>tracer une ligne calligraphique</action></mouse>
-<mouse><key><left-arrow/></key> <key><right-arrow/></key> <action>ajuster la largeur de la plume</action></mouse>
-<mouse><key><up/></key> <key><down/></key> <action>ajuster l'angle de la plume</action></mouse>
-<note>La largeur et l'angle de la plume peuvent ĂȘtre ajustĂ©s tout en dessinant.</note>
-<keys><key><misc f="Esc"/></key> <action>désélectionner</action></keys>
-</group>
-</section>
-
-*<section title="Dégradé" color="e9f3e7">
-<group>
-<title>Création de dégradés</title>
-<mouse><key><left-drag/></key> <action>appliquer un dégradé</action></mouse>
-<note>Applique un dégradé sur les objets sélectionnés.</note>
-<note>Vous pouvez choisir caractéristiques linéaire/radial remplissage/contour dans la barre des contrÎles.</note>
-<mouse><key><left-click/><left-click/></key> <action>appliquer le dégradé par défaut</action></mouse>
-<note>Applique le dégradé par défaut (linéaire : horizontal de bord à bord; radial centré de bord à bord) sur l'objet cliqué).</note>
-</group>
-
-<group>
-<title>Poignées</title>
-<keys><key><misc f="Tab"/></key> <action>sélectionner la poignée suivante</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>sélectionner la poignée précédente</action></keys>
-<mouse><key><arrows/></key> <action>déplacer la poignée sélectionnée par incrément(s)</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>déplacer la poignée sélectionnée de 10x l'incrément</action></mouse>
-<note>L'incrément de déplacement par défaut est de 2 px (en pixels SVG, pas en pixels à l'écran).</note>
-<mouse><key><alt/><arrows/></key> <action>déplacer la poignée sélectionnée d'1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>déplacer la poignée sélectionnée de 10 pixels</action></mouse>
-<note>Le déplacement réel à l'échelle du pixel dépend du niveau de zoom. Zommer pour déplacer plus finement.</note>
-<keys><key><misc f="Esc"/></key> <action>désélectionner la poignée</action></keys>
-<mouse><key><left-click/><left-click/></key> <action>ouvrir l'éditeur de dégradé</action></mouse>
-<note>Double-cliquer sur une poignée de dégradé ouvre l'éditeur de dégradé sur ce dégradé et sur cette poignée dans la liste des stops.</note>
-</group>
-
-<group>
-<title>Retournement</title>
-<keys><key><shift/>r</key> <action>retourner la définition du dégradé</action></keys>
-<note>Ceci retourne les positions des stops du dégradé sans déplacer ses poignées.</note>
-</group>
-
-<group>
-<title>Sélection à la souris</title>
-<mouse><key><left-click/></key> <action>cliquer sur un objet à sélectionner</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>sélectionner en dessous</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>alterner la sélection</action></mouse>
-</group>
-
-</section>
-
-
-*<section title="Pipette" color="feeffa">
-<group>
-<mouse><key><left-click/></key> <action>capturer la couleur de remplissage</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>capturer la couleur de contour</action></mouse>
-<mouse><key><left-drag/></key> <action>couleur moyenne de remplissage</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>couleur moyenne de contour</action></mouse>
-<note>Cliquer applique la couleur sous le curseur à la sélection courante. Cliquer-déplacer un disque en calcule la couleur moyenne.</note>
-<note>Si une poignée de dégradé (dans l'outil dégradé) est sélectionnée, celle-ci (et non l'objet entier) reçoit la couleur capturée.</note>
-<mouse><key><alt/><left-click/></key><key><alt/><left-drag/></key> <action>capturer la couleur inverse</action></mouse>
-<note>Un appui sur Alt permet de capturer (combiné ou non avec Maj, cliquer, cliquer-déplacer) l'inverse de la couleur.</note>
-<keys><key><ctrl/>C</key> <action>copier la couleur</action></keys>
-<note>Copie la couleur sous le curseur vers le presse-papiers, en tant que texte au format RRVVBBAA (8 chiffres hexadécimaux).</note>
-</group>
-</section>
-
-</column>
-<column>
-
-*<section title="Texte" color="eefdf3">
-<group>
-<title>Sélection/création</title>
-<mouse><key><left-click/></key> <action>créer/sélectionner un objet texte</action></mouse>
-<!--<keys><key>letters, digits, space, ...</key> <action>type text in a text object</action></keys>-->
-<note>Cliquer sur un espace libre ou sur un objet autre qu'un texte affiche un curseur texte; vous pouvez alors taper votre texte.</note>
-<note>Cliquer sur un objet texte pour le sélectionner; le curseur est placé à cÎté du point cliqué</note>
-<keys><key><misc f="Esc"/></key> <action>désélectionner l'objet texte</action></keys>
-</group>
-
-
-<group>
-<title>Navigation dans le texte</title>
-<mouse><key><arrows/></key> <action>déplacer le curseur d'un caractÚre</action></mouse>
-<mouse><key><ctrl/><left-arrow/></key> <key><ctrl/><right-arrow/></key> <action>déplacer le curseur d'un mot</action></mouse>
-<mouse><key><ctrl/><up-arrow/></key> <key><ctrl/><down-arrow/></key> <action>déplacer le curseur d'un paragraphe</action></mouse>
-<keys><key><misc f="Début"/></key> <key><misc f="Fin"/></key> <action>aller au début/fin de la ligne</action></keys>
-<keys><key><ctrl/><misc f="Home"/></key> <key><ctrl/><misc f="End"/></key> <action>aller au début/fin du texte</action></keys>
-<note>Toutes ces commandes annulent (si existante) la sélection de texte courante.</note>
-</group>
-
-<group>
-<title>Texte encadré (cadre interne)</title>
-<mouse><key><left-drag/></key> <action>créer un texte encadré</action></mouse>
-<note>Cliquer-déplacer sur une zone vide ou sans texte permet de créer un texte encadré dans un cadre interne.</note>
-<mouse><key><left-drag/></key> <action>ajuster les dimensions du cadre</action></mouse>
-<note>Déplacer la poignée inférieure droite du texte encadré sélectionné permet de modifier la hauteur/largeur du cadre.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>verrouille largeur, hauteur ou ratio du cadre</action></mouse>
-<note>DĂ©placer cette mĂȘme poignĂ©e en appuyant sur Ctrl prĂ©serve la largeur, la hauteur ou le ratio du cadre.</note>
-</group>
-
-<group>
-<title>Texte encadré (cadre externe)</title>
-<keys><key><alt/>W</key> <action>insére du texte dans un cadre</action></keys>
-<note>Avec un objet texte et une forme ou un chemin sélectionnés, permet d'insérer (encadrer) le texte dans la forme ou le chemin.</note>
-<note>Tous deux restent des objets séparés mais liés; editer le chemin ou la forme causera la mise à jour du cadre de texte.</note>
-<keys><key><alt/><shift/>W</key> <action>désencadrer un texte</action></keys>
-<note>Coupe le lien entre le texte encadré et son cadre, produisant un simple objet texte d'une seule ligne.</note>
-<keys><key><shift/>D</key> <action>sélectionner le cadre externe</action></keys>
-<note>TPour trouver l'objet qui encadre un texte, sélectionner celui-ci et appuyer sur Maj+D; l'objet encadrant est alors sélectionné.</note>
-</group>
-
-<group>
-<title>Texte suivant un chemin</title>
-<keys><key><shift/>D</key> <action>sélectionner le chemin</action></keys>
-<note>Sélectionner un texte suivant un chemin puis utiliser ce raccourci permet de sélectionner le chemin source du texte.</note>
-</group>
-
-
-
-<group>
-<title>Edition de texte</title>
-<note>Pour taper des caractĂšres + ou -, utilisez le clavier principal.</note>
-<note> les touches + et - du pavé numérique sont réservées pour le zoom, sauf si NumLock est activé.</note>
-<keys><key><misc-wide f="Enter"/></key> <action>commencer nouvelle ligne/nouveau paragraphe</action></keys>
-<note>Entrée dans un objet texte normal commence une nouvelle ligne; un nouveau paragraphe dans un texte encadré.</note>
-<keys><key><ctrl/>U</key> <action>(dés)activer le mode Unicode</action></keys>
-<note>Dans ce mode, entrez des chiffres hexadécimaux et validez (Entrée ou Espace) pour obtenir le caractÚre Unicode correspondant.</note>
-<note>Exemple : Ctrl+U 2 0 1 4 Entrée insÚre un tiret long et sort du mode Unicode.</note>
-<note>Utilisez Espace au lieu d'Entrée pour rester en mode Unicode aprÚs avoir inséré un caractÚre.</note>
-<note>Un appui sur Esc ou Ctrl+U annule le mode Unicode (sans insérer de caractÚre).</note>
-<keys><key><ctrl/><misc-wide f="Espace"/></key> <action>insérer un espace insécable</action></keys>
-<note>Un espace insĂ©cable est visible mĂȘme dans un objet texte sans attribut xml:space="preserve".</note>
-</group>
-
-<group>
-<title>Sélection de texte</title>
-<mouse><key><left-drag/></key> <action>sélectionner du texte</action></mouse>
-<note>Cliquer-déplacer sur un objet texte permet de sélectionner une plage de texte.</note>
-<mouse><key><shift/><arrows/></key> <action>sélectionner du texte par caractÚre</action></mouse>
-<mouse><key><ctrl/><shift/><arrows/></key> <action>sélectionner du texte par mot</action></mouse>
-<keys><key><shift/><misc f="Début"/></key> <key><shift/><misc f="Fin"/></key> <action>sélectionner jusqu'au début/la fin de la ligne</action></keys>
-<keys><key><ctrl/><shift/><misc f="Début"/></key> <key><ctrl/><shift/><misc f="Fin"/></key> <action>sélectionner jusqu'au début/la fin du texte</action></keys>
-<mouse><key><left-click/><left-click/></key> <action>sélectionner un mot</action></mouse>
-<mouse><key><left-click/><left-click/><left-click/></key> <action>sélectionner une ligne</action></mouse>
-<keys><key><ctrl/>A</key> <action>sélectionner le texte entier</action></keys>
-<note>Sélectionne tout le texte contenu dans l'objet texte courant.</note>
-</group>
-
-<group>
-<title>Style</title>
-<keys><key><ctrl/>B</key> <action>rendre la sélection grasse</action></keys>
-<keys><key><ctrl/>I</key> <action>rendre la sélection italique</action></keys>
-<note>Vous pouvez aussi utiliser la boßte de dialogue Texte et police pour affecter un style à une sélection de texte.</note>
-</group>
-
-<group>
-<title>Interlettre</title>
-<keys><key><alt/>&gt;</key> <action>allonger la ligne/le paragraphe d'1 pixel</action></keys>
-<keys><key><shift/><alt/>&gt;</key> <action>allonger la ligne/le paragraphe de 10 pixels</action></keys>
-<keys><key><alt/>&lt;</key> <action>rétrécir la/le paragraphe ligne d'1 pixel</action></keys>
-<keys><key><shift/><alt/>&lt;</key> <action>rétrécir la ligne/le paragraphe de 10 pixels</action></keys>
-<note>Ces raccourcis agissent lorsque vous éditez un objet texte.</note>
-<note>Ils ajustent l'inter-lettrage de la ligne (texte normal) ou du paragraphe (texte encadré) courant seulement.</note>
-<note>La précision réelle de ces ajustements (à l'échelle du pixel) dépend du niveau de zoom. Zommer pour un ajustement plus fin.</note>
-</group>
-
-<group>
-<title>Interligne</title>
-<keys><key><ctrl/><alt/>&gt;</key> <action>rendre l'objet texte plus haut d'1 pixel</action></keys>
-<keys><key><shift/><ctrl/><alt/>&gt;</key> <action>rendre l'objet texte plus haut de 10 pixels</action></keys>
-<keys><key><ctrl/><alt/>&lt;</key> <action>rendre l'objet texte plus bas d'1 pixel</action></keys>
-<keys><key><shift/><ctrl/><alt/>&lt;</key> <action>rendre l'objet texte plus bas de 10 pixels</action></keys>
-<note>Ces raccourcis agissent lorsque vous éditez un objet texte. Ils ajustent l'inter-lignage de l'objet texte courant (normal ou encadré).</note>
-<note>La précision réelle de ces ajustements (à l'échelle du pixel) dépend du niveau de zoom. Zommer pour un ajustement plus fin.</note>
-</group>
-
-<group>
-<title>Crénage et déplacement</title>
-<mouse><key><alt/><arrows/></key> <action>déplacer les caractÚres suivants d'1 pixel</action></mouse>
-<mouse><key><shift/><alt/><arrows/></key> <action>déplacer les caractÚres suivants de 10 pixels</action></mouse>
-<note>Ces raccourcis agissent lorsque vous éditez un objet texte normal. Le crénage ne fonctionne pas dans un texte encadré.</note>
-<note>Sans sélection, ils déplacent (horizontalement ou verticalement) le caractÚres entre le curseur et la fin de la ligne.</note>
-<note>Avec sélection, celle-ci est déplacée relativement au reste du texte (Chaque extrémité recevant des crénages opposés).</note>
-<note>La précision réelle des déplacements à l'échelle du pixel dépend du niveau de zoom. Zommer pour un ajustement plus fin.</note>
-</group>
-
-<group>
-<title>Rotation</title>
-<keys><key><ctrl/>[</key> <key><ctrl/>]</key> <action>tourner les caractÚre(s) de 90 degrés</action></keys>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>tourner les caractĂšre(s) d'1 pixel</action></keys>
-<note>Ces raccourcis font tourner le caractÚre suivant (aucune sélection) ou tous les caractÚres de la sélection (avec sélection).</note>
-<note>La rotation ne fonctionne que dans les objets textes normax (pas dans les textes encadrés).</note>
-<note>La précision réelle des rotations à l'échelle du pixel dépend du niveau de zoom. Zommer pour une rotation plus fine.</note>
-</group>
-</section>
-
-</column>
-
-</root>
diff --git a/doc/keys.html b/doc/keys.html
index 65481ee87..18ed6a458 100644
--- a/doc/keys.html
+++ b/doc/keys.html
@@ -19,8 +19,8 @@ share/keys/default.xml file in Inkscape distribution. Most (but not all) of thes
are configurable by the user; see the default.xml file for details on how to do that.</p><p>Unless noted otherwise, keypad keys (such as arrows, Home, End, +, -, digits) are
supposed to work the same as corresponding regular keys. If you have a new shortcut
idea, please contact the developers (by writing to the <a href="http://lists.sourceforge.net/lists/listinfo/inkscape-devel">devel mailing list</a>
-or by <a href="http://sourceforge.net/tracker/?group_id=93438&amp;atid=604309">submitting an
-RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span> <a class="contents-section" href="#id2501936">Tools</a><span class="contents-section"> | </span><a class="contents-section" href="#id2502416">Dialogs</a><span class="contents-section">: </span><a class="contents-group" href="#id2502422">Open</a> · <a class="contents-group" href="#id2502591">Toggle visibility</a> · <a class="contents-group" href="#id2502612">Within a dialog</a><span class="contents-section"> | </span><a class="contents-section" href="#id2502732">Controls bar</a><span class="contents-section">: </span><a class="contents-group" href="#id2502738">Access</a> · <a class="contents-group" href="#id2502759">Navigate</a> · <a class="contents-group" href="#id2502792">Change values</a><span class="contents-section"> | </span><a class="contents-section" href="#id2502870">Canvas</a><span class="contents-section">: </span><a class="contents-group" href="#id2502877">Zoom</a> · <a class="contents-group" href="#id2502970">Preset zooms</a> · <a class="contents-group" href="#id2503027">Zoom history</a> · <a class="contents-group" href="#id2503056">Scroll (pan)</a> · <a class="contents-group" href="#id2503125">Guides, grids, snapping</a> · <a class="contents-group" href="#id2503239">Display mode</a><span class="contents-section"> | </span><a class="contents-section" href="#id2503259">Palette</a><span class="contents-section"> | </span><a class="contents-section" href="#id2503330">File</a><span class="contents-section"> | </span><a class="contents-section" href="#id2503427">Window</a><span class="contents-section"> | </span><a class="contents-section" href="#id2503548">Layers</a><span class="contents-section"> | </span><a class="contents-section" href="#id2503654">Object</a><span class="contents-section">: </span><a class="contents-group" href="#id2503661">Undo/redo</a> · <a class="contents-group" href="#id2503696">Clipboard</a> · <a class="contents-group" href="#id2503789">Duplicate</a> · <a class="contents-group" href="#id2503809">Clone</a> · <a class="contents-group" href="#id2503868">Bitmaps</a> · <a class="contents-group" href="#id2503909">Patterns</a> · <a class="contents-group" href="#id2503944">Group</a> · <a class="contents-group" href="#id2503990">Z-order</a><span class="contents-section"> | </span><a class="contents-section" href="#id2504039">Path</a><span class="contents-section">: </span><a class="contents-group" href="#id2504046">Convert to path</a> · <a class="contents-group" href="#id2504073">Boolean operations</a> · <a class="contents-group" href="#id2504174">Offsets</a> · <a class="contents-group" href="#id2504290">Combine</a> · <a class="contents-group" href="#id2504336">Simplify</a><span class="contents-section"> | </span><a class="contents-section" href="#id2504372">Selector</a><span class="contents-section">: </span><a class="contents-group" href="#id2504378">Select (mouse)</a> · <a class="contents-group" href="#id2504435">Rubberband, touch selection</a> · <a class="contents-group" href="#id2504502">Select (keyboard)</a> · <a class="contents-group" href="#id2504629">Select within group, select under</a> · <a class="contents-group" href="#id2504753">Move (mouse)</a> · <a class="contents-group" href="#id2504836">Move (keyboard)</a> · <a class="contents-group" href="#id2504889">Transform (mouse)</a> · <a class="contents-group" href="#id2504923">Scale by handles</a> · <a class="contents-group" href="#id2504979">Scale (keyboard)</a> · <a class="contents-group" href="#id2505078">Rotate/skew by handles</a> · <a class="contents-group" href="#id2505122">Rotate (keyboard)</a> · <a class="contents-group" href="#id2505182">Flip</a> · <a class="contents-group" href="#id2505210">Rotation center</a> · <a class="contents-group" href="#id2505258">Cancel</a><span class="contents-section"> | </span><a class="contents-section" href="#id2505284">Node tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2505291">Select objects (mouse)</a> · <a class="contents-group" href="#id2505329">Select nodes (mouse)</a> · <a class="contents-group" href="#id2505387">Rubberband selection</a> · <a class="contents-group" href="#id2505426">Select nodes (keyboard)</a> · <a class="contents-group" href="#id2505524">Grow/shrink node selection</a> · <a class="contents-group" href="#id2505596">Move nodes (mouse)</a> · <a class="contents-group" href="#id2505719">Move nodes (keyboard)</a> · <a class="contents-group" href="#id2505772">Move node handle (mouse)</a> · <a class="contents-group" href="#id2505837">Scale handle (1 node selected)</a> · <a class="contents-group" href="#id2505946">Rotate handle (1 node selected)</a> · <a class="contents-group" href="#id2506033">Scale nodes (&gt;1 nodes selected)</a> · <a class="contents-group" href="#id2506116">Rotate nodes (&gt;1 nodes selected)</a> · <a class="contents-group" href="#id2506168">Flip nodes (&gt;1 nodes selected)</a> · <a class="contents-group" href="#id2506203">Change segment(s)</a> · <a class="contents-group" href="#id2506232">Change node type</a> · <a class="contents-group" href="#id2506300">Join/break</a> · <a class="contents-group" href="#id2506338">Delete, create, duplicate</a> · <a class="contents-group" href="#id2506450">Reverse</a> · <a class="contents-group" href="#id2506479">Edit shapes</a> · <a class="contents-group" href="#id2506496">Edit fills and path effects</a> · <a class="contents-group" href="#id2506508">Cancel</a><span class="contents-section"> | </span><a class="contents-section" href="#id2506534">Tweak tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2506541">Operation</a> · <a class="contents-group" href="#id2506590">Modes</a> · <a class="contents-group" href="#id2506778">Parameters</a><span class="contents-section"> | </span><a class="contents-section" href="#id2506829">Rectangle tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2506836">Draw</a> · <a class="contents-group" href="#id2506878">Select</a> · <a class="contents-group" href="#id2506931">Resize by handles</a> · <a class="contents-group" href="#id2506965">Round corners by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2507024">3D box tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2507030">Draw</a> · <a class="contents-group" href="#id2507054">Select</a> · <a class="contents-group" href="#id2507102">Edit by handles</a> · <a class="contents-group" href="#id2507146">Edit perspectives</a><span class="contents-section"> | </span><a class="contents-section" href="#id2507248">Ellipse tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2507260">Draw</a> · <a class="contents-group" href="#id2507327">Select</a> · <a class="contents-group" href="#id2507380">Edit by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2507438">Star tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2507445">Draw</a> · <a class="contents-group" href="#id2507472">Select</a> · <a class="contents-group" href="#id2507525">Edit by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2507591">Spiral tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2507598">Draw</a> · <a class="contents-group" href="#id2507625">Select</a> · <a class="contents-group" href="#id2507678">Edit by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2507785">Zoom tool</a><span class="contents-section"> | </span><a class="contents-section" href="#id2507820">Pencil tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2507876">Create dots</a><span class="contents-section"> | </span><a class="contents-section" href="#id2507918">Pen (Bezier) tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2507925">Create nodes</a> · <a class="contents-group" href="#id2507997">Move last node</a> · <a class="contents-group" href="#id2508055">Create/modify segments</a> · <a class="contents-group" href="#id2508098">Create dots</a> · <a class="contents-group" href="#id2508139">Finish</a> · <a class="contents-group" href="#id2508177">Cancel</a><span class="contents-section"> | </span><a class="contents-section" href="#id2508212">Calligraphy tool</a><span class="contents-section"> | </span><a class="contents-section" href="#id2508324">Paint Bucket</a><span class="contents-section"> | </span><a class="contents-section" href="#id2508418">Gradient tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2508425">Select objects</a> · <a class="contents-group" href="#id2508457">Create gradients</a> · <a class="contents-group" href="#id2508492">Select handles</a> · <a class="contents-group" href="#id2508569">Create/delete intermediate stops</a> · <a class="contents-group" href="#id2508640">Move handles/stops</a> · <a class="contents-group" href="#id2508741">Reverse</a> · <a class="contents-group" href="#id2508765">Gradient editor</a><span class="contents-section"> | </span><a class="contents-section" href="#id2508787">Dropper tool</a><span class="contents-section"> | </span><a class="contents-section" href="#id2508888">Text tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2508895">Select/create</a> · <a class="contents-group" href="#id2508934">Navigate in text</a> · <a class="contents-group" href="#id2509030">Flowed text (internal frame)</a> · <a class="contents-group" href="#id2509077">Flowed text (external frame)</a> · <a class="contents-group" href="#id2509132">Text on path</a> · <a class="contents-group" href="#id2509153">Edit text</a> · <a class="contents-group" href="#id2509224">Select text</a> · <a class="contents-group" href="#id2509349">Style selection</a> · <a class="contents-group" href="#id2509381">Letter spacing</a> · <a class="contents-group" href="#id2509438">Line spacing</a> · <a class="contents-group" href="#id2509500">Kerning and shifting</a> · <a class="contents-group" href="#id2509547">Rotate</a><span class="contents-section"></span></p><center><table border="0" cellspacing="0" cellpadding="4" width="100%"><tr><td colspan="3"><a name="id2501936"></a><h1>Tools</h1></td></tr>
+or by <a href="https://bugs.launchpad.net/inkscape">submitting an
+RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span> <a class="contents-section" href="#id2403357">Tools</a><span class="contents-section"> | </span><a class="contents-section" href="#id2403835">Dialogs</a><span class="contents-section">: </span><a class="contents-group" href="#id2403841">Open</a> · <a class="contents-group" href="#id2404011">Toggle visibility</a> · <a class="contents-group" href="#id2404033">Within a dialog</a><span class="contents-section"> | </span><a class="contents-section" href="#id2404152">Controls bar</a><span class="contents-section">: </span><a class="contents-group" href="#id2404159">Access</a> · <a class="contents-group" href="#id2404180">Navigate</a> · <a class="contents-group" href="#id2404213">Change values</a><span class="contents-section"> | </span><a class="contents-section" href="#id2404290">Canvas</a><span class="contents-section">: </span><a class="contents-group" href="#id2404297">Zoom</a> · <a class="contents-group" href="#id2404390">Preset zooms</a> · <a class="contents-group" href="#id2404448">Zoom history</a> · <a class="contents-group" href="#id2404476">Scroll (pan)</a> · <a class="contents-group" href="#id2404546">Guides, grids, snapping</a> · <a class="contents-group" href="#id2404660">Display mode</a><span class="contents-section"> | </span><a class="contents-section" href="#id2404679">Palette</a><span class="contents-section"> | </span><a class="contents-section" href="#id2404751">File</a><span class="contents-section"> | </span><a class="contents-section" href="#id2404847">Window</a><span class="contents-section"> | </span><a class="contents-section" href="#id2404968">Layers</a><span class="contents-section"> | </span><a class="contents-section" href="#id2405074">Object</a><span class="contents-section">: </span><a class="contents-group" href="#id2405081">Undo/redo</a> · <a class="contents-group" href="#id2405116">Clipboard</a> · <a class="contents-group" href="#id2405209">Duplicate</a> · <a class="contents-group" href="#id2405229">Clone</a> · <a class="contents-group" href="#id2405288">Bitmaps</a> · <a class="contents-group" href="#id2405329">Patterns</a> · <a class="contents-group" href="#id2405364">Group</a> · <a class="contents-group" href="#id2405410">Z-order</a><span class="contents-section"> | </span><a class="contents-section" href="#id2405459">Path</a><span class="contents-section">: </span><a class="contents-group" href="#id2405466">Convert to path</a> · <a class="contents-group" href="#id2405493">Boolean operations</a> · <a class="contents-group" href="#id2405594">Offsets</a> · <a class="contents-group" href="#id2405710">Combine</a> · <a class="contents-group" href="#id2405756">Simplify</a><span class="contents-section"> | </span><a class="contents-section" href="#id2405792">Selector</a><span class="contents-section">: </span><a class="contents-group" href="#id2405798">Select (mouse)</a> · <a class="contents-group" href="#id2405855">Rubberband, touch selection</a> · <a class="contents-group" href="#id2405922">Select (keyboard)</a> · <a class="contents-group" href="#id2406049">Select within group, select under</a> · <a class="contents-group" href="#id2406173">Move (mouse)</a> · <a class="contents-group" href="#id2406256">Move (keyboard)</a> · <a class="contents-group" href="#id2406309">Transform (mouse)</a> · <a class="contents-group" href="#id2406343">Scale by handles</a> · <a class="contents-group" href="#id2406399">Scale (keyboard)</a> · <a class="contents-group" href="#id2406499">Rotate/skew by handles</a> · <a class="contents-group" href="#id2406542">Rotate (keyboard)</a> · <a class="contents-group" href="#id2406602">Flip</a> · <a class="contents-group" href="#id2406630">Rotation center</a> · <a class="contents-group" href="#id2406678">Cancel</a><span class="contents-section"> | </span><a class="contents-section" href="#id2406704">Node tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2406711">Select objects (mouse)</a> · <a class="contents-group" href="#id2406749">Select nodes (mouse)</a> · <a class="contents-group" href="#id2406807">Rubberband selection</a> · <a class="contents-group" href="#id2406846">Select nodes (keyboard)</a> · <a class="contents-group" href="#id2406944">Grow/shrink node selection</a> · <a class="contents-group" href="#id2407016">Move nodes (mouse)</a> · <a class="contents-group" href="#id2407139">Move nodes (keyboard)</a> · <a class="contents-group" href="#id2407192">Move node handle (mouse)</a> · <a class="contents-group" href="#id2407257">Scale handle (1 node selected)</a> · <a class="contents-group" href="#id2407366">Rotate handle (1 node selected)</a> · <a class="contents-group" href="#id2407453">Scale nodes (&gt;1 nodes selected)</a> · <a class="contents-group" href="#id2407536">Rotate nodes (&gt;1 nodes selected)</a> · <a class="contents-group" href="#id2407588">Flip nodes (&gt;1 nodes selected)</a> · <a class="contents-group" href="#id2407623">Change segment(s)</a> · <a class="contents-group" href="#id2407652">Change node type</a> · <a class="contents-group" href="#id2407720">Join/break</a> · <a class="contents-group" href="#id2407758">Delete, create, duplicate</a> · <a class="contents-group" href="#id2407870">Reverse</a> · <a class="contents-group" href="#id2407899">Edit shapes</a> · <a class="contents-group" href="#id2407916">Edit fills and path effects</a> · <a class="contents-group" href="#id2407928">Cancel</a><span class="contents-section"> | </span><a class="contents-section" href="#id2407954">Tweak tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2407961">Operation</a> · <a class="contents-group" href="#id2408010">Modes</a> · <a class="contents-group" href="#id2408198">Parameters</a><span class="contents-section"> | </span><a class="contents-section" href="#id2408249">Rectangle tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2408256">Draw</a> · <a class="contents-group" href="#id2408298">Select</a> · <a class="contents-group" href="#id2408351">Resize by handles</a> · <a class="contents-group" href="#id2408385">Round corners by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2408444">3D box tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2408450">Draw</a> · <a class="contents-group" href="#id2408474">Select</a> · <a class="contents-group" href="#id2408522">Edit by handles</a> · <a class="contents-group" href="#id2408566">Edit perspectives</a><span class="contents-section"> | </span><a class="contents-section" href="#id2408668">Ellipse tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2408680">Draw</a> · <a class="contents-group" href="#id2408747">Select</a> · <a class="contents-group" href="#id2408800">Edit by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2408858">Star tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2408865">Draw</a> · <a class="contents-group" href="#id2408892">Select</a> · <a class="contents-group" href="#id2408945">Edit by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2409011">Spiral tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2409018">Draw</a> · <a class="contents-group" href="#id2409046">Select</a> · <a class="contents-group" href="#id2409098">Edit by handles</a><span class="contents-section"> | </span><a class="contents-section" href="#id2409205">Zoom tool</a><span class="contents-section"> | </span><a class="contents-section" href="#id2409241">Pencil tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2409296">Create dots</a><span class="contents-section"> | </span><a class="contents-section" href="#id2409338">Pen (Bezier) tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2409345">Create nodes</a> · <a class="contents-group" href="#id2409417">Move last node</a> · <a class="contents-group" href="#id2409475">Create/modify segments</a> · <a class="contents-group" href="#id2409518">Create dots</a> · <a class="contents-group" href="#id2409560">Finish</a> · <a class="contents-group" href="#id2409597">Cancel</a><span class="contents-section"> | </span><a class="contents-section" href="#id2409633">Calligraphy tool</a><span class="contents-section"> | </span><a class="contents-section" href="#id2409744">Paint Bucket</a><span class="contents-section"> | </span><a class="contents-section" href="#id2409838">Gradient tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2409845">Select objects</a> · <a class="contents-group" href="#id2409878">Create gradients</a> · <a class="contents-group" href="#id2409912">Select handles</a> · <a class="contents-group" href="#id2409990">Create/delete intermediate stops</a> · <a class="contents-group" href="#id2410060">Move handles/stops</a> · <a class="contents-group" href="#id2410161">Reverse</a> · <a class="contents-group" href="#id2410185">Gradient editor</a><span class="contents-section"> | </span><a class="contents-section" href="#id2410207">Dropper tool</a><span class="contents-section"> | </span><a class="contents-section" href="#id2410309">Text tool</a><span class="contents-section">: </span><a class="contents-group" href="#id2410315">Select/create</a> · <a class="contents-group" href="#id2410354">Navigate in text</a> · <a class="contents-group" href="#id2410450">Flowed text (internal frame)</a> · <a class="contents-group" href="#id2410498">Flowed text (external frame)</a> · <a class="contents-group" href="#id2410553">Text on path</a> · <a class="contents-group" href="#id2410573">Edit text</a> · <a class="contents-group" href="#id2410645">Select text</a> · <a class="contents-group" href="#id2410770">Style selection</a> · <a class="contents-group" href="#id2410802">Letter spacing</a> · <a class="contents-group" href="#id2410859">Line spacing</a> · <a class="contents-group" href="#id2410920">Kerning and shifting</a> · <a class="contents-group" href="#id2410967">Rotate</a><span class="contents-section"></span></p><center><table border="0" cellspacing="0" cellpadding="4" width="100%"><tr><td colspan="3"><a name="id2403357"></a><h1>Tools</h1></td></tr>
<tr bgcolor="f5f5f5"><td align="right" width="40%"><span class="key">F1</span>,
@@ -54,8 +54,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<span class="key">t</span></td><td><span class="action">Text tool</span></td></tr>
<tr bgcolor="f5f5f5"><td align="right" width="40%"><span class="key">Shift+F3</span>,
<span class="key">a</span></td><td><span class="action">Spray tool</span></td></tr>
-<tr bgcolor="f5f5f5"><td align="right" width="40%"><span class="key">Shift+E</span>,
-<span class="key">c</span></td><td><span class="action">Eraser tool</span></td></tr>
+<tr bgcolor="f5f5f5"><td align="right" width="40%"><span class="key">Shift+E</span></td><td><span class="action">Eraser tool</span></td></tr>
<tr bgcolor="f5f5f5"><td align="right" width="40%"><span class="key">Shift+F7</span>,
<span class="key">u</span></td><td><span class="action">Paint Bucket tool</span></td></tr>
<tr bgcolor="f5f5f5"><td align="right" width="40%"><span class="key">Ctrl+F1</span>,
@@ -66,9 +65,9 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<span class="key">o</span></td><td><span class="action">Connector tool</span></td></tr>
<tr bgcolor="f5f5f5"><td colspan="3"><span class="note">Double click on the tool buttons opens the Preferences dialog showing the page of the corresponding tool.</span></td></tr>
-<tr><td colspan="3"><a name="id2502416"></a><h1>Dialogs</h1></td></tr>
+<tr><td colspan="3"><a name="id2403835"></a><h1>Dialogs</h1></td></tr>
-<tr bgcolor="f0eae7"><td colspan="3"><h4><a name="id2502422"></a>Open</h4></td></tr>
+<tr bgcolor="f0eae7"><td colspan="3"><h4><a name="id2403841"></a>Open</h4></td></tr>
<tr bgcolor="f0eae7"><td align="right" width="40%"><span class="key">Shift+Ctrl+F</span></td><td><span class="action">Fill and Stroke</span></td></tr>
<tr bgcolor="f0eae7"><td align="right" width="40%"><span class="key">Shift+Ctrl+W</span></td><td><span class="action">Swatches</span></td></tr>
<tr bgcolor="f0eae7"><td align="right" width="40%"><span class="key">Shift+Ctrl+T</span></td><td><span class="action">Text and Font</span></td></tr>
@@ -89,13 +88,13 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f0eae7"><td colspan="3"><h4><a name="id2502591"></a>Toggle visibility</h4></td></tr>
+<tr bgcolor="f0eae7"><td colspan="3"><h4><a name="id2404011"></a>Toggle visibility</h4></td></tr>
<tr bgcolor="f0eae7"><td align="right" width="40%"><span class="key">F12</span></td><td><span class="action">toggle dialogs</span></td></tr>
<tr bgcolor="f0eae7"><td colspan="3"><span class="note">This temporarily hides all open dialogs; another F12 shows them again.</span></td></tr>
-<tr bgcolor="f0eae7"><td colspan="3"><h4><a name="id2502612"></a>Within a dialog</h4></td></tr>
+<tr bgcolor="f0eae7"><td colspan="3"><h4><a name="id2404033"></a>Within a dialog</h4></td></tr>
<tr bgcolor="f0eae7"><td align="right" width="40%"><span class="key">Esc</span></td><td><span class="action">return to the canvas</span></td></tr>
<tr bgcolor="f0eae7"><td align="right" width="40%"><span class="key">Ctrl+F4</span>,
<span class="key">Ctrl+W</span></td><td><span class="action">close the dialog</span></td></tr>
@@ -110,23 +109,23 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<tr bgcolor="f0eae7"><td align="right" width="40%"><span class="key">Ctrl+PgUp</span>,
<span class="key">Ctrl+PgDn</span></td><td><span class="action">in a multi-tab dialog, switch tabs</span></td></tr>
-<tr><td colspan="3"><a name="id2502732"></a><h1>Controls bar</h1></td></tr>
+<tr><td colspan="3"><a name="id2404152"></a><h1>Controls bar</h1></td></tr>
-<tr bgcolor="f8f3e9"><td colspan="3"><h4><a name="id2502738"></a>Access</h4></td></tr>
+<tr bgcolor="f8f3e9"><td colspan="3"><h4><a name="id2404159"></a>Access</h4></td></tr>
<tr bgcolor="f8f3e9"><td colspan="3"><span class="note">The Controls bar at the top of the document window provides different buttons and controls for each tool.</span></td></tr>
<tr bgcolor="f8f3e9"><td align="right" width="40%"><span class="key">Alt+X</span></td><td><span class="action">jump to the first editable field</span></td></tr>
-<tr bgcolor="f8f3e9"><td colspan="3"><h4><a name="id2502759"></a>Navigate</h4></td></tr>
+<tr bgcolor="f8f3e9"><td colspan="3"><h4><a name="id2404180"></a>Navigate</h4></td></tr>
<tr bgcolor="f8f3e9"><td align="right" width="40%"><span class="key">Tab</span></td><td><span class="action">jump to next field</span></td></tr>
<tr bgcolor="f8f3e9"><td align="right" width="40%"><span class="key">Shift+Tab</span></td><td><span class="action">jump to previous field</span></td></tr>
<tr bgcolor="f8f3e9"><td colspan="3"><span class="note">Use these to navigate between fields in the Controls bar (the value in the field you leave, if changed, is accepted).</span></td></tr>
-<tr bgcolor="f8f3e9"><td colspan="3"><h4><a name="id2502792"></a>Change values</h4></td></tr>
+<tr bgcolor="f8f3e9"><td colspan="3"><h4><a name="id2404213"></a>Change values</h4></td></tr>
<tr bgcolor="f8f3e9"><td align="right" width="40%"><span class="key">Up arrow</span>,
<span class="key">Down arrow</span></td><td><span class="action">change value by 0.1</span></td></tr>
<tr bgcolor="f8f3e9"><td align="right" width="40%"><span class="key">PgUp</span>,
@@ -139,10 +138,10 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<tr bgcolor="f8f3e9"><td colspan="3"><span class="note">This cancels any changes you made in a text field but you stay in the field.</span></td></tr>
-<tr><td colspan="3"><a name="id2502870"></a><h1>Canvas</h1></td></tr>
+<tr><td colspan="3"><a name="id2404290"></a><h1>Canvas</h1></td></tr>
-<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2502877"></a>Zoom</h4></td></tr>
+<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2404297"></a>Zoom</h4></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">=</span>,
<span class="key">+</span></td><td><span class="action">zoom in</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">-</span></td><td><span class="action">zoom out</span></td></tr>
@@ -159,7 +158,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2502970"></a>Preset zooms</h4></td></tr>
+<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2404390"></a>Preset zooms</h4></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">1</span></td><td><span class="action">zoom 1:1</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">2</span></td><td><span class="action">zoom 1:2</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">3</span></td><td><span class="action">zoom to selection</span></td></tr>
@@ -170,14 +169,14 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2503027"></a>Zoom history</h4></td></tr>
+<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2404448"></a>Zoom history</h4></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">`</span></td><td><span class="action">(back quote) previous zoom </span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Shift+`</span></td><td><span class="action">next zoom</span></td></tr>
<tr bgcolor="e5f1e7"><td colspan="3"><span class="note">With these keys, you can travel back and forth through the history of zooms in this session</span></td></tr>
-<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2503056"></a>Scroll (pan)</h4></td></tr>
+<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2404476"></a>Scroll (pan)</h4></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Ctrl+arrows</span></td><td><span class="action">scroll canvas</span></td></tr>
<tr bgcolor="e5f1e7"><td colspan="3"><span class="note">Scrolling by keys is accelerated, i.e. it speeds up when you press Ctrl+arrows in quick succession, or press and hold.</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">middle button drag</span></td><td><span class="action">pan canvas</span></td></tr>
@@ -190,12 +189,12 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2503125"></a>Guides, grids, snapping</h4></td></tr>
+<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2404546"></a>Guides, grids, snapping</h4></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">drag off a ruler to create guide</span></td></tr>
<tr bgcolor="e5f1e7"><td colspan="3"><span class="note">Drag off the horizontal or vertical ruler to create a new guideline. Drag a guideline onto the ruler to delete it.</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">drag a guide to move it</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">drag a guide (not near anchor) to rotate it</span></td></tr>
-<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Ctrl+Shift+mouse drag</span></td><td><span class="action">rotate guide with angle snapping</span></td></tr>
+<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Shift+Ctrl+mouse drag</span></td><td><span class="action">rotate guide with angle snapping</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Ctrl+click</span></td><td><span class="action">delete guide</span></td></tr>
<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">|</span>,
<span class="key">Shift+\</span></td><td><span class="action">toggle guides and snapping to guides</span></td></tr>
@@ -210,10 +209,10 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2503239"></a>Display mode</h4></td></tr>
-<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Ctrl+keypad 5</span></td><td><span class="action">toggle normal/no filters/outline/print colors preview mode</span></td></tr>
+<tr bgcolor="e5f1e7"><td colspan="3"><h4><a name="id2404660"></a>Display mode</h4></td></tr>
+<tr bgcolor="e5f1e7"><td align="right" width="40%"><span class="key">Ctrl+keypad 5</span></td><td><span class="action">toggle normal/no filters/outline mode</span></td></tr>
-<tr><td colspan="3"><a name="id2503259"></a><h1>Palette</h1></td></tr>
+<tr><td colspan="3"><a name="id2404679"></a><h1>Palette</h1></td></tr>
<tr bgcolor="efcfdf"><td colspan="3"><span class="note">These keys work both in the floating palette dialog and in the palette frame at the bottom of the window.</span></td></tr>
<tr bgcolor="efcfdf"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">set fill color on selection</span></td></tr>
@@ -224,7 +223,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<tr bgcolor="efcfdf"><td colspan="3"><span class="note">To change fill/stroke of an object by dragging color on it, that object need not be selected.</span></td></tr>
<tr bgcolor="efcfdf"><td colspan="3"><span class="note">You can also drag colors to the Fill (F) and Stroke (S) indicators in the statusbar to change the selection.</span></td></tr>
-<tr><td colspan="3"><a name="id2503330"></a><h1>File</h1></td></tr>
+<tr><td colspan="3"><a name="id2404751"></a><h1>File</h1></td></tr>
<tr bgcolor="f3f2e2"><td align="right" width="40%"><span class="key">Ctrl+N</span></td><td><span class="action">create new document</span></td></tr>
@@ -238,7 +237,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<tr bgcolor="f3f2e2"><td align="right" width="40%"><span class="key">Ctrl+Q</span></td><td><span class="action">exit Inkscape</span></td></tr>
-<tr><td colspan="3"><a name="id2503427"></a><h1>Window</h1></td></tr>
+<tr><td colspan="3"><a name="id2404847"></a><h1>Window</h1></td></tr>
<tr bgcolor="e8fae1"><td align="right" width="40%"><span class="key">Ctrl+R</span></td><td><span class="action">toggle rulers</span></td></tr>
@@ -262,7 +261,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<tr bgcolor="e8fae1"><td colspan="3"><span class="note">These cycle through the active document windows forward and backward.</span></td></tr>
-<tr><td colspan="3"><a name="id2503548"></a><h1>Layers</h1></td></tr>
+<tr><td colspan="3"><a name="id2404968"></a><h1>Layers</h1></td></tr>
<tr bgcolor="f6f9d9"><td align="right" width="40%"><span class="key">Shift+Ctrl+N</span></td><td><span class="action">create new layer</span></td></tr>
@@ -279,10 +278,10 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
<tr bgcolor="f6f9d9"><td align="right" width="40%"><span class="key">Shift+Ctrl+End</span></td><td><span class="action">lower layer to bottom</span></td></tr>
<tr bgcolor="f6f9d9"><td colspan="3"><span class="note">These commands move the current layer among its siblings (normally other layers).</span></td></tr>
-<tr><td colspan="3"><a name="id2503654"></a><h1>Object</h1></td></tr>
+<tr><td colspan="3"><a name="id2405074"></a><h1>Object</h1></td></tr>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503661"></a>Undo/redo</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405081"></a>Undo/redo</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Shift+Ctrl+Y</span>,
<span class="key">Ctrl+Z</span></td><td><span class="action">undo</span></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Shift+Ctrl+Z</span>,
@@ -290,7 +289,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503696"></a>Clipboard</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405116"></a>Clipboard</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Ctrl+C</span></td><td><span class="action">copy selection</span></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Ctrl+X</span></td><td><span class="action">cut selection</span></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Ctrl+V</span></td><td><span class="action">paste clipboard</span></td></tr>
@@ -306,13 +305,13 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503789"></a>Duplicate</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405209"></a>Duplicate</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Ctrl+D</span></td><td><span class="action">duplicate selection</span></td></tr>
<tr bgcolor="f4ecf5"><td colspan="3"><span class="note">New object(s) are placed exactly over the original(s) and selected.</span></td></tr>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503809"></a>Clone</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405229"></a>Clone</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Alt+D</span></td><td><span class="action">clone object</span></td></tr>
<tr bgcolor="f4ecf5"><td colspan="3"><span class="note">A clone can be moved/scaled/rotated/skewed independently, but it updates the path, fill, and stroke from its original.</span></td></tr>
<tr bgcolor="f4ecf5"><td colspan="3"><span class="note">The clone is placed exactly over the original object and is selected.</span></td></tr>
@@ -324,7 +323,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503868"></a>Bitmaps</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405288"></a>Bitmaps</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Alt+B</span></td><td><span class="action">create a bitmap copy</span></td></tr>
<tr bgcolor="f4ecf5"><td colspan="3"><span class="note">This exports the selected object(s) (all other objects hidden) as PNG in the document's directory and imports it back.</span></td></tr>
<tr bgcolor="f4ecf5"><td colspan="3"><span class="note">The imported bitmap is placed over the original selection and is selected.</span></td></tr>
@@ -333,7 +332,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503909"></a>Patterns</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405329"></a>Patterns</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Alt+I</span></td><td><span class="action">object(s) to pattern</span></td></tr>
<tr bgcolor="f4ecf5"><td colspan="3"><span class="note">This converts the selection to a rectangle with tiled pattern fill.</span></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Shift+Alt+I</span></td><td><span class="action">pattern to object(s)</span></td></tr>
@@ -341,7 +340,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503944"></a>Group</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405364"></a>Group</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Shift+Ctrl+U</span>,
<span class="key">Ctrl+G</span></td><td><span class="action">group selected objects</span></td></tr>
<tr bgcolor="f4ecf5"><td colspan="3"><span class="note">Use Ctrl+click to select objects within group.</span></td></tr>
@@ -351,23 +350,23 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2503990"></a>Z-order</h4></td></tr>
+<tr bgcolor="f4ecf5"><td colspan="3"><h4><a name="id2405410"></a>Z-order</h4></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">Home</span></td><td><span class="action">raise selection to top</span></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">End</span></td><td><span class="action">lower selection to bottom</span></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">PgUp</span></td><td><span class="action">raise selection one step</span></td></tr>
<tr bgcolor="f4ecf5"><td align="right" width="40%"><span class="key">PgDn</span></td><td><span class="action">lower selection one step</span></td></tr>
-<tr><td colspan="3"><a name="id2504039"></a><h1>Path</h1></td></tr>
+<tr><td colspan="3"><a name="id2405459"></a><h1>Path</h1></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2504046"></a>Convert to path</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2405466"></a>Convert to path</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+Ctrl+C</span></td><td><span class="action">convert selected object(s) to path</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+Alt+C</span></td><td><span class="action">convert stroke to path</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2504073"></a>Boolean operations</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2405493"></a>Boolean operations</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl++</span></td><td><span class="action">union</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">Union combines any number of objects into a single path, removing overlaps.</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+-</span></td><td><span class="action">difference</span></td></tr>
@@ -385,7 +384,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2504174"></a>Offsets</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2405594"></a>Offsets</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+(</span></td><td><span class="action">inset path (towards center)</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+)</span></td><td><span class="action">outset path (away from center)</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">The default offset distance is 2 px (SVG pixel units, not screen pixels).</span></td></tr>
@@ -403,7 +402,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2504290"></a>Combine</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2405710"></a>Combine</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+K</span></td><td><span class="action">combine paths</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">This is different from grouping in that combined paths create one object.</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">This is different from Union in that overlapping areas are not affected.</span></td></tr>
@@ -413,17 +412,17 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2504336"></a>Simplify</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2405756"></a>Simplify</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+L</span></td><td><span class="action">simplify</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">This command attempts to simplify selected path(s) by removing extra nodes. It converts all objects to paths first.</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">If you invoke this command several times in quick succession, it will act more and more aggressively.</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">Invoking Simplify again after a pause restores the default threshold (settable in the Inkscape Preferences dialog).</span></td></tr>
-<tr><td colspan="3"><a name="id2504372"></a><h1>Selector</h1></td></tr>
+<tr><td colspan="3"><a name="id2405792"></a><h1>Selector</h1></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504378"></a>Select (mouse)</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2405798"></a>Select (mouse)</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">select an object</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">When you left-click on an object, previous selection is deselected.</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">toggle selection </span></td></tr>
@@ -435,7 +434,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504435"></a>Rubberband, touch selection</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2405855"></a>Rubberband, touch selection</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">select by rubberband</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Dragging around objects does "rubberband" selection; previous selection is deselected.</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">add objects to selection</span></td></tr>
@@ -449,7 +448,7 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504502"></a>Select (keyboard)</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2405922"></a>Select (keyboard)</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Tab</span></td><td><span class="action">select next object </span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Shift+Tab</span></td><td><span class="action">select previous object </span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">These keys pick objects in their z-order (Tab cycles from bottom to top, Shift+Tab cycles from top to bottom).</span></td></tr>
@@ -470,10 +469,10 @@ RFE</a>).</p><p class="contents"><span class="contents-title">Contents:</span>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504629"></a>Select within group, select under</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406049"></a>Select within group, select under</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Ctrl+click</span></td><td><span class="action">select within group</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Ctrl+click selects the object at click point disregarding any levels of grouping that this object might belong to.</span></td></tr>
-<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Ctrl+Shift+click</span></td><td><span class="action">toggle selection within group</span></td></tr>
+<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Shift+Ctrl+click</span></td><td><span class="action">toggle selection within group</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Alt+click</span></td><td><span class="action">select under</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Alt+click selects the object at click point which is beneath (in z-order) the lowest selected object at click point.</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">If the bottom object is reached, Alt+click again selects the top object. So, several Alt+clicks cycle through z-order stack at point.</span></td></tr>
@@ -491,7 +490,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504753"></a>Move (mouse)</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406173"></a>Move (mouse)</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">select + move</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Dragging an object selects it if it was not selected, then moves selection.</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Alt+mouse drag</span></td><td><span class="action">move selected</span></td></tr>
@@ -506,17 +505,17 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504836"></a>Move (keyboard)</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406256"></a>Move (keyboard)</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">arrows</span></td><td><span class="action">move selection by the nudge distance</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Shift+arrows</span></td><td><span class="action">move selection by 10x nudge distance</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Alt+arrows</span></td><td><span class="action">move selection by 1 pixel</span></td></tr>
-<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Alt+Shift+arrows</span></td><td><span class="action">move selection by 10 pixels</span></td></tr>
+<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Shift+Alt+arrows</span></td><td><span class="action">move selection by 10 pixels</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504889"></a>Transform (mouse)</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406309"></a>Transform (mouse)</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">click</span>,
<span class="key">Shift+S</span></td><td><span class="action">toggle scale/rotation handles</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">scale (with scale handles)</span></td></tr>
@@ -524,7 +523,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504923"></a>Scale by handles</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406343"></a>Scale by handles</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">scale</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">scale preserving aspect ratio</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">symmetric transformation</span></td></tr>
@@ -535,7 +534,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2504979"></a>Scale (keyboard)</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406399"></a>Scale (keyboard)</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">.</span>,
<span class="key">&gt;</span></td><td><span class="action">scale selection up by the scale step</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">,</span>,
@@ -554,7 +553,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2505078"></a>Rotate/skew by handles</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406499"></a>Rotate/skew by handles</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">rotate or skew</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">snap skew angle</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Holding Ctrl when dragging a skew (non-corner) handle snaps the skew angle to angle steps (default 15 degrees).</span></td></tr>
@@ -563,7 +562,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2505122"></a>Rotate (keyboard)</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406542"></a>Rotate (keyboard)</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">[</span>,
<span class="key">]</span></td><td><span class="action">rotate selection by the angle step</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise.</span></td></tr>
@@ -576,14 +575,14 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2505182"></a>Flip</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406602"></a>Flip</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">h</span></td><td><span class="action">flip selection horizontally</span></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">v</span></td><td><span class="action">flip selection vertically</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">If the tool is in rotate mode (rotation center visible), that center becomes the axis of flipping; otherwise it flips around geometric center of selection</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2505210"></a>Rotation center</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406630"></a>Rotation center</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">move rotation center</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Moved rotation center remembers and saves its position for (all) selected object(s); you can reset it.</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Dragging the center snaps it to the centerlines and bounding box edges of the selection.</span></td></tr>
@@ -593,15 +592,15 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2505258"></a>Cancel</h4></td></tr>
+<tr bgcolor="eee4dc"><td colspan="3"><h4><a name="id2406678"></a>Cancel</h4></td></tr>
<tr bgcolor="eee4dc"><td align="right" width="40%"><span class="key">Esc</span></td><td><span class="action">cancel rubberband, move, transformation</span></td></tr>
<tr bgcolor="eee4dc"><td colspan="3"><span class="note">Press Esc while mouse button is still down to cancel rubberband selection, move, or transformation of any kind.</span></td></tr>
-<tr><td colspan="3"><a name="id2505284"></a><h1>Node tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2406704"></a><h1>Node tool</h1></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505291"></a>Select objects (mouse)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2406711"></a>Select objects (mouse)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">click a non-selected object to select</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Alt+click</span></td><td><span class="action">select under</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">toggle selection</span></td></tr>
@@ -609,7 +608,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505329"></a>Select nodes (mouse)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2406749"></a>Select nodes (mouse)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">select a node</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">Clicking on a node selects it.</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">select two adjacent nodes</span></td></tr>
@@ -621,7 +620,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505387"></a>Rubberband selection</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2406807"></a>Rubberband selection</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">select multiple nodes</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">Dragging around nodes does "rubberband" selection; previous node selection is deselected.</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">add nodes to selection</span></td></tr>
@@ -630,7 +629,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505426"></a>Select nodes (keyboard)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2406846"></a>Select nodes (keyboard)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Tab</span></td><td><span class="action">select next node</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+Tab</span></td><td><span class="action">select previous node</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">These keys select nodes within the selected path</span></td></tr>
@@ -646,7 +645,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505524"></a>Grow/shrink node selection</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2406944"></a>Grow/shrink node selection</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">PgUp</span>,
<span class="key">PgDn</span></td><td><span class="action">grow/shrink selection (spatial)</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">mouse wheel</span></td><td><span class="action">grow/shrink selection (spatial)</span></td></tr>
@@ -659,7 +658,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505596"></a>Move nodes (mouse)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407016"></a>Move nodes (mouse)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">move selected nodes</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">restrict movement to horizontal or vertical</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+Alt+mouse drag</span></td><td><span class="action">move along handles</span></td></tr>
@@ -680,17 +679,17 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505719"></a>Move nodes (keyboard)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407139"></a>Move nodes (keyboard)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">arrows</span></td><td><span class="action">move selected node(s) by the nudge distance</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+arrows</span></td><td><span class="action">move selected node(s) by 10x nudge distance</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Alt+arrows</span></td><td><span class="action">move selected node(s) by 1 pixel</span></td></tr>
-<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Alt+Shift+arrows</span></td><td><span class="action">move selected node(s) by 10 pixels</span></td></tr>
+<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+Alt+arrows</span></td><td><span class="action">move selected node(s) by 10 pixels</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505772"></a>Move node handle (mouse)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407192"></a>Move node handle (mouse)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">move a node handle</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">snap the handle to angle steps</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">The default angle step is 15 degrees. This also snaps to the handle's original angle, its continuation and perpendiculars.</span></td></tr>
@@ -702,7 +701,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505837"></a>Scale handle (1 node selected)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407257"></a>Scale handle (1 node selected)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">&lt;</span>,
<span class="key">&gt;</span></td><td><span class="action">contract/expand both handles by scale step</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">The default scale step is 2 px (SVG pixel units, not screen pixels). May apply to more than one node.</span></td></tr>
@@ -719,7 +718,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2505946"></a>Rotate handle (1 node selected)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407366"></a>Rotate handle (1 node selected)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">[</span>,
<span class="key">]</span></td><td><span class="action">rotate both handles by the angle step</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise. May apply to more than one node.</span></td></tr>
@@ -735,7 +734,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506033"></a>Scale nodes (&gt;1 nodes selected)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407453"></a>Scale nodes (&gt;1 nodes selected)</h4></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">These commands scale the selected nodes as if they were an "object".</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">If mouse is over a node, that node becomes the axis of scaling; otherwise it scales around geometric center of selected nodes.</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">.</span>,
@@ -752,7 +751,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506116"></a>Rotate nodes (&gt;1 nodes selected)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407536"></a>Rotate nodes (&gt;1 nodes selected)</h4></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">These commands rotate the selected nodes as if they were an "object".</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">If mouse is over a node, that node becomes the axis of rotation; otherwise it rotates around geometric center of selected nodes.</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">[</span>,
@@ -764,7 +763,7 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506168"></a>Flip nodes (&gt;1 nodes selected)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407588"></a>Flip nodes (&gt;1 nodes selected)</h4></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">These commands flip the selected nodes as if they were an "object", around the center of that object.</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">h</span></td><td><span class="action">flip nodes horizontally</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">v</span></td><td><span class="action">flip nodes vertically</span></td></tr>
@@ -772,14 +771,14 @@ groups) with the same effect as Alt+click.)</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506203"></a>Change segment(s)</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407623"></a>Change segment(s)</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+L</span></td><td><span class="action">make line</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+U</span></td><td><span class="action">make curve</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">These commands require that more than two adjacent nodes be selected.</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506232"></a>Change node type</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407652"></a>Change node type</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+C</span></td><td><span class="action">make cusp</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">First Shift+C changes type of node; if you do another Shift+C on an already cusp node, it retracts its handles</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+S</span></td><td><span class="action">make smooth</span></td></tr>
@@ -792,7 +791,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506300"></a>Join/break</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407720"></a>Join/break</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+J</span></td><td><span class="action">join selected nodes</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">This requires that exactly two end nodes within the path be selected.</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">You can lock the position of one of the two joined nodes by hovering mouse over it.</span></td></tr>
@@ -801,7 +800,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506338"></a>Delete, create, duplicate</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407758"></a>Delete, create, duplicate</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Backspace</span>,
<span class="key">Del</span></td><td><span class="action">delete selected node(s)</span></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Ctrl+Backspace</span>,
@@ -823,39 +822,39 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506450"></a>Reverse</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407870"></a>Reverse</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Shift+r</span></td><td><span class="action">reverse path direction</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506479"></a>Edit shapes</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407899"></a>Edit shapes</h4></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">Node tool can also drag the handles of shapes (rectangles, ellipses, stars, spirals). Click on a shape to select it.</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">See the corresponding shape tools for their editing shortcuts, all of which also work in node tool.</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506496"></a>Edit fills and path effects</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407916"></a>Edit fills and path effects</h4></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">Node tool can also edit the handles of a pattern fill, gradient fill, and the editable handles of path effects.</span></td></tr>
-<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2506508"></a>Cancel</h4></td></tr>
+<tr bgcolor="f9f1d9"><td colspan="3"><h4><a name="id2407928"></a>Cancel</h4></td></tr>
<tr bgcolor="f9f1d9"><td align="right" width="40%"><span class="key">Esc</span></td><td><span class="action">cancel rubberband or move</span></td></tr>
<tr bgcolor="f9f1d9"><td colspan="3"><span class="note">Press Esc while mouse button is still down to cancel rubberband selection, node move, handle move, or handle move.</span></td></tr>
-<tr><td colspan="3"><a name="id2506534"></a><h1>Tweak tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2407954"></a><h1>Tweak tool</h1></td></tr>
-<tr bgcolor="f2f1ea"><td colspan="3"><h4><a name="id2506541"></a>Operation</h4></td></tr>
+<tr bgcolor="f2f1ea"><td colspan="3"><h4><a name="id2407961"></a>Operation</h4></td></tr>
<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">act on selected paths in the current mode</span></td></tr>
<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">reverse current mode (when applicable)</span></td></tr>
<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">act temporarily switching to shrink mode</span></td></tr>
-<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Ctrl+Shift+mouse drag</span></td><td><span class="action">act temporarily switching to grow mode</span></td></tr>
+<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Shift+Ctrl+mouse drag</span></td><td><span class="action">act temporarily switching to grow mode</span></td></tr>
<tr bgcolor="f2f1ea"><td colspan="3"><span class="note">The amount of tweaking action is the greatest at the center of the circular area and drops off smoothly towards the edges.</span></td></tr>
-<tr bgcolor="f2f1ea"><td colspan="3"><h4><a name="id2506590"></a>Modes</h4></td></tr>
+<tr bgcolor="f2f1ea"><td colspan="3"><h4><a name="id2408010"></a>Modes</h4></td></tr>
<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Shift+m</span>,
<span class="key">Shift+0</span></td><td><span class="action">move mode</span></td></tr>
<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Shift+i</span>,
@@ -886,7 +885,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="f2f1ea"><td colspan="3"><h4><a name="id2506778"></a>Parameters</h4></td></tr>
+<tr bgcolor="f2f1ea"><td colspan="3"><h4><a name="id2408198"></a>Parameters</h4></td></tr>
<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Left arrow</span>,
<span class="key">Right arrow</span></td><td><span class="action">adjust brush width by 1</span></td></tr>
<tr bgcolor="f2f1ea"><td align="right" width="40%"><span class="key">Home</span>,
@@ -896,9 +895,9 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="f2f1ea"><td colspan="3"><span class="note">Width and force can be adjusted while drawing. With a pressure-sensitive tablet, force also depends on pen pressure.</span></td></tr>
-<tr><td colspan="3"><a name="id2506829"></a><h1>Rectangle tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2408249"></a><h1>Rectangle tool</h1></td></tr>
-<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2506836"></a>Draw</h4></td></tr>
+<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2408256"></a>Draw</h4></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">draw a rectangle</span></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">make a square or integer-ratio rectangle</span></td></tr>
<tr bgcolor="ebf1fd"><td colspan="3"><span class="note">This restricts rectangle so its height/width ratio is a whole number.</span></td></tr>
@@ -907,7 +906,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2506878"></a>Select</h4></td></tr>
+<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2408298"></a>Select</h4></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">click to select</span></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">Alt+click</span>,
<span class="key">Ctrl+Alt+click</span></td><td><span class="action">select under</span></td></tr>
@@ -917,7 +916,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2506931"></a>Resize by handles</h4></td></tr>
+<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2408351"></a>Resize by handles</h4></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">drag a square handle to resize</span></td></tr>
<tr bgcolor="ebf1fd"><td colspan="3"><span class="note">Initially, the two resize (square) handles are in top left and bottom right corners.</span></td></tr>
<tr bgcolor="ebf1fd"><td colspan="3"><span class="note">Resize handles change the width and height of the rectangle in its own coordinate system, before any transforms are applied.</span></td></tr>
@@ -925,7 +924,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2506965"></a>Round corners by handles</h4></td></tr>
+<tr bgcolor="ebf1fd"><td colspan="3"><h4><a name="id2408385"></a>Round corners by handles</h4></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">drag a circular handle to round corners</span></td></tr>
<tr bgcolor="ebf1fd"><td colspan="3"><span class="note">Initially, the two rounding handles are in the top right corner of the rectangle.</span></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">lock the corner circular</span></td></tr>
@@ -934,15 +933,15 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="ebf1fd"><td colspan="3"><span class="note">You can drag both handles for an elliptic rounded corner, or drag/click one with Ctrl to make it circular again.</span></td></tr>
<tr bgcolor="ebf1fd"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">remove corner rounding</span></td></tr>
-<tr><td colspan="3"><a name="id2507024"></a><h1>3D box tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2408444"></a><h1>3D box tool</h1></td></tr>
-<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2507030"></a>Draw</h4></td></tr>
+<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2408450"></a>Draw</h4></td></tr>
<tr bgcolor="cff4e2"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">draw a 3D box (X/Y plane)</span></td></tr>
<tr bgcolor="cff4e2"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">draw a 3D box (extrude in Z)</span></td></tr>
-<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2507054"></a>Select</h4></td></tr>
+<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2408474"></a>Select</h4></td></tr>
<tr bgcolor="cff4e2"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">click to select</span></td></tr>
<tr bgcolor="cff4e2"><td align="right" width="40%"><span class="key">Alt+click</span>,
<span class="key">Ctrl+Alt+click</span></td><td><span class="action">select under</span></td></tr>
@@ -951,7 +950,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2507102"></a>Edit by handles</h4></td></tr>
+<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2408522"></a>Edit by handles</h4></td></tr>
<tr bgcolor="cff4e2"><td colspan="3"><span class="note">All editing operations occur "in perspective", i.e., either along perspective lines or within planes spanned by these.</span></td></tr>
<tr bgcolor="cff4e2"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">resize/move box</span></td></tr>
<tr bgcolor="cff4e2"><td colspan="3"><span class="note">The four front handles and the center normally move within the XY plane, the four rear handles along the Z axis.</span></td></tr>
@@ -960,7 +959,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2507146"></a>Edit perspectives</h4></td></tr>
+<tr bgcolor="cff4e2"><td colspan="3"><h4><a name="id2408566"></a>Edit perspectives</h4></td></tr>
<tr bgcolor="cff4e2"><td colspan="3"><span class="note">In what follows, we use the abbreviations VP = vanishing point, PL = perspective line.</span></td></tr>
<tr bgcolor="cff4e2"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">drag square handles to move the VPs</span></td></tr>
<tr bgcolor="cff4e2"><td align="right" width="40%"><span class="key">[</span>,
@@ -980,9 +979,9 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr><td colspan="3"><a name="id2507248"></a><h1>Ellipse tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2408668"></a><h1>Ellipse tool</h1></td></tr>
-<tr bgcolor="ffece8"><td colspan="3"><h4><a name="id2507260"></a>Draw</h4></td></tr>
+<tr bgcolor="ffece8"><td colspan="3"><h4><a name="id2408680"></a>Draw</h4></td></tr>
<tr bgcolor="ffece8"><td colspan="3"><span class="note">Without Alt the starting and ending point of the mouse drag mark the corners of the bounding box.</span></td></tr>
<tr bgcolor="ffece8"><td colspan="3"><span class="note">With Alt the ellipse is enlarged so that its circumference passes through these two points (Ctrl+Alt is a special case; see below).</span></td></tr>
<tr bgcolor="ffece8"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">draw an ellipse</span></td></tr>
@@ -995,7 +994,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="ffece8"><td colspan="3"><h4><a name="id2507327"></a>Select</h4></td></tr>
+<tr bgcolor="ffece8"><td colspan="3"><h4><a name="id2408747"></a>Select</h4></td></tr>
<tr bgcolor="ffece8"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">click to select</span></td></tr>
<tr bgcolor="ffece8"><td align="right" width="40%"><span class="key">Alt+click</span>,
<span class="key">Ctrl+Alt+click</span></td><td><span class="action">select under</span></td></tr>
@@ -1005,7 +1004,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="ffece8"><td colspan="3"><h4><a name="id2507380"></a>Edit by handles</h4></td></tr>
+<tr bgcolor="ffece8"><td colspan="3"><h4><a name="id2408800"></a>Edit by handles</h4></td></tr>
<tr bgcolor="ffece8"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">resize, make arc or segment</span></td></tr>
<tr bgcolor="ffece8"><td colspan="3"><span class="note">Initially, the two resize handles are at the topmost and leftmost points; the two arc/segment handles are in the rightmost point.</span></td></tr>
<tr bgcolor="ffece8"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">lock circle (resize handles)</span></td></tr>
@@ -1014,16 +1013,16 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="ffece8"><td colspan="3"><span class="note">The default angle step is 15 degrees.</span></td></tr>
<tr bgcolor="ffece8"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">make whole (arc/segment handles)</span></td></tr>
-<tr><td colspan="3"><a name="id2507438"></a><h1>Star tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2408858"></a><h1>Star tool</h1></td></tr>
-<tr bgcolor="f8f7d5"><td colspan="3"><h4><a name="id2507445"></a>Draw</h4></td></tr>
+<tr bgcolor="f8f7d5"><td colspan="3"><h4><a name="id2408865"></a>Draw</h4></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">draw a star</span></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">snap star to angle steps</span></td></tr>
<tr bgcolor="f8f7d5"><td colspan="3"><span class="note">The default angle step is 15 degrees.</span></td></tr>
-<tr bgcolor="f8f7d5"><td colspan="3"><h4><a name="id2507472"></a>Select</h4></td></tr>
+<tr bgcolor="f8f7d5"><td colspan="3"><h4><a name="id2408892"></a>Select</h4></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">click to select</span></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">Alt+click</span>,
<span class="key">Ctrl+Alt+click</span></td><td><span class="action">select under</span></td></tr>
@@ -1033,7 +1032,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="f8f7d5"><td colspan="3"><h4><a name="id2507525"></a>Edit by handles</h4></td></tr>
+<tr bgcolor="f8f7d5"><td colspan="3"><h4><a name="id2408945"></a>Edit by handles</h4></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">drag a handle to vary the star shape</span></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">keep star rays radial (no skew)</span></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">round the star</span></td></tr>
@@ -1042,16 +1041,16 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="f8f7d5"><td align="right" width="40%"><span class="key">Alt+click</span>,
<span class="key">Ctrl+Alt+click</span></td><td><span class="action">remove randomization</span></td></tr>
-<tr><td colspan="3"><a name="id2507591"></a><h1>Spiral tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2409011"></a><h1>Spiral tool</h1></td></tr>
-<tr bgcolor="f3f3f3"><td colspan="3"><h4><a name="id2507598"></a>Draw</h4></td></tr>
+<tr bgcolor="f3f3f3"><td colspan="3"><h4><a name="id2409018"></a>Draw</h4></td></tr>
<tr bgcolor="f3f3f3"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">draw a spiral</span></td></tr>
<tr bgcolor="f3f3f3"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">snap spiral to angle steps</span></td></tr>
<tr bgcolor="f3f3f3"><td colspan="3"><span class="note">The default angle step is 15 degrees.</span></td></tr>
-<tr bgcolor="f3f3f3"><td colspan="3"><h4><a name="id2507625"></a>Select</h4></td></tr>
+<tr bgcolor="f3f3f3"><td colspan="3"><h4><a name="id2409046"></a>Select</h4></td></tr>
<tr bgcolor="f3f3f3"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">click to select</span></td></tr>
<tr bgcolor="f3f3f3"><td align="right" width="40%"><span class="key">Alt+click</span>,
<span class="key">Ctrl+Alt+click</span></td><td><span class="action">select under</span></td></tr>
@@ -1061,7 +1060,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="f3f3f3"><td colspan="3"><h4><a name="id2507678"></a>Edit by handles</h4></td></tr>
+<tr bgcolor="f3f3f3"><td colspan="3"><h4><a name="id2409098"></a>Edit by handles</h4></td></tr>
<tr bgcolor="f3f3f3"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">roll/unroll from inside (inner handle)</span></td></tr>
<tr bgcolor="f3f3f3"><td colspan="3"><span class="note">Dragging the inner handle adjusts the "inner radius" parameter.</span></td></tr>
<tr bgcolor="f3f3f3"><td align="right" width="40%"><span class="key">Alt+mouse drag</span></td><td><span class="action">converge/diverge (inner handle)</span></td></tr>
@@ -1079,13 +1078,13 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="f3f3f3"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">snap handles to angle steps</span></td></tr>
<tr bgcolor="f3f3f3"><td colspan="3"><span class="note">The default angle step is 15 degrees. This works for both handles.</span></td></tr>
-<tr><td colspan="3"><a name="id2507785"></a><h1>Zoom tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2409205"></a><h1>Zoom tool</h1></td></tr>
<tr bgcolor="e7e9f3"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">zoom in</span></td></tr>
<tr bgcolor="e7e9f3"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">zoom out</span></td></tr>
<tr bgcolor="e7e9f3"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">zoom into the area</span></td></tr>
-<tr><td colspan="3"><a name="id2507820"></a><h1>Pencil tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2409241"></a><h1>Pencil tool</h1></td></tr>
<tr bgcolor="e9efc5"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">draw a freehand line</span></td></tr>
<tr bgcolor="e9efc5"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">add to selected path</span></td></tr>
@@ -1095,16 +1094,16 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="e9efc5"><td align="right" width="40%"><span class="key">Alt+mouse drag</span></td><td><span class="action">averaging draw (sketch mode)</span></td></tr>
-<tr bgcolor="e9efc5"><td colspan="3"><h4><a name="id2507876"></a>Create dots</h4></td></tr>
+<tr bgcolor="e9efc5"><td colspan="3"><h4><a name="id2409296"></a>Create dots</h4></td></tr>
<tr bgcolor="e9efc5"><td align="right" width="40%"><span class="key">Ctrl+click</span></td><td><span class="action">create a dot</span></td></tr>
<tr bgcolor="e9efc5"><td colspan="3"><span class="note">This creates a small circle. Its size (relative to the current stroke width) can be set in Preferences.</span></td></tr>
<tr bgcolor="e9efc5"><td align="right" width="40%"><span class="key">Shift+Ctrl+click</span></td><td><span class="action">create a double-sized dot</span></td></tr>
-<tr bgcolor="e9efc5"><td align="right" width="40%"><span class="key">Alt+Ctrl+click</span></td><td><span class="action">create a random-sized dot</span></td></tr>
+<tr bgcolor="e9efc5"><td align="right" width="40%"><span class="key">Ctrl+Alt+click</span></td><td><span class="action">create a random-sized dot</span></td></tr>
-<tr><td colspan="3"><a name="id2507918"></a><h1>Pen (Bezier) tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2409338"></a><h1>Pen (Bezier) tool</h1></td></tr>
-<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2507925"></a>Create nodes</h4></td></tr>
+<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2409345"></a>Create nodes</h4></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">create a sharp node</span></td></tr>
<tr bgcolor="e7f5d7"><td colspan="3"><span class="note">If no path is being created, this starts a new path.</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">add to selected path</span></td></tr>
@@ -1118,18 +1117,18 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2507997"></a>Move last node</h4></td></tr>
+<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2409417"></a>Move last node</h4></td></tr>
<tr bgcolor="e7f5d7"><td colspan="3"><span class="note">These commands move the last created node (at the start of the red segment) while creating a path.</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">arrows</span></td><td><span class="action">move last node by the nudge distance</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Shift+arrows</span></td><td><span class="action">move last node by 10x nudge distance</span></td></tr>
<tr bgcolor="e7f5d7"><td colspan="3"><span class="note">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Alt+arrows</span></td><td><span class="action">move last node by 1 pixel</span></td></tr>
-<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Alt+Shift+arrows</span></td><td><span class="action">move last node by 10 pixels</span></td></tr>
+<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Shift+Alt+arrows</span></td><td><span class="action">move last node by 10 pixels</span></td></tr>
<tr bgcolor="e7f5d7"><td colspan="3"><span class="note">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</span></td></tr>
-<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2508055"></a>Create/modify segments</h4></td></tr>
+<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2409475"></a>Create/modify segments</h4></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Ctrl+</span></td><td><span class="action">snap last segment to angle steps</span></td></tr>
<tr bgcolor="e7f5d7"><td colspan="3"><span class="note">This snaps the new node's angle, relative to the previous node, to angle steps (default 15 degrees).</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Shift+L</span></td><td><span class="action">make last segment line</span></td></tr>
@@ -1138,15 +1137,15 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2508098"></a>Create dots</h4></td></tr>
-<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Ctrl+click</span></td><td><span class="action">create a dot</span></td></tr>
+<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2409518"></a>Create dots</h4></td></tr>
+<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Ctrl+click</span></td><td><span class="action">create a dot (straight line modes only)</span></td></tr>
<tr bgcolor="e7f5d7"><td colspan="3"><span class="note">This creates a small circle. Its size (relative to the current stroke width) can be set in Preferences.</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Shift+Ctrl+click</span></td><td><span class="action">create a double-sized dot</span></td></tr>
-<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Alt+Ctrl+click</span></td><td><span class="action">create a random-sized dot</span></td></tr>
+<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Ctrl+Alt+click</span></td><td><span class="action">create a random-sized dot</span></td></tr>
-<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2508139"></a>Finish</h4></td></tr>
+<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2409560"></a>Finish</h4></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Enter</span></td><td><span class="action">finish current line</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">right click</span></td><td><span class="action">finish current line</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">clickclick</span></td><td><span class="action">finish current line</span></td></tr>
@@ -1154,13 +1153,13 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2508177"></a>Cancel</h4></td></tr>
+<tr bgcolor="e7f5d7"><td colspan="3"><h4><a name="id2409597"></a>Cancel</h4></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Esc</span>,
<span class="key">Ctrl+z</span></td><td><span class="action">cancel current line</span></td></tr>
<tr bgcolor="e7f5d7"><td align="right" width="40%"><span class="key">Backspace</span>,
<span class="key">Del</span></td><td><span class="action">erase last segment of current line</span></td></tr>
-<tr><td colspan="3"><a name="id2508212"></a><h1>Calligraphy tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2409633"></a><h1>Calligraphy tool</h1></td></tr>
<tr bgcolor="e9dfef"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">draw a calligraphic line</span></td></tr>
<tr bgcolor="e9dfef"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">add to selected path</span></td></tr>
@@ -1178,7 +1177,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="e9dfef"><td colspan="3"><span class="note">Width and angle can be adjusted while drawing. </span></td></tr>
<tr bgcolor="e9dfef"><td align="right" width="40%"><span class="key">Esc</span></td><td><span class="action">deselect</span></td></tr>
-<tr><td colspan="3"><a name="id2508324"></a><h1>Paint Bucket</h1></td></tr>
+<tr><td colspan="3"><a name="id2409744"></a><h1>Paint Bucket</h1></td></tr>
<tr bgcolor="f2f9da"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">fill a bounded area</span></td></tr>
<tr bgcolor="f2f9da"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">add to selected path</span></td></tr>
@@ -1193,17 +1192,17 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="f2f9da"><td align="right" width="40%"><span class="key">Shift+Ctrl+click</span></td><td><span class="action">set stroke color</span></td></tr>
<tr bgcolor="f2f9da"><td colspan="3"><span class="note">Ctrl+clicking an object sets its fill (or stroke with Shift) to the tool's current style; the object need not be selected</span></td></tr>
-<tr><td colspan="3"><a name="id2508418"></a><h1>Gradient tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2409838"></a><h1>Gradient tool</h1></td></tr>
-<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2508425"></a>Select objects</h4></td></tr>
+<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2409845"></a>Select objects</h4></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">click an object to select</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Alt+click</span></td><td><span class="action">select under</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">toggle selection</span></td></tr>
-<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2508457"></a>Create gradients</h4></td></tr>
+<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2409878"></a>Create gradients</h4></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">create gradient</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">This creates gradient on selected objects. The Controls bar lets you select linear/radial and fill/stroke for the new gradient.</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">clickclick</span></td><td><span class="action">create default gradient</span></td></tr>
@@ -1211,7 +1210,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2508492"></a>Select handles</h4></td></tr>
+<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2409912"></a>Select handles</h4></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">select a handle</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">add handle to selection</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Shift+mouse drag</span></td><td><span class="action">select by rubberband</span></td></tr>
@@ -1223,7 +1222,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2508569"></a>Create/delete intermediate stops</h4></td></tr>
+<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2409990"></a>Create/delete intermediate stops</h4></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Ctrl+Alt+click</span></td><td><span class="action">create a stop</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">clickclick</span></td><td><span class="action">create a stop</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">Ctrl+Alt+click or double click on a gradient line creates a new intermediate stop</span></td></tr>
@@ -1235,7 +1234,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2508640"></a>Move handles/stops</h4></td></tr>
+<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2410060"></a>Move handles/stops</h4></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">move selected handle(s)</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Ctrl+mouse drag</span></td><td><span class="action">move stops in 1/10 range increments</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">Ctrl+dragging selected intermediate stops moves them snapping to 1/10 steps of the available range</span></td></tr>
@@ -1245,27 +1244,27 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Shift+arrows</span></td><td><span class="action">move selected handle by 10x nudge distance</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</span></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Alt+arrows</span></td><td><span class="action">move selected handle by 1 pixel</span></td></tr>
-<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Alt+Shift+arrows</span></td><td><span class="action">move selected handle by 10 pixels</span></td></tr>
+<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Shift+Alt+arrows</span></td><td><span class="action">move selected handle by 10 pixels</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">If at least one end handle is selected, arrow keys move the end handle to move or resize the gradient line.</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">If only mid stops are selected, arrow keys move the selected stops along the gradient line.</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</span></td></tr>
-<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2508741"></a>Reverse</h4></td></tr>
+<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2410161"></a>Reverse</h4></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">Shift+r</span></td><td><span class="action">reverse gradient definition</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">This mirrors the stop positions of the current gradient without moving the gradient handles.</span></td></tr>
-<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2508765"></a>Gradient editor</h4></td></tr>
+<tr bgcolor="e9f3e7"><td colspan="3"><h4><a name="id2410185"></a>Gradient editor</h4></td></tr>
<tr bgcolor="e9f3e7"><td align="right" width="40%"><span class="key">clickclick</span></td><td><span class="action">open gradient editor</span></td></tr>
<tr bgcolor="e9f3e7"><td colspan="3"><span class="note">Double clicking a gradient handle opens the Gradient Editor with that gradient and the clicked handle chosen in the stops list.</span></td></tr>
-<tr><td colspan="3"><a name="id2508787"></a><h1>Dropper tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2410207"></a><h1>Dropper tool</h1></td></tr>
<tr bgcolor="feeffa"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">pick fill color</span></td></tr>
<tr bgcolor="feeffa"><td align="right" width="40%"><span class="key">Shift+click</span></td><td><span class="action">pick stroke color</span></td></tr>
@@ -1278,10 +1277,10 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
<tr bgcolor="feeffa"><td align="right" width="40%"><span class="key">Ctrl+C</span></td><td><span class="action">copy color</span></td></tr>
<tr bgcolor="feeffa"><td colspan="3"><span class="note">This copies the color under cursor to the clipboard, as text in RRGGBBAA format (8 hex digits).</span></td></tr>
-<tr><td colspan="3"><a name="id2508888"></a><h1>Text tool</h1></td></tr>
+<tr><td colspan="3"><a name="id2410309"></a><h1>Text tool</h1></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2508895"></a>Select/create</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410315"></a>Select/create</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">click</span></td><td><span class="action">create/select a text object</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">Clicking in an empty space or on a non-text creates a text object; now you can type your text.</span></td></tr>
@@ -1290,7 +1289,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2508934"></a>Navigate in text</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410354"></a>Navigate in text</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">arrows</span></td><td><span class="action">move cursor by one character</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+Left arrow</span>,
<span class="key">Ctrl+Right arrow</span></td><td><span class="action">move cursor by one word</span></td></tr>
@@ -1306,7 +1305,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509030"></a>Flowed text (internal frame)</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410450"></a>Flowed text (internal frame)</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">create flowed text</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">Clicking and dragging in an empty space or on a non-text creates a flowed text object with internal frame.</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">adjust frame size</span></td></tr>
@@ -1316,24 +1315,24 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509077"></a>Flowed text (external frame)</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410498"></a>Flowed text (external frame)</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Alt+W</span></td><td><span class="action">flow text into frame</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">With a text object and a shape/path selected, this flows text into the shape/path.</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">Both remain separate objects, but are linked; editing the shape/path causes the text to reflow.</span></td></tr>
-<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Alt+Shift+W</span></td><td><span class="action">unflow text from frame</span></td></tr>
+<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+Alt+W</span></td><td><span class="action">unflow text from frame</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">This cuts the flowed text's link to the shape/path, producing a single-line regular text object.</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+D</span></td><td><span class="action">select external frame</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">To find out which object is the frame of this flowed text, select it and press Shift+D. The frame will be selected.</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509132"></a>Text on path</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410553"></a>Text on path</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+D</span></td><td><span class="action">select path from text</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">To find out which path this text is put on, select it and press Shift+D. The path will be selected.</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509153"></a>Edit text</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410573"></a>Edit text</h4></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">To type + and - characters, use the main keyboard; keypad + and - are reserved for zoom (unless NumLock is on).</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Enter</span></td><td><span class="action">start a new line or paragraph</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">Enter in regular text creates new line; in flowed text it creates a new paragraph</span></td></tr>
@@ -1347,15 +1346,15 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509224"></a>Select text</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410645"></a>Select text</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">mouse drag</span></td><td><span class="action">select text</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">Left-dragging over a text object selects a text span.</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+arrows</span></td><td><span class="action">select text by character</span></td></tr>
-<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+Shift+arrows</span></td><td><span class="action">select text by word</span></td></tr>
+<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+Ctrl+arrows</span></td><td><span class="action">select text by word</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+Home</span>,
<span class="key">Shift+End</span></td><td><span class="action">select to beginning/end of line</span></td></tr>
-<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+Shift+Home</span>,
-<span class="key">Ctrl+Shift+End</span></td><td><span class="action">select to beginning/end of text</span></td></tr>
+<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+Ctrl+Home</span>,
+<span class="key">Shift+Ctrl+End</span></td><td><span class="action">select to beginning/end of text</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+PgUp</span>,
<span class="key">Shift+PgDn</span></td><td><span class="action">select one screen up/down</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">clickclick</span></td><td><span class="action">select word</span></td></tr>
@@ -1365,14 +1364,14 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509349"></a>Style selection</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410770"></a>Style selection</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+B</span></td><td><span class="action">make selection bold</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+I</span></td><td><span class="action">make selection italic</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">Also, you can use the Text&amp;Font or Fill&amp;Stroke dialogs to assign any style to text selection.</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509381"></a>Letter spacing</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410802"></a>Letter spacing</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Alt+&gt;</span></td><td><span class="action">expand line/paragraph by 1 pixel</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+Alt+&gt;</span></td><td><span class="action">expand line/paragraph by 10 pixels</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Alt+&lt;</span></td><td><span class="action">contract line/paragraph by 1 pixel</span></td></tr>
@@ -1382,7 +1381,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509438"></a>Line spacing</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410859"></a>Line spacing</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+Alt+&gt;</span></td><td><span class="action">make the text object taller by 1 pixel</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+Ctrl+Alt+&gt;</span></td><td><span class="action">make the text object taller by 10 pixels</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+Alt+&lt;</span></td><td><span class="action">make the text object shorter by 1 pixel</span></td></tr>
@@ -1392,7 +1391,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509500"></a>Kerning and shifting</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410920"></a>Kerning and shifting</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Alt+arrows</span></td><td><span class="action">shift characters by 1 pixel</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Shift+Alt+arrows</span></td><td><span class="action">shift characters by 10 pixels</span></td></tr>
<tr bgcolor="eefdf3"><td colspan="3"><span class="note">These commands work when editing a regular text object. Kerning does not work in flowed text.</span></td></tr>
@@ -1402,7 +1401,7 @@ with the segment; another Shift+S will expand a second handle</span></td></tr>
-<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2509547"></a>Rotate</h4></td></tr>
+<tr bgcolor="eefdf3"><td colspan="3"><h4><a name="id2410967"></a>Rotate</h4></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Ctrl+[</span>,
<span class="key">Ctrl+]</span></td><td><span class="action">rotate character(s) by 90 degrees</span></td></tr>
<tr bgcolor="eefdf3"><td align="right" width="40%"><span class="key">Alt+[</span>,
diff --git a/doc/keys.xml b/doc/keys.xml
deleted file mode 100644
index f37a73cfa..000000000
--- a/doc/keys.xml
+++ /dev/null
@@ -1,1429 +0,0 @@
-<root xmlns="http://www.inkscape.org/namespaces/keys"
- title="Inkscape keyboard and mouse reference"
- ver ="0.48"
->
-
-<p>This document describes the default keyboard and mouse shortcuts of Inkscape, corresponding to the
-share/keys/default.xml file in Inkscape distribution. Most (but not all) of these keys
-are configurable by the user; see the default.xml file for details on how to do that.</p>
-
-<p>Unless noted otherwise, keypad keys (such as arrows, Home, End, +, -, digits) are
-supposed to work the same as corresponding regular keys. If you have a new shortcut
-idea, please contact the developers (by writing to the <a
-href="http://lists.sourceforge.net/lists/listinfo/inkscape-devel">devel mailing list</a>
-or by <a href="http://sourceforge.net/tracker/?group_id=93438&amp;atid=604309">submitting an
-RFE</a>).</p>
-
-<column>
-
-*<section title="Tools" color="f5f5f5">
-
-<group>
-<keys><key><keyf f="F1"/></key><key>s</key> <action>Selector</action></keys>
-<keys><key><misc-wide f="Space"/></key> <action>Selector (temporary)</action></keys>
-<note>Space switches to the Selector tool temporarily; another Space switches back.</note>
-<note>When the "Left mouse button pans when Space is pressed" option is on in Preferences, Space+mouse drag pans canvas instead of switching to Selector.</note>
-<keys><key><keyf f="F2"/></key><key>n</key> <action>Node tool</action></keys>
-<keys><key><shift/><keyf f="F2"/></key><key>w</key> <action>Tweak tool</action></keys>
-<keys><key><keyf f="F3"/></key><key>z</key> <action>Zoom tool</action></keys>
-<keys><key><keyf f="F4"/></key><key>r</key> <action>Rectangle tool</action></keys>
-<keys><key><shift/><keyf f="F4"/></key><key>x</key> <action>3D box tool</action></keys>
-<keys><key><keyf f="F5"/></key><key>e</key> <action>Ellipse/arc tool</action></keys>
-<keys><key><shift/><keyf f="F9"/></key><key>*</key> <action>Star tool</action></keys>
-<keys><key><keyf f="F9"/></key><key>i</key> <action>Spiral tool</action></keys>
-<keys><key><keyf f="F6"/></key><key>p</key> <action>Pencil (Freehand) tool</action></keys>
-<keys><key><shift/><keyf f="F6"/></key><key>b</key> <action>Pen (Bezier) tool</action></keys>
-<keys><key><ctrl/><keyf f="F6"/></key><key>c</key> <action>Calligraphy tool</action></keys>
-<keys><key><keyf f="F8"/></key><key>t</key> <action>Text tool</action></keys>
-<keys><key><shift/><keyf f="F3"/></key><key>a</key> <action>Spray tool</action></keys>
-<keys><key><shift/><keyf f="E"/></key><key>c</key> <action>Eraser tool</action></keys>
-<keys><key><shift/><keyf f="F7"/></key><key>u</key> <action>Paint Bucket tool</action></keys>
-<keys><key><ctrl/><keyf f="F1"/></key><key>g</key> <action>Gradient tool</action></keys>
-<keys><key><keyf f="F7"/></key><key>d</key> <action>Dropper tool</action></keys>
-<keys><key><ctrl/><keyf f="F2"/></key><key>o</key> <action>Connector tool</action></keys>
-<note>Double click on the tool buttons opens the Preferences dialog showing the page of the corresponding tool.</note>
-</group>
-</section>
-
-
-*<section title="Dialogs" color="f0eae7">
-<group>
-<title>Open</title>
-<keys><key><shift/><ctrl/>F</key> <action>Fill and Stroke</action></keys>
-<keys><key><shift/><ctrl/>W</key> <action>Swatches</action></keys>
-<keys><key><shift/><ctrl/>T</key> <action>Text and Font</action></keys>
-<keys><key><shift/><ctrl/>M</key> <action>Transform</action></keys>
-<keys><key><shift/><ctrl/>L</key> <action>Layers</action></keys>
-<keys><key><shift/><ctrl/>A</key> <action>Align and Distribute</action></keys>
-<keys><key><shift/><ctrl/>O</key> <action>Object Properties</action></keys>
-<keys><key><shift/><ctrl/>H</key> <action>Undo History</action></keys>
-<keys><key><shift/><ctrl/>X</key> <action>XML Editor</action></keys>
-<keys><key><shift/><ctrl/>D</key> <action>Document Preferences</action></keys>
-<keys><key><shift/><ctrl/>P</key> <action>Inkscape Preferences</action></keys>
-<keys><key><shift/><ctrl/>E</key> <action>Export to PNG</action></keys>
-<keys><key><ctrl/>F</key> <action>Find</action></keys>
-<keys><key><shift/><alt/>B</key> <action>Trace Bitmap</action></keys>
-<keys><key><shift/><ctrl/>7</key> <action>Path Effects</action></keys>
-<keys><key><ctrl/><alt/>K</key> <action>Check Spelling</action></keys>
-<note>These shortcuts open a new dialog window if it wasn't open yet, otherwise the corresponding dialog gets focus.</note>
-</group>
-
-<group>
-<title>Toggle visibility</title>
-<keys><key><keyf f="F12"/></key> <action>toggle dialogs</action></keys>
-<note>This temporarily hides all open dialogs; another F12 shows them again.</note>
-</group>
-
-<group>
-<title>Within a dialog</title>
-<keys><key><misc f="Esc"/></key> <action>return to the canvas</action></keys>
-<keys><key><ctrl/><keyf f="F4"/></key> <key><ctrl/>W</key> <action>close the dialog</action></keys>
-<keys><key><misc f="Tab"/></key> <action>jump to next widget</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>jump to previous widget</action></keys>
-<keys><key><misc-wide f="Enter"/></key> <action>set the new value</action></keys>
-<note>This accepts the new value you typed in a text field and returns focus to canvas.</note>
-<keys><key><ctrl/><misc-wide f="Enter"/></key> <action>in XML Editor, set the attr value</action></keys>
-<note>When editing an attribute value in XML Editor, this sets the new value (same as clicking the "Set attribute" button).</note>
-<keys><key><misc-wide f="Space"/></key> <key><misc-wide f="Enter"/></key> <action>activate current button or list</action></keys>
-<keys><key><ctrl/><misc f="PgUp"/></key> <key><ctrl/><misc f="PgDn"/></key> <action>in a multi-tab dialog, switch tabs</action></keys>
-</group>
-</section>
-
-*<section title="Controls bar" color="f8f3e9">
-
-<group>
-<title>Access</title>
-<note>The Controls bar at the top of the document window provides different buttons and controls for each tool.</note>
-<keys><key><alt/>X</key> <action>jump to the first editable field</action></keys>
-</group>
-
-<group>
-<title>Navigate</title>
-<keys><key><misc f="Tab"/></key> <action>jump to next field</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>jump to previous field</action></keys>
-<note>Use these to navigate between fields in the Controls bar (the value in the field you leave, if changed, is accepted).</note>
-</group>
-
-<group>
-<title>Change values</title>
-<mouse><key><up/></key> <key><down/></key> <action>change value by 0.1</action></mouse>
-<keys><key><misc f="PgUp"/></key><key><misc f="PgDn"/></key> <action>change value by 5.0</action></keys>
-<keys><key><misc-wide f="Enter"/></key> <action>accept the new value</action></keys>
-<note>This accepts the new value you typed in a text field and returns focus to canvas.</note>
-<keys><key><misc f="Esc"/></key> <action>cancel changes, return to canvas</action></keys>
-<note>This cancels any changes you made in a text field and returns focus to canvas.</note>
-<keys><key><ctrl/>Z</key> <action>cancel changes</action></keys>
-<note>This cancels any changes you made in a text field but you stay in the field.</note>
-</group>
-
-</section>
-
-*<section title="Canvas" color="e5f1e7">
-
-<group>
-<title>Zoom</title>
-<keys><key>=</key> <key>+</key> <action>zoom in</action></keys>
-<keys><key>-</key> <action>zoom out</action></keys>
-<note>The keypad +/- keys do zooming even when you are editing a text object, unless NumLock is on.</note>
-<mouse><key><mid-click/></key> <key><ctrl/><right-click/></key> <action>zoom in</action></mouse>
-<mouse><key><shift/><mid-click/></key> <key><shift/><right-click/></key> <action>zoom out</action></mouse>
-<mouse><key><ctrl/><wheel/></key> <action>zoom in or out</action></mouse>
-<note>When the "Mouse wheel zooms by default" option is on in Preferences, Ctrl+wheel scrolls instead of zooming. To zoom, use wheel without Ctrl.</note>
-<mouse><key><shift/><mid-drag/></key> <action>zoom into the area</action></mouse>
-<keys><key><alt/>Z</key> <action>activate zoom field</action></keys>
-<note>The zoom field in the lower right corner of the window allows you to specify zoom level precisely.</note>
-</group>
-
-<group>
-<title>Preset zooms</title>
-<keys><key>1</key> <action>zoom 1:1</action></keys>
-<keys><key>2</key> <action>zoom 1:2</action></keys>
-<keys><key>3</key> <action>zoom to selection</action></keys>
-<keys><key>4</key> <action>zoom to drawing</action></keys>
-<keys><key>5</key> <action>zoom to page</action></keys>
-<keys><key><ctrl/>E</key><key>6</key> <action>zoom to page width</action></keys>
-</group>
-
-<group>
-<title>Zoom history</title>
-<keys><key>`</key> <action>(back quote) previous zoom </action></keys>
-<keys><key><shift/>`</key> <action>next zoom</action></keys>
-<note>With these keys, you can travel back and forth through the history of zooms in this session</note>
-</group>
-
-<group>
-<title>Scroll (pan)</title>
-<mouse><key><ctrl/><arrows/></key> <action>scroll canvas</action></mouse>
-<note>Scrolling by keys is accelerated, i.e. it speeds up when you press Ctrl+arrows in quick succession, or press and hold.</note>
-<mouse><key><mid-drag/></key> <action>pan canvas</action></mouse>
-<mouse><key><shift/><right-drag/></key> <key><ctrl/><right-drag/></key> <action>pan canvas</action></mouse>
-<mouse><key><wheel/></key> <action>scroll canvas vertically</action></mouse>
-<note>When the "Mouse wheel zooms by default" option is on in Preferences, mouse wheel zooms instead of scrolling. To scroll, use Ctrl+wheel.</note>
-<mouse><key><shift/><wheel/></key> <action>scroll canvas horizontally</action></mouse>
-<note>When the "Left mouse button pans when Space is pressed" option is on in Preferences, Space+mouse drag also pans canvas.</note>
-</group>
-
-<group>
-<title>Guides, grids, snapping</title>
-<mouse><key><left-drag/></key> <action>drag off a ruler to create guide</action></mouse>
-<note>Drag off the horizontal or vertical ruler to create a new guideline. Drag a guideline onto the ruler to delete it.</note>
-<mouse><key><left-drag/></key> <action>drag a guide to move it</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>drag a guide (not near anchor) to rotate it</action></mouse>
-<mouse><key><ctrl/><shift/><left-drag/></key> <action>rotate guide with angle snapping</action></mouse>
-<mouse><key><ctrl/><left-click/></key> <action>delete guide</action></mouse>
-<keys><key>|</key> <key><shift/>\</key> <action>toggle guides and snapping to guides</action></keys>
-<note>If you want to see the guides but not snap to them, use the global snapping toggle (% key).</note>
-<note>When you create a new guide by dragging off the ruler, guide visibility and snapping are turned on.</note>
-<keys><key>#</key> <key><shift/>3</key> <action>toggle grids and snapping to grids</action></keys>
-<note>If you want to see the grids but not snap to them, use the global snapping toggle (% key).</note>
-<note>Note that only the 3 key on the main keyboard works, not on the keypad.</note>
-<keys><key>%</key> <action>toggle snapping on and off</action></keys>
-<note>This toggle affects snapping to grids, guides, and objects in all tools.</note>
-</group>
-
-<group>
-<title>Display mode</title>
-<keys><key><ctrl/><misc-wide f="keypad 5"/></key> <action>toggle normal/no filters/outline mode</action></keys>
-</group>
-</section>
-
-*<section title="Palette" color="efcfdf">
-<group>
-<note>These keys work both in the floating palette dialog and in the palette frame at the bottom of the window.</note>
-<mouse><key><left-click/></key> <action>set fill color on selection</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>set stroke color on selection</action></mouse>
-<mouse><key><right-click/></key> <action>open pop-up menu</action></mouse>
-<mouse><key><left-drag/></key> <action>drag fill color to objects</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>drag stroke color to objects</action></mouse>
-<note>To change fill/stroke of an object by dragging color on it, that object need not be selected.</note>
-<note>You can also drag colors to the Fill (F) and Stroke (S) indicators in the statusbar to change the selection.</note>
-</group>
-</section>
-
-
-</column>
-
-
-
-
-
-<column>
-
-*<section title="File" color="f3f2e2">
-
-<group>
-<keys><key><ctrl/>N</key> <action>create new document</action></keys>
-<keys><key><ctrl/>O</key> <action>open a document</action></keys>
-<keys><key><shift/><ctrl/>E</key> <action>export to PNG</action></keys>
-<keys><key><ctrl/>I</key> <action>import bitmap or vector</action></keys>
-<keys><key><ctrl/>P</key> <action>print document</action></keys>
-<keys><key><ctrl/>S</key> <action>save document</action></keys>
-<keys><key><shift/><ctrl/>S</key> <action>save under a new name</action></keys>
-<keys><key><shift/><ctrl/><alt/>S</key> <action>save a copy</action></keys>
-<keys><key><ctrl/>Q</key> <action>exit Inkscape</action></keys>
-</group>
-
-</section>
-
-*<section title="Window" color="e8fae1">
-
-<group>
-<keys><key><ctrl/>R</key> <action>toggle rulers</action></keys>
-<keys><key><ctrl/>B</key> <action>toggle scrollbars</action></keys>
-<keys><key><keyf f="F11"/></key> <action>toggle fullscreen</action></keys>
-</group>
-
-<group>
-<keys><key><keyf f="F10"/></key> <action>main menu</action></keys>
-<note>Menus can also be activated by Alt with the letter underscored in the menu name.</note>
-<keys><key><shift/><keyf f="F10"/></key> <key><right-click/></key> <action>drop-down (context) menu</action></keys>
-</group>
-
-<group>
-<keys><key><ctrl/><keyf f="F4"/></key> <key><ctrl/>W</key> <action>close document window</action></keys>
-<note>This shuts down Inkscape if it was the only document window open.</note>
-<keys><key><ctrl/><misc f="Tab"/></key> <action>next document window</action></keys>
-<keys><key><shift/><ctrl/><misc f="Tab"/></key> <action>previous document window</action></keys>
-<note>These cycle through the active document windows forward and backward.</note>
-</group>
-
-</section>
-
-*<section title="Layers" color="f6f9d9">
-
-<group>
-<keys><key><shift/><ctrl/><misc f="N"/></key> <action>create new layer</action></keys>
-</group>
-
-<group>
-<keys><key><shift/><misc f="PgUp"/></key> <action>move to layer above</action></keys>
-<keys><key><shift/><misc f="PgDn"/></key> <action>move to layer below</action></keys>
-<note>These commands move the selected objects from one layer to another.</note>
-
-<keys><key><shift/><ctrl/><misc f="PgUp"/></key> <action>raise layer</action></keys>
-<keys><key><shift/><ctrl/><misc f="PgDn"/></key> <action>lower layer</action></keys>
-<keys><key><shift/><ctrl/><misc f="Home"/></key> <action>raise layer to top</action></keys>
-<keys><key><shift/><ctrl/><misc f="End"/></key> <action>lower layer to bottom</action></keys>
-<note>These commands move the current layer among its siblings (normally other layers).</note>
-</group>
-</section>
-
-
-*<section title="Object" color="f4ecf5">
-
-<group>
-<title>Undo/redo</title>
-<keys><key><shift/><ctrl/>Y</key> <key><ctrl/>Z</key> <action>undo</action></keys>
-<keys><key><shift/><ctrl/>Z</key> <key><ctrl/>Y</key> <action>redo</action></keys>
-</group>
-
-<group>
-<title>Clipboard</title>
-<keys><key><ctrl/>C</key> <action>copy selection</action></keys>
-<keys><key><ctrl/>X</key> <action>cut selection</action></keys>
-<keys><key><ctrl/>V</key> <action>paste clipboard</action></keys>
-<note>This places the clipboard objects at the mouse cursor, or at the center of the window if mouse is outside the canvas.</note>
-<note>When editing text with the text tool, this pastes the text from the clipboard into the current text object.</note>
-<keys><key><ctrl/><alt/>V</key> <action>paste in place</action></keys>
-<note>This places the clipboard objects into the original location from which they were copied.</note>
-<keys><key><shift/><ctrl/>V</key> <action>paste style</action></keys>
-<note>This applies the style of the (first of the) copied object(s) to the current selection.</note>
-<note>If a gradient handle (in Gradient tool) or a text span (in Text tool) are selected, they get the style instead of the entire object.</note>
-<keys><key><ctrl/>7</key> <action>paste path effect</action></keys>
-<note>This applies the path effect of the copied path to the paths/shapes in current selection.</note>
-</group>
-
-<group>
-<title>Duplicate</title>
-<keys><key><ctrl/>D</key> <action>duplicate selection</action></keys>
-<note>New object(s) are placed exactly over the original(s) and selected.</note>
-</group>
-
-<group>
-<title>Clone</title>
-<keys><key><alt/>D</key> <action>clone object</action></keys>
-<note>A clone can be moved/scaled/rotated/skewed independently, but it updates the path, fill, and stroke from its original.</note>
-<note>The clone is placed exactly over the original object and is selected.</note>
-<note>You can only clone one object at a time; if you want to clone several objects together, group them and clone the group.</note>
-<keys><key><shift/><alt/>D</key> <action>unlink clone</action></keys>
-<note>Unlinking a clone cuts the link to the original, turning the clone into a plain copy.</note>
-<keys><key><shift/>D</key> <action>select original</action></keys>
-<note>To find out which object this is a clone of, select the clone and give this command. The original will be selected.</note>
-</group>
-
-<group>
-<title>Bitmaps</title>
-<keys><key><alt/>B</key> <action>create a bitmap copy</action></keys>
-<note>This exports the selected object(s) (all other objects hidden) as PNG in the document's directory and imports it back.</note>
-<note>The imported bitmap is placed over the original selection and is selected.</note>
-<keys><key><shift/><alt/>B</key> <action>trace bitmap</action></keys>
-<note>This opens the Trace Bitmap dialog allowing you to convert a bitmap object to path(s).</note>
-</group>
-
-<group>
-<title>Patterns</title>
-<keys><key><alt/>I</key> <action>object(s) to pattern</action></keys>
-<note>This converts the selection to a rectangle with tiled pattern fill.</note>
-<keys><key><shift/><alt/>I</key> <action>pattern to object(s)</action></keys>
-<note>Each selected object with pattern fill is broken into the same object without fill and a single pattern object.</note>
-</group>
-
-<group>
-<title>Group</title>
-<keys> <key><shift/><ctrl/>U</key> <key><ctrl/>G</key> <action>group selected objects</action></keys>
-<note>Use Ctrl+click to select objects within group.</note>
-<keys><key><shift/><ctrl/>G</key> <key><ctrl/>U</key> <action>ungroup selected group(s)</action></keys>
-<note>This removes only one level of grouping; press Ctrl+U repeatedly to ungroup nested groups.</note>
-</group>
-
-<group>
-<title>Z-order</title>
-<keys><key><misc f="Home"/></key> <action>raise selection to top</action></keys>
-<keys><key><misc f="End"/></key> <action>lower selection to bottom</action></keys>
-<keys><key><misc f="PgUp"/></key> <action>raise selection one step</action></keys>
-<keys><key><misc f="PgDn"/></key> <action>lower selection one step</action></keys>
- </group>
-
-</section>
-
-*<section title="Path" color="f9f1d9">
-
-<group>
-<title>Convert to path</title>
-<keys><key><shift/><ctrl/>C</key> <action>convert selected object(s) to path</action></keys>
-<keys><key><ctrl/><alt/>C</key> <action>convert stroke to path</action></keys>
-</group>
-
-<group>
-<title>Boolean operations</title>
-<keys><key><ctrl/>+</key> <action>union</action></keys>
-<note>Union combines any number of objects into a single path, removing overlaps.</note>
-<keys><key><ctrl/>-</key> <action>difference</action></keys>
-<note>Difference works on 2 objects, extracting the top from the bottom.</note>
-<keys><key><ctrl/>*</key> <action>intersection</action></keys>
-<note>Intersection creates a path representing the common (overlapping) area of all selected objects.</note>
-<keys><key><ctrl/>^</key> <action>exclusive OR (XOR)</action></keys>
-<note>XOR is similar to Union, except that it works on 2 objects and removes areas where the objects overlap.</note>
-<keys><key><ctrl/>/</key> <action>division (cut)</action></keys>
-<note>Division cuts the bottom object into pieces by the top object, preserving the fill and stroke of the bottom.</note>
-<keys><key><ctrl/><alt/>/</key> <action>cut path</action></keys>
-<note>Cut Path cuts the bottom object's stroke only where it is intersected by the top path, removing any fill from the result.</note>
-<note>The result of Union, Difference, Intersection, and XOR inherits the id= attribute and therefore the clones of the bottom object.</note>
-<note>Division and Cut path normally produce several objects; of them, a random one inherits the id= of the bottom source object.</note>
-</group>
-
-<group>
-<title>Offsets</title>
-<keys><key><ctrl/>(</key> <action>inset path (towards center)</action></keys>
-<keys><key><ctrl/>)</key> <action>outset path (away from center)</action></keys>
-<note>The default offset distance is 2 px (SVG pixel units, not screen pixels).</note>
-<keys><key><alt/>(</key> <action>inset path by 1 pixel</action></keys>
-<keys><key><alt/>)</key> <action>outset path by 1 pixel</action></keys>
-<keys><key><shift/><alt/>(</key> <action>inset path by 10 pixels</action></keys>
-<keys><key><shift/><alt/>)</key> <action>outset path by 10 pixels</action></keys>
-<note>The actual distance for pixel offsets depends on zoom level. Zoom in for finer adjustment.</note>
-<note>All the (, ) commands convert the object to path, if necessary, and produce regular path.</note>
-<keys><key><ctrl/>J</key> <action>create dynamic offset</action></keys>
-<keys><key><ctrl/><alt/>J</key> <action>create linked offset</action></keys>
-<note>These commands produce an offset object, editable by the node tool, standalone or linked to the original.</note>
-<keys><key><shift/>D</key> <action>select source</action></keys>
-<note>Selecting a linked offset and giving this command will select the source path of the linked offset.</note>
-</group>
-
-<group>
-<title>Combine</title>
-<keys><key><ctrl/>K</key> <action>combine paths</action></keys>
-<note>This is different from grouping in that combined paths create one object.</note>
-<note>This is different from Union in that overlapping areas are not affected.</note>
-<note>Whether overlapping areas are filled is controlled by the Fill: winding/alternating switch on the Fill &amp; Stroke dialog.</note>
-<keys><key><shift/><ctrl/>K</key> <action>break paths apart</action></keys>
-<note>This attempts to break an object into constituent paths; it will fail if the object is one solid path.</note>
-</group>
-
-<group>
-<title>Simplify</title>
-<keys><key><ctrl/>L</key> <action>simplify</action></keys>
-<note>This command attempts to simplify selected path(s) by removing extra nodes. It converts all objects to paths first.</note>
-<note>If you invoke this command several times in quick succession, it will act more and more aggressively.</note>
-<note>Invoking Simplify again after a pause restores the default threshold (settable in the Inkscape Preferences dialog).</note>
-</group>
-
-</section>
-
-</column>
-
-<column>
-
-*<section title="Selector" color="eee4dc">
-
-<group>
-<title>Select (mouse)</title>
-<mouse><key><left-click/></key> <action>select an object</action></mouse>
-<note>When you left-click on an object, previous selection is deselected.</note>
-<mouse><key><shift/><left-click/></key> <action>toggle selection </action></mouse>
-<note>Shift+click adds an object to the current selection if it was not selected, or deselects it otherwise.</note>
-<mouse><key><left-click/><left-click/></key> <action>edit the object</action></mouse>
-<note>For paths, double clicking switches to Node tool; for shapes, to corresponding shape tool; for text, to Text tool.</note>
-<note>For groups, double clicking performs the "Enter group" command (the group becomes a temporary layer).</note>
-<note>Double clicking in empty space switches to the parent layer in the hierarchy, if any.</note>
-</group>
-
-<group>
-<title>Rubberband, touch selection</title>
-<mouse><key><left-drag/></key> <action>select by rubberband</action></mouse>
-<note>Dragging around objects does "rubberband" selection; previous selection is deselected.</note>
-<mouse><key><shift/><left-drag/></key> <action>add objects to selection</action></mouse>
-<note>Normally, you need to start from an empty space to initiate a rubberband.</note>
-<note>However, if you press Shift before dragging, Inkscape will do rubberband selection even if you start from an object.</note>
-<mouse><key><alt/><left-drag/></key><key><shift/><alt/><left-drag/></key> <action>select by touch</action></mouse>
-<note>Alt+dragging over objects selects those objects that are touched by the path.</note>
-<note>To start touch selection with Alt, you must have nothing selected; otherwise use Shift+Alt.</note>
-<note>You can switch rubberband selection to touch selection and back while dragging by pressing/releasing Alt.</note>
-</group>
-
-<group>
-<title>Select (keyboard)</title>
-<keys><key><misc f="Tab"/></key> <action>select next object </action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>select previous object </action></keys>
-<note>These keys pick objects in their z-order (Tab cycles from bottom to top, Shift+Tab cycles from top to bottom).</note>
-<note>Unless you did manual rearrangements, the last object you created is always on top.</note>
-<note>As a result, if nothing is selected, pressing Shift+Tab once conveniently selects the object you created last.</note>
-<note>This works on objects within the current layer (unless you change that in preferences).</note>
-<keys><key><ctrl/>A</key> <action>select all (current layer)</action></keys>
-<note>This works on objects within the current layer (unless you change that in preferences).</note>
-<keys><key><ctrl/><alt/>A</key> <action>select all (all layers)</action></keys>
-<note>This works on objects in all visible and unlocked layers.</note>
-<keys><key>!</key> <action>invert selection (current layer)</action></keys>
-<note>This inverts selection (deselects what was selected and vice versa) in the current layer.</note>
-<keys><key><alt/>!</key> <action>invert selection (all layers)</action></keys>
-<note>This inverts selection (deselects what was selected and vice versa) in visible and unlocked layers.</note>
-<keys><key><misc f="Esc"/></key> <action>deselect</action></keys>
-<keys><key><misc-wide f="Backspace"/></key><key><misc f="Del"/></key> <action>delete selection</action></keys>
-</group>
-
-<group>
-<title>Select within group, select under</title>
-<mouse><key><ctrl/><left-click/></key> <action>select within group</action></mouse>
-<note>Ctrl+click selects the object at click point disregarding any levels of grouping that this object might belong to.</note>
-<mouse><key><ctrl/><shift/><left-click/></key> <action>toggle selection within group</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>select under</action></mouse>
-<note>Alt+click selects the object at click point which is beneath (in z-order) the lowest selected object at click point.</note>
-<note>If the bottom object is reached, Alt+click again selects the top object. So, several Alt+clicks cycle through z-order stack at point.</note>
-<note>On Linux, Alt+click and Alt+drag may be reserved by the window manager. If you reconfigure your window manager </note>
-<note>to not map Alt+click, then it will be free for Inkscape to use. </note>
-<note>If your keyboard has a Meta key, you may wish to set your "Modifier
-key" to use it instead of Alt.</note>
-<note>(Sometimes you can also use Ctrl+Alt+click (select under in
-groups) with the same effect as Alt+click.)</note>
-<mouse><key><shift/><alt/><left-click/></key> <action>toggle under</action></mouse>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>select under, in groups</action></mouse>
-<mouse><key><shift/><ctrl/><alt/><left-click/></key> <action>toggle under, in groups</action></mouse>
-<keys><key><ctrl/><misc-wide f="Enter"/></key> <action>enter group</action></keys>
-<keys><key><ctrl/><misc-wide f="Backspace"/></key> <action>go to parent group/layer</action></keys>
-</group>
-
-<group>
-<title>Move (mouse)</title>
-<mouse><key><left-drag/></key> <action>select + move</action></mouse>
-<note>Dragging an object selects it if it was not selected, then moves selection.</note>
-<mouse><key><alt/><left-drag/></key> <action>move selected</action></mouse>
-<note>Alt+drag moves the current selection (without selecting what is under cursor), no matter where you start the drag.</note>
-<note>On Linux, Alt+click and Alt+drag may be reserved by the window manager. Reconfigure it so you can use them in Inkscape.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>restrict movement to horizontal or vertical</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>temporarily disable snapping</action></mouse>
-<note>This temporarily disables snapping to grid or guides when you are dragging with grid or guides on.</note>
-<mouse><key><left-drag/><misc-wide f="Space"/></key> <action>drop a copy</action></mouse>
-<note>When dragging or transforming with mouse, each Space leaves a copy of the selected object.</note>
-<note>You can press and hold Space while dragging for a nice "trail."</note>
-</group>
-
-<group>
-<title>Move (keyboard)</title>
-<mouse><key><arrows/></key> <action>move selection by the nudge distance</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>move selection by 10x nudge distance</action></mouse>
-<note>The default nudge distance is 2 px (SVG pixel units, not screen pixels).</note>
-<mouse><key><alt/><arrows/></key> <action>move selection by 1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>move selection by 10 pixels</action></mouse>
-<note>The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</note>
-</group>
-
-<group>
-<title>Transform (mouse)</title>
-<mouse><key><left-click/></key><key><shift/>S</key> <action>toggle scale/rotation handles</action></mouse>
-<mouse><key><left-drag/></key> <action>scale (with scale handles)</action></mouse>
-<mouse><key><left-drag/></key> <action>rotate or skew (with rotation handles)</action></mouse>
-</group>
-
-<group>
-<title>Scale by handles</title>
-<mouse><key><left-drag/></key> <action>scale</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>scale preserving aspect ratio</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>symmetric transformation</action></mouse>
-<note>Holding Shift while transforming makes transformation symmetric around the center of the selection.</note>
-<!-- FIXME: why not disable snapping? inconsistent! -->
-<mouse><key><alt/><left-drag/></key> <action>scale by integer</action></mouse>
-<note>Hold Alt while scaling to limit scale to 2, 3, 4, etc. or 1/2, 1/3, 1/4 etc. of the initial size.</note>
-</group>
-
-<group>
-<title>Scale (keyboard)</title>
-<keys><key>.</key> <key>&gt;</key> <action>scale selection up by the scale step</action></keys>
-<keys><key>,</key> <key>&lt;</key> <action>scale selection down by the scale step</action></keys>
-<note>The default scale step is 2 px (SVG pixel units, not screen pixels).</note>
-<keys><key><ctrl/>.</key> <key><ctrl/>&gt;</key> <action>scale selection to 200%</action></keys>
-<keys><key><ctrl/>,</key> <key><ctrl/>&lt;</key> <action>scale selection to 50%</action></keys>
-<keys><key><alt/>.</key> <key><alt/>&gt;</key> <action>scale selection up by 1 pixel</action></keys>
-<keys><key><alt/>,</key> <key><alt/>&lt;</key> <action>scale selection down by 1 pixel</action></keys>
-<note>The actual size increment for pixel scaling depends on zoom level. Zoom in for finer scaling.</note>
-<note>Scaling is uniform around the center, so that the size increment applies to the larger of the two dimensions.</note>
-</group>
-
-<group>
-<title>Rotate/skew by handles</title>
-<mouse><key><left-drag/></key> <action>rotate or skew</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>snap skew angle</action></mouse>
-<note>Holding Ctrl when dragging a skew (non-corner) handle snaps the skew angle to angle steps (default 15 degrees).</note>
-<mouse><key><ctrl/><left-drag/></key> <action>snap rotation angle</action></mouse>
-<note>Holding Ctrl when dragging a rotation (corner) handle snaps the rotation angle to angle steps (default 15 degrees).</note>
-</group>
-
-<group>
-<title>Rotate (keyboard)</title>
-<keys><key>[</key> <key>]</key> <action>rotate selection by the angle step</action></keys>
-<note>The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise.</note>
-<keys><key><ctrl/>[</key> <key><ctrl/>]</key> <action>rotate selection by 90 degrees</action></keys>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>rotate selection by 1 pixel</action></keys>
-<note>The actual angle for pixel rotation depends on zoom level. Zoom in for finer movement.</note>
-<note>These commands use the rotation center, draggable in Selector (by default it's in geometric center).</note>
-</group>
-
-<group>
-<title>Flip</title>
-<keys><key>h</key> <action>flip selection horizontally</action></keys>
-<keys><key>v</key> <action>flip selection vertically</action></keys>
-<note>If the tool is in rotate mode (rotation center visible), that center becomes the axis of flipping; otherwise it flips around geometric center of selection</note>
-</group>
-
-<group>
-<title>Rotation center</title>
-<mouse><key><left-drag/></key> <action>move rotation center</action></mouse>
-<note>Moved rotation center remembers and saves its position for (all) selected object(s); you can reset it.</note>
-<note>Dragging the center snaps it to the centerlines and bounding box edges of the selection.</note>
-<mouse><key><shift/><left-drag/></key> <action>move without snapping</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>reset rotation center</action></mouse>
-<note>Resetting rotation center moves it back to the geometric center of the object's or selection's bounding box.</note>
-</group>
-
-<group>
-<title>Cancel</title>
-<keys><key><misc f="Esc"/></key> <action>cancel rubberband, move, transformation</action></keys>
-<note>Press Esc while mouse button is still down to cancel rubberband selection, move, or transformation of any kind.</note>
-</group>
-
-</section>
-
-</column>
-
-<column>
-*<section title="Node tool" color="f9f1d9">
-
-<group>
-<title>Select objects (mouse)</title>
-<mouse><key><left-click/></key> <action>click a non-selected object to select</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>select under</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-<note>These work the same as in Selector. The nodes or handles of the single selected object become editable.</note>
-</group>
-
-<group>
-<title>Select nodes (mouse)</title>
-<mouse><key><left-click/></key> <action>select a node</action></mouse>
-<note>Clicking on a node selects it.</note>
-<mouse><key><left-click/></key> <action>select two adjacent nodes</action></mouse>
-<note>Clicking on a selected path between the nodes selects the two nodes closest to the click point.</note>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-<note>This adds/removes a node (if clicked on node) or two nodes (if clicked on path) to/from the node selection.</note>
-<mouse><key><left-click/></key> <action>deselect</action></mouse>
-<note>Clicking in an empty space deselects all selected nodes. Next click will deselect the object.</note>
-</group>
-
-<group>
-<title>Rubberband selection</title>
-<mouse><key><left-drag/></key> <action>select multiple nodes</action></mouse>
-<note>Dragging around nodes does "rubberband" selection; previous node selection is deselected.</note>
-<mouse><key><shift/><left-drag/></key> <action>add nodes to selection</action></mouse>
-<note>Normally, you need to start from a point not over a path or a node to initiate a rubberband.</note>
-<note>However, if you press Shift before dragging, Inkscape will do rubberband selection even if you start over the path.</note>
-</group>
-
-<group>
-<title>Select nodes (keyboard)</title>
-<keys><key><misc f="Tab"/></key> <action>select next node</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>select previous node</action></keys>
-<note>These keys select nodes within the selected path</note>
-<keys><key><ctrl/>A</key> <action>select all nodes in subpath(s)</action></keys>
-<note>If the path has multiple subpaths and some nodes selected, this selects all only in subpaths with already selected nodes.</note>
-<keys><key><ctrl/><alt/>A</key> <action>select all nodes in path</action></keys>
-<note>This selects all nodes in the entire path.</note>
-<keys><key>!</key> <action>invert selection in subpath(s)</action></keys>
-<note>If the path has multiple subpaths and some nodes selected, this inverts selection only in subpaths with already selected nodes.</note>
-<keys><key><alt/>!</key> <action>invert selection in path</action></keys>
-<note>This inverts selection (deselects what was selected and vice versa) in the entire path.</note>
-<keys><key><misc f="Esc"/></key> <action>deselect all nodes</action></keys>
-</group>
-
-<group>
-<title>Grow/shrink node selection</title>
-<keys><key><misc f="PgUp"/></key> <key><misc f="PgDn"/></key> <action>grow/shrink selection (spatial)</action></keys>
-<mouse><key><wheel/></key> <action>grow/shrink selection (spatial)</action></mouse>
-<keys><key><ctrl/><misc f="PgUp"/></key> <key><ctrl/><misc f="PgDn"/></key> <action>grow/shrink selection (along path)</action></keys>
-<mouse><key><ctrl/><wheel/></key> <action>grow/shrink selection (along path)</action></mouse>
-<note>Your mouse pointer must be over a node for growing/shrinking.</note>
-<note>Each key press or wheel click selects the nearest unselected node or deselects the farthest selected node.</note>
-<note>Distance to nodes can be calculated directly (spatial mode) or along path.</note>
-</group>
-
-<group>
-<title>Move nodes (mouse)</title>
-<mouse><key><left-drag/></key> <action>move selected nodes</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>restrict movement to horizontal or vertical</action></mouse>
-<mouse><key><ctrl/><alt/><left-drag/></key> <action>move along handles</action></mouse>
-<note>This restricts movement to the directions of the node's handles, their continuations and perpendiculars (total 8 snaps).</note>
-<note>If the node has straight lines on one or both sides, this will snap it to these lines' directions and perpendiculars instead.</note>
-<mouse><key><shift/><left-drag/></key> <action>temporarily disable snapping</action></mouse>
-<note>Snapping nodes is enabled in Document Preferences. By default, only bounding box of objects snaps to grid/guides.</note>
-<mouse><key><shift/><left-drag/></key> <action>drag out handle</action></mouse>
-<note>If a node has a retracted handle, dragging with Shift lets you drag it out of the node.</note>
-<mouse><key><left-drag/><misc-wide f="Space"/></key> <action>drop a copy</action></mouse>
-<note>When dragging nodes with mouse, each Space leaves a copy of the selected object.</note>
-<note>You can press and hold Space while dragging for a nice "trail."</note>
-<mouse><key><alt/><left-drag/></key> <action>sculpt selected nodes</action></mouse>
-<note>Sculpting moves the selected nodes so that the dragged node moves all the way, the farthest selected nodes stay put;</note>
-<note>all intermediate selected nodes move intermediate distances, governed by a bell-like curve.</note>
-<note>Sculpting is pressure-sensitive with a tablet; press harder for a blunter drag profile, press lightly for a sharper profile.</note>
-<note>To stop sculpting without losing the pressure-sensitive profile, release Alt first and then lift the pen.</note>
-</group>
-
-<group>
-<title>Move nodes (keyboard)</title>
-<mouse><key><arrows/></key> <action>move selected node(s) by the nudge distance</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>move selected node(s) by 10x nudge distance</action></mouse>
-<note>The default nudge distance is 2 px (SVG pixel units, not screen pixels).</note>
-<mouse><key><alt/><arrows/></key> <action>move selected node(s) by 1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>move selected node(s) by 10 pixels</action></mouse>
-<note>The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</note>
-</group>
-
-<group>
-<title>Move node handle (mouse)</title>
-<mouse><key><left-drag/></key> <action>move a node handle</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>snap the handle to angle steps</action></mouse>
-<note>The default angle step is 15 degrees. This also snaps to the handle's original angle, its continuation and perpendiculars.</note>
-<mouse><key><shift/><left-drag/></key> <action>rotate both handles</action></mouse>
-<mouse><key><alt/><left-drag/></key> <action>lock the handle length</action></mouse>
-<note>Ctrl, Shift, Alt can be combined when dragging handles.</note>
-<mouse><key><ctrl/><left-click/></key> <action>retract the handle</action></mouse>
-<note>Retracted handle is zero length; use Shift+drag to drag it back out.</note>
-</group>
-
-<group>
-<title>Scale handle (1 node selected)</title>
-<keys><key>&lt;</key> <key>&gt;</key> <action>contract/expand both handles by scale step</action></keys>
-<note>The default scale step is 2 px (SVG pixel units, not screen pixels). May apply to more than one node.</note>
-<keys>
-<key><left/><ctrl/>&lt;</key>
-<key><left/><ctrl/>&gt;</key>
-<action>scale left handle by the scale step</action>
-</keys>
-<keys>
-<key><right/><ctrl/>&lt;</key>
-<key><right/><ctrl/>&gt;</key>
-<action>scale right handle by the scale step</action>
-</keys>
-<keys>
-<key><left/><alt/>&lt;</key>
-<key><left/><alt/>&gt;</key>
-<action>scale left handle by 1 pixel</action>
-</keys>
-<keys>
-<key><right/><alt/>&lt;</key>
-<key><right/><alt/>&gt;</key>
-<action>scale right handle by 1 pixel</action>
-</keys>
-<note>The actual size increment for pixel scaling depends on zoom level. Zoom in for finer scaling.</note>
-<note>Instead of the &lt; and &gt; keys, you can use the , (comma) and . (period) keys respectively.</note>
-</group>
-
-<group>
-<title>Rotate handle (1 node selected)</title>
-<keys><key>[</key> <key>]</key> <action>rotate both handles by the angle step</action></keys>
-<note>The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise. May apply to more than one node.</note>
-<keys><key><left/><ctrl/>[</key> <key><left/><ctrl/>]</key> <action>rotate left handle by the angle step</action></keys>
-<keys><key><right/><ctrl/>[</key> <key><right/><ctrl/>]</key> <action>rotate right handle by the angle step</action></keys>
-<keys><key><left/><alt/>[</key> <key><left/><alt/>]</key> <action>rotate left handle by 1 pixel</action></keys>
-<keys><key><right/><alt/>[</key> <key><right/><alt/>]</key> <action>rotate right handle by 1 pixel</action></keys>
-</group>
-
-
-<group>
-<title>Scale nodes (&gt;1 nodes selected)</title>
-<note>These commands scale the selected nodes as if they were an "object".</note>
-<note>If mouse is over a node, that node becomes the axis of scaling; otherwise it scales around geometric center of selected nodes.</note>
-<keys><key>.</key> <key>&gt;</key> <action>scale nodes up by the scale step</action></keys>
-<keys><key>,</key> <key>&lt;</key> <action>scale nodes down by the scale step</action></keys>
-<note>The default scale step is 2 px (SVG pixel units, not screen pixels).</note>
-<keys><key><alt/>.</key> <key><alt/>&gt;</key> <action>scale nodes up by 1 pixel</action></keys>
-<keys><key><alt/>,</key> <key><alt/>&lt;</key> <action>scale nodes down by 1 pixel</action></keys>
-<note>The actual size increment for pixel scaling depends on zoom level. Zoom in for finer scaling.</note>
-<note>Scaling is uniform around the center, so that the size increment applies to the larger of the two dimensions.</note>
-</group>
-
-<group>
-<title>Rotate nodes (&gt;1 nodes selected)</title>
-<note>These commands rotate the selected nodes as if they were an "object".</note>
-<note>If mouse is over a node, that node becomes the axis of rotation; otherwise it rotates around geometric center of selected nodes.</note>
-<keys><key>[</key> <key>]</key> <action>rotate nodes by the angle step</action></keys>
-<note>The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise.</note>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>rotate nodes by 1 pixel</action></keys>
-<note>The actual angle for pixel rotation depends on zoom level. Zoom in for finer movement.</note>
-</group>
-
-<group>
-<title>Flip nodes (&gt;1 nodes selected)</title>
-<note>These commands flip the selected nodes as if they were an "object", around the center of that object.</note>
-<keys><key>h</key> <action>flip nodes horizontally</action></keys>
-<keys><key>v</key> <action>flip nodes vertically</action></keys>
-<note>If mouse is over a node, that node becomes the axis of flipping; otherwise it flips around geometric center of selected nodes</note>
-</group>
-
-<group>
-<title>Change segment(s)</title>
-<keys><key><shift/>L</key> <action>make line</action></keys>
-<keys><key><shift/>U</key> <action>make curve</action></keys>
-<note>These commands require that more than two adjacent nodes be selected.</note>
-</group>
-
-<group>
-<title>Change node type</title>
-<keys><key><shift/>C</key> <action>make cusp</action></keys>
-<note>First Shift+C changes type of node; if you do another Shift+C on an already cusp node, it retracts its handles</note>
-<keys><key><shift/>S</key> <action>make smooth</action></keys>
-<note>If a cusp node is adjacent to a line segment, first Shift+S makes it half-smooth with one handle collinear
-with the segment; another Shift+S will expand a second handle</note>
-<keys><key><shift/>Y</key> <action>make symmetric</action></keys>
-<note>When making smooth or symmetric, you can lock the position of one of the handles by hovering mouse over it.</note>
-<keys><key><shift/>A</key> <action>make auto</action></keys>
-<mouse><key><ctrl/><left-click/></key> <action>toggle smooth/cusp/symmetric/auto</action></mouse>
-</group>
-
-<group>
-<title>Join/break</title>
-<keys><key><shift/>J</key> <action>join selected nodes</action></keys>
-<note>This requires that exactly two end nodes within the path be selected.</note>
-<note>You can lock the position of one of the two joined nodes by hovering mouse over it.</note>
-<keys><key><shift/>B</key> <action>break selected node(s)</action></keys>
-<note>After break, only one of each two new nodes is selected. May apply to more than one node.</note>
-</group>
-
-<group>
-<title>Delete, create, duplicate</title>
-<keys><key><misc-wide f="Backspace"/></key><key><misc f="Del"/></key> <action>delete selected node(s)</action></keys>
-<keys><key><ctrl/><misc-wide f="Backspace"/></key><key><ctrl/><misc f="Del"/></key> <action>delete without preserving shape</action></keys>
-<note>Deleting without Ctrl adjusts handles on the remaining nodes to preserve the shape of the curve as much as possible.</note>
-<note>Deleting with Ctrl does not touch the remaining nodes.</note>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>create/delete node</action></mouse>
-<note>Ctrl+Alt+click on a node deletes it; Ctrl+Alt+click on the path between nodes creates a new node in the click point.</note>
-<note>Deleting nodes this way always tries to preserve the shape of the curve (same as Del/Backspace).</note>
-<mouse><key><left-click/><left-click/></key> <action>create node</action></mouse>
-<note>Double clicking on the path between nodes creates a node in the click point.</note>
-<keys><key><misc f="Ins"/></key> <action>insert new node(s)</action></keys>
-<note>This adds new node(s) in the middle(s) of selected segment(s), so it requires that more than two adjacent nodes be selected.</note>
-<keys><key><shift/>D</key> <action>duplicate selected node(s)</action></keys>
-<note>New nodes are created on the same path; they are placed exactly over the old ones and are selected.</note>
-</group>
-
-<!-- does not seem to work
-<group>
-<title>Active node</title>
-<note>The active node is one under mouse or being dragged.</note>
-<note>When you have an active node, some of the single-letter tool switch shortcuts may not work;</note>
-<note>move your mouse cursor so that no node is active if you want to use them.</note>
-<keys><key>c</key> <action>make active node cusp</action></keys>
-<keys><key>s</key> <action>make active node smooth</action></keys>
-<keys><key>y</key> <action>make active node symmetric</action></keys>
-<keys><key>b</key> <action>break active node</action></keys>
-<keys><key><misc-wide f="Backspace"/></key> <action>delete active node</action></keys>
-</group>
--->
-
-
-<group>
-<title>Reverse</title>
-<keys><key><shift/>r</key> <action>reverse path direction</action></keys>
-</group>
-
-<group>
-<title>Edit shapes</title>
-<note>Node tool can also drag the handles of shapes (rectangles, ellipses, stars, spirals). Click on a shape to select it.</note>
-<note>See the corresponding shape tools for their editing shortcuts, all of which also work in node tool.</note>
-</group>
-
-<group>
-<title>Edit fills and path effects</title>
-<note>Node tool can also edit the handles of a pattern fill, gradient fill, and the editable handles of path effects.</note>
-</group>
-
-<group>
-<title>Cancel</title>
-<keys><key><misc f="Esc"/></key> <action>cancel rubberband or move</action></keys>
-<note>Press Esc while mouse button is still down to cancel rubberband selection, node move, handle move, or handle move.</note>
-</group>
-
-</section>
-
-</column>
-<column>
-
-
-*<section title="Tweak tool" color="f2f1ea">
-<group>
-<title>Operation</title>
-<mouse><key><left-drag/></key> <action>act on selected paths in the current mode</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>reverse current mode (when applicable)</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>act temporarily switching to shrink mode</action></mouse>
-<mouse><key><ctrl/><shift/><left-drag/></key> <action>act temporarily switching to grow mode</action></mouse>
-<note>The amount of tweaking action is the greatest at the center of the circular area and drops off smoothly towards the edges.</note>
-</group>
-
-<group>
-<title>Modes</title>
-<keys><key><shift/>m</key><key><shift/>0</key> <action>move mode</action></keys>
-<keys><key><shift/>i</key><key><shift/>1</key> <action>move in/out mode</action></keys>
-<note>Drag moves objects inwards to cursor, drag with Shift moves outwards from cursor</note>
-<keys><key><shift/>z</key><key><shift/>2</key> <action>move jitter mode</action></keys>
-<keys><key><shift/>&lt;</key><key><shift/>&gt;</key><key><shift/>3</key> <action>scale mode</action></keys>
-<note>Drag scales objects down, drag with Shift scales up</note>
-<keys><key><shift/>[</key><key><shift/>]</key><key><shift/>4</key> <action>rotate mode</action></keys>
-<note>Drag rotates objects clockwise, drag with Shift, counterclockwise</note>
-<keys><key><shift/>d</key><key><shift/>5</key> <action>duplicate/delete mode</action></keys>
-<note>Drag randomly duplicates objects, drag with Shift randomly deletes</note>
-<keys><key><shift/>p</key><key><shift/>6</key> <action>push path mode</action></keys>
-<keys><key><shift/>s</key><key><shift/>7</key> <action>shrink/grow path mode</action></keys>
-<note>Drag insets paths, drag with Shift outsets</note>
-<keys><key><shift/>a</key><key><shift/>8</key> <action>attract/repel path mode</action></keys>
-<note>Drag attracts paths to cursor, drag with Shift repels</note>
-<keys><key><shift/>r</key><key><shift/>9</key> <action>roughen mode</action></keys>
-<keys><key><shift/>c</key> <action>color paint mode</action></keys>
-<keys><key><shift/>j</key> <action>color jitter mode</action></keys>
-<keys><key><shift/>b</key> <action>blur mode</action></keys>
-</group>
-
-<group>
-<title>Parameters</title>
-<mouse><key><left-arrow/></key> <key><right-arrow/></key> <action>adjust brush width by 1</action></mouse>
-<mouse><key><misc f="Home"/></key> <key><misc f="End"/></key> <action>set brush width to 1 / 100</action></mouse>
-<mouse><key><up/></key> <key><down/></key> <action>adjust tweaking force</action></mouse>
-<note>Width and force can be adjusted while drawing. With a pressure-sensitive tablet, force also depends on pen pressure.</note>
-</group>
-
-</section>
-
-
-*<section title="Rectangle tool" color="ebf1fd">
-<group>
-<title>Draw</title>
-<mouse><key><left-drag/></key> <action>draw a rectangle</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>make a square or integer-ratio rectangle</action></mouse>
-<note>This restricts rectangle so its height/width ratio is a whole number.</note>
-<mouse><key><shift/><left-drag/></key> <action>draw around the starting point</action></mouse>
-<note>This creates a rectangle symmetric around the starting point of the mouse drag.</note>
-</group>
-
-<group>
-<title>Select</title>
-<mouse><key><left-click/></key> <action>click to select</action></mouse>
-<mouse><key><alt/><left-click/></key> <key><ctrl/><alt/><left-click/></key> <action>select under</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-<note>In this tool, selecting by click disregards any grouping (i.e. acts as clicking with Ctrl in Selector)</note>
-<keys><key><misc f="Esc"/></key> <action>deselect</action></keys>
-</group>
-
-<group>
-<title>Resize by handles</title>
-<mouse><key><left-drag/></key> <action>drag a square handle to resize</action></mouse>
-<note>Initially, the two resize (square) handles are in top left and bottom right corners.</note>
-<note>Resize handles change the width and height of the rectangle in its own coordinate system, before any transforms are applied.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>lock width, height, or ratio</action></mouse>
-</group>
-
-<group>
-<title>Round corners by handles</title>
-<mouse><key><left-drag/></key> <action>drag a circular handle to round corners</action></mouse>
-<note>Initially, the two rounding handles are in the top right corner of the rectangle.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>lock the corner circular</action></mouse>
-<mouse><key><ctrl/><left-click/></key> <action>set the corner circular</action></mouse>
-<note>When rounding corners, dragging one rounding handle keeps the corner circular if the other remains at the corner.</note>
-<note>You can drag both handles for an elliptic rounded corner, or drag/click one with Ctrl to make it circular again.</note>
-<mouse><key><shift/><left-click/></key> <action>remove corner rounding</action></mouse>
-</group>
-</section>
-
-*<section title="3D box tool" color="cff4e2">
-<group>
-<title>Draw</title>
-<mouse><key><left-drag/></key> <action>draw a 3D box (X/Y plane)</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>draw a 3D box (extrude in Z)</action></mouse>
-</group>
-
-<group>
-<title>Select</title>
-<mouse><key><left-click/></key> <action>click to select</action></mouse>
-<mouse><key><alt/><left-click/></key> <key><ctrl/><alt/><left-click/></key> <action>select under</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-<keys><key><misc f="Esc"/></key> <action>deselect</action></keys>
-</group>
-
-<group>
-<title>Edit by handles</title>
-<note>All editing operations occur "in perspective", i.e., either along perspective lines or within planes spanned by these.</note>
-<mouse><key><left-drag/></key> <action>resize/move box</action></mouse>
-<note>The four front handles and the center normally move within the XY plane, the four rear handles along the Z axis.</note>
-<mouse><key><shift/><left-drag/></key> <action>resize/move (with handle behaviour swapped)</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>resize/move (handles snap to axes or diagonals)</action></mouse>
-</group>
-
-<group>
-<title>Edit perspectives</title>
-<note>In what follows, we use the abbreviations VP = vanishing point, PL = perspective line.</note>
-<mouse><key><left-drag/></key> <action>drag square handles to move the VPs</action></mouse>
-<keys><key>[</key> <key>]</key> <action>rotate X-PLs (if parallel) by the angle step</action></keys>
-<note>The default angle step is 15 degrees. ],),} rotate clockwise, [,(,{ rotate counterclockwise.</note>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>rotate X-PLs (if parallel) by 1 pixel</action></keys>
-<keys><key>(</key> <key>)</key> <action>rotate Y-PLs (if parallel) by the angle step</action></keys>
-<keys><key><alt/>(</key> <key><alt/>)</key> <action>rotate Y-PLs (if parallel) by 1 pixel</action></keys>
-<keys><key>{</key> <key>}</key> <action>rotate Z-PLs (if parallel) by the angle step</action></keys>
-<keys><key><alt/>{</key> <key><alt/>}</key> <action>rotate Z-PLs (if parallel) by 1 pixel</action></keys>
-</group>
-
-<!--
-<group>
-<title>Visual appearance</title>
-<keys><key>L</key> <action>toggle visibility of PLs</action></keys>
-<keys><key>A</key> <action>toggle PLs to all corners/only front corners</action></keys>
-</group>
--->
-
-</section>
-
-*<section title="Ellipse tool" color="ffece8">
-<group>
-<title>Draw</title>
-<note>Without Alt the starting and ending point of the mouse drag mark the corners of the bounding box.</note>
-<note>With Alt the ellipse is enlarged so that its circumference passes through these two points (Ctrl+Alt is a special case; see below).</note>
-<mouse><key><left-drag/></key> <action>draw an ellipse</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>make circle or integer-ratio ellipse</action></mouse>
-<note>This restricts ellipse so its height/width ratio is a whole number.</note>
-<mouse><key><shift/><left-drag/></key> <action>draw around the starting point</action></mouse>
-<note>This creates an ellipse symmetric around the starting point of the mouse drag.</note>
-<mouse><key><ctrl/><alt/><left-drag/></key>create circle passing through the starting and ending point<action></action></mouse>
-<note>This creates a perfect circle whose diameter is defined by the starting and ending point of the mouse drag.</note>
-</group>
-
-<group>
-<title>Select</title>
-<mouse><key><left-click/></key> <action>click to select</action></mouse>
-<mouse><key><alt/><left-click/></key> <key><ctrl/><alt/><left-click/></key> <action>select under</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-<note>In this tool, selecting by click disregards any grouping (i.e. acts as clicking with Ctrl in Selector)</note>
-<keys><key><misc f="Esc"/></key> <action>deselect</action></keys>
-</group>
-
-<group>
-<title>Edit by handles</title>
-<mouse><key><left-drag/></key> <action>resize, make arc or segment</action></mouse>
-<note>Initially, the two resize handles are at the topmost and leftmost points; the two arc/segment handles are in the rightmost point.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>lock circle (resize handles)</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>snap to angle steps (arc/segment handles)</action></mouse>
-<note>Resize handles change the width and height of the ellipse in its own coordinate system, before any transforms are applied.</note>
-<note>The default angle step is 15 degrees.</note>
-<mouse><key><shift/><left-click/></key> <action>make whole (arc/segment handles)</action></mouse>
-</group>
-</section>
-
-*<section title="Star tool" color="f8f7d5">
-<group>
-<title>Draw</title>
-<mouse><key><left-drag/></key> <action>draw a star</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>snap star to angle steps</action></mouse>
-<note>The default angle step is 15 degrees.</note>
-</group>
-
-<group>
-<title>Select</title>
-<mouse><key><left-click/></key> <action>click to select</action></mouse>
-<mouse><key><alt/><left-click/></key> <key><ctrl/><alt/><left-click/></key> <action>select under</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-<note>In this tool, selecting by click disregards any grouping (i.e. acts as clicking with Ctrl in Selector)</note>
-<keys><key><misc f="Esc"/></key> <action>deselect</action></keys>
-</group>
-
-<group>
-<title>Edit by handles</title>
-<mouse><key><left-drag/></key> <action>drag a handle to vary the star shape</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>keep star rays radial (no skew)</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>round the star</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>remove rounding</action></mouse>
-<mouse><key><alt/><left-drag/></key> <action>randomize the star</action></mouse>
-<mouse><key><alt/><left-click/></key> <key><ctrl/><alt/><left-click/></key> <action>remove randomization</action></mouse>
-</group>
-</section>
-
-*<section title="Spiral tool" color="f3f3f3">
-<group>
-<title>Draw</title>
-<mouse><key><left-drag/></key> <action>draw a spiral</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>snap spiral to angle steps</action></mouse>
-<note>The default angle step is 15 degrees.</note>
-</group>
-
-<group>
-<title>Select</title>
-<mouse><key><left-click/></key> <action>click to select</action></mouse>
-<mouse><key><alt/><left-click/></key> <key><ctrl/><alt/><left-click/></key> <action>select under</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-<note>In this tool, selecting by click disregards any grouping (i.e. acts as clicking with Ctrl in Selector)</note>
-<keys><key><misc f="Esc"/></key> <action>deselect</action></keys>
-</group>
-
-<group>
-<title>Edit by handles</title>
-<mouse><key><left-drag/></key> <action>roll/unroll from inside (inner handle)</action></mouse>
-<note>Dragging the inner handle adjusts the "inner radius" parameter.</note>
-<mouse><key><alt/><left-drag/></key> <action>converge/diverge (inner handle)</action></mouse>
-<mouse><key><alt/><left-click/></key> <key><ctrl/><alt/><left-click/></key> <action>reset divergence (inner handle)</action></mouse>
-<note>Vertical Alt+drag of the inner handle adjusts the "divergence" parameter, Alt+click resets it to 1.</note>
-<mouse><key><shift/><left-click/></key> <action>zero inner radius (inner handle)</action></mouse>
-<note>Shift+click on inner handle makes the spiral start from the center.</note>
-
-<mouse><key><left-drag/></key> <action>roll/unroll from outside (outer handle)</action></mouse>
-<note>Dragging the outer handle adjusts the "turns" parameter. Use Shift+Alt+drag to roll/unroll without changing radius.</note>
-<mouse><key><shift/><left-drag/></key> <action>scale/rotate (outer handle)</action></mouse>
-<note>Use Shift+Alt to rotate only (locks the radius of the spiral).</note>
-
-<mouse><key><ctrl/><left-drag/></key> <action>snap handles to angle steps</action></mouse>
-<note>The default angle step is 15 degrees. This works for both handles.</note>
-</group>
-</section>
-
-
-
-</column>
-
-
-
-
-<column>
-
-*<section title="Zoom tool" color="e7e9f3">
-<group>
-<mouse><key><left-click/></key> <action>zoom in</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>zoom out</action></mouse>
-<mouse><key><left-drag/></key> <action>zoom into the area</action></mouse>
-</group>
-</section>
-
-*<section title="Pencil tool" color="e9efc5">
-<group>
-<mouse><key><left-drag/></key> <action>draw a freehand line</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>add to selected path</action></mouse>
-<note>If a path is selected, Shift+dragging anywhere creates a new subpath instead of a new independent path.</note>
-<mouse><key><shift/><left-drag/></key> <action>temporarily disable snapping</action></mouse>
-<note>Shift also temporarily disables snapping to grid or guides when you are drawing with grid or guides on.</note>
-<mouse><key><alt/><left-drag/></key> <action>averaging draw (sketch mode)</action></mouse>
-</group>
-<group>
-<title>Create dots</title>
-<mouse><key><ctrl/><left-click/></key> <action>create a dot</action></mouse>
-<note>This creates a small circle. Its size (relative to the current stroke width) can be set in Preferences.</note>
-<mouse><key><shift/><ctrl/><left-click/></key> <action>create a double-sized dot</action></mouse>
-<mouse><key><alt/><ctrl/><left-click/></key> <action>create a random-sized dot</action></mouse>
-</group>
-</section>
-
-*<section title="Pen (Bezier) tool" color="e7f5d7">
-
-<group>
-<title>Create nodes</title>
-<mouse><key><left-click/></key> <action>create a sharp node</action></mouse>
-<note>If no path is being created, this starts a new path.</note>
-<mouse><key><shift/><left-click/></key> <action>add to selected path</action></mouse>
-<note>If a path is selected, Shift+clicking anywhere starts a new subpath instead of a new independent path.</note>
-<mouse><key><left-drag/></key> <action>create a Bezier node with two handles</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>move only one handle</action></mouse>
-<!-- FIXME: also disables snapping! another conflict -->
-<note>This moves only one handle (instead of both) while creating a node, making it cusp.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>snap the handle to angle steps</action></mouse>
-<note>The default angle step is 15 degrees.</note>
-</group>
-
-<group>
-<title>Move last node</title>
-<note>These commands move the last created node (at the start of the red segment) while creating a path.</note>
-<mouse><key><arrows/></key> <action>move last node by the nudge distance</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>move last node by 10x nudge distance</action></mouse>
-<note>The default nudge distance is 2 px (SVG pixel units, not screen pixels).</note>
-<mouse><key><alt/><arrows/></key> <action>move last node by 1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>move last node by 10 pixels</action></mouse>
-<note>The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</note>
-</group>
-
-<group>
-<title>Create/modify segments</title>
-<keys><key><ctrl/></key> <action>snap last segment to angle steps</action></keys>
-<note>This snaps the new node's angle, relative to the previous node, to angle steps (default 15 degrees).</note>
-<keys><key><shift/>L</key> <action>make last segment line</action></keys>
-<keys><key><shift/>U</key> <action>make last segment curve</action></keys>
-<note>These commands change the last (red) segment of the path to straight line or curve.</note>
-</group>
-
-<group>
-<title>Create dots</title>
-<mouse><key><ctrl/><left-click/></key> <action>create a dot (straight line modes only)</action></mouse>
-<note>This creates a small circle. Its size (relative to the current stroke width) can be set in Preferences.</note>
-<mouse><key><shift/><ctrl/><left-click/></key> <action>create a double-sized dot</action></mouse>
-<mouse><key><alt/><ctrl/><left-click/></key> <action>create a random-sized dot</action></mouse>
-</group>
-
-<group>
-<title>Finish</title>
-<keys><key><misc-wide f="Enter"/></key> <action>finish current line</action></keys>
-<mouse><key><right-click/></key> <action>finish current line</action></mouse>
-<mouse><key><left-click/><left-click/></key> <action>finish current line</action></mouse>
-<note>Enter, right click, or double left click finish the current line, discarding the last unfinished (red) segment.</note>
-</group>
-
-<group>
-<title>Cancel</title>
-<keys><key><misc f="Esc"/></key><key><ctrl/>z</key> <action>cancel current line</action></keys>
-<keys><key><misc-wide f="Backspace"/></key><key><misc f="Del"/></key> <action>erase last segment of current line</action></keys>
-</group>
-</section>
-
-*<section title="Calligraphy tool" color="e9dfef">
-<group>
-<mouse><key><left-drag/></key> <action>draw a calligraphic line</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>add to selected path</action></mouse>
-<note>Drawing with Shift unions the newly created stroke with the previous selection</note>
-<mouse><key><alt/><left-drag/></key> <action>subtract from selected path</action></mouse>
-<note>Drawing with Alt subtracts the newly created stroke from the previous selection</note>
-<mouse><key><ctrl/><left-drag/></key> <action>track a guide path</action></mouse>
-<note>Drawing with Ctrl tracks a selected guide path at the constant distance</note>
-<mouse><key><left-arrow/></key> <key><right-arrow/></key> <action>adjust pen width by 1</action></mouse>
-<mouse><key><misc f="Home"/></key> <key><misc f="End"/></key> <action>set pen width to 1 or 100</action></mouse>
-<mouse><key><up/></key> <key><down/></key> <action>adjust pen angle</action></mouse>
-<note>Width and angle can be adjusted while drawing. </note>
-<keys><key><misc f="Esc"/></key> <action>deselect</action></keys>
-</group>
-</section>
-
-*<section title="Paint Bucket" color="f2f9da">
-<group>
-<mouse><key><left-click/></key> <action>fill a bounded area</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>add to selected path</action></mouse>
-<note>Clicking with Shift unions the newly created fill with the previous selection</note>
-<mouse><key><left-drag/></key> <action>fill from each point</action></mouse>
-<note>From each point, the fill spreads to the neighbors with the colors similar to that point.</note>
-<note>This can be used to fill an area currently filled with a gradient or blur.</note>
-<mouse><key><alt/><left-drag/></key> <action>fill from each point same as initial point</action></mouse>
-<note>From each point, the fill spreads to the neighbors with the colors similar to the initial point of the drag.</note>
-<note>This can be used to fill several disjoint bounded areas by starting in one and dragging over all of the areas.</note>
-<mouse><key><ctrl/><left-click/></key> <action>set fill color</action></mouse>
-<mouse><key><shift/><ctrl/><left-click/></key> <action>set stroke color</action></mouse>
-<note>Ctrl+clicking an object sets its fill (or stroke with Shift) to the tool's current style; the object need not be selected</note>
-</group>
-</section>
-
-*<section title="Gradient tool" color="e9f3e7">
-
-<group>
-<title>Select objects</title>
-<mouse><key><left-click/></key> <action>click an object to select</action></mouse>
-<mouse><key><alt/><left-click/></key> <action>select under</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>toggle selection</action></mouse>
-</group>
-
-<group>
-<title>Create gradients</title>
-<mouse><key><left-drag/></key> <action>create gradient</action></mouse>
-<note>This creates gradient on selected objects. The Controls bar lets you select linear/radial and fill/stroke for the new gradient.</note>
-<mouse><key><left-click/><left-click/></key> <action>create default gradient</action></mouse>
-<note>This creates default (horizontal edge-to-edge for linear, centered edge-to-edge-to-edge for radial) gradient on clicked object. </note>
-</group>
-
-<group>
-<title>Select handles</title>
-<mouse><key><left-click/></key> <action>select a handle</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>add handle to selection</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>select by rubberband</action></mouse>
-<keys><key><misc f="Tab"/></key> <action>select next handle</action></keys>
-<keys><key><shift/><misc f="Tab"/></key> <action>select previous handle</action></keys>
-<keys><key><ctrl/>A</key> <action>select all handles</action></keys>
-<keys><key><misc f="Esc"/></key> <action>deselect all handles</action></keys>
-<note>Single click outside all handles also deselects all handles.</note>
-</group>
-
-<group>
-<title>Create/delete intermediate stops</title>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>create a stop</action></mouse>
-<mouse><key><left-click/><left-click/></key> <action>create a stop</action></mouse>
-<note>Ctrl+Alt+click or double click on a gradient line creates a new intermediate stop</note>
-<mouse><key><ctrl/><alt/><left-click/></key> <action>delete stop</action></mouse>
-<note>Ctrl+Alt+click on a stop's handle deletes the stop; if it was an end stop, gradient shortens or disappears</note>
-<keys><key><misc f="Ins"/></key> <action>insert new stop(s)</action></keys>
-<note>This adds new stop(s) in the middle(s) of selected segment(s), so it requires that more than two adjacent handles be selected.</note>
-<keys><key><misc f="Del"/></key> <action>delete selected stops</action></keys>
-</group>
-
-<group>
-<title>Move handles/stops</title>
-<mouse><key><left-drag/></key> <action>move selected handle(s)</action></mouse>
-<mouse><key><ctrl/><left-drag/></key> <action>move stops in 1/10 range increments</action></mouse>
-<note>Ctrl+dragging selected intermediate stops moves them snapping to 1/10 steps of the available range</note>
-<mouse><key><alt/><left-drag/></key> <action>sculpt selected stops</action></mouse>
-<note>Sculpting moves the selected intermediate stops depending on how close each one is to the stop being dragged, using a smooth bell-like curve similar to the node sculpting feature in Node tool.</note>
-<mouse><key><arrows/></key> <action>move selected handle by the nudge distance</action></mouse>
-<mouse><key><shift/><arrows/></key> <action>move selected handle by 10x nudge distance</action></mouse>
-<note>The default nudge distance is 2 px (SVG pixel units, not screen pixels).</note>
-<mouse><key><alt/><arrows/></key> <action>move selected handle by 1 pixel</action></mouse>
-<mouse><key><alt/><shift/><arrows/></key> <action>move selected handle by 10 pixels</action></mouse>
-<note>If at least one end handle is selected, arrow keys move the end handle to move or resize the gradient line.</note>
-<note>If only mid stops are selected, arrow keys move the selected stops along the gradient line.</note>
-<note>The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</note>
-</group>
-
-<group>
-<title>Reverse</title>
-<keys><key><shift/>r</key> <action>reverse gradient definition</action></keys>
-<note>This mirrors the stop positions of the current gradient without moving the gradient handles.</note>
-</group>
-
-<!-- TODO: remove! -->
-<group>
-<title>Gradient editor</title>
-<mouse><key><left-click/><left-click/></key> <action>open gradient editor</action></mouse>
-<note>Double clicking a gradient handle opens the Gradient Editor with that gradient and the clicked handle chosen in the stops list.</note>
-</group>
-
-
-</section>
-
-
-*<section title="Dropper tool" color="feeffa">
-<group>
-<mouse><key><left-click/></key> <action>pick fill color</action></mouse>
-<mouse><key><shift/><left-click/></key> <action>pick stroke color</action></mouse>
-<mouse><key><left-drag/></key> <action>average fill color</action></mouse>
-<mouse><key><shift/><left-drag/></key> <action>average stroke color</action></mouse>
-<note>Click applies the color under cursor to the current selection. Dragging a radius calculates the average color of a circular area.</note>
-<note>If a gradient handle (in Gradient tool) is selected, it gets the color instead of the entire object.</note>
-<mouse><key><alt/><left-click/></key> <key><alt/><left-drag/></key> <key><ctrl/><alt/><left-click/></key> <key><ctrl/><alt/><left-drag/></key> <action>pick inverse color</action></mouse>
-<note>If Alt is pressed, picking color (with or without Shift, by click or by drag) picks the inverse of the color.</note>
-<keys><key><ctrl/>C</key> <action>copy color</action></keys>
-<note>This copies the color under cursor to the clipboard, as text in RRGGBBAA format (8 hex digits).</note>
-</group>
-</section>
-
-
-</column>
-
-
-
-<column>
-*<section title="Text tool" color="eefdf3">
-
-<group>
-<title>Select/create</title>
-<mouse><key><left-click/></key> <action>create/select a text object</action></mouse>
-<!--<keys><key>letters, digits, space, ...</key> <action>type text in a text object</action></keys>-->
-<note>Clicking in an empty space or on a non-text creates a text object; now you can type your text.</note>
-<note>Clicking on a text object selects it; cursor is placed near the click point.</note>
-<keys><key><misc f="Esc"/></key> <action>deselect the text object</action></keys>
-</group>
-
-<group>
-<title>Navigate in text</title>
-<mouse><key><arrows/></key> <action>move cursor by one character</action></mouse>
-<mouse><key><ctrl/><left-arrow/></key> <key><ctrl/><right-arrow/></key> <action>move cursor by one word</action></mouse>
-<mouse><key><ctrl/><up-arrow/></key> <key><ctrl/><down-arrow/></key> <action>move cursor by one paragraph</action></mouse>
-<keys><key><misc f="Home"/></key> <key><misc f="End"/></key> <action>go to beginning/end of line</action></keys>
-<keys><key><ctrl/><misc f="Home"/></key> <key><ctrl/><misc f="End"/></key> <action>go to beginning/end of text</action></keys>
-<keys><key><misc f="PgUp"/></key> <key><misc f="PgDn"/></key> <action>move cursor by one screen</action></keys>
-<note>All these commands cancel current text selection, if any. Use them with Shift to extend selection instead.</note>
-</group>
-
-<group>
-<title>Flowed text (internal frame)</title>
-<mouse><key><left-drag/></key> <action>create flowed text</action></mouse>
-<note>Clicking and dragging in an empty space or on a non-text creates a flowed text object with internal frame.</note>
-<mouse><key><left-drag/></key> <action>adjust frame size</action></mouse>
-<note>Dragging the handle in the lower right corner of the selected flowed text changes width/height of the frame.</note>
-<mouse><key><ctrl/><left-drag/></key> <action>lock width, height, or ratio of frame</action></mouse>
-<note>Dragging the corner handle with Ctrl resizes the frame preserving either width, or height, or ratio.</note>
-</group>
-
-<group>
-<title>Flowed text (external frame)</title>
-<keys><key><alt/>W</key> <action>flow text into frame</action></keys>
-<note>With a text object and a shape/path selected, this flows text into the shape/path.</note>
-<note>Both remain separate objects, but are linked; editing the shape/path causes the text to reflow.</note>
-<keys><key><alt/><shift/>W</key> <action>unflow text from frame</action></keys>
-<note>This cuts the flowed text's link to the shape/path, producing a single-line regular text object.</note>
-<keys><key><shift/>D</key> <action>select external frame</action></keys>
-<note>To find out which object is the frame of this flowed text, select it and press Shift+D. The frame will be selected.</note>
-</group>
-
-<group>
-<title>Text on path</title>
-<keys><key><shift/>D</key> <action>select path from text</action></keys>
-<note>To find out which path this text is put on, select it and press Shift+D. The path will be selected.</note>
-</group>
-
-<group>
-<title>Edit text</title>
-<note>To type + and - characters, use the main keyboard; keypad + and - are reserved for zoom (unless NumLock is on).</note>
-<keys><key><misc-wide f="Enter"/></key> <action>start a new line or paragraph</action></keys>
-<note>Enter in regular text creates new line; in flowed text it creates a new paragraph</note>
-<keys><key><ctrl/>U</key> <action>toggle Unicode entry</action></keys>
-<note>To insert an arbitrary Unicode character, type Ctrl+U, then the hexadecimal code point, then Enter.</note>
-<note>For example, type Ctrl+U 2 0 1 4 Enter for an em-dash; Ctrl+U a 9 Enter for a copyright sign.</note>
-<note>To stay in Unicode mode after inserting the character, press Space instead of Enter.</note>
-<note>Press Esc or another Ctrl+U to cancel Unicode mode without inserting the character.</note>
-<keys><key><ctrl/><misc-wide f="Space"/></key> <action>insert no-break space</action></keys>
-<note>A no-break space is visible even in a text object without xml:space="preserve".</note>
-</group>
-
-<group>
-<title>Select text</title>
-<mouse><key><left-drag/></key> <action>select text</action></mouse>
-<note>Left-dragging over a text object selects a text span.</note>
-<mouse><key><shift/><arrows/></key> <action>select text by character</action></mouse>
-<mouse><key><ctrl/><shift/><arrows/></key> <action>select text by word</action></mouse>
-<keys><key><shift/><misc f="Home"/></key> <key><shift/><misc f="End"/></key> <action>select to beginning/end of line</action></keys>
-<keys><key><ctrl/><shift/><misc f="Home"/></key> <key><ctrl/><shift/><misc f="End"/></key> <action>select to beginning/end of text</action></keys>
-<keys><key><shift/><misc f="PgUp"/></key> <key><shift/><misc f="PgDn"/></key> <action>select one screen up/down</action></keys>
-<mouse><key><left-click/><left-click/></key> <action>select word</action></mouse>
-<mouse><key><left-click/><left-click/><left-click/></key> <action>select line</action></mouse>
-<keys><key><ctrl/>A</key> <action>select all text</action></keys>
-<note>This selects the entire text of the current text object.</note>
-</group>
-
-<group>
-<title>Style selection</title>
-<keys><key><ctrl/>B</key> <action>make selection bold</action></keys>
-<keys><key><ctrl/>I</key> <action>make selection italic</action></keys>
-<note>Also, you can use the Text&amp;Font or Fill&amp;Stroke dialogs to assign any style to text selection.</note>
-</group>
-
-<group>
-<title>Letter spacing</title>
-<keys><key><alt/>&gt;</key> <action>expand line/paragraph by 1 pixel</action></keys>
-<keys><key><shift/><alt/>&gt;</key> <action>expand line/paragraph by 10 pixels</action></keys>
-<keys><key><alt/>&lt;</key> <action>contract line/paragraph by 1 pixel</action></keys>
-<keys><key><shift/><alt/>&lt;</key> <action>contract line/paragraph by 10 pixels</action></keys>
-<note>These commands (only when editing text) adjust letter spacing in the current line (regular text) or paragraph (flowed text).</note>
-<note>The actual adjustment for pixel movements depends on zoom level. Zoom in for finer adjustment.</note>
-</group>
-
-<group>
-<title>Line spacing</title>
-<keys><key><ctrl/><alt/>&gt;</key> <action>make the text object taller by 1 pixel</action></keys>
-<keys><key><shift/><ctrl/><alt/>&gt;</key> <action>make the text object taller by 10 pixels</action></keys>
-<keys><key><ctrl/><alt/>&lt;</key> <action>make the text object shorter by 1 pixel</action></keys>
-<keys><key><shift/><ctrl/><alt/>&lt;</key> <action>make the text object shorter by 10 pixels</action></keys>
-<note>These commands (only when editing text) adjust line spacing in the entire text object (regular or flowed).</note>
-<note>The actual adjustment for pixel movements depends on zoom level. Zoom in for finer adjustment.</note>
-</group>
-
-<group>
-<title>Kerning and shifting</title>
-<mouse><key><alt/><arrows/></key> <action>shift characters by 1 pixel</action></mouse>
-<mouse><key><shift/><alt/><arrows/></key> <action>shift characters by 10 pixels</action></mouse>
-<note>These commands work when editing a regular text object. Kerning does not work in flowed text.</note>
-<note>With no selection, they shift (horizontally or vertically) the characters after the cursor until the end of line.</note>
-<note>With selection, they shift the selection relative to the rest of text (by inserting opposite kerns at both ends of selection).</note>
-<note>The actual adjustment for pixel movements depends on zoom level. Zoom in for finer adjustment.</note>
-</group>
-
-<group>
-<title>Rotate</title>
-<keys><key><ctrl/>[</key> <key><ctrl/>]</key> <action>rotate character(s) by 90 degrees</action></keys>
-<keys><key><alt/>[</key> <key><alt/>]</key> <action>rotate character(s) by 1 pixel</action></keys>
-<note>These commands rotate the next character (without selection) or all characters in the selection (with selection).</note>
-<note>Rotation only works in regular text (not flowed text).</note>
-<note>The actual angle for pixel rotation depends on zoom level. Zoom in for finer movement.</note>
-</group>
-
-</section>
-</column>
-
-</root>