Ported the cx_freeze plug-in to eric5.

Sat, 24 Jul 2010 17:42:12 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 24 Jul 2010 17:42:12 +0200
changeset 1
0b6f3f5600da
parent 0
d461cb11339b
child 2
455c005d940d

Ported the cx_freeze plug-in to eric5.

.hgignore file | annotate | diff | comparison | revisions
.issues/.properties file | annotate | diff | comparison | revisions
ChangeLog file | annotate | diff | comparison | revisions
CxFreeze/CxfreezeConfigDialog.py file | annotate | diff | comparison | revisions
CxFreeze/CxfreezeConfigDialog.ui file | annotate | diff | comparison | revisions
CxFreeze/CxfreezeExecDialog.py file | annotate | diff | comparison | revisions
CxFreeze/CxfreezeExecDialog.ui file | annotate | diff | comparison | revisions
CxFreeze/Documentation/LICENSE.GPL3 file | annotate | diff | comparison | revisions
CxFreeze/Documentation/source/Plugin_Packager_CxFreeze.CxFreeze.CxfreezeConfigDialog.html file | annotate | diff | comparison | revisions
CxFreeze/Documentation/source/Plugin_Packager_CxFreeze.CxFreeze.CxfreezeExecDialog.html file | annotate | diff | comparison | revisions
CxFreeze/Documentation/source/Plugin_Packager_CxFreeze.PluginCxFreeze.html file | annotate | diff | comparison | revisions
CxFreeze/Documentation/source/index-Plugin_Packager_CxFreeze.CxFreeze.html file | annotate | diff | comparison | revisions
CxFreeze/Documentation/source/index-Plugin_Packager_CxFreeze.html file | annotate | diff | comparison | revisions
CxFreeze/Documentation/source/index.html file | annotate | diff | comparison | revisions
CxFreeze/__init__.py file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_cs.qm file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_cs.ts file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_de.qm file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_de.ts file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_es.qm file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_es.ts file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_fr.qm file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_fr.ts file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_ru.qm file | annotate | diff | comparison | revisions
CxFreeze/i18n/cxfreeze_ru.ts file | annotate | diff | comparison | revisions
PKGLIST file | annotate | diff | comparison | revisions
PluginCxFreeze.e4p file | annotate | diff | comparison | revisions
PluginCxFreeze.py file | annotate | diff | comparison | revisions
__init__.py file | annotate | diff | comparison | revisions
--- a/.hgignore	Sat Jul 24 12:08:41 2010 +0200
+++ b/.hgignore	Sat Jul 24 17:42:12 2010 +0200
@@ -4,3 +4,4 @@
 glob:**.pyc
 glob:**.orig
 glob:**.bak
+glob:**Ui_*.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.issues/.properties	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,18 @@
+[Category]
+
+[State]
+new = 
+assigned = 
+investigating = 
+scheduled = 
+testing = 
+closed = 
+
+[Resolution]
+fixed = 
+rejected = 
+duplicate = 
+cannot reproduce = 
+
+[Assigned-To]
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ChangeLog	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,4 @@
+ChangeLog
+---------
+Version 5.0-snapshot-2010-mmdd:
+- first snapshot release of the CxFreeze packager plugin for eric5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/CxfreezeConfigDialog.py	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,295 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2010 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to enter the parameters for cxfreeze.
+"""
+
+import sys
+import os
+import copy
+
+from PyQt4.QtCore import pyqtSlot, QDir
+from PyQt4.QtGui import QDialog, QFileDialog
+
+from E5Gui.E5Completers import E5FileCompleter, E5DirCompleter
+
+from .Ui_CxfreezeConfigDialog import Ui_CxfreezeConfigDialog
+
+import Utilities
+
+class CxfreezeConfigDialog(QDialog, Ui_CxfreezeConfigDialog):
+    """
+    Class implementing a dialog to enter the parameters for cxfreeze.
+    """
+    def __init__(self, project, exe, parms = None, parent = None):
+        """
+        Constructor
+        
+        @param project reference to the project object (Project.Project)
+        @param exe name of the cxfreeze executable (string)
+        @param parms parameters to set in the dialog
+        @param parent parent widget of this dialog (QWidget)
+        """
+        QDialog.__init__(self, parent)
+        self.setupUi(self)
+        
+        self.__initializeDefaults()
+        
+        # get a copy of the defaults to store the user settings
+        self.parameters = copy.deepcopy(self.defaults)
+        
+        # combine it with the values of parms
+        if parms is not None:
+            for key, value in parms.items():
+                if key in self.parameters:
+                    self.parameters[key] = parms[key]
+        
+        self.project = project
+        
+        self.exe = exe
+        
+        # version specific setup
+        if self.exe.startswith("cxfreeze"):
+            for sysPath in sys.path:
+                modpath = os.path.join(sysPath, "cx_Freeze")
+                if os.path.exists(modpath):
+                    break
+            else:
+                modpath = None
+        
+        # populate combo boxes
+        if modpath:
+            d = QDir(os.path.join(modpath, 'bases'))
+            basesList = d.entryList(QDir.Filters(QDir.Files))
+            basesList.insert(0, '')
+            self.basenameCombo.addItems(basesList)
+            
+            d = QDir(os.path.join(modpath, 'initscripts'))
+            initList = d.entryList(['*.py'])
+            initList.insert(0, '')
+            self.initscriptCombo.addItems(initList)
+        
+        self.targetDirCompleter = E5DirCompleter(self.targetDirEdit)
+        self.extListFileCompleter = E5FileCompleter(self.extListFileEdit)
+        
+        # initialize general tab
+        self.targetDirEdit.setText(self.parameters['targetDirectory'])
+        self.targetNameEdit.setText(self.parameters['targetName'])
+        self.basenameCombo.setEditText(self.parameters['baseName'])
+        self.initscriptCombo.setEditText(self.parameters['initScript'])
+        self.applicationIconEdit.setText(self.parameters['applicationIcon'])
+        self.keeppathCheckBox.setChecked(self.parameters['keepPath'])
+        self.compressCheckBox.setChecked(self.parameters['compress'])
+        if self.parameters['optimize'] == 0:
+            self.nooptimizeRadioButton.setChecked(True)
+        elif self.parameters['optimize'] == 1:
+            self.optimizeRadioButton.setChecked(True)
+        else:
+            self.optimizeDocRadioButton.setChecked(True)
+        
+        # initialize advanced tab
+        self.defaultPathEdit.setText(os.pathsep.join(self.parameters['defaultPath']))
+        self.includePathEdit.setText(os.pathsep.join(self.parameters['includePath']))
+        self.replacePathsEdit.setText(os.pathsep.join(self.parameters['replacePaths']))
+        self.includeModulesEdit.setText(','.join(self.parameters['includeModules']))
+        self.excludeModulesEdit.setText(','.join(self.parameters['excludeModules']))
+        self.extListFileEdit.setText(self.parameters['extListFile'])
+    
+    def __initializeDefaults(self):
+        """
+        Private method to set the default values. 
+        
+        These are needed later on to generate the commandline parameters.
+        """
+        self.defaults = {
+            # general options
+            'targetDirectory' : '',
+            'targetName' : '',
+            'baseName' : '',
+            'initScript' : '',
+            'applicationIcon' : '',
+            'keepPath' : False,
+            'compress' : False, 
+            'optimize' : 0,     # 0, 1 or 2
+            
+            # advanced options
+            'defaultPath' : [],
+            'includePath' : [],
+            'replacePaths' : [],
+            'includeModules' : [],
+            'excludeModules' : [],
+            'extListFile' : '',
+        }
+    
+    def generateParameters(self):
+        """
+        Public method that generates the commandline parameters.
+        
+        It generates a list of strings to be used to set the QProcess arguments 
+        for the cxfreeze call and a list containing the non default parameters. 
+        The second list can be passed back upon object generation to overwrite
+        the default settings.
+        
+        @return a tuple of the commandline parameters and non default parameters
+            (list of strings, dictionary)
+        """
+        parms = {}
+        args = []
+        
+        # 1. the program name
+        args.append(self.exe)
+        
+        # 2. the commandline options
+        # 2.1 general options
+        if self.parameters['targetDirectory'] != self.defaults['targetDirectory']:
+            parms['targetDirectory'] = self.parameters['targetDirectory']
+            args.append('--target-dir=%s' % self.parameters['targetDirectory'])
+        if self.parameters['targetName'] != self.defaults['targetName']:
+            parms['targetName'] = self.parameters['targetName'][:]
+            args.append('--target-name=%s' % self.parameters['targetName'])
+        if self.parameters['baseName'] != self.defaults['baseName']:
+            parms['baseName'] = self.parameters['baseName'][:]
+            args.append('--base-name=%s' % self.parameters['baseName'])
+        if self.parameters['initScript'] != self.defaults['initScript']:
+            parms['initScript'] = self.parameters['initScript'][:]
+            args.append('--init-script=%s' % self.parameters['initScript'])
+        if self.parameters['applicationIcon'] != self.defaults['applicationIcon']:
+            parms['applicationIcon'] = self.parameters['applicationIcon'][:]
+            args.append('--icon=%s' % self.parameters['applicationIcon'])
+        if self.parameters['keepPath'] != self.defaults['keepPath']:
+            parms['keepPath'] = self.parameters['keepPath']
+            args.append('--no-copy-deps')
+        if self.parameters['compress'] != self.defaults['compress']:
+            parms['compress'] = self.parameters['compress']
+            args.append('--compress')
+        if self.parameters['optimize'] != self.defaults['optimize']:
+            parms['optimize'] = self.parameters['optimize']
+            if self.parameters['optimize'] == 1:
+                args.append('-O')
+            elif self.parameters['optimize'] == 2:
+                args.append('-OO')
+        
+        # 2.2 advanced options
+        if self.parameters['defaultPath'] != self.defaults['defaultPath']:
+            parms['defaultPath'] = self.parameters['defaultPath'][:]
+            args.append('--default-path=%s' % \
+                        os.pathsep.join(self.parameters['defaultPath']))
+        if self.parameters['includePath'] != self.defaults['includePath']:
+            parms['includePath'] = self.parameters['includePath'][:]
+            args.append('--include-path=%s' % \
+                        os.pathsep.join(self.parameters['includePath']))
+        if self.parameters['replacePaths'] != self.defaults['replacePaths']:
+            parms['replacePaths'] = self.parameters['replacePaths'][:]
+            args.append('--replace-paths=%s' % \
+                        os.pathsep.join(self.parameters['replacePaths']))
+        if self.parameters['includeModules'] != self.defaults['includeModules']:
+            parms['includeModules'] = self.parameters['includeModules'][:]
+            args.append('--include-modules=%s' % \
+                        ','.join(self.parameters['includeModules']))
+        if self.parameters['excludeModules'] != self.defaults['excludeModules']:
+            parms['excludeModules'] = self.parameters['excludeModules'][:]
+            args.append('--exclude-modules=%s' % \
+                        ','.join(self.parameters['excludeModules']))
+        if self.parameters['extListFile'] != self.defaults['extListFile']:
+            parms['extListFile'] = self.parameters['extListFile']
+            args.append('--ext-list-file=%s' % self.parameters['extListFile'])
+        
+        return (args, parms)
+
+    @pyqtSlot()
+    def on_extListFileButton_clicked(self):
+        """
+        Private slot to select the external list file.
+        
+        It displays a file selection dialog to select the external list file,
+        the list of include modules is written to.
+        """
+        extList = QFileDialog.getOpenFileName(
+            self,
+            self.trUtf8("Select external list file"),
+            self.extListFileEdit.text(),
+            "")
+        
+        if extList:
+            # make it relative, if it is in a subdirectory of the project path 
+            lf = Utilities.toNativeSeparators(extList)
+            lf = self.project.getRelativePath(lf)
+            self.extListFileEdit.setText(lf)
+    
+    @pyqtSlot()
+    def on_targetDirButton_clicked(self):
+        """
+        Private slot to select the target directory.
+        
+        It displays a directory selection dialog to
+        select the directory the files are written to.
+        """
+        directory = QFileDialog.getExistingDirectory(
+            self,
+            self.trUtf8("Select target directory"),
+            self.targetDirEdit.text(),
+            QFileDialog.Options(QFileDialog.ShowDirsOnly))
+        
+        if directory:
+            # make it relative, if it is a subdirectory of the project path 
+            dn = Utilities.toNativeSeparators(directory)
+            dn = self.project.getRelativePath(dn)
+            while dn.endswith(os.sep):
+                dn = dn[:-1]
+            self.targetDirEdit.setText(dn)
+    
+    def accept(self):
+        """
+        Protected slot called by the Ok button. 
+        
+        It saves the values in the parameters dictionary.
+        """
+        # get data of general tab
+        self.parameters['targetDirectory'] = self.targetDirEdit.text()
+        self.parameters['targetName'] = self.targetNameEdit.text()
+        self.parameters['baseName'] = self.basenameCombo.currentText()
+        self.parameters['initScript'] = self.initscriptCombo.currentText()
+        self.parameters['applicationIcon'] = self.applicationIconEdit.text()
+        self.parameters['keepPath'] = self.keeppathCheckBox.isChecked()
+        self.parameters['compress'] = self.compressCheckBox.isChecked()
+        if self.nooptimizeRadioButton.isChecked():
+            self.parameters['optimize'] = 0
+        elif self.optimizeRadioButton.isChecked():
+            self.parameters['optimize'] = 1
+        else:
+            self.parameters['optimize'] = 2
+        
+        # get data of advanced tab
+        self.parameters['defaultPath'] = \
+            self.__splitIt(self.defaultPathEdit.text(), os.pathsep)
+        self.parameters['includePath'] = \
+            self.__splitIt(self.includePathEdit.text(), os.pathsep)
+        self.parameters['replacePaths'] = \
+            self.__splitIt(self.replacePathsEdit.text(), os.pathsep)
+        self.parameters['includeModules'] = \
+            self.__splitIt(self.includeModulesEdit.text(), ',')
+        self.parameters['excludeModules'] = \
+            self.__splitIt(self.excludeModulesEdit.text(), ',')
+        self.parameters['extListFile'] = self.extListFileEdit.text()
+        
+        # call the accept slot of the base class
+        QDialog.accept(self)
+
+    def __splitIt(self, s, sep):
+        """
+        Private method to split a string observing various conditions.
+        
+        @param s string to split (string)
+        @param sep separator string (string)
+        @return list of split values
+        """
+        if s == "" or s is None:
+            return []
+        
+        if s.endswith(sep):
+            s = s[:-1]
+        
+        return s.split(sep)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/CxfreezeConfigDialog.ui	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,440 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>CxfreezeConfigDialog</class>
+ <widget class="QDialog" name="CxfreezeConfigDialog">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>600</width>
+    <height>321</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>Cxfreeze Configuration</string>
+  </property>
+  <property name="whatsThis">
+   <string>&lt;b&gt;Cxfreeze Configuration&lt;/b&gt;
+&lt;p&gt;This dialog is used to configure the cxfreeze (FreezePython) process in order to create a distribution package for the project.&lt;/p&gt;
+&lt;p&gt;All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</string>
+  </property>
+  <property name="sizeGripEnabled">
+   <bool>true</bool>
+  </property>
+  <layout class="QVBoxLayout">
+   <property name="spacing">
+    <number>6</number>
+   </property>
+   <property name="margin">
+    <number>5</number>
+   </property>
+   <item>
+    <widget class="QTabWidget" name="tabWidget2">
+     <property name="currentIndex">
+      <number>0</number>
+     </property>
+     <widget class="QWidget" name="generalTab">
+      <attribute name="title">
+       <string>&amp;General</string>
+      </attribute>
+      <layout class="QGridLayout" name="gridLayout">
+       <item row="0" column="0">
+        <widget class="QLabel" name="textLabel3">
+         <property name="text">
+          <string>Target directory:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="0" column="1">
+        <widget class="QLineEdit" name="targetDirEdit">
+         <property name="toolTip">
+          <string>Enter the name of the target directory</string>
+         </property>
+         <property name="whatsThis">
+          <string>&lt;p&gt;Enter the name of the directory in which to place the target file and any dependant files.&lt;/p&gt;</string>
+         </property>
+        </widget>
+       </item>
+       <item row="0" column="2">
+        <widget class="QPushButton" name="targetDirButton">
+         <property name="text">
+          <string>...</string>
+         </property>
+        </widget>
+       </item>
+       <item row="1" column="0">
+        <widget class="QLabel" name="textLabel4">
+         <property name="text">
+          <string>Target name:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="1" column="1" colspan="2">
+        <widget class="QLineEdit" name="targetNameEdit">
+         <property name="toolTip">
+          <string>Enter the name of the file to create</string>
+         </property>
+         <property name="whatsThis">
+          <string>&lt;p&gt;Enter the name of the file to create instead of the base name of the script and the extension of the base binary.&lt;/p&gt;</string>
+         </property>
+        </widget>
+       </item>
+       <item row="2" column="0">
+        <widget class="QLabel" name="textLabel1">
+         <property name="text">
+          <string>Base name:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="2" column="1" colspan="2">
+        <widget class="QComboBox" name="basenameCombo">
+         <property name="toolTip">
+          <string>Enter the name of a file on which to base the target file</string>
+         </property>
+         <property name="editable">
+          <bool>true</bool>
+         </property>
+         <property name="insertPolicy">
+          <enum>QComboBox::InsertAtTop</enum>
+         </property>
+         <property name="autoCompletion">
+          <bool>true</bool>
+         </property>
+         <property name="duplicatesEnabled">
+          <bool>false</bool>
+         </property>
+        </widget>
+       </item>
+       <item row="3" column="0">
+        <widget class="QLabel" name="textLabel2">
+         <property name="text">
+          <string>Init script:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="3" column="1" colspan="2">
+        <widget class="QComboBox" name="initscriptCombo">
+         <property name="toolTip">
+          <string>Enter name of script which will be executed upon startup</string>
+         </property>
+         <property name="editable">
+          <bool>true</bool>
+         </property>
+         <property name="insertPolicy">
+          <enum>QComboBox::InsertAtTop</enum>
+         </property>
+         <property name="autoCompletion">
+          <bool>true</bool>
+         </property>
+         <property name="duplicatesEnabled">
+          <bool>false</bool>
+         </property>
+        </widget>
+       </item>
+       <item row="4" column="0">
+        <widget class="QLabel" name="textLabel5_2">
+         <property name="text">
+          <string>Application icon:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="4" column="1" colspan="2">
+        <widget class="QLineEdit" name="applicationIconEdit">
+         <property name="toolTip">
+          <string>Enter the name of the application icon.</string>
+         </property>
+        </widget>
+       </item>
+       <item row="5" column="0" colspan="3">
+        <layout class="QHBoxLayout" name="horizontalLayout">
+         <item>
+          <widget class="QCheckBox" name="keeppathCheckBox">
+           <property name="toolTip">
+            <string>Select to disable copying of dependent files to the target directory</string>
+           </property>
+           <property name="text">
+            <string>Do not copy dependant files</string>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <widget class="QCheckBox" name="compressCheckBox">
+           <property name="toolTip">
+            <string>Select to compress the byte code in zip files</string>
+           </property>
+           <property name="text">
+            <string>Compress Byte Code</string>
+           </property>
+          </widget>
+         </item>
+         <item>
+          <spacer name="horizontalSpacer">
+           <property name="orientation">
+            <enum>Qt::Horizontal</enum>
+           </property>
+           <property name="sizeHint" stdset="0">
+            <size>
+             <width>40</width>
+             <height>20</height>
+            </size>
+           </property>
+          </spacer>
+         </item>
+        </layout>
+       </item>
+       <item row="6" column="0" colspan="3">
+        <widget class="QGroupBox" name="optimizeGroup">
+         <property name="toolTip">
+          <string>Select to optimize generated bytecode</string>
+         </property>
+         <property name="title">
+          <string>Optimize bytecode</string>
+         </property>
+         <layout class="QHBoxLayout">
+          <property name="spacing">
+           <number>6</number>
+          </property>
+          <property name="margin">
+           <number>9</number>
+          </property>
+          <item>
+           <widget class="QRadioButton" name="nooptimizeRadioButton">
+            <property name="text">
+             <string>Don't optimize</string>
+            </property>
+           </widget>
+          </item>
+          <item>
+           <widget class="QRadioButton" name="optimizeRadioButton">
+            <property name="toolTip">
+             <string>Select to optimize the generated bytecode</string>
+            </property>
+            <property name="text">
+             <string>Optimize</string>
+            </property>
+           </widget>
+          </item>
+          <item>
+           <widget class="QRadioButton" name="optimizeDocRadioButton">
+            <property name="toolTip">
+             <string>Select to optimize the generated bytecode and remove doc strings</string>
+            </property>
+            <property name="text">
+             <string>Optimize (with docstring removal)</string>
+            </property>
+           </widget>
+          </item>
+         </layout>
+        </widget>
+       </item>
+      </layout>
+     </widget>
+     <widget class="QWidget" name="advancedTab">
+      <attribute name="title">
+       <string>&amp;Advanced</string>
+      </attribute>
+      <layout class="QGridLayout">
+       <property name="margin">
+        <number>0</number>
+       </property>
+       <property name="spacing">
+        <number>6</number>
+       </property>
+       <item row="0" column="0">
+        <widget class="QLabel" name="textLabel2_2">
+         <property name="toolTip">
+          <string/>
+         </property>
+         <property name="whatsThis">
+          <string/>
+         </property>
+         <property name="text">
+          <string>Default path</string>
+         </property>
+        </widget>
+       </item>
+       <item row="0" column="1" colspan="2">
+        <widget class="QLineEdit" name="defaultPathEdit">
+         <property name="toolTip">
+          <string>Enter directories to initialize sys.path</string>
+         </property>
+         <property name="whatsThis">
+          <string>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to initialize sys.path prior to running the module finder.&lt;/p&gt;</string>
+         </property>
+        </widget>
+       </item>
+       <item row="1" column="1" colspan="2">
+        <widget class="QLineEdit" name="includePathEdit">
+         <property name="toolTip">
+          <string>Enter directories to modify sys.path</string>
+         </property>
+         <property name="whatsThis">
+          <string>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to modify sys.path prior to running the module finder.&lt;/p&gt;</string>
+         </property>
+        </widget>
+       </item>
+       <item row="1" column="0">
+        <widget class="QLabel" name="textLabel3_2">
+         <property name="text">
+          <string>Include path</string>
+         </property>
+        </widget>
+       </item>
+       <item row="2" column="0">
+        <widget class="QLabel" name="textLabel4_2">
+         <property name="text">
+          <string>Replace paths:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="2" column="1" colspan="2">
+        <widget class="QLineEdit" name="replacePathsEdit">
+         <property name="toolTip">
+          <string>Enter replacement directives</string>
+         </property>
+         <property name="whatsThis">
+          <string>&lt;p&gt;Enter replacement directives used to replace all the paths in modules found. Please see cx_Freeze docu for details.&lt;/p&gt;</string>
+         </property>
+        </widget>
+       </item>
+       <item row="3" column="0">
+        <widget class="QLabel" name="textLabel5">
+         <property name="text">
+          <string>Include modules:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="3" column="1" colspan="2">
+        <widget class="QLineEdit" name="includeModulesEdit">
+         <property name="toolTip">
+          <string>Enter a comma separated list of modules to include</string>
+         </property>
+        </widget>
+       </item>
+       <item row="4" column="0">
+        <widget class="QLabel" name="textLabel6">
+         <property name="text">
+          <string>Exclude modules:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="4" column="1" colspan="2">
+        <widget class="QLineEdit" name="excludeModulesEdit">
+         <property name="toolTip">
+          <string>Enter a comma separated list of modules to exclude</string>
+         </property>
+        </widget>
+       </item>
+       <item row="5" column="1">
+        <widget class="QLineEdit" name="extListFileEdit">
+         <property name="toolTip">
+          <string>Enter the name of a file in which to place the list of included modules</string>
+         </property>
+        </widget>
+       </item>
+       <item row="5" column="0">
+        <widget class="QLabel" name="textLabel7">
+         <property name="text">
+          <string>External list file:</string>
+         </property>
+        </widget>
+       </item>
+       <item row="5" column="2">
+        <widget class="QPushButton" name="extListFileButton">
+         <property name="toolTip">
+          <string>Press to select the external list file via a file selection dialog</string>
+         </property>
+         <property name="text">
+          <string>...</string>
+         </property>
+        </widget>
+       </item>
+       <item row="6" column="1">
+        <spacer name="verticalSpacer">
+         <property name="orientation">
+          <enum>Qt::Vertical</enum>
+         </property>
+         <property name="sizeHint" stdset="0">
+          <size>
+           <width>20</width>
+           <height>40</height>
+          </size>
+         </property>
+        </spacer>
+       </item>
+      </layout>
+     </widget>
+    </widget>
+   </item>
+   <item>
+    <widget class="QDialogButtonBox" name="buttonBox">
+     <property name="orientation">
+      <enum>Qt::Horizontal</enum>
+     </property>
+     <property name="standardButtons">
+      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+     </property>
+    </widget>
+   </item>
+  </layout>
+ </widget>
+ <layoutdefault spacing="6" margin="6"/>
+ <pixmapfunction>qPixmapFromMimeSource</pixmapfunction>
+ <tabstops>
+  <tabstop>tabWidget2</tabstop>
+  <tabstop>targetDirEdit</tabstop>
+  <tabstop>targetDirButton</tabstop>
+  <tabstop>targetNameEdit</tabstop>
+  <tabstop>basenameCombo</tabstop>
+  <tabstop>initscriptCombo</tabstop>
+  <tabstop>applicationIconEdit</tabstop>
+  <tabstop>keeppathCheckBox</tabstop>
+  <tabstop>compressCheckBox</tabstop>
+  <tabstop>nooptimizeRadioButton</tabstop>
+  <tabstop>optimizeRadioButton</tabstop>
+  <tabstop>optimizeDocRadioButton</tabstop>
+  <tabstop>defaultPathEdit</tabstop>
+  <tabstop>includePathEdit</tabstop>
+  <tabstop>replacePathsEdit</tabstop>
+  <tabstop>includeModulesEdit</tabstop>
+  <tabstop>excludeModulesEdit</tabstop>
+  <tabstop>extListFileEdit</tabstop>
+  <tabstop>extListFileButton</tabstop>
+  <tabstop>buttonBox</tabstop>
+ </tabstops>
+ <resources/>
+ <connections>
+  <connection>
+   <sender>buttonBox</sender>
+   <signal>accepted()</signal>
+   <receiver>CxfreezeConfigDialog</receiver>
+   <slot>accept()</slot>
+   <hints>
+    <hint type="sourcelabel">
+     <x>47</x>
+     <y>259</y>
+    </hint>
+    <hint type="destinationlabel">
+     <x>47</x>
+     <y>276</y>
+    </hint>
+   </hints>
+  </connection>
+  <connection>
+   <sender>buttonBox</sender>
+   <signal>rejected()</signal>
+   <receiver>CxfreezeConfigDialog</receiver>
+   <slot>reject()</slot>
+   <hints>
+    <hint type="sourcelabel">
+     <x>156</x>
+     <y>258</y>
+    </hint>
+    <hint type="destinationlabel">
+     <x>156</x>
+     <y>275</y>
+    </hint>
+   </hints>
+  </connection>
+ </connections>
+</ui>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/CxfreezeExecDialog.py	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,153 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2010 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to show the output of the packager process.
+"""
+
+import os.path
+
+from PyQt4.QtCore import pyqtSlot, QProcess, SIGNAL, SLOT, QTimer
+from PyQt4.QtGui import QDialog, QDialogButtonBox, QMessageBox, QAbstractButton
+
+from .Ui_CxfreezeExecDialog import Ui_CxfreezeExecDialog
+
+import Preferences
+
+class CxfreezeExecDialog(QDialog, Ui_CxfreezeExecDialog):
+    """
+    Module implementing a dialog to show the output of the cxfreeze process.
+    
+    This class starts a QProcess and displays a dialog that
+    shows the output of the packager command process.
+    """
+    def __init__(self, cmdname, parent = None):
+        """
+        Constructor
+        
+        @param cmdname name of the packager (string)
+        @param parent parent widget of this dialog (QWidget)
+        """
+        QDialog.__init__(self, parent)
+        self.setupUi(self)
+        
+        self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
+        self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
+        
+        self.process = None
+        self.cmdname = cmdname
+    
+    def start(self, args, script):
+        """
+        Public slot to start the packager command.
+        
+        @param args commandline arguments for packager program (list of strings)
+        @param script main script name to be processed by by the packager (string)
+        @return flag indicating the successful start of the process
+        """
+        self.errorGroup.hide()
+        
+        dname = os.path.dirname(script)
+        script = os.path.basename(script)
+        
+        self.contents.clear()
+        self.errors.clear()
+        
+        program = args[0]
+        del args[0]
+        args.append(script)
+        
+        self.process = QProcess()
+        self.process.setWorkingDirectory(dname)
+        
+        self.connect(self.process, SIGNAL('readyReadStandardOutput()'),
+            self.__readStdout)
+        self.connect(self.process, SIGNAL('readyReadStandardError()'),
+            self.__readStderr)
+        self.connect(self.process, SIGNAL('finished(int, QProcess::ExitStatus)'),
+            self.__finish)
+            
+        self.setWindowTitle(self.trUtf8('{0} - {1}').format(self.cmdname, script))
+        self.contents.insertPlainText(' '.join(args) + '\n')
+        self.contents.ensureCursorVisible()
+        
+        self.process.start(program, args)
+        procStarted = self.process.waitForStarted()
+        if not procStarted:
+            QMessageBox.critical(None,
+                self.trUtf8('Process Generation Error'),
+                self.trUtf8(
+                    'The process {0} could not be started. '
+                    'Ensure, that it is in the search path.'
+                ).format(program))
+        return procStarted
+    
+    @pyqtSlot(QAbstractButton)
+    def on_buttonBox_clicked(self, button):
+        """
+        Private slot called by a button of the button box clicked.
+        
+        @param button button that was clicked (QAbstractButton)
+        """
+        if button == self.buttonBox.button(QDialogButtonBox.Close):
+            self.accept()
+        elif button == self.buttonBox.button(QDialogButtonBox.Cancel):
+            self.__finish()
+    
+    def __finish(self):
+        """
+        Private slot called when the process finished.
+        
+        It is called when the process finished or
+        the user pressed the cancel button.
+        """
+        if self.process is not None and \
+           self.process.state() != QProcess.NotRunning:
+            self.process.terminate()
+            QTimer.singleShot(2000, self.process, SLOT('kill()'))
+            self.process.waitForFinished(3000)
+        
+        self.buttonBox.button(QDialogButtonBox.Close).setEnabled(True)
+        self.buttonBox.button(QDialogButtonBox.Cancel).setEnabled(False)
+        self.buttonBox.button(QDialogButtonBox.Close).setDefault(True)
+        
+        self.process = None
+        
+        self.contents.insertPlainText(
+            self.trUtf8('\n{0} finished.\n').format(self.cmdname))
+        self.contents.ensureCursorVisible()
+    
+    def __readStdout(self):
+        """
+        Private slot to handle the readyReadStandardOutput signal. 
+        
+        It reads the output of the process, formats it and inserts it into
+        the contents pane.
+        """
+        self.process.setReadChannel(QProcess.StandardOutput)
+        
+        while self.process.canReadLine():
+            s = str(self.process.readAllStandardOutput(), 
+                    Preferences.getSystem("IOEncoding"), 
+                    'replace')
+            self.contents.insertPlainText(s)
+            self.contents.ensureCursorVisible()
+    
+    def __readStderr(self):
+        """
+        Private slot to handle the readyReadStandardError signal. 
+        
+        It reads the error output of the process and inserts it into the
+        error pane.
+        """
+        self.process.setReadChannel(QProcess.StandardError)
+        
+        while self.process.canReadLine():
+            self.errorGroup.show()
+            s = str(self.process.readAllStandardError(), 
+                    Preferences.getSystem("IOEncoding"), 
+                    'replace')
+            self.errors.insertPlainText(s)
+            self.errors.ensureCursorVisible()
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/CxfreezeExecDialog.ui	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>CxfreezeExecDialog</class>
+ <widget class="QDialog" name="CxfreezeExecDialog">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>753</width>
+    <height>602</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>Cxfreeze</string>
+  </property>
+  <property name="sizeGripEnabled">
+   <bool>true</bool>
+  </property>
+  <layout class="QVBoxLayout" name="verticalLayout_3">
+   <item>
+    <widget class="QGroupBox" name="messagesGroup">
+     <property name="sizePolicy">
+      <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+       <horstretch>0</horstretch>
+       <verstretch>3</verstretch>
+      </sizepolicy>
+     </property>
+     <property name="title">
+      <string>Messages</string>
+     </property>
+     <layout class="QVBoxLayout" name="verticalLayout">
+      <item>
+       <widget class="QTextBrowser" name="contents">
+        <property name="sizePolicy">
+         <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
+          <horstretch>0</horstretch>
+          <verstretch>3</verstretch>
+         </sizepolicy>
+        </property>
+        <property name="whatsThis">
+         <string>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the output of the packager command.&lt;/p&gt;</string>
+        </property>
+       </widget>
+      </item>
+     </layout>
+    </widget>
+   </item>
+   <item>
+    <widget class="QGroupBox" name="errorGroup">
+     <property name="sizePolicy">
+      <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+       <horstretch>0</horstretch>
+       <verstretch>1</verstretch>
+      </sizepolicy>
+     </property>
+     <property name="title">
+      <string>Errors</string>
+     </property>
+     <layout class="QVBoxLayout" name="verticalLayout_2">
+      <item>
+       <widget class="QTextBrowser" name="errors">
+        <property name="sizePolicy">
+         <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
+          <horstretch>0</horstretch>
+          <verstretch>1</verstretch>
+         </sizepolicy>
+        </property>
+        <property name="whatsThis">
+         <string>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the errors of the packager command.&lt;/p&gt;</string>
+        </property>
+        <property name="acceptRichText">
+         <bool>false</bool>
+        </property>
+       </widget>
+      </item>
+     </layout>
+    </widget>
+   </item>
+   <item>
+    <widget class="QDialogButtonBox" name="buttonBox">
+     <property name="orientation">
+      <enum>Qt::Horizontal</enum>
+     </property>
+     <property name="standardButtons">
+      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close</set>
+     </property>
+    </widget>
+   </item>
+  </layout>
+ </widget>
+ <layoutdefault spacing="6" margin="11"/>
+ <pixmapfunction>qPixmapFromMimeSource</pixmapfunction>
+ <tabstops>
+  <tabstop>contents</tabstop>
+  <tabstop>errors</tabstop>
+  <tabstop>buttonBox</tabstop>
+ </tabstops>
+ <resources/>
+ <connections/>
+</ui>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/Documentation/LICENSE.GPL3	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,621 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/Documentation/source/Plugin_Packager_CxFreeze.CxFreeze.CxfreezeConfigDialog.html	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
+'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
+<html><head>
+<title>Plugin_Packager_CxFreeze.CxFreeze.CxfreezeConfigDialog</title>
+<style>
+body {
+    background:white;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #4FA4FF; }
+h2 { color: white; background: #4FA4FF; }
+h3 { color: white; background: #00557F; }
+h4 { color: white; background: #00557F; }
+    
+a { color: #AA5500; }
+
+</style>
+</head>
+<body><a NAME="top" ID="top"></a>
+<h1>Plugin_Packager_CxFreeze.CxFreeze.CxfreezeConfigDialog</h1>
+<p>
+Module implementing a dialog to enter the parameters for cxfreeze.
+</p>
+<h3>Global Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+<table>
+<tr>
+<td><a href="#CxfreezeConfigDialog">CxfreezeConfigDialog</a></td>
+<td>Class implementing a dialog to enter the parameters for cxfreeze.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr /><hr />
+<a NAME="CxfreezeConfigDialog" ID="CxfreezeConfigDialog"></a>
+<h2>CxfreezeConfigDialog</h2>
+<p>
+    Class implementing a dialog to enter the parameters for cxfreeze.
+</p>
+<h3>Derived from</h3>
+QDialog, Ui_CxfreezeConfigDialog
+<h3>Class Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#CxfreezeConfigDialog.__init__">CxfreezeConfigDialog</a></td>
+<td>Constructor</td>
+</tr><tr>
+<td><a href="#CxfreezeConfigDialog.__initializeDefaults">__initializeDefaults</a></td>
+<td>Private method to set the default values.</td>
+</tr><tr>
+<td><a href="#CxfreezeConfigDialog.__splitIt">__splitIt</a></td>
+<td>Private method to split a string observing various conditions.</td>
+</tr><tr>
+<td><a href="#CxfreezeConfigDialog.accept">accept</a></td>
+<td>Protected slot called by the Ok button.</td>
+</tr><tr>
+<td><a href="#CxfreezeConfigDialog.generateParameters">generateParameters</a></td>
+<td>Public method that generates the commandline parameters.</td>
+</tr><tr>
+<td><a href="#CxfreezeConfigDialog.on_extListFileButton_clicked">on_extListFileButton_clicked</a></td>
+<td>Private slot to select the external list file.</td>
+</tr><tr>
+<td><a href="#CxfreezeConfigDialog.on_targetDirButton_clicked">on_targetDirButton_clicked</a></td>
+<td>Private slot to select the target directory.</td>
+</tr>
+</table>
+<a NAME="CxfreezeConfigDialog.__init__" ID="CxfreezeConfigDialog.__init__"></a>
+<h4>CxfreezeConfigDialog (Constructor)</h4>
+<b>CxfreezeConfigDialog</b>(<i>project, exe, parms = None, parent = None</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>project</i></dt>
+<dd>
+reference to the project object (Project.Project)
+</dd><dt><i>exe</i></dt>
+<dd>
+name of the cxfreeze executable (string)
+</dd><dt><i>parms</i></dt>
+<dd>
+parameters to set in the dialog
+</dd><dt><i>parent</i></dt>
+<dd>
+parent widget of this dialog (QWidget)
+</dd>
+</dl><a NAME="CxfreezeConfigDialog.__initializeDefaults" ID="CxfreezeConfigDialog.__initializeDefaults"></a>
+<h4>CxfreezeConfigDialog.__initializeDefaults</h4>
+<b>__initializeDefaults</b>(<i></i>)
+<p>
+        Private method to set the default values. 
+</p><p>
+        These are needed later on to generate the commandline parameters.
+</p><a NAME="CxfreezeConfigDialog.__splitIt" ID="CxfreezeConfigDialog.__splitIt"></a>
+<h4>CxfreezeConfigDialog.__splitIt</h4>
+<b>__splitIt</b>(<i>s, sep</i>)
+<p>
+        Private method to split a string observing various conditions.
+</p><dl>
+<dt><i>s</i></dt>
+<dd>
+string to split (string)
+</dd><dt><i>sep</i></dt>
+<dd>
+separator string (string)
+</dd>
+</dl><dl>
+<dt>Returns:</dt>
+<dd>
+list of split values
+</dd>
+</dl><a NAME="CxfreezeConfigDialog.accept" ID="CxfreezeConfigDialog.accept"></a>
+<h4>CxfreezeConfigDialog.accept</h4>
+<b>accept</b>(<i></i>)
+<p>
+        Protected slot called by the Ok button. 
+</p><p>
+        It saves the values in the parameters dictionary.
+</p><a NAME="CxfreezeConfigDialog.generateParameters" ID="CxfreezeConfigDialog.generateParameters"></a>
+<h4>CxfreezeConfigDialog.generateParameters</h4>
+<b>generateParameters</b>(<i></i>)
+<p>
+        Public method that generates the commandline parameters.
+</p><p>
+        It generates a list of strings to be used to set the QProcess arguments 
+        for the cxfreeze call and a list containing the non default parameters. 
+        The second list can be passed back upon object generation to overwrite
+        the default settings.
+</p><dl>
+<dt>Returns:</dt>
+<dd>
+a tuple of the commandline parameters and non default parameters
+            (list of strings, dictionary)
+</dd>
+</dl><a NAME="CxfreezeConfigDialog.on_extListFileButton_clicked" ID="CxfreezeConfigDialog.on_extListFileButton_clicked"></a>
+<h4>CxfreezeConfigDialog.on_extListFileButton_clicked</h4>
+<b>on_extListFileButton_clicked</b>(<i></i>)
+<p>
+        Private slot to select the external list file.
+</p><p>
+        It displays a file selection dialog to select the external list file,
+        the list of include modules is written to.
+</p><a NAME="CxfreezeConfigDialog.on_targetDirButton_clicked" ID="CxfreezeConfigDialog.on_targetDirButton_clicked"></a>
+<h4>CxfreezeConfigDialog.on_targetDirButton_clicked</h4>
+<b>on_targetDirButton_clicked</b>(<i></i>)
+<p>
+        Private slot to select the target directory.
+</p><p>
+        It displays a directory selection dialog to
+        select the directory the files are written to.
+</p>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/Documentation/source/Plugin_Packager_CxFreeze.CxFreeze.CxfreezeExecDialog.html	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,147 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
+'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
+<html><head>
+<title>Plugin_Packager_CxFreeze.CxFreeze.CxfreezeExecDialog</title>
+<style>
+body {
+    background:white;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #4FA4FF; }
+h2 { color: white; background: #4FA4FF; }
+h3 { color: white; background: #00557F; }
+h4 { color: white; background: #00557F; }
+    
+a { color: #AA5500; }
+
+</style>
+</head>
+<body><a NAME="top" ID="top"></a>
+<h1>Plugin_Packager_CxFreeze.CxFreeze.CxfreezeExecDialog</h1>
+<p>
+Module implementing a dialog to show the output of the packager process.
+</p>
+<h3>Global Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+<table>
+<tr>
+<td><a href="#CxfreezeExecDialog">CxfreezeExecDialog</a></td>
+<td>Module implementing a dialog to show the output of the cxfreeze process.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr /><hr />
+<a NAME="CxfreezeExecDialog" ID="CxfreezeExecDialog"></a>
+<h2>CxfreezeExecDialog</h2>
+<p>
+    Module implementing a dialog to show the output of the cxfreeze process.
+</p><p>
+    This class starts a QProcess and displays a dialog that
+    shows the output of the packager command process.
+</p>
+<h3>Derived from</h3>
+QDialog, Ui_CxfreezeExecDialog
+<h3>Class Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#CxfreezeExecDialog.__init__">CxfreezeExecDialog</a></td>
+<td>Constructor</td>
+</tr><tr>
+<td><a href="#CxfreezeExecDialog.__finish">__finish</a></td>
+<td>Private slot called when the process finished.</td>
+</tr><tr>
+<td><a href="#CxfreezeExecDialog.__readStderr">__readStderr</a></td>
+<td>Private slot to handle the readyReadStandardError signal.</td>
+</tr><tr>
+<td><a href="#CxfreezeExecDialog.__readStdout">__readStdout</a></td>
+<td>Private slot to handle the readyReadStandardOutput signal.</td>
+</tr><tr>
+<td><a href="#CxfreezeExecDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
+<td>Private slot called by a button of the button box clicked.</td>
+</tr><tr>
+<td><a href="#CxfreezeExecDialog.start">start</a></td>
+<td>Public slot to start the packager command.</td>
+</tr>
+</table>
+<a NAME="CxfreezeExecDialog.__init__" ID="CxfreezeExecDialog.__init__"></a>
+<h4>CxfreezeExecDialog (Constructor)</h4>
+<b>CxfreezeExecDialog</b>(<i>cmdname, parent = None</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>cmdname</i></dt>
+<dd>
+name of the packager (string)
+</dd><dt><i>parent</i></dt>
+<dd>
+parent widget of this dialog (QWidget)
+</dd>
+</dl><a NAME="CxfreezeExecDialog.__finish" ID="CxfreezeExecDialog.__finish"></a>
+<h4>CxfreezeExecDialog.__finish</h4>
+<b>__finish</b>(<i></i>)
+<p>
+        Private slot called when the process finished.
+</p><p>
+        It is called when the process finished or
+        the user pressed the cancel button.
+</p><a NAME="CxfreezeExecDialog.__readStderr" ID="CxfreezeExecDialog.__readStderr"></a>
+<h4>CxfreezeExecDialog.__readStderr</h4>
+<b>__readStderr</b>(<i></i>)
+<p>
+        Private slot to handle the readyReadStandardError signal. 
+</p><p>
+        It reads the error output of the process and inserts it into the
+        error pane.
+</p><a NAME="CxfreezeExecDialog.__readStdout" ID="CxfreezeExecDialog.__readStdout"></a>
+<h4>CxfreezeExecDialog.__readStdout</h4>
+<b>__readStdout</b>(<i></i>)
+<p>
+        Private slot to handle the readyReadStandardOutput signal. 
+</p><p>
+        It reads the output of the process, formats it and inserts it into
+        the contents pane.
+</p><a NAME="CxfreezeExecDialog.on_buttonBox_clicked" ID="CxfreezeExecDialog.on_buttonBox_clicked"></a>
+<h4>CxfreezeExecDialog.on_buttonBox_clicked</h4>
+<b>on_buttonBox_clicked</b>(<i>button</i>)
+<p>
+        Private slot called by a button of the button box clicked.
+</p><dl>
+<dt><i>button</i></dt>
+<dd>
+button that was clicked (QAbstractButton)
+</dd>
+</dl><a NAME="CxfreezeExecDialog.start" ID="CxfreezeExecDialog.start"></a>
+<h4>CxfreezeExecDialog.start</h4>
+<b>start</b>(<i>args, script</i>)
+<p>
+        Public slot to start the packager command.
+</p><dl>
+<dt><i>args</i></dt>
+<dd>
+commandline arguments for packager program (list of strings)
+</dd><dt><i>script</i></dt>
+<dd>
+main script name to be processed by by the packager (string)
+</dd>
+</dl><dl>
+<dt>Returns:</dt>
+<dd>
+flag indicating the successful start of the process
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/Documentation/source/Plugin_Packager_CxFreeze.PluginCxFreeze.html	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,168 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
+'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
+<html><head>
+<title>Plugin_Packager_CxFreeze.PluginCxFreeze</title>
+<style>
+body {
+    background:white;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #4FA4FF; }
+h2 { color: white; background: #4FA4FF; }
+h3 { color: white; background: #00557F; }
+h4 { color: white; background: #00557F; }
+    
+a { color: #AA5500; }
+
+</style>
+</head>
+<body><a NAME="top" ID="top"></a>
+<h1>Plugin_Packager_CxFreeze.PluginCxFreeze</h1>
+<p>
+Module implementing the CxFreeze plugin.
+</p>
+<h3>Global Attributes</h3>
+<table>
+<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr>
+</table>
+<h3>Classes</h3>
+<table>
+<tr>
+<td><a href="#CxFreezePlugin">CxFreezePlugin</a></td>
+<td>Class implementing the CxFreeze plugin.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+<table>
+<tr>
+<td><a href="#_checkProgram">_checkProgram</a></td>
+<td>Restricted function to check the availability of cxfreeze.</td>
+</tr><tr>
+<td><a href="#_findExecutable">_findExecutable</a></td>
+<td>Restricted function to determine the name of the executable.</td>
+</tr><tr>
+<td><a href="#exeDisplayData">exeDisplayData</a></td>
+<td>Public method to support the display of some executable info.</td>
+</tr>
+</table>
+<hr /><hr />
+<a NAME="CxFreezePlugin" ID="CxFreezePlugin"></a>
+<h2>CxFreezePlugin</h2>
+<p>
+    Class implementing the CxFreeze plugin.
+</p>
+<h3>Derived from</h3>
+QObject
+<h3>Class Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#CxFreezePlugin.__init__">CxFreezePlugin</a></td>
+<td>Constructor</td>
+</tr><tr>
+<td><a href="#CxFreezePlugin.__cxfreeze">__cxfreeze</a></td>
+<td>Private slot to handle the cxfreeze execution.</td>
+</tr><tr>
+<td><a href="#CxFreezePlugin.__initialize">__initialize</a></td>
+<td>Private slot to (re)initialize the plugin.</td>
+</tr><tr>
+<td><a href="#CxFreezePlugin.__loadTranslator">__loadTranslator</a></td>
+<td>Private method to load the translation file.</td>
+</tr><tr>
+<td><a href="#CxFreezePlugin.activate">activate</a></td>
+<td>Public method to activate this plugin.</td>
+</tr><tr>
+<td><a href="#CxFreezePlugin.deactivate">deactivate</a></td>
+<td>Public method to deactivate this plugin.</td>
+</tr>
+</table>
+<a NAME="CxFreezePlugin.__init__" ID="CxFreezePlugin.__init__"></a>
+<h4>CxFreezePlugin (Constructor)</h4>
+<b>CxFreezePlugin</b>(<i>ui</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>ui</i></dt>
+<dd>
+reference to the user interface object (UI.UserInterface)
+</dd>
+</dl><a NAME="CxFreezePlugin.__cxfreeze" ID="CxFreezePlugin.__cxfreeze"></a>
+<h4>CxFreezePlugin.__cxfreeze</h4>
+<b>__cxfreeze</b>(<i></i>)
+<p>
+        Private slot to handle the cxfreeze execution.
+</p><a NAME="CxFreezePlugin.__initialize" ID="CxFreezePlugin.__initialize"></a>
+<h4>CxFreezePlugin.__initialize</h4>
+<b>__initialize</b>(<i></i>)
+<p>
+        Private slot to (re)initialize the plugin.
+</p><a NAME="CxFreezePlugin.__loadTranslator" ID="CxFreezePlugin.__loadTranslator"></a>
+<h4>CxFreezePlugin.__loadTranslator</h4>
+<b>__loadTranslator</b>(<i></i>)
+<p>
+        Private method to load the translation file.
+</p><a NAME="CxFreezePlugin.activate" ID="CxFreezePlugin.activate"></a>
+<h4>CxFreezePlugin.activate</h4>
+<b>activate</b>(<i></i>)
+<p>
+        Public method to activate this plugin.
+</p><dl>
+<dt>Returns:</dt>
+<dd>
+tuple of None and activation status (boolean)
+</dd>
+</dl><a NAME="CxFreezePlugin.deactivate" ID="CxFreezePlugin.deactivate"></a>
+<h4>CxFreezePlugin.deactivate</h4>
+<b>deactivate</b>(<i></i>)
+<p>
+        Public method to deactivate this plugin.
+</p>
+<div align="right"><a href="#top">Up</a></div>
+<hr /><hr />
+<a NAME="_checkProgram" ID="_checkProgram"></a>
+<h2>_checkProgram</h2>
+<b>_checkProgram</b>(<i></i>)
+<p>
+    Restricted function to check the availability of cxfreeze.
+</p><dl>
+<dt>Returns:</dt>
+<dd>
+flag indicating availability (boolean)
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr /><hr />
+<a NAME="_findExecutable" ID="_findExecutable"></a>
+<h2>_findExecutable</h2>
+<b>_findExecutable</b>(<i></i>)
+<p>
+    Restricted function to determine the name of the executable.
+</p><dl>
+<dt>Returns:</dt>
+<dd>
+name of the executable (string)
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr /><hr />
+<a NAME="exeDisplayData" ID="exeDisplayData"></a>
+<h2>exeDisplayData</h2>
+<b>exeDisplayData</b>(<i></i>)
+<p>
+    Public method to support the display of some executable info.
+</p><dl>
+<dt>Returns:</dt>
+<dd>
+dictionary containing the data to query the presence of
+        the executable
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/Documentation/source/index-Plugin_Packager_CxFreeze.CxFreeze.html	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
+'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
+<html><head>
+<title>Plugin_Packager_CxFreeze.CxFreeze</title>
+<style>
+body {
+    background:white;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #4FA4FF; }
+h2 { color: white; background: #4FA4FF; }
+h3 { color: white; background: #00557F; }
+h4 { color: white; background: #00557F; }
+    
+a { color: #AA5500; }
+
+</style>
+</head>
+<body>
+<h1>Plugin_Packager_CxFreeze.CxFreeze</h1>
+<p>
+Package containing the CxFreeze packager plugin.
+</p>
+
+
+<h3>Modules</h3>
+<table>
+<tr>
+<td><a href="Plugin_Packager_CxFreeze.CxFreeze.CxfreezeConfigDialog.html">CxfreezeConfigDialog</a></td>
+<td>Module implementing a dialog to enter the parameters for cxfreeze.</td>
+</tr><tr>
+<td><a href="Plugin_Packager_CxFreeze.CxFreeze.CxfreezeExecDialog.html">CxfreezeExecDialog</a></td>
+<td>Module implementing a dialog to show the output of the packager process.</td>
+</tr>
+</table>
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/Documentation/source/index-Plugin_Packager_CxFreeze.html	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
+'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
+<html><head>
+<title>Plugin_Packager_CxFreeze</title>
+<style>
+body {
+    background:white;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #4FA4FF; }
+h2 { color: white; background: #4FA4FF; }
+h3 { color: white; background: #00557F; }
+h4 { color: white; background: #00557F; }
+    
+a { color: #AA5500; }
+
+</style>
+</head>
+<body>
+<h1>Plugin_Packager_CxFreeze</h1>
+<p>
+Package containing the CxFreeze packager plugin.
+</p>
+
+<h3>Packages</h3>
+<table>
+<tr>
+<td><a href="index-Plugin_Packager_CxFreeze.CxFreeze.html">CxFreeze</a></td>
+<td>Package containing the CxFreeze packager plugin.</td>
+</tr>
+</table>
+
+<h3>Modules</h3>
+<table>
+<tr>
+<td><a href="Plugin_Packager_CxFreeze.PluginCxFreeze.html">PluginCxFreeze</a></td>
+<td>Module implementing the CxFreeze plugin.</td>
+</tr>
+</table>
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/Documentation/source/index.html	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
+'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
+<html><head>
+<title>Table of contents</title>
+<style>
+body {
+    background:white;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #4FA4FF; }
+h2 { color: white; background: #4FA4FF; }
+h3 { color: white; background: #00557F; }
+h4 { color: white; background: #00557F; }
+    
+a { color: #AA5500; }
+
+</style>
+</head>
+<body>
+<h1>Table of contents</h1>
+
+
+<h3>Packages</h3>
+<table>
+<tr>
+<td><a href="index-Plugin_Packager_CxFreeze.html">Plugin_Packager_CxFreeze</a></td>
+<td>Package containing the CxFreeze packager plugin.</td>
+</tr>
+</table>
+
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/__init__.py	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2010 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Package containing the CxFreeze packager plugin.
+"""
Binary file CxFreeze/i18n/cxfreeze_cs.qm has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/i18n/cxfreeze_cs.ts	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,378 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="cs_CZ">
+<context>
+    <name>CxFreezePlugin</name>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_Freeze</source>
+        <translation type="obsolete">Použít cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_&amp;Freeze</source>
+        <translation type="obsolete">Použít cx_&amp;Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="151"/>
+        <source>Generate a distribution package using cx_Freeze</source>
+        <translation type="obsolete">Generovat distribuční balíček za použití cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="153"/>
+        <source>&lt;b&gt;Use cx_Freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_Freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation type="obsolete">&lt;b&gt;Použít cx_Freeze&lt;/b&gt;&lt;p&gt;Generování distribučního balíčku za použití cx_Freeze. Příkaz je vykonán v cestě projektu. Všechny soubory a adresáře musí být zadány absolutně nebo relativně vůči adresáři projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="50"/>
+        <source>Packagers - cx_freeze</source>
+        <translation>Balíčkovače - cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="196"/>
+        <source>There is no main script defined for the current project.</source>
+        <translation>V aktuálním projektu není definován hlavní skript.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>The cxfreeze executable could not be found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>cxfreeze</source>
+        <translation>cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_freeze</source>
+        <translation>Použít cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_&amp;freeze</source>
+        <translation>Použít cx_&amp;freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="142"/>
+        <source>Generate a distribution package using cx_freeze</source>
+        <translation>Generovat distribuční balíček za použití cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="144"/>
+        <source>&lt;b&gt;Use cx_freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Použít cx_freeze&lt;/b&gt;&lt;p&gt;Generování distribučního balíčku za použití cx_freeze. Příkaz je vykonán v cestě projektu. Všechny soubory a adresáře musí být zadány absolutně nebo relativně vůči adresáři projektu.&lt;/p&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeConfigDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="14"/>
+        <source>Cxfreeze Configuration</source>
+        <translation>Cxfreeze konfigurace</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="17"/>
+        <source>&lt;b&gt;Cxfreeze Configuration&lt;/b&gt;
+&lt;p&gt;This dialog is used to configure the cxfreeze (FreezePython) process in order to create a distribution package for the project.&lt;/p&gt;
+&lt;p&gt;All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Cxfreeze konfigurace&lt;/b&gt;&lt;p&gt;Tento dialog se používá na konfiguraci cxfreeze (FreezePython) procesu, který vytváří distribuční balíček projektu.&lt;/p&gt;
+&lt;p&gt;Všechny soubory a adresáře musí být zadány v absolutní cestě nebo relativní vůči adresáři projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="38"/>
+        <source>&amp;General</source>
+        <translation>&amp;Hlavní</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="188"/>
+        <source>Select to optimize generated bytecode</source>
+        <translation>Zatrhněte pro optimalizaci generovaného bytekódu</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="191"/>
+        <source>Optimize bytecode</source>
+        <translation>Oprimalizovat bytekód</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="203"/>
+        <source>Don&apos;t optimize</source>
+        <translation>Neoptimalizovat</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="210"/>
+        <source>Select to optimize the generated bytecode</source>
+        <translation>Zatrhněte pro optimalizaci generovaného bytekódu</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="213"/>
+        <source>Optimize</source>
+        <translation>Optimalizovat</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="220"/>
+        <source>Select to optimize the generated bytecode and remove doc strings</source>
+        <translation>Zatrhněte pro optimalizaci generovaného bytekódu a odebrání doc stringů</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="223"/>
+        <source>Optimize (with docstring removal)</source>
+        <translation>Optimalizovat (s odebráním doc stringů)</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="153"/>
+        <source>Select to disable copying of dependent files to the target directory</source>
+        <translation>Zatrhněte pro zákaz kopírování souborů, na kterých je aplikace závislá, do cílového adresáře</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="156"/>
+        <source>Do not copy dependant files</source>
+        <translation>Nekopírovat soubory, na kterých je aplikace závislá</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="44"/>
+        <source>Target directory:</source>
+        <translation>Cílový adresář:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="51"/>
+        <source>Enter the name of the target directory</source>
+        <translation>Zadejte jméno cílového adresáře</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="54"/>
+        <source>&lt;p&gt;Enter the name of the directory in which to place the target file and any dependant files.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Zadání jména adresáře, do kterého budou umístěny cílové soubory a soubory, na kterých jsou závislé.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="75"/>
+        <source>Enter the name of the file to create</source>
+        <translation>Zadejte jméno souboru, který se má vytvořit</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="78"/>
+        <source>&lt;p&gt;Enter the name of the file to create instead of the base name of the script and the extension of the base binary.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Zadání jméno souboru, který se vytvoří místo bázového jména skriptu, a extenzi bázové binárky.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="68"/>
+        <source>Target name:</source>
+        <translation>Cílové jméno:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="348"/>
+        <source>...</source>
+        <translation>...</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="118"/>
+        <source>Enter name of script which will be executed upon startup</source>
+        <translation>Zadejte jméno skriptu, který bude vykonán při spuštění</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="92"/>
+        <source>Enter the name of a file on which to base the target file</source>
+        <translation>Zadejte jméno souboru, ve kterém je báze cílového souboru</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="111"/>
+        <source>Init script:</source>
+        <translation>Init skript:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="85"/>
+        <source>Base name:</source>
+        <translation>Jméno báze:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="234"/>
+        <source>&amp;Advanced</source>
+        <translation>&amp;Rozšířený</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="204"/>
+        <source>Shared library name:</source>
+        <translation type="obsolete">Jméno společné knihovny:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="205"/>
+        <source>Enter the name of the shared library implementing the Python runtime</source>
+        <translation type="obsolete">Zadejte jméno společné knihovny (shared library) implementující Python runtime</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="252"/>
+        <source>Default path</source>
+        <translation>Defaultní cesta</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="259"/>
+        <source>Enter directories to initialize sys.path</source>
+        <translation>Zadejte adresáře pro inicializaci sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="262"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to initialize sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Zadání seznamu cest oddělených standardním oddělovačem cesty, který bude použit pro inicializaci sys.path před tím, než bude spuštěn module finder.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="269"/>
+        <source>Enter directories to modify sys.path</source>
+        <translation>Zadejte adresáře pro úpravu sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="272"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to modify sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Zadání seznamu cest oddělených standardním oddělovačem cesty, který bude použit pro inicializaci sys.path před tím, než bude spuštěn module finder.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="279"/>
+        <source>Include path</source>
+        <translation>Vložit cestu</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="286"/>
+        <source>Replace paths:</source>
+        <translation>Nahradit cesty:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="293"/>
+        <source>Enter replacement directives</source>
+        <translation>Zadání direktiv nahrazení</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="296"/>
+        <source>&lt;p&gt;Enter replacement directives used to replace all the paths in modules found. Please see cx_Freeze docu for details.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Zadání direktiv nahrazení se používá k nahrazení všech cest, které byly v modulu nalezeny. Detail naleznete v cx_Freeze dokumentaci.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="303"/>
+        <source>Include modules:</source>
+        <translation>Vložit moduly:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="310"/>
+        <source>Enter a comma separated list of modules to include</source>
+        <translation>Zadejte seznam jmen modulů oddělený čárkami určený pro vložení</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="317"/>
+        <source>Exclude modules:</source>
+        <translation>Nevkládat moduly:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="324"/>
+        <source>Enter a comma separated list of modules to exclude</source>
+        <translation>Zadejte seznam jmen modulů oddělený čárkami, který se nebude vkládat</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="219"/>
+        <source>Press to select the Python shared library via a file selection dialog</source>
+        <translation type="obsolete">Stiskněte pro výběr Python společné knihovny přes dialog výběru souborů</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="345"/>
+        <source>Press to select the external list file via a file selection dialog</source>
+        <translation>Stiskněte pro výběr externího seznamu souborů přes dialog výběru souborů</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="331"/>
+        <source>Enter the name of a file in which to place the list of included modules</source>
+        <translation>Zadejte jméno souboru, který má být umístěn do seznamu vkládaných modulů</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="338"/>
+        <source>External list file:</source>
+        <translation>Externí seznam souborů:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="230"/>
+        <source>Select target directory</source>
+        <translation>Výběr cílového adresáře</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="243"/>
+        <source>Select Python shared library</source>
+        <translation type="obsolete">Výběr Python společné knihovny</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="210"/>
+        <source>Select external list file</source>
+        <translation>Výběr externího seznamu souborů</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="137"/>
+        <source>Application icon:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="144"/>
+        <source>Enter the name of the application icon.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="163"/>
+        <source>Select to compress the byte code in zip files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="166"/>
+        <source>Compress Byte Code</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeExecDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="14"/>
+        <source>Cxfreeze</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="41"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the output of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Provedení balíčkovače&lt;/b&gt;
+&lt;p&gt;Zobrazuje se výstup z příkazu balíčkovače.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="70"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the errors of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Provedení balíčkovače&lt;/b&gt;&lt;p&gt;Zobrazuje se výstup z příkazu balíčkovače.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="72"/>
+        <source>{0} - {1}</source>
+        <translation>{0} - {1}</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>Process Generation Error</source>
+        <translation>Chyba v procesu generování</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+        <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="118"/>
+        <source>
+{0} finished.
+</source>
+        <translation>
+{0} hotovo.
+</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="29"/>
+        <source>Messages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="58"/>
+        <source>Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
Binary file CxFreeze/i18n/cxfreeze_de.qm has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/i18n/cxfreeze_de.ts	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,339 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS><TS version="1.1" language="de">
+<context>
+    <name>CxFreezePlugin</name>
+    <message>
+        <location filename="PluginCxFreeze.py" line="50"/>
+        <source>Packagers - cx_freeze</source>
+        <translation>Paketierer - cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="196"/>
+        <source>There is no main script defined for the current project.</source>
+        <translation>Für das Projekt ist kein Hauptskript festgelegt.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>The cxfreeze executable could not be found.</source>
+        <translation>Das cxfreeze Programm konnte nicht gefunden werden.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>cxfreeze</source>
+        <translation>cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_freeze</source>
+        <translation>Benutze cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_&amp;freeze</source>
+        <translation>Benutze cx_&amp;freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="142"/>
+        <source>Generate a distribution package using cx_freeze</source>
+        <translation>Erzeuge ein Distributionspaket mittels cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="144"/>
+        <source>&lt;b&gt;Use cx_freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Benutze cx_freeze&lt;/b&gt;&lt;p&gt;Erzeuge ein Distributionspaket mittels cx_freeze. Der Befehl wird im Projektverzeichnis ausgeführt. Alle Datei- und Verzeichnisnamen müssen absolut oder relativ zum Projektverzeichnis angegeben werden.&lt;/p&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeConfigDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="230"/>
+        <source>Select target directory</source>
+        <translation>Wähle das Zielverzeichnis</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="210"/>
+        <source>Select external list file</source>
+        <translation>Wähle die externe Listendatei</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="14"/>
+        <source>Cxfreeze Configuration</source>
+        <translation>Cxfreeze Konfiguration</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="17"/>
+        <source>&lt;b&gt;Cxfreeze Configuration&lt;/b&gt;
+&lt;p&gt;This dialog is used to configure the cxfreeze (FreezePython) process in order to create a distribution package for the project.&lt;/p&gt;
+&lt;p&gt;All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Cxfreeze Konfiguration&lt;/b&gt;
+&lt;p&gt;Dieser Dialog wird benutzt, um den cxfreeze (FreezePython) Prozess für die Herstellung eines Distributionspaketes zu konfigurieren.&lt;/p&gt;
+&lt;p&gt;Alle Dateien und Verzeichnisse müssen absolut oder relativ zum Projektverzeichnis angegeben werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="38"/>
+        <source>&amp;General</source>
+        <translation>All&amp;gemein</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="188"/>
+        <source>Select to optimize generated bytecode</source>
+        <translation>Auswählen, um den erzeugten Bytecode zu optimieren</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="191"/>
+        <source>Optimize bytecode</source>
+        <translation>Bytecode optimieren</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="203"/>
+        <source>Don&apos;t optimize</source>
+        <translation>Nicht optimieren</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="210"/>
+        <source>Select to optimize the generated bytecode</source>
+        <translation>Auswählen, um den erzeugten Bytecode zu optimieren</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="213"/>
+        <source>Optimize</source>
+        <translation>Optimieren</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="220"/>
+        <source>Select to optimize the generated bytecode and remove doc strings</source>
+        <translation>Auswählen, um den erzeugten Bytecode zu optimieren und Docstrings zu entfernen</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="223"/>
+        <source>Optimize (with docstring removal)</source>
+        <translation>Optimieren (Docstrings entfernen)</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="153"/>
+        <source>Select to disable copying of dependent files to the target directory</source>
+        <translation>Auswählen, um das Kopieren der abhängigen Dateien in das Zielverzeichnis abzuschalten</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="156"/>
+        <source>Do not copy dependant files</source>
+        <translation>Abhängige Dateien nicht kopieren</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="44"/>
+        <source>Target directory:</source>
+        <translation>Zielverzeichnis:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="51"/>
+        <source>Enter the name of the target directory</source>
+        <translation>Gib den Namen des Zielverzeichnisses ein</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="54"/>
+        <source>&lt;p&gt;Enter the name of the directory in which to place the target file and any dependant files.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Gib den Namen des Verzeichnisses an, in das die Zieldatei und alle abhängigen Dateien kopiert werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="75"/>
+        <source>Enter the name of the file to create</source>
+        <translation>Gib den Namen der zu erzeugenden Datei an</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="78"/>
+        <source>&lt;p&gt;Enter the name of the file to create instead of the base name of the script and the extension of the base binary.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Gib den Namen der zu erzeugenden Datei an. Dieser wird anstelle des Basisnamens des Skriptes und der Erweiterung des Basisexecutables verwendet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="68"/>
+        <source>Target name:</source>
+        <translation>Zielname:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="348"/>
+        <source>...</source>
+        <translation>...</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="118"/>
+        <source>Enter name of script which will be executed upon startup</source>
+        <translation>Gib den Namen eines Skriptes an, das beim Start ausgeführt wird</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="92"/>
+        <source>Enter the name of a file on which to base the target file</source>
+        <translation>Gib den Namen einer Datei an, auf der die Zieldatei basiert</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="111"/>
+        <source>Init script:</source>
+        <translation>Init-Skript:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="85"/>
+        <source>Base name:</source>
+        <translation>Basisname:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="234"/>
+        <source>&amp;Advanced</source>
+        <translation>&amp;Spezielles</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="252"/>
+        <source>Default path</source>
+        <translation>Standarpfad</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="259"/>
+        <source>Enter directories to initialize sys.path</source>
+        <translation>Gib die Verzeichnisse zur Initialisierung von sys.path ein</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="262"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to initialize sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Gib eine Liste von Verzeichnissen getrennt durch den standard Pfadtrenner ein. Diese werden verwendet, um sys.path vor der Ausführung des Modulfinders zu initialisieren.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="269"/>
+        <source>Enter directories to modify sys.path</source>
+        <translation>Gib die Verzeichnisse zur Modifizierung von sys.path ein</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="272"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to modify sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Gib eine Liste von Verzeichnissen getrennt durch den standard Pfadtrenner ein. Diese werden verwendet, um sys.path vor der Ausführung des Modulfinders zu modifizieren.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="279"/>
+        <source>Include path</source>
+        <translation>Include Pfad</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="286"/>
+        <source>Replace paths:</source>
+        <translation>Pfadersetzungen:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="293"/>
+        <source>Enter replacement directives</source>
+        <translation>Gib Ersetzungsregeln ein</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="296"/>
+        <source>&lt;p&gt;Enter replacement directives used to replace all the paths in modules found. Please see cx_Freeze docu for details.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Gib Ersetzungsregeln ein, die benutzt werden, um Pfade in gefundenen Modulen zu ersetzen. Siehe die cx_Freeze Dokumentation für Details.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="303"/>
+        <source>Include modules:</source>
+        <translation>Module einbinden:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="310"/>
+        <source>Enter a comma separated list of modules to include</source>
+        <translation>Gib eine durch Komma getrennte Liste von einzubindenden Modulen ein</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="317"/>
+        <source>Exclude modules:</source>
+        <translation>Module ausschließen:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="324"/>
+        <source>Enter a comma separated list of modules to exclude</source>
+        <translation>Gib eine durch Komma getrennte Liste von auszuschließenden Modulen ein</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="345"/>
+        <source>Press to select the external list file via a file selection dialog</source>
+        <translation>Drücken, um die externe Listendatei mit einem Dateiauswahldialog auszuwählen</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="331"/>
+        <source>Enter the name of a file in which to place the list of included modules</source>
+        <translation>Gib den Namen einer Datei ein, in die die Liste der eingebundenen Module geschrieben wird</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="338"/>
+        <source>External list file:</source>
+        <translation>Externe Listendatei:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="137"/>
+        <source>Application icon:</source>
+        <translation>Anwendungs Icon:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="144"/>
+        <source>Enter the name of the application icon.</source>
+        <translation>Gib den Namen des Anwendungs-Icons an.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="163"/>
+        <source>Select to compress the byte code in zip files</source>
+        <translation>Auswählen, um den Bytecode in zip-Dateien zu komprimieren</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="166"/>
+        <source>Compress Byte Code</source>
+        <translation>Bytecode komprimieren</translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeExecDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="14"/>
+        <source>Cxfreeze</source>
+        <translation>Cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="41"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the output of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Packetierer Ausführung&lt;/b&gt;
+&lt;p&gt;Dies zeigt die Ausgabe des Paketierer Befehls.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="70"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the errors of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Packetierer Ausführung&lt;/b&gt;
+&lt;p&gt;Dies zeigt die Fehler des Paketierer Befehls.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="72"/>
+        <source>{0} - {1}</source>
+        <translation>{0} - {1}</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>Process Generation Error</source>
+        <translation>Fehler beim Prozessstart</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+        <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="118"/>
+        <source>
+{0} finished.
+</source>
+        <translation>
+{0} ist beendet.
+</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="29"/>
+        <source>Messages</source>
+        <translation>Meldungen</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="58"/>
+        <source>Errors</source>
+        <translation>Fehler</translation>
+    </message>
+</context>
+</TS>
Binary file CxFreeze/i18n/cxfreeze_es.qm has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/i18n/cxfreeze_es.ts	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,378 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="es">
+<context>
+    <name>CxFreezePlugin</name>
+    <message>
+        <location filename="PluginCxFreeze.py" line="50"/>
+        <source>Packagers - cx_freeze</source>
+        <translation>Empaquetadores - cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_Freeze</source>
+        <translation type="obsolete">Usar cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_&amp;Freeze</source>
+        <translation type="obsolete">Usar cx_&amp;Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="151"/>
+        <source>Generate a distribution package using cx_Freeze</source>
+        <translation type="obsolete">Generar un paquete de distribución utilizando cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="153"/>
+        <source>&lt;b&gt;Use cx_Freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_Freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation type="obsolete">&lt;b&gt;Usar cx_Freeze&lt;/b&gt;&lt;p&gt;Generar un paquete de distribución utilizando cx_Freeze. El comando se ejecuta en la ruta del proyecto. Todos los archivos y directorios deben ser proporcionados de forma absoluta o relativa al directorio del proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="196"/>
+        <source>There is no main script defined for the current project.</source>
+        <translation>No hay script principal definido para el proyecto actual.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>The cxfreeze executable could not be found.</source>
+        <translation>No se ha podido encontrar el ejecutable de cxfreeze.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>cxfreeze</source>
+        <translation>cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_freeze</source>
+        <translation>Usar cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_&amp;freeze</source>
+        <translation>Usar cx_&amp;freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="142"/>
+        <source>Generate a distribution package using cx_freeze</source>
+        <translation>Generar un paquete de distribución utilizando cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="144"/>
+        <source>&lt;b&gt;Use cx_freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Usar cx_freeze&lt;/b&gt;&lt;p&gt;Generar un paquete de distribución utilizando cx_freeze. El comando se ejecuta en la ruta del proyecto. Todos los archivos y directorios deben ser proporcionados de forma absoluta o relativa al directorio del proyecto.&lt;/p&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeConfigDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="14"/>
+        <source>Cxfreeze Configuration</source>
+        <translation>Configuración de Cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="17"/>
+        <source>&lt;b&gt;Cxfreeze Configuration&lt;/b&gt;
+&lt;p&gt;This dialog is used to configure the cxfreeze (FreezePython) process in order to create a distribution package for the project.&lt;/p&gt;
+&lt;p&gt;All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Configuración de Cxfreeze&lt;/b&gt;
+&lt;p&gt;Este diálogo se utiliza para configurar el proceso cxfreeze (FreezePython) para crear paquetes de distribución para el proyecto.&lt;/p&gt;
+&lt;p&gt;Todos los archivos y directorios deben ser proporcionados de forma absoluta o relativa al directorio del proyecto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="38"/>
+        <source>&amp;General</source>
+        <translation>&amp;General</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="188"/>
+        <source>Select to optimize generated bytecode</source>
+        <translation>Seleccionar para optimizar el bytecode generado</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="191"/>
+        <source>Optimize bytecode</source>
+        <translation>Optimizar bytecode</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="203"/>
+        <source>Don&apos;t optimize</source>
+        <translation>No optimizar</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="210"/>
+        <source>Select to optimize the generated bytecode</source>
+        <translation>Seleccionar para optimizar el bytecode generado</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="213"/>
+        <source>Optimize</source>
+        <translation>Optimizar</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="220"/>
+        <source>Select to optimize the generated bytecode and remove doc strings</source>
+        <translation>Seleccionar para optimizar el bytecode generado y eliminar cadenas de documentación</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="223"/>
+        <source>Optimize (with docstring removal)</source>
+        <translation>Optimizar (con eliminación de cadenas de documentación)</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="153"/>
+        <source>Select to disable copying of dependent files to the target directory</source>
+        <translation>Seleccionar para deshabilitar el copiado de archivos dependientes al directorio de destino</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="156"/>
+        <source>Do not copy dependant files</source>
+        <translation>No copiar archivos dependientes</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="44"/>
+        <source>Target directory:</source>
+        <translation>Directorio de destino:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="51"/>
+        <source>Enter the name of the target directory</source>
+        <translation>Introduzca el nombre del directorio de destino</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="54"/>
+        <source>&lt;p&gt;Enter the name of the directory in which to place the target file and any dependant files.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Introduzca el nombre del directorio en el cual se ubicará el archivo de destino y todos los archivos dependientes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="75"/>
+        <source>Enter the name of the file to create</source>
+        <translation>Introduzca el nombre del archivo a crear</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="78"/>
+        <source>&lt;p&gt;Enter the name of the file to create instead of the base name of the script and the extension of the base binary.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Introduzca el nombre del archivo a crear en lugar del nombre base del script y la extensión del binario base.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="68"/>
+        <source>Target name:</source>
+        <translation>Nombre de destino:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="348"/>
+        <source>...</source>
+        <translation>...</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="118"/>
+        <source>Enter name of script which will be executed upon startup</source>
+        <translation>Introduzca el nombre del script que se ejecutará al iniciar</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="92"/>
+        <source>Enter the name of a file on which to base the target file</source>
+        <translation>Introduzca el nombre del archivo en el que basar el archivo de destino</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="111"/>
+        <source>Init script:</source>
+        <translation>Script de inicio:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="85"/>
+        <source>Base name:</source>
+        <translation>Nombre base:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="234"/>
+        <source>&amp;Advanced</source>
+        <translation>&amp;Avanzado</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="208"/>
+        <source>Shared library name:</source>
+        <translation type="obsolete">Nombre de la biblioteca compartida:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="209"/>
+        <source>Enter the name of the shared library implementing the Python runtime</source>
+        <translation type="obsolete">Introduzca el nombre de la biblioteca compartida implementando el runtime de Python</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="252"/>
+        <source>Default path</source>
+        <translation>Ruta por defecto</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="259"/>
+        <source>Enter directories to initialize sys.path</source>
+        <translation>Introduzca los directorios para inicializar sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="262"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to initialize sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Introduzca una lista de rutas separadas por el separador estándar de rutas. Esta ruta se utilizará para inicializar sys.path antes de ejecutar el buscador de módulos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="269"/>
+        <source>Enter directories to modify sys.path</source>
+        <translation>Introduzca directorios para modificar sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="272"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to modify sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Introduzca una lista de rutas separadas por el separador estándar de rutas. Esta ruta se utilizará para modificar sys.path antes de ejecutar el buscador de módulos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="279"/>
+        <source>Include path</source>
+        <translation>Ruta de include</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="286"/>
+        <source>Replace paths:</source>
+        <translation>Rutas de reemplazamiento:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="293"/>
+        <source>Enter replacement directives</source>
+        <translation>Introduzca directivas de reemplazamiento</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="296"/>
+        <source>&lt;p&gt;Enter replacement directives used to replace all the paths in modules found. Please see cx_Freeze docu for details.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Introduzca las directivas de reemplazamiento utilizadas para sustituir todas las rutas en los módulos encontrados. Por favor vea la documentación de cx_Freeze para detalles.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="303"/>
+        <source>Include modules:</source>
+        <translation>Incluir módulos:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="310"/>
+        <source>Enter a comma separated list of modules to include</source>
+        <translation>Introduzca una lista de módulos a incluir separados por comas</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="317"/>
+        <source>Exclude modules:</source>
+        <translation>Excluir módulos:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="324"/>
+        <source>Enter a comma separated list of modules to exclude</source>
+        <translation>Introduzca una lista de módulos a excluir separados por comas</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="223"/>
+        <source>Press to select the Python shared library via a file selection dialog</source>
+        <translation type="obsolete">Pulse para seleccionar la biblioteca compartida de Python a través de un diálogo de selección de archivo</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="345"/>
+        <source>Press to select the external list file via a file selection dialog</source>
+        <translation>Pulse para seleccionar el archivo de lista externo a traves de un diálogo de selección de archivo</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="331"/>
+        <source>Enter the name of a file in which to place the list of included modules</source>
+        <translation>Introduzca el nombre de un archivo en el que ubicar la lista de módulos incluidos</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="338"/>
+        <source>External list file:</source>
+        <translation>Archivo de lista externo:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="230"/>
+        <source>Select target directory</source>
+        <translation>Seleccionar directorio de destino</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="243"/>
+        <source>Select Python shared library</source>
+        <translation type="obsolete">Seleccionar biblioteca compartida de Python</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="210"/>
+        <source>Select external list file</source>
+        <translation>Seleccionar archivo de lista externo</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="137"/>
+        <source>Application icon:</source>
+        <translation>Icono de la aplicación:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="144"/>
+        <source>Enter the name of the application icon.</source>
+        <translation>Introduzca el nombre del icono de la aplicación.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="163"/>
+        <source>Select to compress the byte code in zip files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="166"/>
+        <source>Compress Byte Code</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeExecDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="14"/>
+        <source>Cxfreeze</source>
+        <translation>Cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="41"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the output of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ejecución del empaquetador&lt;/b&gt;
+&lt;p&gt;Muestra la salida del comando del empaquetador.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="70"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the errors of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ejecución del empaquetador&lt;/b&gt;
+&lt;p&gt;Muestra los errores del comando del empaquetador.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="72"/>
+        <source>{0} - {1}</source>
+        <translation>{0} - {1}</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>Process Generation Error</source>
+        <translation>Error de Generación de Proceso</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+        <translation>El proceso {0} no pudo ser ejecutado. Asegúrese de que esta en la ruta de búsqueda.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="118"/>
+        <source>
+{0} finished.
+</source>
+        <translation>{0} ha terminado.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="29"/>
+        <source>Messages</source>
+        <translation>Mensajes</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="58"/>
+        <source>Errors</source>
+        <translation>Errores</translation>
+    </message>
+</context>
+</TS>
Binary file CxFreeze/i18n/cxfreeze_fr.qm has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/i18n/cxfreeze_fr.ts	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,380 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="fr">
+<context>
+    <name>CxFreezePlugin</name>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_Freeze</source>
+        <translation type="obsolete">Utiliser cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_&amp;Freeze</source>
+        <translation type="obsolete">Utiliser cx_&amp;Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="151"/>
+        <source>Generate a distribution package using cx_Freeze</source>
+        <translation type="obsolete">Générer un package de distribution en utilisant cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="153"/>
+        <source>&lt;b&gt;Use cx_Freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_Freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation type="obsolete">&lt;b&gt;Utiliser cx_Freeze&lt;/b&gt;&lt;p&gt;Générer un package de distribution en utilisant cx_Freeze. Cette commande est executée depuis le chemin du projet. Tous les fichiers et réperoires doivent être indiqués soit par un chemin absolu, soit par un chemin relatif au répertoire du projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="50"/>
+        <source>Packagers - cx_freeze</source>
+        <translation>Packageurs - cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="196"/>
+        <source>There is no main script defined for the current project.</source>
+        <translation>Il n&apos;y a pas de script principal défini dans le projet courant.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>The cxfreeze executable could not be found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>cxfreeze</source>
+        <translation>cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_freeze</source>
+        <translation>Utiliser cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_&amp;freeze</source>
+        <translation>Utiliser cx_&amp;freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="142"/>
+        <source>Generate a distribution package using cx_freeze</source>
+        <translation>Générer un package de distribution en utilisant cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="144"/>
+        <source>&lt;b&gt;Use cx_freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Utiliser cx_freeze&lt;/b&gt;&lt;p&gt;Générer un package de distribution en utilisant cx_freeze. Cette commande est executée depuis le chemin du projet. Tous les fichiers et réperoires doivent être indiqués soit par un chemin absolu, soit par un chemin relatif au répertoire du projet.&lt;/p&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeConfigDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="230"/>
+        <source>Select target directory</source>
+        <translation>Sélectionner un répertoire de destination</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="243"/>
+        <source>Select Python shared library</source>
+        <translation type="obsolete">Sélectionner la librairie partagée Python</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="210"/>
+        <source>Select external list file</source>
+        <translation>Sélectionner une liste externe de fichiers</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="14"/>
+        <source>Cxfreeze Configuration</source>
+        <translation>Configuration Cxfreeze </translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="17"/>
+        <source>&lt;b&gt;Cxfreeze Configuration&lt;/b&gt;
+&lt;p&gt;This dialog is used to configure the cxfreeze (FreezePython) process in order to create a distribution package for the project.&lt;/p&gt;
+&lt;p&gt;All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Configuration Cxfreeze&lt;/b&gt;
+&lt;p&gt;Cete fenêtre est utiliséee poutr configurer cxfreeze (FreezePython), qui permet de créer un package à partir du projet.&lt;/p&gt;
+&lt;p&gt;Tous les fichiers et répertoires doivent être indiqués avec un chemin absolu ou relatif par rapport au répertoire du projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="38"/>
+        <source>&amp;General</source>
+        <translation>&amp;Général</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="188"/>
+        <source>Select to optimize generated bytecode</source>
+        <translation>Sélectionner pour optimiser le bytecode généré</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="191"/>
+        <source>Optimize bytecode</source>
+        <translation>Optimiser le bytecode</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="203"/>
+        <source>Don&apos;t optimize</source>
+        <translation>Pas d&apos;optimisation</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="210"/>
+        <source>Select to optimize the generated bytecode</source>
+        <translation>Sélectionner pour optimiser le bytecode généré</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="213"/>
+        <source>Optimize</source>
+        <translation>Optimisation</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="220"/>
+        <source>Select to optimize the generated bytecode and remove doc strings</source>
+        <translation>Sélectionner pour optimiser le code généré et supprimer les docstrings</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="223"/>
+        <source>Optimize (with docstring removal)</source>
+        <translation>Optimiser (avec suppression des docstrings)</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="153"/>
+        <source>Select to disable copying of dependent files to the target directory</source>
+        <translation>Cocher pour ne pas copier les fichiers dépendants</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="156"/>
+        <source>Do not copy dependant files</source>
+        <translation>Ne pas copier les fichiers de dépendance</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="44"/>
+        <source>Target directory:</source>
+        <translation>Répertoire de destination:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="51"/>
+        <source>Enter the name of the target directory</source>
+        <translation>Entrer le nom du répertoire cible</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="54"/>
+        <source>&lt;p&gt;Enter the name of the directory in which to place the target file and any dependant files.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Entrer le nom du répertoire où ranger le fichier cible et tous les fichiers qui en dépendent.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="75"/>
+        <source>Enter the name of the file to create</source>
+        <translation>Entrer le nom du fichier à créer</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="78"/>
+        <source>&lt;p&gt;Enter the name of the file to create instead of the base name of the script and the extension of the base binary.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Entrer le nom du fichier binaire à créer. Le nom saisi remplace le nom par défaut composé du nom de base et de l&apos;extension standard des binaires.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="68"/>
+        <source>Target name:</source>
+        <translation>Nom de la cible:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="348"/>
+        <source>...</source>
+        <translation>...</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="118"/>
+        <source>Enter name of script which will be executed upon startup</source>
+        <translation>Entrer le nom du script qui doit être exécuté au démarrage</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="92"/>
+        <source>Enter the name of a file on which to base the target file</source>
+        <translation>Entrer le nom d&apos;un fichier sur lequel baser le fichier cible</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="111"/>
+        <source>Init script:</source>
+        <translation>Script de démarrage:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="85"/>
+        <source>Base name:</source>
+        <translation>Nom de base:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="234"/>
+        <source>&amp;Advanced</source>
+        <translation>A&amp;vancé</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="204"/>
+        <source>Shared library name:</source>
+        <translation type="obsolete">Nom de la librairie partagée:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="205"/>
+        <source>Enter the name of the shared library implementing the Python runtime</source>
+        <translation type="obsolete">Entrer le nom de la librairie partagée</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="252"/>
+        <source>Default path</source>
+        <translation>Chemin par défaut</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="259"/>
+        <source>Enter directories to initialize sys.path</source>
+        <translation>Entrer les répertoires par défaut pour initialiser sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="262"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to initialize sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Enter une liste de chemins  séparés par le séparateur de chemin standard. Elle sera utilisée pour initialiser sys.path avant de lancer le chercheur de modules.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="269"/>
+        <source>Enter directories to modify sys.path</source>
+        <translation>Entrer les répertoires pour modifier sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="272"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to modify sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Enter une liste de chemins  séparés par le séparateur de chemin standard. Elle sera utilisée pour modifier sys.path avant de lancer le chercheur de modules.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="279"/>
+        <source>Include path</source>
+        <translation>Chemins à inclure</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="286"/>
+        <source>Replace paths:</source>
+        <translation>Chemins de remplacement:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="293"/>
+        <source>Enter replacement directives</source>
+        <translation>Entrer les directives de remplacement</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="296"/>
+        <source>&lt;p&gt;Enter replacement directives used to replace all the paths in modules found. Please see cx_Freeze docu for details.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Entrer les directives de  remplacement utilisées pour remplacer tous les chemins dans les modules trouvés. Consulter la documentation de cx_Freeze pour plus de details.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="303"/>
+        <source>Include modules:</source>
+        <translation>Modules à inclure:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="310"/>
+        <source>Enter a comma separated list of modules to include</source>
+        <translation>Entrer la liste des modules à inclure, séparés par des virgules</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="317"/>
+        <source>Exclude modules:</source>
+        <translation>Modules à exclure:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="324"/>
+        <source>Enter a comma separated list of modules to exclude</source>
+        <translation>Entrer la liste des modules à exclure, séparés par des virgules</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="219"/>
+        <source>Press to select the Python shared library via a file selection dialog</source>
+        <translation type="obsolete">Cliquer pour sélectionner la librairie partagée Python à l&apos;aide d&apos;une boite de sélection</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="345"/>
+        <source>Press to select the external list file via a file selection dialog</source>
+        <translation>Cliquer pour sélectionner une liste externe via une boite de sélection</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="331"/>
+        <source>Enter the name of a file in which to place the list of included modules</source>
+        <translation>Entrer le nom d&apos;un fichier pour écrire la liste des modules inclus</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="338"/>
+        <source>External list file:</source>
+        <translation>Liste externe:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="137"/>
+        <source>Application icon:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="144"/>
+        <source>Enter the name of the application icon.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="163"/>
+        <source>Select to compress the byte code in zip files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="166"/>
+        <source>Compress Byte Code</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeExecDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="14"/>
+        <source>Cxfreeze</source>
+        <translation>Cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="41"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the output of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Création du package&lt;/b&gt;
+&lt;p&gt;Affiche les messages du packageur.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="70"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the errors of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Création du package&lt;/b&gt;
+&lt;p&gt;Affiche les messages d&apos;erreurs générés par le packageur.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="72"/>
+        <source>{0} - {1}</source>
+        <translation>{0} - {1}</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>Process Generation Error</source>
+        <translation>Erreur du processus</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+        <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="118"/>
+        <source>
+{0} finished.
+</source>
+        <translation>
+{0} teminé.
+</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="29"/>
+        <source>Messages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="58"/>
+        <source>Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
Binary file CxFreeze/i18n/cxfreeze_ru.qm has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CxFreeze/i18n/cxfreeze_ru.ts	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,382 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="ru">
+<context>
+    <name>CxFreezePlugin</name>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_Freeze</source>
+        <translation type="obsolete">Использовать cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="148"/>
+        <source>Use cx_&amp;Freeze</source>
+        <translation type="obsolete">Использовать &amp;cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="151"/>
+        <source>Generate a distribution package using cx_Freeze</source>
+        <translation type="obsolete">Создать дистрибутивный пакет с помощью cx_Freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="153"/>
+        <source>&lt;b&gt;Use cx_Freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_Freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation type="obsolete">&lt;b&gt;Использовать cx_Freeze&lt;/b&gt;
+&lt;p&gt;Создать дистрибутивный пакет с помощью cx_Freeze. Команда исполняется в пути проекта. Имена всех файлов и каталогоа должны быть абсолютными или относительными к каталогу проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="50"/>
+        <source>Packagers - cx_freeze</source>
+        <translation>Пакетировщики — cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="196"/>
+        <source>There is no main script defined for the current project.</source>
+        <translation>В текущем проекте не выбран главный сценарий.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>The cxfreeze executable could not be found.</source>
+        <translation>cxfreeze не найден.</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="207"/>
+        <source>cxfreeze</source>
+        <translation>cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_freeze</source>
+        <translation>Использовать cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="139"/>
+        <source>Use cx_&amp;freeze</source>
+        <translation>Использовать cx_&amp;freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="142"/>
+        <source>Generate a distribution package using cx_freeze</source>
+        <translation>Создать дистрибутивный пакет с помощью cx_freeze</translation>
+    </message>
+    <message>
+        <location filename="PluginCxFreeze.py" line="144"/>
+        <source>&lt;b&gt;Use cx_freeze&lt;/b&gt;&lt;p&gt;Generate a distribution package using cx_freeze. The command is executed in the project path. All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Использовать cx_freeze&lt;/b&gt;
+&lt;p&gt;Создать дистрибутивный пакет с помощью cx_freeze. Команда исполняется в пути проекта. Имена всех файлов и каталогоа должны быть абсолютными или относительными к каталогу проекта.&lt;/p&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeConfigDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="230"/>
+        <source>Select target directory</source>
+        <translation>Выберите каталог назначения</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="243"/>
+        <source>Select Python shared library</source>
+        <translation type="obsolete">Выберите разделяемую библиотеку Python</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.py" line="210"/>
+        <source>Select external list file</source>
+        <translation>Выберите файл со списком внешних файлов</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="14"/>
+        <source>Cxfreeze Configuration</source>
+        <translation>Конфигурация Cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="17"/>
+        <source>&lt;b&gt;Cxfreeze Configuration&lt;/b&gt;
+&lt;p&gt;This dialog is used to configure the cxfreeze (FreezePython) process in order to create a distribution package for the project.&lt;/p&gt;
+&lt;p&gt;All files and directories must be given absolute or relative to the project directory.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Конфигурация Cxfreeze&lt;/b&gt;
+&lt;p&gt;Этот диалог используется для конфигурирования процесса cxfreeze (FreezeOython), чтобы создать дистрибутивный пакет проекта.&lt;/p&gt;
+&lt;p&gt;Пути для всех файлов и каталогов должны быть абсолютными или относительными к каталогу проекта.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="38"/>
+        <source>&amp;General</source>
+        <translation>&amp;Общее</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="188"/>
+        <source>Select to optimize generated bytecode</source>
+        <translation>Оптимизировать генерируемый байт-код</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="191"/>
+        <source>Optimize bytecode</source>
+        <translation>Оптимизировать байт-код</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="203"/>
+        <source>Don&apos;t optimize</source>
+        <translation>Не оптимизировать</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="210"/>
+        <source>Select to optimize the generated bytecode</source>
+        <translation>Оптимизировать генерируемый байт-код</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="213"/>
+        <source>Optimize</source>
+        <translation>Оптимизировать</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="220"/>
+        <source>Select to optimize the generated bytecode and remove doc strings</source>
+        <translation>Оптимизировать генерируемый байт-код и удалить строки документации</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="223"/>
+        <source>Optimize (with docstring removal)</source>
+        <translation>Оптимизировать (с удалением строк документации)</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="153"/>
+        <source>Select to disable copying of dependent files to the target directory</source>
+        <translation>Запретить копирование зависимых файлов в целевой каталог</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="156"/>
+        <source>Do not copy dependant files</source>
+        <translation>Не копировать зависимости</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="44"/>
+        <source>Target directory:</source>
+        <translation>Каталог назначения:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="51"/>
+        <source>Enter the name of the target directory</source>
+        <translation>Задайте имя целевого каталога</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="54"/>
+        <source>&lt;p&gt;Enter the name of the directory in which to place the target file and any dependant files.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Задайте имя каталога, в который поместить целевой файл и любые его зависимости.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="75"/>
+        <source>Enter the name of the file to create</source>
+        <translation>Задайте имя файла, который надо создать</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="78"/>
+        <source>&lt;p&gt;Enter the name of the file to create instead of the base name of the script and the extension of the base binary.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Задайте имя файла, который надо создать, вместо указания базового имени сценария и расширения базового двоичного файла.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="68"/>
+        <source>Target name:</source>
+        <translation>Имя цели:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="348"/>
+        <source>...</source>
+        <translation>...</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="118"/>
+        <source>Enter name of script which will be executed upon startup</source>
+        <translation>Задайте имя сценария, который будет выполняться при старте</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="92"/>
+        <source>Enter the name of a file on which to base the target file</source>
+        <translation>Задайте имя файла, на котором будет базироваться целевой файл</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="111"/>
+        <source>Init script:</source>
+        <translation>Инициализирующий сценарий:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="85"/>
+        <source>Base name:</source>
+        <translation>Базовое имя:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="234"/>
+        <source>&amp;Advanced</source>
+        <translation>&amp;Дополнительно</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="204"/>
+        <source>Shared library name:</source>
+        <translation type="obsolete">Имя разделяемой библиотеки:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="205"/>
+        <source>Enter the name of the shared library implementing the Python runtime</source>
+        <translation type="obsolete">Задайте имя разделяемой библиотеки Python, реализующей его runtime</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="252"/>
+        <source>Default path</source>
+        <translation>Путь по-умолчанию</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="259"/>
+        <source>Enter directories to initialize sys.path</source>
+        <translation>Задайте каталоги для инициализации sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="262"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to initialize sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Задайте список путей, которые будут использованы для инициализации sys.path перед тем, как запустится поиск модулей. 
+Они должны быть рзделены символом стандартного разделителя элементов PATH&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="269"/>
+        <source>Enter directories to modify sys.path</source>
+        <translation>Задайте каталоги для изменения sys.path</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="272"/>
+        <source>&lt;p&gt;Enter a list of paths separated by the standard path separator, which will be used to modify sys.path prior to running the module finder.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Задайте список путей, которые будут использованы для изменения sys.path перед тем, как запустится поиск модулей. 
+Они должны быть рзделены символом стандартного разделителя элементов PATH&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="279"/>
+        <source>Include path</source>
+        <translation>Включить путь</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="286"/>
+        <source>Replace paths:</source>
+        <translation>Заменить пути:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="293"/>
+        <source>Enter replacement directives</source>
+        <translation>Задайте директивы замещения</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="296"/>
+        <source>&lt;p&gt;Enter replacement directives used to replace all the paths in modules found. Please see cx_Freeze docu for details.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Задайте директивы замещения, используемые для замены всех путей, в найденных модулях. Для подробностей, пожалуйста, обратитесь к документации cx_Freeze.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="303"/>
+        <source>Include modules:</source>
+        <translation>Включить модули:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="310"/>
+        <source>Enter a comma separated list of modules to include</source>
+        <translation>Задайте список модулей для включения, разделённый запятыми</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="317"/>
+        <source>Exclude modules:</source>
+        <translation>Не включать модули:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="324"/>
+        <source>Enter a comma separated list of modules to exclude</source>
+        <translation>Задайте разделённый запятыми список модулей, которые нельзя включать</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/Ui_CxfreezeConfigDialog.py" line="219"/>
+        <source>Press to select the Python shared library via a file selection dialog</source>
+        <translation type="obsolete">Выберите разделяемую библиотеку Python с помощью файлового диалога</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="345"/>
+        <source>Press to select the external list file via a file selection dialog</source>
+        <translation>Выберите внешний файл со списком с помощью файлового диалога</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="331"/>
+        <source>Enter the name of a file in which to place the list of included modules</source>
+        <translation>Задайте имя файла, в который поместить список используемых модулей</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="338"/>
+        <source>External list file:</source>
+        <translation>Внешний файл со списком:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="137"/>
+        <source>Application icon:</source>
+        <translation>символ прикладной программы:</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="144"/>
+        <source>Enter the name of the application icon.</source>
+        <translation>Задайте имя файла символа прикладной программы.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="163"/>
+        <source>Select to compress the byte code in zip files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeConfigDialog.ui" line="166"/>
+        <source>Compress Byte Code</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>CxfreezeExecDialog</name>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="14"/>
+        <source>Cxfreeze</source>
+        <translation>Cxfreeze</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="41"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the output of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Выполнение упаковщика&lt;/b&gt;
+&lt;p&gt;Отображает вывод команды упаковщика.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="70"/>
+        <source>&lt;b&gt;Packager Execution&lt;/b&gt;
+&lt;p&gt;This shows the errors of the packager command.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Выполнение упаковщика&lt;/b&gt;
+&lt;p&gt;Отображает ошибки команды упаковщика.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="72"/>
+        <source>{0} - {1}</source>
+        <translation>{0} - {1}</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>Process Generation Error</source>
+        <translation>Ошибка процесса генерации</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="79"/>
+        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+        <translation>Не могу запустить процесс &apos;{0}&apos;. Убедитесь, что он находится в пути поиска.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.py" line="118"/>
+        <source>
+{0} finished.
+</source>
+        <translation>{0} завершился.</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="29"/>
+        <source>Messages</source>
+        <translation>сообщение</translation>
+    </message>
+    <message>
+        <location filename="CxFreeze/CxfreezeExecDialog.ui" line="58"/>
+        <source>Errors</source>
+        <translation>ошибка</translation>
+    </message>
+</context>
+</TS>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PKGLIST	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,12 @@
+CxFreeze/CxfreezeConfigDialog.py
+CxFreeze/CxfreezeConfigDialog.ui
+CxFreeze/CxfreezeExecDialog.py
+CxFreeze/CxfreezeExecDialog.ui
+CxFreeze/Documentation/LICENSE.GPL3
+CxFreeze/__init__.py
+CxFreeze/i18n/cxfreeze_cs.qm
+CxFreeze/i18n/cxfreeze_de.qm
+CxFreeze/i18n/cxfreeze_es.qm
+CxFreeze/i18n/cxfreeze_fr.qm
+CxFreeze/i18n/cxfreeze_ru.qm
+PluginCxFreeze.py
--- a/PluginCxFreeze.e4p	Sat Jul 24 12:08:41 2010 +0200
+++ b/PluginCxFreeze.e4p	Sat Jul 24 17:42:12 2010 +0200
@@ -10,18 +10,42 @@
   <Version>5.0</Version>
   <Author>Detlev Offenbach</Author>
   <Email>detlev@die-offenbachs.de</Email>
+  <TranslationPattern>CxFreeze/i18n/cxfreeze_%language%.ts</TranslationPattern>
   <Sources>
     <Source>__init__.py</Source>
+    <Source>PluginCxFreeze.py</Source>
+    <Source>CxFreeze/__init__.py</Source>
+    <Source>CxFreeze/CxfreezeConfigDialog.py</Source>
+    <Source>CxFreeze/CxfreezeExecDialog.py</Source>
   </Sources>
   <Forms>
+    <Form>CxFreeze/CxfreezeConfigDialog.ui</Form>
+    <Form>CxFreeze/CxfreezeExecDialog.ui</Form>
   </Forms>
   <Translations>
+    <Translation>CxFreeze/i18n/cxfreeze_ru.ts</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_de.ts</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_cs.ts</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_es.ts</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_fr.ts</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_ru.qm</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_de.qm</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_cs.qm</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_es.qm</Translation>
+    <Translation>CxFreeze/i18n/cxfreeze_fr.qm</Translation>
   </Translations>
   <Resources>
   </Resources>
   <Interfaces>
   </Interfaces>
   <Others>
+    <Other>.issues</Other>
+    <Other>.hgignore</Other>
+    <Other>CxFreeze/Documentation/LICENSE.GPL3</Other>
+    <Other>ChangeLog</Other>
+    <Other>PKGLIST</Other>
+    <Other>PluginCxFreeze.e4p</Other>
+    <Other>CxFreeze/Documentation/source</Other>
   </Others>
   <MainScript>PluginCxFreeze.py</MainScript>
   <Vcs>
@@ -136,11 +160,65 @@
     <FiletypeAssociation pattern="*.ui" type="FORMS" />
     <FiletypeAssociation pattern="*.idl" type="INTERFACES" />
     <FiletypeAssociation pattern="*.qm" type="TRANSLATIONS" />
-    <FiletypeAssociation pattern="*.py3" type="SOURCES" />
+    <FiletypeAssociation pattern="*.py" type="SOURCES" />
     <FiletypeAssociation pattern="*.qrc" type="RESOURCES" />
     <FiletypeAssociation pattern="*.pyw" type="SOURCES" />
     <FiletypeAssociation pattern="*.ui.h" type="FORMS" />
     <FiletypeAssociation pattern="*.ts" type="TRANSLATIONS" />
-    <FiletypeAssociation pattern="*.py" type="SOURCES" />
+    <FiletypeAssociation pattern="*.py3" type="SOURCES" />
+    <FiletypeAssociation pattern="Ui_*.py" type="__IGNORE__" />
   </FiletypeAssociations>
+  <Documentation>
+    <DocumentationParams>
+      <dict>
+        <key>
+          <string>ERIC4DOC</string>
+        </key>
+        <value>
+          <dict>
+            <key>
+              <string>cssFile</string>
+            </key>
+            <value>
+              <string>%PYTHON%/eric5/CSSs/default.css</string>
+            </value>
+            <key>
+              <string>ignoreFilePatterns</string>
+            </key>
+            <value>
+              <list>
+                <string>Ui_*</string>
+              </list>
+            </value>
+            <key>
+              <string>outputDirectory</string>
+            </key>
+            <value>
+              <string>CxFreeze/Documentation/source</string>
+            </value>
+            <key>
+              <string>qtHelpEnabled</string>
+            </key>
+            <value>
+              <bool>False</bool>
+            </value>
+            <key>
+              <string>sourceExtensions</string>
+            </key>
+            <value>
+              <list>
+                <string></string>
+              </list>
+            </value>
+            <key>
+              <string>useRecursion</string>
+            </key>
+            <value>
+              <bool>True</bool>
+            </value>
+          </dict>
+        </value>
+      </dict>
+    </DocumentationParams>
+  </Documentation>
 </Project>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PluginCxFreeze.py	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,223 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2010 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the CxFreeze plugin.
+"""
+
+import os
+import sys
+
+from PyQt4.QtCore import QObject, SIGNAL, QTranslator, QCoreApplication
+from PyQt4.QtGui import QDialog, QMessageBox
+
+from E5Gui.E5Action import E5Action
+from E5Gui.E5Application import e5App
+
+from CxFreeze.CxfreezeConfigDialog import CxfreezeConfigDialog
+from CxFreeze.CxfreezeExecDialog import CxfreezeExecDialog
+
+import Utilities
+
+# Start-of-Header
+name = "CxFreeze Plugin"
+author = "Detlev Offenbach <detlev@die-offenbachs.de>"
+autoactivate = True
+deactivateable = True
+version = "5.0.0"
+className = "CxFreezePlugin"
+packageName = "CxFreeze"
+shortDescription = "Show the CxFreeze dialogs."
+longDescription = """This plugin implements the CxFreeze dialogs.""" \
+ """ CxFreeze is used to generate a distribution package."""
+needsRestart = False
+pyqtApi = 2
+# End-of-Header
+
+error = ""
+
+def exeDisplayData():
+    """
+    Public method to support the display of some executable info.
+    
+    @return dictionary containing the data to query the presence of
+        the executable
+    """
+    data = {
+        "programEntry"      : True, 
+        "header"            : QCoreApplication.translate("CxFreezePlugin",
+                                "Packagers - cx_freeze"), 
+        "exe"               : 'dummyfreeze', 
+        "versionCommand"    : '--version', 
+        "versionStartsWith" : 'dummyfreeze', 
+        "versionPosition"   : -1, 
+        "version"           : "", 
+        "versionCleanup"    : None, 
+    }
+    
+    exe = _findExecutable()
+    if exe:
+        data["exe"] = exe
+        if exe.startswith("FreezePython"):
+            data["versionStartsWith"] = "FreezePython"
+        elif exe.startswith("cxfreeze"):
+            data["versionStartsWith"] = "cxfreeze"
+    
+    return data
+
+def _findExecutable():
+    """
+    Restricted function to determine the name of the executable.
+    
+    @return name of the executable (string)
+    """
+    # step 1: check for version 4.x
+    exe = 'cxfreeze'
+    if sys.platform == "win32":
+        exe += '.bat'
+    if Utilities.isinpath(exe):
+        return exe
+    
+    return None
+
+def _checkProgram():
+    """
+    Restricted function to check the availability of cxfreeze.
+    
+    @return flag indicating availability (boolean)
+    """
+    global error
+    
+    if _findExecutable() is None:
+        error = QCoreApplication.translate("CxFreezePlugin",
+            "The cxfreeze executable could not be found.")
+        return False
+    else:
+        return True
+_checkProgram()
+
+class CxFreezePlugin(QObject):
+    """
+    Class implementing the CxFreeze plugin.
+    """
+    def __init__(self, ui):
+        """
+        Constructor
+        
+        @param ui reference to the user interface object (UI.UserInterface)
+        """
+        QObject.__init__(self, ui)
+        self.__ui = ui
+        self.__initialize()
+        _checkProgram()
+        
+        self.__translator = None
+        self.__loadTranslator()
+        
+    def __initialize(self):
+        """
+        Private slot to (re)initialize the plugin.
+        """
+        self.__projectAct = None
+        
+    def activate(self):
+        """
+        Public method to activate this plugin.
+        
+        @return tuple of None and activation status (boolean)
+        """
+        global error
+        
+        # cxfreeze is only activated if it is available
+        if not _checkProgram():
+            return None, False
+        
+        menu = e5App().getObject("Project").getMenu("Packagers")
+        if menu:
+            self.__projectAct = E5Action(self.trUtf8('Use cx_freeze'),
+                    self.trUtf8('Use cx_&freeze'), 0, 0,
+                    self, 'packagers_cxfreeze')
+            self.__projectAct.setStatusTip(
+                self.trUtf8('Generate a distribution package using cx_freeze'))
+            self.__projectAct.setWhatsThis(self.trUtf8(
+            """<b>Use cx_freeze</b>"""
+            """<p>Generate a distribution package using cx_freeze."""
+            """ The command is executed in the project path. All"""
+            """ files and directories must be given absolute or"""
+            """ relative to the project directory.</p>"""
+            ))
+            self.connect(self.__projectAct, SIGNAL('triggered()'), self.__cxfreeze)
+            e5App().getObject("Project").addE5Actions([self.__projectAct])
+            menu.addAction(self.__projectAct)
+        
+        error = ""
+        return None, True
+
+    def deactivate(self):
+        """
+        Public method to deactivate this plugin.
+        """
+        menu = e5App().getObject("Project").getMenu("Packagers")
+        if menu:
+            if self.__projectAct:
+                menu.removeAction(self.__projectAct)
+                e5App().getObject("Project").removeE5Actions([self.__projectAct])
+        self.__initialize()
+    
+    def __loadTranslator(self):
+        """
+        Private method to load the translation file.
+        """
+        if self.__ui is not None:
+            loc = self.__ui.getLocale()
+            if loc and loc != "C":
+                locale_dir = \
+                    os.path.join(os.path.dirname(__file__), "CxFreeze", "i18n")
+                translation = "cxfreeze_%s" % loc
+                translator = QTranslator(None)
+                loaded = translator.load(translation, locale_dir)
+                if loaded:
+                    self.__translator = translator
+                    e5App().installTranslator(self.__translator)
+                else:
+                    print("Warning: translation file '%s' could not be loaded." % \
+                        translation)
+                    print("Using default.")
+    
+    def __cxfreeze(self):
+        """
+        Private slot to handle the cxfreeze execution.
+        """
+        project = e5App().getObject("Project")
+        if len(project.pdata["MAINSCRIPT"]) == 0:
+            # no main script defined
+            QMessageBox.critical(None,
+                self.trUtf8("cxfreeze"),
+                self.trUtf8(
+                    """There is no main script defined for the current project."""),
+                QMessageBox.StandardButtons(
+                    QMessageBox.Abort))
+            return
+        
+        parms = project.getData('PACKAGERSPARMS', "CXFREEZE")
+        exe = _findExecutable()
+        if exe is None:
+            QMessageBox.critical(None,
+                self.trUtf8("cxfreeze"),
+                self.trUtf8("""The cxfreeze executable could not be found."""))
+            return
+
+        dlg = CxfreezeConfigDialog(project, exe, parms)
+        if dlg.exec_() == QDialog.Accepted:
+            args, parms = dlg.generateParameters()
+            project.setData('PACKAGERSPARMS', "CXFREEZE", parms)
+            
+            # now do the call
+            dia = CxfreezeExecDialog("cxfreeze")
+            dia.show()
+            res = dia.start(args, 
+                os.path.join(project.ppath, project.pdata["MAINSCRIPT"][0]))
+            if res:
+                dia.exec_()
--- a/__init__.py	Sat Jul 24 12:08:41 2010 +0200
+++ b/__init__.py	Sat Jul 24 17:42:12 2010 +0200
@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2010 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Package containing the CxFreeze packager plugin.
+"""

eric ide

mercurial