Codebase list ultracopier / 5b240dd
New upstream version 1.4.0.4 Thomas Preud'homme 6 years ago
63 changed file(s) with 578 addition(s) and 468 deletion(s). Raw diff Collapse all Expand all
403403 newOptionValue("Ultracopier", "confirmToGroupWindows", OptionEngine::optionEngine->getOptionValue("Ultracopier","confirmToGroupWindows"));
404404 newOptionValue("Ultracopier", "displayOSSpecific", OptionEngine::optionEngine->getOptionValue("Ultracopier","displayOSSpecific"));
405405 newOptionValue("Ultracopier", "checkTheUpdate", OptionEngine::optionEngine->getOptionValue("Ultracopier","checkTheUpdate"));
406 newOptionValue("Ultracopier", "giveGPUTime", OptionEngine::optionEngine->getOptionValue("Ultracopier","giveGPUTime"));
407406 newOptionValue("Ultracopier", "remainingTimeAlgorithm", OptionEngine::optionEngine->getOptionValue("Ultracopier","remainingTimeAlgorithm"));
408407 newOptionValue("Language", "Language", OptionEngine::optionEngine->getOptionValue("Language","Language"));
409408 newOptionValue("Language", "Language_force", OptionEngine::optionEngine->getOptionValue("Language","Language_force"));
10051004 OptionEngine::optionEngine->setOptionValue("Ultracopier","confirmToGroupWindows",booltostring(ui->confirmToGroupWindows->isChecked()));
10061005 }
10071006
1008 void OptionDialog::on_giveGPUTime_clicked()
1009 {
1010 ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
1011 OptionEngine::optionEngine->setOptionValue("Ultracopier","giveGPUTime",booltostring(ui->giveGPUTime->isChecked()));
1012 }
1013
10141007 void OptionDialog::on_remainingTimeAlgorithm_currentIndexChanged(int index)
10151008 {
10161009 if(allPluginsIsLoaded)
7878 void on_DisplayOSWarning_clicked();
7979 void on_checkTheUpdate_clicked();
8080 void on_confirmToGroupWindows_clicked();
81 void on_giveGPUTime_clicked();
8281 void oSSpecificClosed();
8382 void on_remainingTimeAlgorithm_currentIndexChanged(int index);
8483
2020 <property name="spacing">
2121 <number>1</number>
2222 </property>
23 <property name="margin">
23 <property name="leftMargin">
24 <number>1</number>
25 </property>
26 <property name="topMargin">
27 <number>1</number>
28 </property>
29 <property name="rightMargin">
30 <number>1</number>
31 </property>
32 <property name="bottomMargin">
2433 <number>1</number>
2534 </property>
2635 <item>
222231 </property>
223232 </widget>
224233 </item>
234 <item row="5" column="1">
235 <widget class="QCheckBox" name="confirmToGroupWindows"/>
236 </item>
225237 <item row="6" column="0">
226238 <widget class="QLabel" name="label_11">
227239 <property name="text">
232244 <item row="6" column="1">
233245 <widget class="QCheckBox" name="DisplayOSWarning"/>
234246 </item>
235 <item row="5" column="1">
236 <widget class="QCheckBox" name="confirmToGroupWindows"/>
247 <item row="7" column="0">
248 <widget class="QLabel" name="label_checkTheUpdate">
249 <property name="text">
250 <string>Check for updates</string>
251 </property>
252 </widget>
237253 </item>
238254 <item row="7" column="1">
239255 <widget class="QCheckBox" name="checkTheUpdate"/>
240256 </item>
241 <item row="7" column="0">
242 <widget class="QLabel" name="label_checkTheUpdate">
243 <property name="text">
244 <string>Check for updates</string>
257 <item row="8" column="0">
258 <widget class="QLabel" name="label_10">
259 <property name="text">
260 <string>Remaining time algorithm</string>
245261 </property>
246262 </widget>
247263 </item>
248264 <item row="8" column="1">
249 <widget class="QCheckBox" name="giveGPUTime"/>
250 </item>
251 <item row="8" column="0">
252 <widget class="QLabel" name="label_gpu_time">
253 <property name="text">
254 <string>Give GPU time to fund the development</string>
255 </property>
256 </widget>
257 </item>
258 <item row="9" column="0">
259 <widget class="QLabel" name="label_10">
260 <property name="text">
261 <string>Remaining time algorithm</string>
262 </property>
263 </widget>
264 </item>
265 <item row="9" column="1">
266265 <widget class="QComboBox" name="remainingTimeAlgorithm">
267266 <item>
268267 <property name="text">
906906 /// \brief transfor short plugin name into file name
907907 std::string PluginsManager::getResolvedPluginName(const std::string &name)
908908 {
909 #if defined(Q_OS_LINUX)
909 #if defined(Q_OS_LINUX) || defined(Q_OS_HURD)
910910 return "lib"+name+".so";
911911 #elif defined(Q_OS_MAC)
912912 #if defined(QT_DEBUG)
3737 See the wiki for the general documentation and how to for building: https://ultracopier-wiki.first-world.info/
3838 For the code documentation: https://doc-ultracopier.first-world.info/ (generated by doxygen)
3939 The source proposed on the site is reconstritued source from: https://github.com/alphaonex86/Ultracopier to facilitate contribute effort.
40 Prefer ultracopier-all-in-one-direct.pro to have easy and NO modular software. This is more oriented to GNU/Linux and macOS.
40 Prefer ultracopier.pro to have easy and NO modular software. This is more oriented to GNU/Linux and macOS.
4141
4242 ======================================================
4343 Warranty =============================================
1111 #define ULTRACOPIER_DEBUG_MAX_ALL_SIZE 128 ///< \brief Max size (in MB) after the console/file output is dropped
1212 #define ULTRACOPIER_DEBUG_MAX_IMPORTANT_SIZE 150 ///< \brief Max size (in MB) after the console/file important output is dropped
1313 /// \brief the version
14 #define ULTRACOPIER_VERSION "1.4.0.3"
14 #define ULTRACOPIER_VERSION "1.4.0.4"
1515 /// \brief the windows version
16 #define ULTRACOPIER_WINDOWS_VERSION 1,4,0,3
16 #define ULTRACOPIER_WINDOWS_VERSION 1,4,0,4
1717 // define if the version is portable or not
1818 ////#define ULTRACOPIER_VERSION_PORTABLE
1919 ////#define ULTRACOPIER_VERSION_PORTABLEAPPS
5555 KeysList.push_back(std::pair<std::string, std::string>("GroupWindowWhen","0"));
5656 KeysList.push_back(std::pair<std::string, std::string>("displayOSSpecific","true"));
5757 KeysList.push_back(std::pair<std::string, std::string>("confirmToGroupWindows","true"));
58 KeysList.push_back(std::pair<std::string, std::string>("giveGPUTime","true"));
5958 KeysList.push_back(std::pair<std::string, std::string>("remainingTimeAlgorithm","0"));
6059 #ifdef ULTRACOPIER_INTERNET_SUPPORT
6160 #if defined(Q_OS_WIN32) || defined(Q_OS_MAC)
1313 <!-- Detailed description -->
1414 <description xml:lang="en"><![CDATA[Copy engine of Ultracopier which uses rsync as backend]]></description>
1515 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
16 <version>1.4.0.3</version>
16 <version>1.4.0.4</version>
1717 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1818 <name>Rsync</name>
1919 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1818 }
1919
2020 //get drive of an file or folder
21 /// \todo do network drive support for windows
2122 std::string DriveManagement::getDrive(const std::string &fileOrFolder) const
2223 {
2324 const std::string &inode=QDir::toNativeSeparators(QString::fromStdString(fileOrFolder)).toStdString();
11591159 if(!source.isSymLink())
11601160 size=source.size();
11611161 const std::string &drive=driveManagement.getDrive(destination.absoluteFilePath().toStdString());
1162 if(drive.empty())
1163 abort();
1164 if(mode!=Ultracopier::Move || drive!=driveManagement.getDrive(source.absoluteFilePath().toStdString()))
1165 {
1166 if(requiredSpace.find(drive)!=requiredSpace.cend())
1167 {
1168 requiredSpace[drive]+=size;
1169 ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,QStringLiteral("space needed add: %1, space needed: %2, on: %3").arg(size).arg(requiredSpace.at(drive)).arg(QString::fromStdString(drive)).toStdString());
1170 }
1171 else
1172 {
1173 requiredSpace[drive]=size;
1174 ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,QStringLiteral("set space %1 needed, on: %2").arg(size).arg(QString::fromStdString(drive)).toStdString());
1175 }
1176 }
1162 if(!drive.empty())//can be a network drive
1163 if(mode!=Ultracopier::Move || drive!=driveManagement.getDrive(source.absoluteFilePath().toStdString()))
1164 {
1165 if(requiredSpace.find(drive)!=requiredSpace.cend())
1166 {
1167 requiredSpace[drive]+=size;
1168 ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,QStringLiteral("space needed add: %1, space needed: %2, on: %3").arg(size).arg(requiredSpace.at(drive)).arg(QString::fromStdString(drive)).toStdString());
1169 }
1170 else
1171 {
1172 requiredSpace[drive]=size;
1173 ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,QStringLiteral("set space %1 needed, on: %2").arg(size).arg(QString::fromStdString(drive)).toStdString());
1174 }
1175 }
11771176 bytesToTransfer+= size;
11781177 ActionToDoTransfer temp;
11791178 temp.id = generateIdNumber();
1616 <description xml:lang="en"><![CDATA[Copy engine of Ultracopier, do in Qt for all platform, and copy by stream]]></description>
1717 <description xml:lang="fr"><![CDATA[Moteur de copie d'ultracopier, fait en Qt pour toutes les plateformes, et copie par stream]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>Ultracopier</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to arabic. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>ar</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to german. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>de</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to greek. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>el</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to spanish. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>es</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1414 <description xml:lang="en"><![CDATA[Translation of Ultracopier to French. For more details see the web site.]]></description>
1515 <description xml:lang="fr"><![CDATA[Traduction d'ultracopier en Français. Pour plus de détails regardez le site web]]></description>
1616 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
17 <version>1.4.0.3</version>
17 <version>1.4.0.4</version>
1818 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1919 <name>fr</name>
2020 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to hindi. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>hi</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Hungarian translation of Ultracopier]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>hu</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to indonesian. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>id</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to italian. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>it</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to japanese. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>jp</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1212 <description xml:lang="en"><![CDATA[File to define all English language related, Ultracopier is written in English, then not translation file needed]]></description>
1313 <description xml:lang="ko"><![CDATA[Ultracopier의 한국어 번역입니다. 더 나은 번역이나 오타, 오역에 대한 제보는 이메일로 연락해주시면 감사하겠습니다.]]></description>
1414 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
15 <version>1.4.0.3</version>
15 <version>1.4.0.4</version>
1616 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1717 <name>ko</name>
1818 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to dutch. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>nl</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to norwegian. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>no</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to polish. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>pl</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to portuguese. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>pt</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to russian. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>ru</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to thai. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>th</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to turkish. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>tr</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to chinese. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>ch</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[Translation of Ultracopier to chinese traditional. For more details see the web site.]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>zh_tw</name>
1717 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Listener for catchcopy v0002. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
1717 <description xml:lang="fr"><![CDATA[Écouteur pour catchcopy v0002. Permet de recevoir un liste de copie venant d'un plugin/explorateur avec catchcopy.]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>catchcopy-v0002</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Plugin loader for catchcopy v0002. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
1717 <description xml:lang="fr"><![CDATA[Chargeur de plugin pour catchcopy v0002. Permet de recevoir un liste de copie venant d'un plugin/explorateur avec catchcopy.]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>catchcopy-v0002</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[This plugin allow Ultracopier to be loaded at the session opening under windows]]></description>
1717 <description xml:lang="fr"><![CDATA[Ce plugin permet de charger Ultracopier à l'ouverture de la sessions sous windows]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>Windows</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation>Kaufe die Ultimate Version um die Entwicklung zu finanzieren</translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation>Datei %1/%2, Größe:%3/%4</translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation>Zu kopierende Dateien</translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation>Zu verschiebende Dateien</translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation>Nicht schließen, wenn Fehler aufgetreten sind</translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation>Niemals schließen</translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation>Immer schließen</translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation>Dateiname, 0KB</translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation>Farbe auswählen</translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation>Nicht schließen, wenn Fehler aufgetreten sind</translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation>Niemals schließen</translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation>Immer schließen</translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation>Wählen Sie eine Farbe</translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation>Comprar la versión Ultimate para financiar el desarrollo</translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation>El archivo %1/%2, el tamaño: %3/%4</translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation>Lista de copia</translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation>Lista de movimiento</translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation>No cierre si se encuentran errores</translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation>Nunca cierre</translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation>Siempre cerrar</translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation>Nombre de archivo, 0KB</translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation>Seleccione un color</translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation>No cierre si se encuentran errores</translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation>Nunca cierre</translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation>Siempre cerrar</translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation>Seleccione un color</translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="+298"/>
7 <location line="+11"/>
7 <location line="+15"/>
88 <source>%1 is deprecated, Use %2</source>
9 <translation type="unfinished"></translation>
10 </message>
11 <message>
12 <location line="-12"/>
13 <location line="+15"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
915 <translation type="unfinished"></translation>
1016 </message>
1117 <message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="+224"/>
75 <location filename="../../ThemesFactory.cpp" line="+228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation>Garder ouvert s&apos;il y a des erreurs</translation>
7278 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation>Vásárold meg az Ultimate verziót a fejlesztés támogatásához</translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation>Fájl %1/%2, méret: %3/%4</translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation>Lista másolása</translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation>Lista mozgatása</translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation>Ne zárja be, ha hiba történik</translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation>Sose zárja be</translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation>Mindig zárja be</translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation>Fájlnév, 0KB</translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation>Válassz egy színt</translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation>Ne zárja be, ha hiba történik</translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation>Sose zárja be</translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation>Mindig zárja be</translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation>Válassz egy színt</translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation>Acquista la versione Ultimate per finanziare lo sviluppo del programma</translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation>File %1/%2, dimensione: %3/%4</translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation>Lista della copia</translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation>Lista dello spostamento</translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation>Non chiudere se vengono rilevati errori</translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation>Non chiudere mai</translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation>Chiudere sempre</translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation>Nome del file, 0KB</translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation>Scegliere un colore</translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation>%1 %2% di %3</translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation>Non chiudere se vengono rilevati errori</translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation>Non chiudere mai</translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation>Chiudere sempre</translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation>Scegliere un colore</translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="+298"/>
7 <location line="+11"/>
7 <location line="+15"/>
88 <source>%1 is deprecated, Use %2</source>
9 <translation type="unfinished"></translation>
10 </message>
11 <message>
12 <location line="-12"/>
13 <location line="+15"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
915 <translation type="unfinished"></translation>
1016 </message>
1117 <message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="+224"/>
75 <location filename="../../ThemesFactory.cpp" line="+228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished">오류 발견시 종료 안함</translation>
7278 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation>Файл %1/%2, размер: %3/%4</translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished">Копировать список</translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished">Не закрывать, если найдены ошибки</translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished">Никогда не закрывать</translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished">Всегда закрывайте</translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation>Имя файла, 0KB</translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished">Не закрывать, если найдены ошибки</translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished">Никогда не закрывать</translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished">Всегда закрывайте</translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
44 <name>Themes</name>
55 <message>
66 <location filename="../../interface.cpp" line="298"/>
7 <location filename="../../interface.cpp" line="309"/>
7 <location filename="../../interface.cpp" line="313"/>
88 <source>%1 is deprecated, Use %2</source>
99 <translation type="unfinished"></translation>
1010 </message>
1111 <message>
12 <location filename="../../interface.cpp" line="311"/>
12 <location filename="../../interface.cpp" line="301"/>
13 <location filename="../../interface.cpp" line="316"/>
14 <source>This will be the last version for Mac, but you can compile from source</source>
15 <translation type="unfinished"></translation>
16 </message>
17 <message>
18 <location filename="../../interface.cpp" line="318"/>
1319 <source>Buy the Ultimate version to fund development</source>
1420 <translation type="unfinished"></translation>
1521 </message>
1622 <message>
17 <location filename="../../interface.cpp" line="396"/>
23 <location filename="../../interface.cpp" line="403"/>
1824 <source>File %1/%2, size: %3/%4</source>
1925 <translation type="unfinished"></translation>
2026 </message>
2127 <message>
22 <location filename="../../interface.cpp" line="630"/>
28 <location filename="../../interface.cpp" line="637"/>
2329 <source>Copy list</source>
2430 <translation type="unfinished"></translation>
2531 </message>
2632 <message>
27 <location filename="../../interface.cpp" line="632"/>
33 <location filename="../../interface.cpp" line="639"/>
2834 <source>Move list</source>
2935 <translation type="unfinished"></translation>
3036 </message>
3137 <message>
32 <location filename="../../interface.cpp" line="1053"/>
38 <location filename="../../interface.cpp" line="1060"/>
3339 <source>Don&apos;t close if errors are found</source>
3440 <translation type="unfinished"></translation>
3541 </message>
3642 <message>
37 <location filename="../../interface.cpp" line="1054"/>
43 <location filename="../../interface.cpp" line="1061"/>
3844 <source>Never close</source>
3945 <translation type="unfinished"></translation>
4046 </message>
4147 <message>
42 <location filename="../../interface.cpp" line="1055"/>
48 <location filename="../../interface.cpp" line="1062"/>
4349 <source>Always close</source>
4450 <translation type="unfinished"></translation>
4551 </message>
4652 <message>
47 <location filename="../../interface.cpp" line="1057"/>
53 <location filename="../../interface.cpp" line="1064"/>
4854 <source>File Name, 0KB</source>
4955 <translation type="unfinished"></translation>
5056 </message>
5157 <message>
52 <location filename="../../interface.cpp" line="1244"/>
53 <location filename="../../interface.cpp" line="1256"/>
54 <location filename="../../interface.cpp" line="1268"/>
58 <location filename="../../interface.cpp" line="1251"/>
59 <location filename="../../interface.cpp" line="1263"/>
60 <location filename="../../interface.cpp" line="1275"/>
5561 <source>Select a color</source>
5662 <translation type="unfinished"></translation>
5763 </message>
5864 <message>
59 <location filename="../../interface.cpp" line="1343"/>
60 <location filename="../../interface.cpp" line="1347"/>
61 <location filename="../../interface.cpp" line="1349"/>
65 <location filename="../../interface.cpp" line="1350"/>
66 <location filename="../../interface.cpp" line="1354"/>
67 <location filename="../../interface.cpp" line="1356"/>
6268 <source>%1 %2% of %3</source>
6369 <translation type="unfinished"></translation>
6470 </message>
6672 <context>
6773 <name>ThemesFactory</name>
6874 <message>
69 <location filename="../../ThemesFactory.cpp" line="224"/>
75 <location filename="../../ThemesFactory.cpp" line="228"/>
7076 <source>Don&apos;t close if errors are found</source>
7177 <translation type="unfinished"></translation>
7278 </message>
7379 <message>
74 <location filename="../../ThemesFactory.cpp" line="225"/>
80 <location filename="../../ThemesFactory.cpp" line="229"/>
7581 <source>Never close</source>
7682 <translation type="unfinished"></translation>
7783 </message>
7884 <message>
79 <location filename="../../ThemesFactory.cpp" line="226"/>
85 <location filename="../../ThemesFactory.cpp" line="230"/>
8086 <source>Always close</source>
8187 <translation type="unfinished"></translation>
8288 </message>
8389 <message>
84 <location filename="../../ThemesFactory.cpp" line="422"/>
85 <location filename="../../ThemesFactory.cpp" line="437"/>
86 <location filename="../../ThemesFactory.cpp" line="452"/>
90 <location filename="../../ThemesFactory.cpp" line="426"/>
91 <location filename="../../ThemesFactory.cpp" line="441"/>
92 <location filename="../../ThemesFactory.cpp" line="456"/>
8793 <source>Select a color</source>
8894 <translation type="unfinished"></translation>
8995 </message>
1616 <description xml:lang="en"><![CDATA[Oxygen style for Ultracopier]]></description>
1717 <description xml:lang="fr"><![CDATA[Style oxygen pour Ultracopier]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>Oxygen</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Supercopier style for Ultracopier]]></description>
1717 <description xml:lang="fr"><![CDATA[Style supercopier pour Ultracopier]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>Supercopier</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Listener for catchcopy in dbus. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
1717 <description xml:lang="fr"><![CDATA[Écouteur pour catchcopy en dbus. Permet de recevoir un liste de copie venant d'un plugin/explorateur avec catchcopy.]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>dbus</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Plugin loader for catchcopy v0002. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
1717 <description xml:lang="fr"><![CDATA[Chargeur de plugin pour catchcopy v0002. Permet de recevoir un liste de copie venant d'un plugin/explorateur avec catchcopy.]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>keybinding</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Test plugin to show how create SessionLoader plugin]]></description>
1717 <description xml:lang="fr"><![CDATA[Plugin de test pour monter comment créer un plugin SessionLoader]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>KDE4</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Clean style for Ultracopier]]></description>
1717 <description xml:lang="fr"><![CDATA[Style Clean pour Ultracopier]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>Clean</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Teracopy style for Ultracopier, reproduct with screenshot on internet]]></description>
1717 <description xml:lang="fr"><![CDATA[Style Teracopy pour Ultracopier, reproduit avec les screenshots vu sur internet]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>Teracopy</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1616 <description xml:lang="en"><![CDATA[Windows dialog for Ultracopier, to have same copy dialog than windows vista/7/8]]></description>
1717 <description xml:lang="fr"><![CDATA[Dialogue de Windows pour Ultracopier, pour avoir une boite de dialogue pour la copie comme windows vista/7/8]]></description>
1818 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
19 <version>1.4.0.3</version>
19 <version>1.4.0.4</version>
2020 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
2121 <name>Windows</name>
2222 <!-- Dependency checking. This is used to check when a plugin may not be compatible with an updated version of either Ultracopier or another plugin. This example only checks Ultracopier. -->
1111 <!-- Detailed description -->
1212 <description xml:lang="en"><![CDATA[File to define all English language related, Ultracopier is written in English, then not translation file needed]]></description>
1313 <!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
14 <version>1.4.0.3</version>
14 <version>1.4.0.4</version>
1515 <!-- This internal name should never change, because it is used to detect when a particular plugin is updated. It must comprise only lower case ASCII characters (a-z), numerical digits (0-9), "-", "." or "_", and it must be be unique within the category. And have size lower than 64 char. -->
1616 <name>en</name>
1717 <dependencies><![CDATA[