Code

Doc. Keyboard and mouse reference files exported to inkscape-docs project (see http...
authorJazzyNico <nicoduf@yahoo.fr>
Fri, 15 Oct 2010 13:17:34 +0000 (15:17 +0200)
committerJazzyNico <nicoduf@yahoo.fr>
Fri, 15 Oct 2010 13:17:34 +0000 (15:17 +0200)
doc/keys-html.xsl [deleted file]
doc/keys-svg.xsl [deleted file]
doc/keys.README
doc/keys.de.xml [deleted file]
doc/keys.fr.xml [deleted file]
doc/keys.xml [deleted file]

diff --git a/doc/keys-html.xsl b/doc/keys-html.xsl
deleted file mode 100644 (file)
index 02dcb79..0000000
+++ /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 (file)
index 6883566..0000000
+++ /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
index 7a71c758a7a450ad60ab78c5ab8b875a4647466f..5289fb6bc1f95cea7f03797bb5ba8a0fb11d5677 100644 (file)
@@ -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 (file)
index afde036..0000000
+++ /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 (file)
index 3d545ff..0000000
+++ /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.xml b/doc/keys.xml
deleted file mode 100644 (file)
index 84bec75..0000000
+++ /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="https://bugs.launchpad.net/inkscape">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>  <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><shift/><ctrl/><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><shift/><ctrl/><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><shift/><alt/><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><shift/><alt/><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><shift/><ctrl/><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><ctrl/><alt/><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><shift/><alt/><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><ctrl/><alt/><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><shift/><alt/><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><shift/><alt/>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><shift/><ctrl/><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><shift/><ctrl/><misc f="Home"/></key> <key><shift/><ctrl/><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>