Added capability to close all other icon editor windows.

Sun, 24 Jan 2016 16:15:58 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 24 Jan 2016 16:15:58 +0100
changeset 4696
bf4d19a7cade
parent 4695
9dc08852de25
child 4697
c2e9bf425554

Added capability to close all other icon editor windows.

Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
Documentation/Source/eric6.IconEditor.IconEditorWindow.html file | annotate | diff | comparison | revisions
HexEdit/HexEditMainWindow.py file | annotate | diff | comparison | revisions
IconEditor/IconEditorWindow.py file | annotate | diff | comparison | revisions
changelog file | annotate | diff | comparison | revisions
i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
i18n/eric6_de.qm file | annotate | diff | comparison | revisions
i18n/eric6_de.ts file | annotate | diff | comparison | revisions
i18n/eric6_en.ts file | annotate | diff | comparison | revisions
i18n/eric6_es.ts file | annotate | diff | comparison | revisions
i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
i18n/eric6_it.ts file | annotate | diff | comparison | revisions
i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
Binary file Documentation/Help/source.qch has changed
--- a/Documentation/Help/source.qhp	Sun Jan 24 16:03:00 2016 +0100
+++ b/Documentation/Help/source.qhp	Sun Jan 24 16:15:58 2016 +0100
@@ -7225,6 +7225,7 @@
       <keyword name="IconEditorWindow.__aboutQt" id="IconEditorWindow.__aboutQt" ref="eric6.IconEditor.IconEditorWindow.html#IconEditorWindow.__aboutQt" />
       <keyword name="IconEditorWindow.__checkActions" id="IconEditorWindow.__checkActions" ref="eric6.IconEditor.IconEditorWindow.html#IconEditorWindow.__checkActions" />
       <keyword name="IconEditorWindow.__closeAll" id="IconEditorWindow.__closeAll" ref="eric6.IconEditor.IconEditorWindow.html#IconEditorWindow.__closeAll" />
+      <keyword name="IconEditorWindow.__closeOthers" id="IconEditorWindow.__closeOthers" ref="eric6.IconEditor.IconEditorWindow.html#IconEditorWindow.__closeOthers" />
       <keyword name="IconEditorWindow.__createPaletteDock" id="IconEditorWindow.__createPaletteDock" ref="eric6.IconEditor.IconEditorWindow.html#IconEditorWindow.__createPaletteDock" />
       <keyword name="IconEditorWindow.__createStatusBar" id="IconEditorWindow.__createStatusBar" ref="eric6.IconEditor.IconEditorWindow.html#IconEditorWindow.__createStatusBar" />
       <keyword name="IconEditorWindow.__initActions" id="IconEditorWindow.__initActions" ref="eric6.IconEditor.IconEditorWindow.html#IconEditorWindow.__initActions" />
--- a/Documentation/Source/eric6.IconEditor.IconEditorWindow.html	Sun Jan 24 16:03:00 2016 +0100
+++ b/Documentation/Source/eric6.IconEditor.IconEditorWindow.html	Sun Jan 24 16:15:58 2016 +0100
@@ -76,6 +76,9 @@
 <td>Private slot to check some actions for their enable/disable status.</td>
 </tr><tr>
 <td><a href="#IconEditorWindow.__closeAll">__closeAll</a></td>
+<td>Private slot to close all windows.</td>
+</tr><tr>
+<td><a href="#IconEditorWindow.__closeOthers">__closeOthers</a></td>
 <td>Private slot to close all other windows.</td>
 </tr><tr>
 <td><a href="#IconEditorWindow.__createPaletteDock">__createPaletteDock</a></td>
@@ -228,6 +231,11 @@
 <h4>IconEditorWindow.__closeAll</h4>
 <b>__closeAll</b>(<i></i>)
 <p>
+        Private slot to close all windows.
+</p><a NAME="IconEditorWindow.__closeOthers" ID="IconEditorWindow.__closeOthers"></a>
+<h4>IconEditorWindow.__closeOthers</h4>
+<b>__closeOthers</b>(<i></i>)
+<p>
         Private slot to close all other windows.
 </p><a NAME="IconEditorWindow.__createPaletteDock" ID="IconEditorWindow.__createPaletteDock"></a>
 <h4>IconEditorWindow.__createPaletteDock</h4>
--- a/HexEdit/HexEditMainWindow.py	Sun Jan 24 16:03:00 2016 +0100
+++ b/HexEdit/HexEditMainWindow.py	Sun Jan 24 16:15:58 2016 +0100
@@ -264,7 +264,7 @@
             self.tr('Close Others'),
             0, 0, self, 'hexEditor_file_close_others')
         self.closeOthersAct.setStatusTip(self.tr(
-            'Close all hex other editor windows'))
+            'Close all other hex editor windows'))
         self.closeOthersAct.setWhatsThis(self.tr(
             """<b>Close Others</b>"""
             """<p>Closes all other hex editor windows.</p>"""
--- a/IconEditor/IconEditorWindow.py	Sun Jan 24 16:03:00 2016 +0100
+++ b/IconEditor/IconEditorWindow.py	Sun Jan 24 16:15:58 2016 +0100
@@ -285,7 +285,18 @@
         self.closeAllAct.triggered.connect(self.__closeAll)
         self.__actions.append(self.closeAllAct)
         
-        # TODO: add action to close all other windows
+        self.closeOthersAct = E5Action(
+            self.tr('Close Others'),
+            self.tr('Close Others'),
+            0, 0, self, 'iconEditor_file_close_others')
+        self.closeOthersAct.setStatusTip(self.tr(
+            'Close all other icon editor windows'))
+        self.closeOthersAct.setWhatsThis(self.tr(
+            """<b>Close Others</b>"""
+            """<p>Closes all other icon editor windows.</p>"""
+        ))
+        self.closeOthersAct.triggered.connect(self.__closeOthers)
+        self.__actions.append(self.closeOthersAct)
         
         self.exitAct = E5Action(
             self.tr('Quit'),
@@ -816,6 +827,7 @@
         menu.addAction(self.saveAsAct)
         menu.addSeparator()
         menu.addAction(self.closeAct)
+        menu.addAction(self.closeOthersAct)
         if self.fromEric:
             menu.addAction(self.closeAllAct)
         else:
@@ -1107,12 +1119,18 @@
     
     def __closeAll(self):
         """
+        Private slot to close all windows.
+        """
+        self.__closeOthers()
+        self.close()
+    
+    def __closeOthers(self):
+        """
         Private slot to close all other windows.
         """
         for win in self.__class__.windows[:]:
             if win != self:
                 win.close()
-        self.close()
     
     def __loadIconFile(self, fileName):
         """
--- a/changelog	Sun Jan 24 16:03:00 2016 +0100
+++ b/changelog	Sun Jan 24 16:15:58 2016 +0100
@@ -13,6 +13,8 @@
 - Hex Editor
   -- added a nice little hex editor tool (usable as a standalone tool
      as well)
+- Icon Editor
+  -- added capability to close all other icon editor windows
 - Web Browser
   -- added capability to remember the zoom values for each site (incl. a
      dialog to manage these)
--- a/i18n/eric6_cs.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_cs.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20103,7 +20103,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29170,718 +29170,718 @@
         <translation>&lt;b&gt;Zavřít vše&lt;/b&gt;&lt;p&gt;Zavřít všechna okna editorů ikon kromě prvního.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation>Konec</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation>&amp;Konec</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation>Ukončit editor ikon</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Konec&lt;/b&gt;&lt;p&gt;Ukončit editor ikon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation>Vrátit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation>&amp;Vrátit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation>Vrátit poslední změnu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vrátit&lt;/b&gt;&lt;p&gt;Vrátit poslední změnu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation>Znovu použít</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation>&amp;Znovu použít</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation>Znovu použít poslední změnu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Znovu použít&lt;/b&gt;&lt;p&gt;Znovu použít poslední změnu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation>Vyjmout výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyjmout&lt;/b&gt;&lt;p&gt;Vyjme vybranou oblast obrázku a vloží jej do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation>Kopírovat výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopírovat&lt;/b&gt;&lt;p&gt;Kopíruje vybranou oblast obrázku a vloží ji do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation>V&amp;ložit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation>Vložit obrázek ze schránky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vložit&lt;/b&gt;&lt;p&gt;Vložit obrázek ze schránky.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation>Vložit jako nový</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation>Vložit jako &amp;nový</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vložit&lt;/b&gt;&lt;p&gt;Vložit obrázek ze schránky.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation>Vložit jako nový</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation>Vložit jako &amp;nový</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Nahradit aktuální obrázek tím ze schránky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vložit jako nový&lt;/b&gt;&lt;p&gt;Obrázek ze schránky nahradí aktuální obrázek.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation>Vyčistit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation>Vyči&amp;stit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation>Vymazat obrázek ikony</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vymazat&lt;/b&gt;&lt;p&gt;Vymaže obrázek ikony a nastaví jej jako zcela průhledný.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation>Vybrat vš&amp;e</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation>Vybrat celý obrázek ikony</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vybrat celý&lt;/b&gt;&lt;p&gt;Vybere kopletně celý obrázek ikony.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation>Změnit velikost</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation>&amp;Změnit velikost...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation>Změnit velikost ikony</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Změnit velikost......&lt;/b&gt;&lt;p&gt;Změnit velikost ikony.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation>Stupnice šedi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation>&amp;Stupnice šedi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation>Převést ikonu do šedi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stupnice šedi&lt;/b&gt;&lt;p&gt;Převést ikonu do šedi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation>Přiblížit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation>Př&amp;iblížit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation>Přiblížit ikonu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přiblížit&lt;/b&gt;&lt;p&gt;Přiblížit ikonu. Pomocná síť bude větší.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation>Oddálit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation>&amp;Oddálit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation>Oddálit ikonu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Oddálit&lt;/b&gt;&lt;p&gt;Lupa na oddálení ikony. Pomocná síť bude menší.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation>Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation>Zobrazit pomocnou síť</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation>Zobrazit pomocnou &amp;síť</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation>Přepnout zobrazování pomocné sítě</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zobrazit pomocnou síť&lt;/b&gt;&lt;p&gt;Přepíná zobrazování pomocné sítě.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation>Od ruky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation>Od &amp;ruky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Od ruky&lt;/b&gt;&lt;p&gt;Kreslí čáry od ruky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation>Barvítko</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation>&amp;Barvítko</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Barvítko&lt;/b&gt;&lt;p&gt;Barva pixelu, na kterou se klikne, se změní na aktuálně nastavenou barvu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation>Obdélník</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Barvítko&lt;/b&gt;&lt;p&gt;Barva pixelu, na kterou se klikne, se změní na aktuálně nastavenou barvu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation>Obdélník</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Obdélník</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Obdélník&lt;/b&gt;&lt;p&gt;Kreslit obdélník.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation>Vyplněný obdélník</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation>Vyplněný o&amp;bdélník</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;vyplněný obdélník&lt;/b&gt;&lt;p&gt;Kreslit obdélník vyplněný barvou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation>Kruh</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kruh&lt;/b&gt;&lt;p&gt;Nakreslit kruh.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation>Vyplněný kruh</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation>Vyplněný k&amp;ruh</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyplněný kruh&lt;/b&gt;&lt;p&gt;Nakreslit kruh vypněný barvou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation>Elipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elipsa&lt;/b&gt;&lt;p&gt;Nakreslit elipsu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation>Vyplněná elipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Vyplněná e&amp;lipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyplněná elipsa&lt;/b&gt;&lt;p&gt;Nakreslit elipsu vypněnou barvou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation>Vyplnit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation>&amp;Vyplnit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyplit&lt;/b&gt;&lt;p&gt;Vyplní barvou celou ohraničenou plochu, ve které se nachází počáteční pixel (semínkové vyplňování).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation>Linka</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation>&amp;Linka</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linka&lt;/b&gt;&lt;p&gt;Nakreslit linku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation>Guma (průhlednost)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Guma (průhlednos&amp;t)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guma (průhlednost)&lt;/b&gt;&lt;p&gt;Vymaže pixely tak, že budou průhledné.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation>Obdélníkový výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation>&amp;Obdélníkový výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Obdélníkový výběr&lt;/b&gt;&lt;p&gt;Vybrat obdélníkovou oblast v ikoně pomocí myši.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Obdélníkový výběr&lt;/b&gt;&lt;p&gt;Vybrat obdélníkovou oblast v ikoně pomocí myši.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation>Kruhový výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kruhový výběr&lt;/b&gt;&lt;p&gt;Vybrat kruhovou oblast v ikoně pomocí myši.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation>O aplikaci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation>O &amp;aplikaci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation>Zobrazit informace a tomto software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation>O Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation>O &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;O Qt&lt;/b&gt;&lt;p&gt;Zobrazit informace o Qt toolkitu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation>Co je to?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation>Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu &quot;Co je to?&quot; se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation>S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation>Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation>&amp;Nástroje</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation>&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation>Editovat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation>Pohled</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation>Nástroje</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje velikost ikony.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje pozici kurzoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation>Otevřít soubor s ikonou</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation>Uložit ikonu do souboru</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation>Ikona uložena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation>Beze jména</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation>Editor ikon</translation>
     </message>
@@ -29891,12 +29891,12 @@
         <translation>Multiple-Image Network Graphics soubor (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation>Resetovat lupu ikony</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reset lupy&lt;/b&gt;&lt;p&gt;Reset lupy pro ikonu. Nastaví se lupa na hodnotu 100%.&lt;/p&gt;</translation>
     </message>
@@ -29916,35 +29916,35 @@
         <translation>Targa Graphic soubor (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>Soubor &apos;{0}&apos; neexistuje.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Nelze číst soubor &apos;{0}:{1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Nelze zapsat do souboru &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29969,20 +29969,35 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation type="unfinished">eric5 editor ikon {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation type="unfinished">O eric5 editoru ikon {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished">Eric5 editor ikon je jednoduchý editor pro kreslení ikon. {6 ?}</translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished">Zavřít ostatní</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
Binary file i18n/eric6_de.qm has changed
--- a/i18n/eric6_de.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_de.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -19720,7 +19720,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation>Schließt alle anderen Hex-Editor Fenster</translation>
     </message>
     <message>
@@ -28736,723 +28736,723 @@
         <translation>&lt;b&gt;Alle schließen&lt;/b&gt;&lt;p&gt;Schließt alle Icon-Editor-Fenster mit Ausnahme des ersten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation>Beendet den Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Beenden&lt;/b&gt;&lt;p&gt;Beendet den Icon-Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation>Die letzte Änderung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückgängig&lt;/b&gt;&lt;p&gt;Dies macht die letzte Änderung rückgängig.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation>Wieder&amp;herstellen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation>Die letzte Änderung wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Wiederherstellen&lt;/b&gt;&lt;p&gt;Dies stellt die letzte Änderung wieder her.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausschneiden&lt;/b&gt;&lt;p&gt;Dies schneidet den ausgewählten Bildbereich aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Einfg</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation>Kopiert die Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopieren&lt;/b&gt;&lt;p&gt;Dies kopiert den ausgewählten Bildbereich in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation>Ein&amp;fügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation>Fügt das Bild der Zwischenablage ein</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Fügt das Bild der Zwischenablage ein.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation>Als Neu einfügen</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation>Als &amp;Neu einfügen</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Fügt das Bild der Zwischenablage ein.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation>Als Neu einfügen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation>Als &amp;Neu einfügen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Als Neu einfügen&lt;/b&gt;&lt;p&gt;Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation>Löscht das Icon</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Löschen&lt;/b&gt;&lt;p&gt;Löscht das Icon und setzt es auf vollständig transparent.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation>&amp;Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation>Wählt das komplette Icon aus</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles auswählen&lt;/b&gt;&lt;p&gt;Wählt das komplette Icon aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation>Größe ändern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation>&amp;Größe ändern...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation>Ändert die Größe des Icons</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Größe ändern...&lt;/b&gt;&lt;p&gt;Ändert die Größe des Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation>Graustufen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation>Gra&amp;ustufen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation>Konvertiert das Icon in Graustufen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Graustufen&lt;/b&gt;&lt;p&gt;Konvertiert das Icon in Graustufen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation>Ver&amp;größern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation>Iconansicht vergrößern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößern&lt;/b&gt;&lt;p&gt;Das angezeigte Icon vergrößern. Dies stellt das Gitter größer dar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation>Iconansicht verkleinern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verkleinern&lt;/b&gt;&lt;p&gt;Das angezeigte Icon verkleinern. Dies stellt das Gitter kleiner dar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation>Gitter anzeigen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation>&amp;Gitter anzeigen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation>Schaltet die Anzeige des Gitters um</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gitter anzeigen&lt;/b&gt;&lt;p&gt;Schaltet die Anzeige des Gitters um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation>Freihand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Freihand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Freihand&lt;/b&gt;&lt;p&gt;Zeichnet nichtlineare Linien.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation>Farbauswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation>Far&amp;bauswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Farbauswahl&lt;/b&gt;&lt;p&gt;Die farbe des Pixels, auf das geklickt wurde, wird die aktuelle Zeichenfarbe.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation>Rechteck</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Farbauswahl&lt;/b&gt;&lt;p&gt;Die farbe des Pixels, auf das geklickt wurde, wird die aktuelle Zeichenfarbe.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation>Rechteck</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rechteck</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechteck&lt;/b&gt;&lt;p&gt;Zeichnet ein Rechteck.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation>Gefülltes Rechteck</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation>&amp;Gefülltes Rechteck</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gefülltes Rechteck&lt;/b&gt;&lt;p&gt;Zeichnet ein gefülltes Rechteck.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation>Kreis</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kreis&lt;/b&gt;&lt;p&gt;Zeichnet einen Kreis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation>Gefüllter Kreis</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation>Gef&amp;üllter Kreis</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gefüllter Kreis&lt;/b&gt;&lt;p&gt;Zeichnet einen gefüllten Kreis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation>Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Zeichnet eine Ellipse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation>Gefüllte Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Gefüllte Elli&amp;pse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gefüllte Ellipse&lt;/b&gt;&lt;p&gt;Zeichnet eine gefüllte Ellipse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation>Durchgehende Füllung</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation>&amp;Durchgehende Füllung</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Durchgehende Füllung&lt;/b&gt;&lt;p&gt;Benchbarte Pixel der selben Farbe werden mit der aktuellen Farbe gefüllt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation>Linie</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation>&amp;Linie</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linie&lt;/b&gt;&lt;p&gt;Zeichnet eine Linie.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation>Radierer (transparent)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Radierer (&amp;transparent)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Radierer (transparent)&lt;/b&gt;&lt;p&gt;Löscht Pixel indem sie auf transparent gesetzt werden.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation>Rechteck-Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Rechteck-&amp;Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Rechteck-Auswahl&lt;/b&gt;&lt;p&gt;Wählt einen rechteckigen Bereich des Icons mit der Maus aus.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Rechteck-Auswahl&lt;/b&gt;&lt;p&gt;Wählt einen rechteckigen Bereich des Icons mit der Maus aus.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation>Kreisförmige Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kreisförmige Auswahl&lt;/b&gt;&lt;p&gt;Wählt einen kreisförmigen Bereich des Icons mit der Maus aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation>Ü&amp;ber</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über Qt&lt;/b&gt;&lt;p&gt;Zeige Informationen über das Qt-Toolkit an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die aktuelle Icongröße an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Cursorposition an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation>Icon-Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation>Icon-Datei speichern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation>Icon gespeichert</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation>Unbenannt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] – {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation>Icon-Editor</translation>
     </message>
@@ -29462,12 +29462,12 @@
         <translation>Multiple-Image-Network-Graphics-Datei (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation>Die Vergrößerung des Icons zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößerung zurücksetzen&lt;/b&gt;&lt;p&gt;Setzt die Vergrößerung des Icons zurück. Es setzt die Vergrößerung auf den Wert 100 % zurück.&lt;/p&gt;</translation>
     </message>
@@ -29487,31 +29487,31 @@
         <translation>Targa-Grafik-Datei (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>Die Datei „{0}“ existiert nicht.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Datei {0} kann nicht gelesen werden:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Datei {0} kann nicht geschrieben werden:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation>Das Icon-Bild hat ungesicherte Änderungen.</translation>
     </message>
@@ -29536,20 +29536,35 @@
         <translation>WAP-Bitmap-Datei (*.wbmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation>eric6 Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation>Über den eric6 Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation>Der eric6 Icon-Editor ist ein Komponente zur Ausführung einfacher Icon-Bearbeitungsfunktionen.</translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation>Andere schließen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation>Schließt alle anderen Icon-Editor Fenster</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Andere schließen&lt;/b&gt;&lt;p&gt;Dies schließt alle anderen Icon-Editor Fenster.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_en.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_en.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -19617,7 +19617,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -28603,760 +28603,760 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29381,20 +29381,35 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_es.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_es.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20172,7 +20172,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29262,718 +29262,718 @@
         <translation>&lt;b&gt;Cerrar Todo&lt;/b&gt;&lt;p&gt;Cierra todas las ventanas de edición de iconos excepto la primera.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation>Salir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation>&amp;Salir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation>Salir del editor de iconos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salir&lt;/b&gt;&lt;p&gt;Salir del editor de iconos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation>&amp;Deshacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation>Revierte el último cambio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deshacer&lt;/b&gt;&lt;p&gt;Deshace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rehacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation>Rehacer el último cambio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rehacer&lt;/b&gt;&lt;p&gt;Rehace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation>Cortar la selección</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar la imagen seleccionada y la envía al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation>Copia la selección</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copiar la imagen seleccionada al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation>&amp;Pegar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation>PEgar la imagen en el portapapeles</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar la imagen del portapapeles.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation>Pegar como Nuevo</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation>Pegar como &amp;Nuevo</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar la imagen del portapapeles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation>Pegar como Nuevo</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation>Pegar como &amp;Nuevo</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Pega la imagen del portapapeles reemplazando la imagen actual</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pegar como Nuevo&lt;/b&gt;&lt;p&gt;Pega la imagen del portapapeles reemplazando la imagen actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation>Limpiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation>Limpiar la imagen de icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar&lt;/b&gt;&lt;p&gt;Limpia la imagen del icono y la establece como completamente transparente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation>Seleccionar &amp;todo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation>Seleccionar imagen de icono completa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleccionar Todo&lt;/b&gt;&lt;p&gt;Selecciona la imagen de icono completa.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation>Cambiar Tamaño</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation>Cambiar &amp;Tamaño...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation>Cambiar tamaño del icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambiar Tamaño...&lt;/b&gt;&lt;p&gt;Cambia el tamaño del icono.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation>Escala de grises</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation>Escala de &amp;grises</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation>Cambia el icono a escala de grises</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Escala de Grises&lt;/b&gt;&lt;p&gt;Cambia el icono a escala de grises.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation>Aumentar zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation>Aumentar zoom en el icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aumentar Zoom&lt;/b&gt;&lt;p&gt;Aumenta el zoom sobre el icono. Esto provoca que el grid sea mayor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation>Disminuir zoom en el icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Disminuir Zoom&lt;/b&gt;&lt;p&gt;Disminuir el zoom en el icono. Esto provoca que el grid sea menor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation>Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation>Mostrar Grid</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation>Mostrar &amp;Grid</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation>Conmutar la visualización del grid</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar Grid&lt;/b&gt;&lt;p&gt;Conmuta la visualización del grid.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation>Freehand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Freehand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Dibuja formas no lineares.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation>Selector de Color</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation>Selector de &amp;Color</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Selector de Color&lt;/b&gt;&lt;p&gt;El color del pixel sobre el que se hace click pasa a ser el color actual de dibujo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation>Rectángulo</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Selector de Color&lt;/b&gt;&lt;p&gt;El color del pixel sobre el que se hace click pasa a ser el color actual de dibujo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation>Rectángulo</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rectángulo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectángulo&lt;/b&gt;&lt;p&gt;Dibujar un rectángulo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation>Rectángulo Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation>Rectángulo &amp;Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectángulo Lleno&lt;/b&gt;&lt;p&gt;Dibujar un rectángulo lleno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation>Círculo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Círculo&lt;/b&gt;&lt;p&gt;Dibujar un círculo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation>Círculo Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation>Cí&amp;rculo Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Círculo Lleno&lt;/b&gt;&lt;p&gt;Dibujar un círculo lleno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation>Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elipse&lt;/b&gt;&lt;p&gt;Dibujar una elipse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation>Elipse Llena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Eli&amp;pse Llena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elipse Llena&lt;/b&gt;&lt;p&gt;Dibujar una elipse llena.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation>Flood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation>Fl&amp;ood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Llenar píxeles adjuntos del mismo color con el color actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation>Línea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation>&amp;Línea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Línea&lt;/b&gt;&lt;p&gt;Dibujar una línea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation>Goma de Borrar (Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Goma de Borrar (&amp;Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Goma de Borrar (Transparente)&lt;/b&gt;&lt;p&gt;Borra píxeles estableciéndolos como transparentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation>Selección Rectangular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Selección Rect&amp;angular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Selección Rectangular&lt;/b&gt;&lt;p&gt;Seleccionar una sección rectangular del icono utilizando el ratón.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Selección Rectangular&lt;/b&gt;&lt;p&gt;Seleccionar una sección rectangular del icono utilizando el ratón.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation>Selección Circular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selección Circular&lt;/b&gt;&lt;p&gt;Seleccionar una sección circular del icono utilizando el ratón.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation>Acerca de</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation>&amp;Acerca de</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation>Muestra información acerca de este software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de&lt;/b&gt;&lt;p&gt;Muestra información acerca de este software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Muestra información sobre las herramientas Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Muestra información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation>&amp;Herramientas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation>A&amp;yuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation>Herramientas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el tamaño del icono.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra la posición del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation>Abrir archivo de icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation>Guardar archivo de icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation>Icono guardado</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation>Sin título</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation>Editor de Iconos</translation>
     </message>
@@ -29983,12 +29983,12 @@
         <translation>Archivo de Multiple-Image Network Graphics (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation>Restablecer el zoom aplicado al icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Restablecer zoom&lt;/b&gt;&lt;p&gt;Restablece el zoom aplicado al icono. Establece el factor de zoom a 100%.&lt;/p&gt;</translation>
     </message>
@@ -30008,36 +30008,36 @@
         <translation>Archivo de Targa Graphic (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>El archivo {0} no existe.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>No se puede leer el archivo {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>No se puede guardar el archivo {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation>La imagen de icono tiene cambios sin guardar.</translation>
     </message>
@@ -30062,20 +30062,35 @@
         <translation>Archivo de Bitmap WAP(*.wbmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation>Editor de Iconos de eric6</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation>Acerca del Editor de Iconos de eric6</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation>El Editor de Iconos de eric6 es un componente de edición de iconos para llevar a cabo tareas de dibujado de iconos.</translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished">Cerrar Otras</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_fr.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_fr.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20108,7 +20108,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29159,718 +29159,718 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation type="unfinished">Quitter</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Quitter</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation type="unfinished">Défaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation type="unfinished">&amp;Défaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished">Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation type="unfinished">Annule la dernière modification</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation type="unfinished">Refaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation type="unfinished">&amp;Refaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation type="unfinished">Recharge la dernière modification</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation type="unfinished">Couper</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished">Cou&amp;per</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished">Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation type="unfinished">Coupe la sélection</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation type="unfinished">Copier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation type="unfinished">&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished">Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished">Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation type="unfinished">Copie la sélection</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation type="unfinished">Coller</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation type="unfinished">Col&amp;ler</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished">Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation type="unfinished">Effacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished">Ef&amp;facer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished">Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation type="unfinished">Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished">Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation type="unfinished">Zoom avant</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished">Zoom a&amp;vant</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation type="unfinished">Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">Zoom a&amp;rrière</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Annulation du zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">Annulation du &amp;zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation type="unfinished">Ligne</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation type="unfinished">À propos de</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation type="unfinished">&amp;À propos de </translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation type="unfinished">À propos de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">À propos de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Affiche les informations concernant Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;À propos de Qt&lt;/b&gt;&lt;p&gt;Affiche les informations concernant Qt&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Affiche l&apos;aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode &quot;Qu&apos;est-ce que c&apos;est?&quot;, la souris est affichée avec un point d&apos;interrogation, et on peut cliquer sur les éléments de  l&apos;interface pour obtenir une courte description de l&apos;élément. Cette fonction peut être obtenue avec le bouton d&apos;aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation type="unfinished">&amp;Outils</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation type="unfinished">A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation type="unfinished">Fichier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation type="unfinished">Affichage</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation type="unfinished">Outils</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation type="unfinished">Aide</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation type="unfinished">SansTitre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29880,12 +29880,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29905,34 +29905,34 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29957,20 +29957,35 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_it.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_it.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20243,7 +20243,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29330,718 +29330,718 @@
         <translation>&lt;b&gt;Chiudi tutti&lt;/b&gt;&lt;p&gt;Chiudi tutte le finestre dell&apos;editor di icone esclusa la prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation>Esci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation>&amp;Esci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation>Esci dell&apos;editor di icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esci&lt;/b&gt;&lt;p&gt;Esci dall&apos;editor di icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation>&amp;Undo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation>Annulla l&apos;ultima modifica</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Annulla&lt;/b&gt;&lt;p&gt;Annulla l&apos;ultima modifica fatta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rifai</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation>Rifai ultima modifica</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rifai&lt;/b&gt;&lt;p&gt;Rifai l&apos;ultima modifica fatta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Taglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation>Taglia la selezione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Taglia&lt;/b&gt;&lt;p&gt;Taglia l&apos;area selezionata dell&apos;immagine nella clipboard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation>Copia la selezione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copia&lt;/b&gt;&lt;p&gt;Copia l&apos;area selezionata dell&apos;immagine nella clipboard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation>&amp;Incolla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation>Incolla l&apos;immagine nella clipboard</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Incolla&lt;/b&gt;&lt;p&gt;Incolla l&apos;immagine dalla clipboard.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation>Incolla come nuova</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation>Incolla come &amp;Nuova</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Incolla&lt;/b&gt;&lt;p&gt;Incolla l&apos;immagine dalla clipboard.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation>Incolla come nuova</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation>Incolla come &amp;Nuova</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Incolla l&apos;immagine dalla clipboard sostituendo l&apos;attuale</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Incolla come nuova&lt;/b&gt;&lt;p&gt;Incolla l&apos;immagine della clipboard sostituendo l&apos;attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation>Pulisci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation>Pu&amp;lisci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation>Pulisci l&apos;immagine dell&apos;icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci&lt;/b&gt;&lt;p&gt;Pulisci l&apos;immagine dell&apos;icona e impostala per essere completamente trasparente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation>&amp;Seleziona tutto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation>Seleziona l&apos;immagine icona completa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleziona tutto&lt;/b&gt;&lt;p&gt;Selezione l&apos;immagine icona completa.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation>Cambia dimensione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation>Cambia Dimen&amp;sione...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation>Cambia la dimensione dell&apos;icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambia dimensione...&lt;/b&gt;&lt;p&gt;Cambia la dimensione dell&apos;icona.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation>Scala di grigio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation>Scala di &amp;grigio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation>Cambia l&apos;icona a scala di grigio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Scala di grigio&lt;/b&gt;&lt;p&gt;Cambia l&apos;icona a scala di grigio.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation>Ingrandisci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation>Ingrand&amp;isci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation>Ingrandisci l&apos;icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ingrandisci&lt;/b&gt;&lt;p&gt;Ingrandisci l&apos;icona. Rende la griglia più grande.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation>Riduci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation>&amp;Riduci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation>Riduci icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Riduci&lt;/b&gt;&lt;p&gt;Riduce l&apos;icona. Rende la griglia più piccola.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation>Reset zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Reset zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation>Mostra griglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation>Mostra &amp;Griglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation>Inverti la visualizzazione della griglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostra griglia&lt;/b&gt;&lt;p&gt;Inverte la visualizzazione della griglia.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation>Mano libera</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Mano libera</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mano libera&lt;/b&gt;&lt;p&gt;Disegna linee non rette.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation>Selezionatore colore</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation>Selezionatore &amp;Colore</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Selezionatore colore&lt;/b&gt;&lt;p&gt;Il colore del pixel clickato diventerà il colore di disegno corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation>Rettangolo</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Selezionatore colore&lt;/b&gt;&lt;p&gt;Il colore del pixel clickato diventerà il colore di disegno corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation>Rettangolo</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rettangolo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rettangolo&lt;/b&gt;&lt;p&gt;Disegna un rettangolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation>Rettangolo pieno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation>Rettangolo p&amp;ieno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rettangolo pieno&lt;/b&gt;&lt;p&gt;Disegna un rettangolo pieno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation>Circonferenza</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Circonferenza&lt;/b&gt;&lt;p&gt;Disegna una circonferenza.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation>Circonferenza piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation>Circonfernza &amp;Piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Circonferenza piena&lt;/b&gt;&lt;p&gt;Disegna una circonferenza piena.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation>Ellisse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Ellisse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellisse&lt;/b&gt;&lt;p&gt;Disegna un&apos;ellisse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation>Ellisse piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Ellisse &amp;piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellisse piena&lt;/b&gt;&lt;p&gt;Disegna una ellisse piena.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation>Flood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation>Fl&amp;ood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Colora i pixel adiacenti dello stesso colore con il colore corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation>Linea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation>&amp;Linea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linea&lt;/b&gt;&lt;p&gt;Disegna una linea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation>Cancellino (Trasparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Cancellino (&amp;Trasparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cancellino (Trasparente)&lt;/b&gt;&lt;p&gt;Cancella i pixel mettondoli a trasparente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation>Selezione rettangolare</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Selezione rett&amp;angolare</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Selezione rettangolare&lt;/b&gt;&lt;p&gt;Seleziona una sezione rettangolare dell&apos;icona usando il mouse.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Selezione rettangolare&lt;/b&gt;&lt;p&gt;Seleziona una sezione rettangolare dell&apos;icona usando il mouse.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation>Selezione circolare</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selezione circolare&lt;/b&gt;&lt;p&gt;Seleziona una sezione circolare dell&apos;icona usando il mouse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation>About</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation>&amp;About</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation>Mostra informazioni su questo software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation>About Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation>About &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostra informazioni sulla libreria Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Mostra delle informazioni sulle librerie Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation>Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation>C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostra help sensibile al contesto&lt;/b&gt;&lt;p&gt;In modalità What&apos;s This?, il cursore del mouse mostra una freccia con un punto di domanda ed è possibile premdere sugli elementi dell&apos;interfaccia per avere una breve descrizione di cosa fanno e di come usarli. Nei dialoghi questa funzionalità può essere utilizzata tramite il pulsante di help sensibile al contesto nella barra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation>&amp;File</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation>&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation>&amp;Tools</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation>&amp;Help</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation>File</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation>Visualizza</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation>Tools</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra le dimensioni dell&apos;icona.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra la posizione del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation>Apri file icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation>Salva file icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation>Icona salvata</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation>Senza titolo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation>Editor di icone</translation>
     </message>
@@ -30051,12 +30051,12 @@
         <translation>Multiple-Image Network Graphics File (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation>Reset dello zoom dell&apos;icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reset zoom&lt;/b&gt;&lt;p&gt;Resetta lo zoom dell&apos;icona. Imposta il fattore di zoom al 100%.&lt;/p&gt;</translation>
     </message>
@@ -30076,36 +30076,36 @@
         <translation>Targa Graphic File (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>Il file {0} non esiste.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Impossibile leggere il file {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Impossibile scrivere il file {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation>L&apos;icona ha delle modifiche non salvate.</translation>
     </message>
@@ -30130,20 +30130,35 @@
         <translation>Flusso WAP Bipmap (*.wbmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation type="unfinished">Editor di icone di eric5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation type="unfinished">About eric5 Icon Editor {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished">L&apos;editor di icone di eric5 è un semplice componente per modificare le icone. {6 ?}</translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished">Chiudi altri</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_pt.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_pt.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20211,7 +20211,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29323,760 +29323,760 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation>Sair</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation>Sai&amp;r</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation>Desfazer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation>Desfa&amp;zer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation>Desfazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation>Refazer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refazer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation>Refazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation>Cortar a seleção</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation>Copiar a seleção</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation>Co&amp;lar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation>Cola a imagem da área de transferência</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation>Colar como Novo</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation>Colar como &amp;Novo</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation>Colar como Novo</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation>Colar como &amp;Novo</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Cola a imagem da área de transferência e substitui a atual</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation>Limpar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation>Li&amp;mpar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation>Selecionar Tudo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation>&amp;Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation>Preto e Branco</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation>Pr&amp;eto e Branco</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation>Mudar o ícone a preto e branco</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Preto e Branco&lt;/b&gt;&lt;p&gt;Muda o ícone para preto e branco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation>Apro&amp;ximar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation>Afastar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation>A&amp;fastar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation>Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation>Mostrar Grelha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation>Mostrar &amp;Grelha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation>Mão Livre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation>Mão &amp;Livre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mão Livre&lt;/b&gt;&lt;p&gt;Desenha linhas não lineares.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>Rectangle</source>
         <translation>Rectangulo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rectangulo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectangulo&lt;/b&gt;&lt;p&gt;Desenha um rectangulo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation>Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation>Linha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation>&amp;Linha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation>Borracha (Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Borracha (&amp;Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borracha (Transparente)&lt;/b&gt;&lt;p&gt;Apaga os pixels ao definir-los transparentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation>Seleção Rectangular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Seleção Rect&amp;angular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation>Acerca</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation>A&amp;cerca</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation>Mostra a informação acerca deste software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca das Ferramentas de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation>O que é isto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Que é Isto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation>Ajuda sensível ao contexto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo &apos;Que é Isto?&apos; o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation>&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation>&amp;Ferramentas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation>&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation>Ferramentas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation>Ajuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation>Ícone gravado</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation>Sem Título</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation>Editor de Ícones</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30101,20 +30101,35 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation>Editor de Icones de eric6</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation>Acerca do Editor de Icones de eric6</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished">Fechar Outros</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_ru.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_ru.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20260,7 +20260,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29366,724 +29366,724 @@
         <translation>&lt;b&gt;Закрыть все&lt;/b&gt;&lt;p&gt;Закрыть все редакторы иконок кроме первого.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation>Выход</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation>&amp;Выход</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation>Закрыть редактор иконок</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Закрыть редактор иконок.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation>Отмена</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation>&amp;Отмена</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation>Отменить последнее изменение</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Отменить&lt;/b&gt;&lt;p&gt;Отменить последнее изменение.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation>Повтор</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation>&amp;Повтор</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation>Восстановить последнее отменённое изменение</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Восстановить&lt;/b&gt;&lt;p&gt;Восстановить последнее отменённое изменение.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation>Вырезать</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation>В&amp;ырезать</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation>Вырезать выделение</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Вырезать&lt;/b&gt;&lt;p&gt;Переместить выделенное изображение в буфер обмена.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation>Копировать</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation>&amp;Копировать</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation>Копировать выделение</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Копировать&lt;/b&gt;&lt;p&gt;Копировать выделенное изображение в буфер обмена.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation>Вставить</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation>Вс&amp;тавить</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation>Вставить изображение из буфера обмена</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Вставить&lt;/b&gt;&lt;p&gt;Вставить изображение из буфера обмена.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation>Вставить как новое</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation>Вставить как &amp;новое</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Вставить&lt;/b&gt;&lt;p&gt;Вставить изображение из буфера обмена.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation>Вставить как новое</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation>Вставить как &amp;новое</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Вставить изображение из буфера обмена вместо текущего</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Вставить как новое&lt;/b&gt;&lt;p&gt;Вставить изображение из буфера обмена вместо текущего.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation>Очистить</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation>О&amp;чистить</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation>Очистить изображение иконки</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистить&lt;/b&gt;&lt;p&gt;Очистить изображение иконки и сдерать его прозрачным.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation>Выбрать всё</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation>&amp;Выбрать всё</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation>Выберите завершённую иконку</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выбрать всё&lt;/b&gt;&lt;p&gt;Выберите завершённую иконку.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation>Изменить размер</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation>Изменить ра&amp;змер...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation>Изменить размер иконки</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Изменить размер...&lt;/b&gt;&lt;p&gt;Изменить размер иконки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation>Оттенки серого</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation>Оттенки &amp;серого</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation>Изменить цвет иконки на серый</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Оттенки серого&lt;/b&gt;&lt;p&gt;Изменить цвет иконки на серый.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation>Увеличить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation>У&amp;величить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation>Увеличить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Увеличить масштаб&lt;/b&gt;&lt;p&gt;Укрупнить сетку.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation>Уменьшить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation>У&amp;меньшить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation>Уменьшить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Уменьшить масштаб&lt;/b&gt;&lt;p&gt;Сделать сетку мельче.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation>Сбросить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Сбросить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation>Показать сетку</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation>Показать &amp;сетку</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation>Переключить изображение сетки</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Показать сетку&lt;/b&gt;&lt;p&gt;Переключить изображение сетки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation>Произвольный рисунок</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Произвольный рисунок</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Произвольный рисунок&lt;/b&gt;&lt;p&gt;Рисовать произвольные линии.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation>Выбрать цвет</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation>&amp;Выбрать цвет</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Выбрать цвет&lt;/b&gt;&lt;p&gt;Этот диалог поможет выбрать цвет для рисования.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation>Прямоугольник</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Выбрать цвет&lt;/b&gt;&lt;p&gt;Этот диалог поможет выбрать цвет для рисования.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation>Прямоугольник</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Прямоугольник</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Прямоугольник&lt;/b&gt;&lt;p&gt;Рисовать прямоугольник.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation>Закрашенный прямоугольник</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation>З&amp;акрашенный прямоугольник</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Закрашенный прямоугольник&lt;/b&gt;&lt;p&gt;Рисовать закрашенный прямоугольник.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation>Окружность</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Окружность&lt;/b&gt;&lt;p&gt;Рисовать окружность.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation>Закрашенная окружность</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation>Закраше&amp;нная окружность</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Закрашенная окружность&lt;/b&gt;&lt;p&gt;Рисовать закрашенную окружность.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation>Эллипс</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Эллипс</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Эллипс&lt;/b&gt;&lt;p&gt;Рисовать эллипс.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation>Закрашенный Эллипс</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Закраш&amp;енный Эллипс</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Закрашенный Эллипс&lt;/b&gt;&lt;p&gt;Рисовать закрашенный эллипс.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation>Закрашивать</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation>Закра&amp;шивать</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Закрашивать&lt;/b&gt;&lt;p&gt;Закрашивать текущим цветом.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation>Линия</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation>&amp;Линия</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Линия&lt;/b&gt;&lt;p&gt;Рисовать линию.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation>Ластик</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Ласти&amp;к</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ластик&lt;/b&gt;&lt;p&gt;Очистить пикселы.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation>Прямоугольное выделение</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Прям&amp;оугольное выделение</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Прямоугольное выделение&lt;/b&gt;&lt;p&gt;Выбрать прямоугольную область с помощью мышки.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Прямоугольное выделение&lt;/b&gt;&lt;p&gt;Выбрать прямоугольную область с помощью мышки.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation>Выделение окружности</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выделение окружности&lt;/b&gt;&lt;p&gt;Выбрать круглую область с помощью мышки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation>О</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation>&amp;О</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation>Информация о ПО</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;О...&lt;/b&gt;&lt;p&gt;Информация об этом программном продукте.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation>О Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation>О &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Информация о библиотеке Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;О Qt&lt;/b&gt;&lt;p&gt;Информация о библиотеке Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation>Что это?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Что это?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation>Контекстная помощь</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Показать контекстную помощь&lt;/b&gt;
 &lt;p&gt;В режиме контекстной помощи курсор мыши выглядит как стрелка со знаком вопроса, и, щёлкнув по элементу интерфейса, Вы можете просмотреть краткую помощь о его роли и его использовании. В диалогах можно воспользоваться кнопкой контекстной помощи в заголовке окна.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation>&amp;Файл</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation>&amp;Правка</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation>&amp;Вид</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation>&amp;Инструменты</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation>&amp;Помощь</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation>Файл</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation>Редактировать</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation>Вид</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation>Инструменты</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation>Помощь</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Эта часть строки статуса показывает размер иконки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Эта часть строки статуса показывает текущую позицию курсора в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation>Открыть файл иконки</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation>Сохранить иконку в файл</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation>Иконка сохранена</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation>Без имени</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation>Редактор иконок</translation>
     </message>
@@ -30093,12 +30093,12 @@
         <translation>MNG файл (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation>Сбросить масштаб</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сбросить масштаб&lt;/b&gt;&lt;p&gt;Установить масштаб 1:1.&lt;/p&gt;</translation>
     </message>
@@ -30118,31 +30118,31 @@
         <translation>Targa Graphic файл (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>Файл {0} не существует.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Невозможно прочитать файл {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Невозможно записать файл {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже сущеструет. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation>Изменения в иконке не сохранены.</translation>
     </message>
@@ -30167,20 +30167,35 @@
         <translation>WAP Bitmap файл (*.wbmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation>Eric редактор иконок</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation>О редакторе иконок Eric</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation>Редакторе иконок Eric это простой редактор для рисования иконок.</translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished">Закрыть остальные</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_tr.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_tr.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20085,7 +20085,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29152,762 +29152,762 @@
         <translation>&lt;b&gt;Hepsini Kapat&lt;/b&gt;&lt;p&gt;İlk açılan haricinde tüm ikon düzenleme pencerelerini kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation>Çık</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation>&amp;Çıkış</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation>İkon düzenleyiciden çık</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Çıkış&lt;/b&gt;&lt;p&gt;İcon düzenleyicidn çık.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation>Geri Al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation>&amp;Geri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation>Enson değişikliği geri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation>İleri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation>&amp;İleri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation>Son değişikliği ileri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation>Kes</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation>Ke&amp;s</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation>Seçimi kes</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kes&lt;/b&gt;&lt;p&gt;Seçilen resim alanı panoya aktararak keser.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopyala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation>Seçimi kopyala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopya&lt;/b&gt;&lt;p&gt;Seçilen görüntüyü panoya kopyala.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation>Ya&amp;pıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation>Panodaki görüntüyü yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Yapıştır&lt;/b&gt;&lt;p&gt;Panodaki resmi yapıştır.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation>Yeni olarak yapıştır</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation>Ye&amp;ni olarak yapıştır</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Yapıştır&lt;/b&gt;&lt;p&gt;Panodaki resmi yapıştır.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation>Yeni olarak yapıştır</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation>Ye&amp;ni olarak yapıştır</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Mevcut bir tanesinin üzerine panodan bir resim yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation>Temizle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation>İkon görüntüsünü temizle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Temizle&lt;/b&gt;&lt;p&gt;İkon resmini temizle ve tamamını transparan yap.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation>Hepsini Seç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation>Hep&amp;sini Seç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation>Tüm ikon resmini seç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation>Boyutları Değiştir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation>Boyutları De&amp;ğiştir...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation>İkon boyutunu değiştir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Boyut Değşikliği...&lt;/b&gt;&lt;p&gt;İkon boyutunu değiştirir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation>Griskala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation>&amp;Griskala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation>İkonu griskala ya çevir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation>Bü&amp;yült</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation>İkın üzerinde büyüt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation>Küçült</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation>Küçü&amp;lt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation>İkon üzerinde küçült</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation>Büyütmeyi sıfırla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation>Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation>Grid Çizgilerini Göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation>&amp;Grid Çizgilerini Göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation>Serbest çizim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Serbest çizim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Serbest Çizim&lt;/b&gt;&lt;p&gt;Düzgün olmayan çizgiler çizer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation>Renk Toplayıcı</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation>Renk Toplayı&amp;cı</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation>Dikdörtgen</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation>Dikdörtgen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation>Dikdö&amp;rtgen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dikdörtgen&lt;/b&gt;&lt;p&gt;Bir dikdörtgen çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation>İçidolu Dikdörtgen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation>İçido&amp;lu Dikdörtgen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation>Çember</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Çember&lt;/b&gt;&lt;p&gt;Bir çember çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation>Daire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation>&amp;Daire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation>Elips</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elips</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elips&lt;/b&gt;&lt;p&gt;Bir elips çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation>İçidolu Elips</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>İçi dolu Eli&amp;ps</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;İçi dolu Elips&lt;/b&gt;&lt;p&gt;İçi dolu bir elips çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation>Satır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation>&amp;Satır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation>Köşeli Seçim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Kö&amp;şeli Seçim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation>Dairesel Seçim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dairesel seçim&lt;/b&gt;&lt;p&gt;Fareyi kullanarak ikon üzerinde dairesel bir alanı seçiniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation>Hakkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation>H&amp;akkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation>Bu yazılım hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation>Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation>&amp;Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt Hakkında&lt;/b&gt;&lt;p&gt;Qt Araçkiti hakkında bazı bilgiler gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation>Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation>Duyarlı yardım</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation>&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation>Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation>&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation>&amp;Araçlar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation>&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation>Dosya</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation>Görünüm</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation>Araçlar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation>Yardım</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation>İkon dosyasını aç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation>İkon dosyasını kaydet</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>&apos;{0}&apos; dosyası mevcut değil.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Dosya okunumıyor &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Dosyaya yazılamıyor &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation>İkon kaydedildi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation>Başlıksız</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation>İkon Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29932,20 +29932,35 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation type="unfinished">eric5 İkon Düzenleyici {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation type="unfinished">eric5 İkon Düzenleyici Hakkında {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished">Eric5İcon Düzenleyici icon çizme görevlerini yerine getirmek için hazırlanmış basit bir düzenleyici bileşenidir. {6 ?}</translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished">Diğerlerini Kapat</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>
--- a/i18n/eric6_zh_CN.ts	Sun Jan 24 16:03:00 2016 +0100
+++ b/i18n/eric6_zh_CN.ts	Sun Jan 24 16:15:58 2016 +0100
@@ -20063,7 +20063,7 @@
     </message>
     <message>
         <location filename="../HexEdit/HexEditMainWindow.py" line="268"/>
-        <source>Close all hex other editor windows</source>
+        <source>Close all other hex editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -29096,718 +29096,718 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Quit</source>
         <translation type="unfinished">退出</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">退出(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="292"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="303"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="309"/>
         <source>Quit the icon editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="310"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Undo</source>
         <translation type="unfinished">撤消</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>&amp;Undo</source>
         <translation type="unfinished">撤消(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="311"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="322"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished">Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="318"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="329"/>
         <source>Undo the last change</source>
         <translation type="unfinished">撤消最后一次更改</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="319"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="330"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Redo</source>
         <translation type="unfinished">重做</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>&amp;Redo</source>
         <translation type="unfinished">重做(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="337"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="343"/>
         <source>Redo the last change</source>
         <translation type="unfinished">重做最后一次更改</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="344"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cut</source>
         <translation type="unfinished">剪切</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished">剪切(&amp;t)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="351"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished">Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="358"/>
         <source>Cut the selection</source>
         <translation type="unfinished">剪切所选内容</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="359"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Copy</source>
         <translation type="unfinished">复制</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>&amp;Copy</source>
         <translation type="unfinished">复制(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished">Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="366"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished">Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="373"/>
         <source>Copy the selection</source>
         <translation type="unfinished">复制所选内容</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="374"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Paste</source>
         <translation type="unfinished">粘贴</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>&amp;Paste</source>
         <translation type="unfinished">粘贴(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="381"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished">Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="388"/>
         <source>Paste the clipboard image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
-        <source>Paste as &amp;New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="389"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="396"/>
+        <source>Paste as &amp;New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="402"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Clear</source>
         <translation type="unfinished">清除</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished">清除(&amp;e)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="398"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="409"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished">Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="416"/>
         <source>Clear the icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="417"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Select All</source>
         <translation type="unfinished">全选</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>&amp;Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="414"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="425"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished">Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="431"/>
         <source>Select the complete icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="422"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="433"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="440"/>
         <source>Change Si&amp;ze...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="446"/>
         <source>Change the icon size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="447"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="454"/>
         <source>&amp;Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="460"/>
         <source>Change the icon to grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="462"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom in</source>
         <translation type="unfinished">放大</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished">放大(&amp;i)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="480"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="491"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="486"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="497"/>
         <source>Zoom in on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="487"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="498"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom out</source>
         <translation type="unfinished">缩小</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">缩小(&amp;o)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="505"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="511"/>
         <source>Zoom out on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="512"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom reset</source>
         <translation type="unfinished">重置缩放</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">重置缩放(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="519"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="524"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="535"/>
         <source>Show &amp;Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="541"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="532"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="543"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="551"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="562"/>
         <source>&amp;Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="557"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="568"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="577"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
-        <source>Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="583"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
+        <source>Rectangle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="594"/>
         <source>&amp;Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="589"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="600"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="609"/>
         <source>F&amp;illed Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="615"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="614"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="625"/>
         <source>Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="620"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="631"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Filled Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="640"/>
         <source>Fille&amp;d Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="646"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="645"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="656"/>
         <source>&amp;Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="651"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="662"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Filled Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="671"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="677"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="676"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="687"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="682"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="693"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>Line</source>
         <translation type="unfinished">行</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="692"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="703"/>
         <source>&amp;Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="698"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="709"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="718"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="724"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="733"/>
         <source>Rectangular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Rect&amp;angular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="739"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="750"/>
         <source>Circular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="745"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="756"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>About</source>
         <translation type="unfinished">关于</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="762"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="773"/>
         <source>&amp;About</source>
         <translation type="unfinished">关于(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="766"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>Display information about this software</source>
         <translation type="unfinished">显示软件信息</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="768"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="779"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About Qt</source>
         <translation type="unfinished">关于 Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="774"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="785"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">关于 &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="778"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">显示Qt工具包信息</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="791"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;关于 Qt&lt;/b&gt;&lt;p&gt;显示Qt工具包的部分相关信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">这是什么?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="787"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="798"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="804"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">背景帮助</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="805"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="811"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="822"/>
         <source>&amp;File</source>
         <translation type="unfinished">文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="827"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="839"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="855"/>
         <source>&amp;View</source>
         <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="851"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="863"/>
         <source>&amp;Tools</source>
         <translation type="unfinished">工具(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="870"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="882"/>
         <source>&amp;Help</source>
         <translation type="unfinished">帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="880"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="892"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="894"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="906"/>
         <source>Edit</source>
         <translation type="unfinished">编辑</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="907"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="919"/>
         <source>View</source>
         <translation type="unfinished">视图</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="912"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="924"/>
         <source>Tools</source>
         <translation type="unfinished">工具</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="930"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="942"/>
         <source>Help</source>
         <translation type="unfinished">帮助</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="944"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="956"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="951"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="963"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1047"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1059"/>
         <source>Open icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>Save icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1180"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1198"/>
         <source>Icon saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1195"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1213"/>
         <source>Untitled</source>
         <translation type="unfinished">未命名</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>Icon Editor</source>
         <translation type="unfinished">图标编辑器</translation>
     </message>
@@ -29817,12 +29817,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="525"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="527"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29842,34 +29842,34 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1127"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1145"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1152"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1168"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1217"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1097"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1109"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29894,20 +29894,35 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1238"/>
         <source>eric6 Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>About eric6 Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1310"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1328"/>
         <source>The eric6 Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="290"/>
+        <source>Close Others</source>
+        <translation type="unfinished">关闭其它</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="296"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconSizeDialog</name>

eric ide

mercurial