summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--OptionDialog.cpp7
-rw-r--r--OptionDialog.h1
-rw-r--r--OptionDialog.ui33
-rw-r--r--PluginsManager.cpp2
-rw-r--r--README2
-rw-r--r--Variable.h4
-rw-r--r--main.cpp1
-rw-r--r--plugins-alternative/Listener/dbus/informations.xml2
-rw-r--r--plugins-alternative/PluginLoader/keybinding/informations.xml2
-rw-r--r--plugins-alternative/SessionLoader/KDE4/informations.xml2
-rw-r--r--plugins-alternative/Themes/Clean/informations.xml2
-rw-r--r--plugins-alternative/Themes/Teracopy/informations.xml2
-rw-r--r--plugins-alternative/Themes/Windows/informations.xml2
-rw-r--r--plugins/CopyEngine/Rsync/informations.xml2
-rw-r--r--plugins/CopyEngine/Ultracopier/DriveManagement.cpp1
-rw-r--r--plugins/CopyEngine/Ultracopier/ListThread.cpp25
-rw-r--r--plugins/CopyEngine/Ultracopier/informations.xml2
-rw-r--r--plugins/Languages/ar/informations.xml2
-rw-r--r--plugins/Languages/de/informations.xml2
-rw-r--r--plugins/Languages/el/informations.xml2
-rw-r--r--plugins/Languages/es/informations.xml2
-rw-r--r--plugins/Languages/fr/informations.xml2
-rw-r--r--plugins/Languages/hi/informations.xml2
-rw-r--r--plugins/Languages/hu/informations.xml2
-rw-r--r--plugins/Languages/id/informations.xml2
-rw-r--r--plugins/Languages/it/informations.xml2
-rw-r--r--plugins/Languages/ja/informations.xml2
-rw-r--r--plugins/Languages/ko/informations.xml2
-rw-r--r--plugins/Languages/nl/informations.xml2
-rw-r--r--plugins/Languages/no/informations.xml2
-rw-r--r--plugins/Languages/pl/informations.xml2
-rw-r--r--plugins/Languages/pt/informations.xml2
-rw-r--r--plugins/Languages/ru/informations.xml2
-rw-r--r--plugins/Languages/th/informations.xml2
-rw-r--r--plugins/Languages/tr/informations.xml2
-rw-r--r--plugins/Languages/zh/informations.xml2
-rw-r--r--plugins/Languages/zh_TW/informations.xml2
-rw-r--r--plugins/Listener/catchcopy-v0002/informations.xml2
-rw-r--r--plugins/PluginLoader/catchcopy-v0002/informations.xml2
-rw-r--r--plugins/SessionLoader/Windows/informations.xml2
-rw-r--r--plugins/Themes/Oxygen/Languages/ar/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/de/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/el/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/en/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/es/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/fr/translation.ts10
-rw-r--r--plugins/Themes/Oxygen/Languages/hi/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/hu/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/id/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/it/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/ja/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/ko/translation.ts10
-rw-r--r--plugins/Themes/Oxygen/Languages/nl/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/no/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/pl/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/pt/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/ru/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/th/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/tr/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/Languages/zh/translation.ts48
-rw-r--r--plugins/Themes/Oxygen/informations.xml2
-rw-r--r--plugins/Themes/Supercopier/informations.xml2
-rw-r--r--resources/Languages/en/informations.xml2
63 files changed, 569 insertions, 459 deletions
diff --git a/OptionDialog.cpp b/OptionDialog.cpp
index 32b9fd7..4c64875 100644
--- a/OptionDialog.cpp
+++ b/OptionDialog.cpp
@@ -404,7 +404,6 @@ void OptionDialog::loadOption()
newOptionValue("Ultracopier", "confirmToGroupWindows", OptionEngine::optionEngine->getOptionValue("Ultracopier","confirmToGroupWindows"));
newOptionValue("Ultracopier", "displayOSSpecific", OptionEngine::optionEngine->getOptionValue("Ultracopier","displayOSSpecific"));
newOptionValue("Ultracopier", "checkTheUpdate", OptionEngine::optionEngine->getOptionValue("Ultracopier","checkTheUpdate"));
- newOptionValue("Ultracopier", "giveGPUTime", OptionEngine::optionEngine->getOptionValue("Ultracopier","giveGPUTime"));
newOptionValue("Ultracopier", "remainingTimeAlgorithm", OptionEngine::optionEngine->getOptionValue("Ultracopier","remainingTimeAlgorithm"));
newOptionValue("Language", "Language", OptionEngine::optionEngine->getOptionValue("Language","Language"));
newOptionValue("Language", "Language_force", OptionEngine::optionEngine->getOptionValue("Language","Language_force"));
@@ -1006,12 +1005,6 @@ void OptionDialog::on_confirmToGroupWindows_clicked()
OptionEngine::optionEngine->setOptionValue("Ultracopier","confirmToGroupWindows",booltostring(ui->confirmToGroupWindows->isChecked()));
}
-void OptionDialog::on_giveGPUTime_clicked()
-{
- ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
- OptionEngine::optionEngine->setOptionValue("Ultracopier","giveGPUTime",booltostring(ui->giveGPUTime->isChecked()));
-}
-
void OptionDialog::on_remainingTimeAlgorithm_currentIndexChanged(int index)
{
if(allPluginsIsLoaded)
diff --git a/OptionDialog.h b/OptionDialog.h
index 8223494..c8e9db3 100644
--- a/OptionDialog.h
+++ b/OptionDialog.h
@@ -79,7 +79,6 @@ private slots:
void on_DisplayOSWarning_clicked();
void on_checkTheUpdate_clicked();
void on_confirmToGroupWindows_clicked();
- void on_giveGPUTime_clicked();
void oSSpecificClosed();
void on_remainingTimeAlgorithm_currentIndexChanged(int index);
diff --git a/OptionDialog.ui b/OptionDialog.ui
index 5ed7b52..54d9591 100644
--- a/OptionDialog.ui
+++ b/OptionDialog.ui
@@ -21,7 +21,16 @@
<property name="spacing">
<number>1</number>
</property>
- <property name="margin">
+ <property name="leftMargin">
+ <number>1</number>
+ </property>
+ <property name="topMargin">
+ <number>1</number>
+ </property>
+ <property name="rightMargin">
+ <number>1</number>
+ </property>
+ <property name="bottomMargin">
<number>1</number>
</property>
<item>
@@ -223,6 +232,9 @@
</property>
</widget>
</item>
+ <item row="5" column="1">
+ <widget class="QCheckBox" name="confirmToGroupWindows"/>
+ </item>
<item row="6" column="0">
<widget class="QLabel" name="label_11">
<property name="text">
@@ -233,12 +245,6 @@
<item row="6" column="1">
<widget class="QCheckBox" name="DisplayOSWarning"/>
</item>
- <item row="5" column="1">
- <widget class="QCheckBox" name="confirmToGroupWindows"/>
- </item>
- <item row="7" column="1">
- <widget class="QCheckBox" name="checkTheUpdate"/>
- </item>
<item row="7" column="0">
<widget class="QLabel" name="label_checkTheUpdate">
<property name="text">
@@ -246,24 +252,17 @@
</property>
</widget>
</item>
- <item row="8" column="1">
- <widget class="QCheckBox" name="giveGPUTime"/>
+ <item row="7" column="1">
+ <widget class="QCheckBox" name="checkTheUpdate"/>
</item>
<item row="8" column="0">
- <widget class="QLabel" name="label_gpu_time">
- <property name="text">
- <string>Give GPU time to fund the development</string>
- </property>
- </widget>
- </item>
- <item row="9" column="0">
<widget class="QLabel" name="label_10">
<property name="text">
<string>Remaining time algorithm</string>
</property>
</widget>
</item>
- <item row="9" column="1">
+ <item row="8" column="1">
<widget class="QComboBox" name="remainingTimeAlgorithm">
<item>
<property name="text">
diff --git a/PluginsManager.cpp b/PluginsManager.cpp
index 95c158d..269e837 100644
--- a/PluginsManager.cpp
+++ b/PluginsManager.cpp
@@ -907,7 +907,7 @@ void PluginsManager::newAuthPath(const std::string &path)
/// \brief transfor short plugin name into file name
std::string PluginsManager::getResolvedPluginName(const std::string &name)
{
- #if defined(Q_OS_LINUX)
+ #if defined(Q_OS_LINUX) || defined(Q_OS_HURD)
return "lib"+name+".so";
#elif defined(Q_OS_MAC)
#if defined(QT_DEBUG)
diff --git a/README b/README
index 8f15a2e..5b617ab 100644
--- a/README
+++ b/README
@@ -38,7 +38,7 @@ Building and documentation ============================
See the wiki for the general documentation and how to for building: https://ultracopier-wiki.first-world.info/
For the code documentation: https://doc-ultracopier.first-world.info/ (generated by doxygen)
The source proposed on the site is reconstritued source from: https://github.com/alphaonex86/Ultracopier to facilitate contribute effort.
-Prefer ultracopier-all-in-one-direct.pro to have easy and NO modular software. This is more oriented to GNU/Linux and macOS.
+Prefer ultracopier.pro to have easy and NO modular software. This is more oriented to GNU/Linux and macOS.
======================================================
Warranty =============================================
diff --git a/Variable.h b/Variable.h
index b3d2649..c3d01a3 100644
--- a/Variable.h
+++ b/Variable.h
@@ -12,9 +12,9 @@
#define ULTRACOPIER_DEBUG_MAX_ALL_SIZE 128 ///< \brief Max size (in MB) after the console/file output is dropped
#define ULTRACOPIER_DEBUG_MAX_IMPORTANT_SIZE 150 ///< \brief Max size (in MB) after the console/file important output is dropped
/// \brief the version
-#define ULTRACOPIER_VERSION "1.4.0.3"
+#define ULTRACOPIER_VERSION "1.4.0.4"
/// \brief the windows version
-#define ULTRACOPIER_WINDOWS_VERSION 1,4,0,3
+#define ULTRACOPIER_WINDOWS_VERSION 1,4,0,4
// define if the version is portable or not
////#define ULTRACOPIER_VERSION_PORTABLE
////#define ULTRACOPIER_VERSION_PORTABLEAPPS
diff --git a/main.cpp b/main.cpp
index 4c45d04..0a702b6 100644
--- a/main.cpp
+++ b/main.cpp
@@ -56,7 +56,6 @@ void registerTheOptions()
KeysList.push_back(std::pair<std::string, std::string>("GroupWindowWhen","0"));
KeysList.push_back(std::pair<std::string, std::string>("displayOSSpecific","true"));
KeysList.push_back(std::pair<std::string, std::string>("confirmToGroupWindows","true"));
- KeysList.push_back(std::pair<std::string, std::string>("giveGPUTime","true"));
KeysList.push_back(std::pair<std::string, std::string>("remainingTimeAlgorithm","0"));
#ifdef ULTRACOPIER_INTERNET_SUPPORT
#if defined(Q_OS_WIN32) || defined(Q_OS_MAC)
diff --git a/plugins-alternative/Listener/dbus/informations.xml b/plugins-alternative/Listener/dbus/informations.xml
index 77cba57..6ecae52 100644
--- a/plugins-alternative/Listener/dbus/informations.xml
+++ b/plugins-alternative/Listener/dbus/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Listener for catchcopy in dbus. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
<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>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>dbus</name>
<!-- 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. -->
diff --git a/plugins-alternative/PluginLoader/keybinding/informations.xml b/plugins-alternative/PluginLoader/keybinding/informations.xml
index 2caf359..213c7bd 100644
--- a/plugins-alternative/PluginLoader/keybinding/informations.xml
+++ b/plugins-alternative/PluginLoader/keybinding/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Plugin loader for catchcopy v0002. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
<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>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>keybinding</name>
<!-- 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. -->
diff --git a/plugins-alternative/SessionLoader/KDE4/informations.xml b/plugins-alternative/SessionLoader/KDE4/informations.xml
index 33d260f..14f8bea 100644
--- a/plugins-alternative/SessionLoader/KDE4/informations.xml
+++ b/plugins-alternative/SessionLoader/KDE4/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Test plugin to show how create SessionLoader plugin]]></description>
<description xml:lang="fr"><![CDATA[Plugin de test pour monter comment créer un plugin SessionLoader]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>KDE4</name>
<!-- 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. -->
diff --git a/plugins-alternative/Themes/Clean/informations.xml b/plugins-alternative/Themes/Clean/informations.xml
index 6e5a8fb..4a2f826 100644
--- a/plugins-alternative/Themes/Clean/informations.xml
+++ b/plugins-alternative/Themes/Clean/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Clean style for Ultracopier]]></description>
<description xml:lang="fr"><![CDATA[Style Clean pour Ultracopier]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Clean</name>
<!-- 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. -->
diff --git a/plugins-alternative/Themes/Teracopy/informations.xml b/plugins-alternative/Themes/Teracopy/informations.xml
index 0b3393e..a28e08d 100644
--- a/plugins-alternative/Themes/Teracopy/informations.xml
+++ b/plugins-alternative/Themes/Teracopy/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Teracopy style for Ultracopier, reproduct with screenshot on internet]]></description>
<description xml:lang="fr"><![CDATA[Style Teracopy pour Ultracopier, reproduit avec les screenshots vu sur internet]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Teracopy</name>
<!-- 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. -->
diff --git a/plugins-alternative/Themes/Windows/informations.xml b/plugins-alternative/Themes/Windows/informations.xml
index f97dce3..1871990 100644
--- a/plugins-alternative/Themes/Windows/informations.xml
+++ b/plugins-alternative/Themes/Windows/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Windows dialog for Ultracopier, to have same copy dialog than windows vista/7/8]]></description>
<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>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Windows</name>
<!-- 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. -->
diff --git a/plugins/CopyEngine/Rsync/informations.xml b/plugins/CopyEngine/Rsync/informations.xml
index 46cbf7e..17c9f26 100644
--- a/plugins/CopyEngine/Rsync/informations.xml
+++ b/plugins/CopyEngine/Rsync/informations.xml
@@ -14,7 +14,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Copy engine of Ultracopier which uses rsync as backend]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Rsync</name>
<!-- 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. -->
diff --git a/plugins/CopyEngine/Ultracopier/DriveManagement.cpp b/plugins/CopyEngine/Ultracopier/DriveManagement.cpp
index 8deaf3c..f25836f 100644
--- a/plugins/CopyEngine/Ultracopier/DriveManagement.cpp
+++ b/plugins/CopyEngine/Ultracopier/DriveManagement.cpp
@@ -19,6 +19,7 @@ DriveManagement::DriveManagement()
}
//get drive of an file or folder
+/// \todo do network drive support for windows
std::string DriveManagement::getDrive(const std::string &fileOrFolder) const
{
const std::string &inode=QDir::toNativeSeparators(QString::fromStdString(fileOrFolder)).toStdString();
diff --git a/plugins/CopyEngine/Ultracopier/ListThread.cpp b/plugins/CopyEngine/Ultracopier/ListThread.cpp
index 4b9cde5..8d47326 100644
--- a/plugins/CopyEngine/Ultracopier/ListThread.cpp
+++ b/plugins/CopyEngine/Ultracopier/ListThread.cpp
@@ -1160,21 +1160,20 @@ uint64_t ListThread::addToTransfer(const QFileInfo& source,const QFileInfo& dest
if(!source.isSymLink())
size=source.size();
const std::string &drive=driveManagement.getDrive(destination.absoluteFilePath().toStdString());
- if(drive.empty())
- abort();
- if(mode!=Ultracopier::Move || drive!=driveManagement.getDrive(source.absoluteFilePath().toStdString()))
- {
- if(requiredSpace.find(drive)!=requiredSpace.cend())
+ if(!drive.empty())//can be a network drive
+ if(mode!=Ultracopier::Move || drive!=driveManagement.getDrive(source.absoluteFilePath().toStdString()))
{
- requiredSpace[drive]+=size;
- 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());
- }
- else
- {
- requiredSpace[drive]=size;
- ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,QStringLiteral("set space %1 needed, on: %2").arg(size).arg(QString::fromStdString(drive)).toStdString());
+ if(requiredSpace.find(drive)!=requiredSpace.cend())
+ {
+ requiredSpace[drive]+=size;
+ 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());
+ }
+ else
+ {
+ requiredSpace[drive]=size;
+ ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,QStringLiteral("set space %1 needed, on: %2").arg(size).arg(QString::fromStdString(drive)).toStdString());
+ }
}
- }
bytesToTransfer+= size;
ActionToDoTransfer temp;
temp.id = generateIdNumber();
diff --git a/plugins/CopyEngine/Ultracopier/informations.xml b/plugins/CopyEngine/Ultracopier/informations.xml
index 61e04e0..7968ca8 100644
--- a/plugins/CopyEngine/Ultracopier/informations.xml
+++ b/plugins/CopyEngine/Ultracopier/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Copy engine of Ultracopier, do in Qt for all platform, and copy by stream]]></description>
<description xml:lang="fr"><![CDATA[Moteur de copie d'ultracopier, fait en Qt pour toutes les plateformes, et copie par stream]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Ultracopier</name>
<!-- 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. -->
diff --git a/plugins/Languages/ar/informations.xml b/plugins/Languages/ar/informations.xml
index 555ecf1..fcaf807 100644
--- a/plugins/Languages/ar/informations.xml
+++ b/plugins/Languages/ar/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to arabic. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>ar</name>
<!-- 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. -->
diff --git a/plugins/Languages/de/informations.xml b/plugins/Languages/de/informations.xml
index c036053..7818c1c 100644
--- a/plugins/Languages/de/informations.xml
+++ b/plugins/Languages/de/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to german. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>de</name>
<!-- 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. -->
diff --git a/plugins/Languages/el/informations.xml b/plugins/Languages/el/informations.xml
index f82a0d4..dc30cef 100644
--- a/plugins/Languages/el/informations.xml
+++ b/plugins/Languages/el/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to greek. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>el</name>
<!-- 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. -->
diff --git a/plugins/Languages/es/informations.xml b/plugins/Languages/es/informations.xml
index 4c8d150..2113692 100644
--- a/plugins/Languages/es/informations.xml
+++ b/plugins/Languages/es/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to spanish. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>es</name>
<!-- 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. -->
diff --git a/plugins/Languages/fr/informations.xml b/plugins/Languages/fr/informations.xml
index e7a4224..437ea90 100644
--- a/plugins/Languages/fr/informations.xml
+++ b/plugins/Languages/fr/informations.xml
@@ -15,7 +15,7 @@
<description xml:lang="en"><![CDATA[Translation of Ultracopier to French. For more details see the web site.]]></description>
<description xml:lang="fr"><![CDATA[Traduction d'ultracopier en Français. Pour plus de détails regardez le site web]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>fr</name>
<!-- 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. -->
diff --git a/plugins/Languages/hi/informations.xml b/plugins/Languages/hi/informations.xml
index d0453f3..4c0bc95 100644
--- a/plugins/Languages/hi/informations.xml
+++ b/plugins/Languages/hi/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to hindi. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>hi</name>
<!-- 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. -->
diff --git a/plugins/Languages/hu/informations.xml b/plugins/Languages/hu/informations.xml
index 1cee401..77ddd43 100644
--- a/plugins/Languages/hu/informations.xml
+++ b/plugins/Languages/hu/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Hungarian translation of Ultracopier]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>hu</name>
<!-- 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. -->
diff --git a/plugins/Languages/id/informations.xml b/plugins/Languages/id/informations.xml
index 79ea152..817490b 100644
--- a/plugins/Languages/id/informations.xml
+++ b/plugins/Languages/id/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to indonesian. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>id</name>
<!-- 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. -->
diff --git a/plugins/Languages/it/informations.xml b/plugins/Languages/it/informations.xml
index 181b891..bd6609d 100644
--- a/plugins/Languages/it/informations.xml
+++ b/plugins/Languages/it/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to italian. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>it</name>
<!-- 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. -->
diff --git a/plugins/Languages/ja/informations.xml b/plugins/Languages/ja/informations.xml
index 7e5e3b6..647c3aa 100644
--- a/plugins/Languages/ja/informations.xml
+++ b/plugins/Languages/ja/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to japanese. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>jp</name>
<!-- 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. -->
diff --git a/plugins/Languages/ko/informations.xml b/plugins/Languages/ko/informations.xml
index 6baf140..706afb3 100644
--- a/plugins/Languages/ko/informations.xml
+++ b/plugins/Languages/ko/informations.xml
@@ -13,7 +13,7 @@
<description xml:lang="en"><![CDATA[File to define all English language related, Ultracopier is written in English, then not translation file needed]]></description>
<description xml:lang="ko"><![CDATA[Ultracopier의 한국어 번역입니다. 더 나은 번역이나 오타, 오역에 대한 제보는 이메일로 연락해주시면 감사하겠습니다.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>ko</name>
<!-- 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. -->
diff --git a/plugins/Languages/nl/informations.xml b/plugins/Languages/nl/informations.xml
index f5d04f8..b50e36b 100644
--- a/plugins/Languages/nl/informations.xml
+++ b/plugins/Languages/nl/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to dutch. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>nl</name>
<!-- 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. -->
diff --git a/plugins/Languages/no/informations.xml b/plugins/Languages/no/informations.xml
index 5cb447b..21d465b 100644
--- a/plugins/Languages/no/informations.xml
+++ b/plugins/Languages/no/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to norwegian. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>no</name>
<!-- 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. -->
diff --git a/plugins/Languages/pl/informations.xml b/plugins/Languages/pl/informations.xml
index 847ef03..7617a00 100644
--- a/plugins/Languages/pl/informations.xml
+++ b/plugins/Languages/pl/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to polish. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>pl</name>
<!-- 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. -->
diff --git a/plugins/Languages/pt/informations.xml b/plugins/Languages/pt/informations.xml
index 744ab32..9c3d0e3 100644
--- a/plugins/Languages/pt/informations.xml
+++ b/plugins/Languages/pt/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to portuguese. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>pt</name>
<!-- 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. -->
diff --git a/plugins/Languages/ru/informations.xml b/plugins/Languages/ru/informations.xml
index f663205..49ea3f6 100644
--- a/plugins/Languages/ru/informations.xml
+++ b/plugins/Languages/ru/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to russian. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>ru</name>
<!-- 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. -->
diff --git a/plugins/Languages/th/informations.xml b/plugins/Languages/th/informations.xml
index 4bd5bb9..bc66718 100644
--- a/plugins/Languages/th/informations.xml
+++ b/plugins/Languages/th/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to thai. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>th</name>
<!-- 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. -->
diff --git a/plugins/Languages/tr/informations.xml b/plugins/Languages/tr/informations.xml
index f1620ec..bc26b50 100644
--- a/plugins/Languages/tr/informations.xml
+++ b/plugins/Languages/tr/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to turkish. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>tr</name>
<!-- 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. -->
diff --git a/plugins/Languages/zh/informations.xml b/plugins/Languages/zh/informations.xml
index 853da7c..ca01be8 100644
--- a/plugins/Languages/zh/informations.xml
+++ b/plugins/Languages/zh/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to chinese. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>ch</name>
<!-- 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. -->
diff --git a/plugins/Languages/zh_TW/informations.xml b/plugins/Languages/zh_TW/informations.xml
index fc37a1e..214150d 100644
--- a/plugins/Languages/zh_TW/informations.xml
+++ b/plugins/Languages/zh_TW/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[Translation of Ultracopier to chinese traditional. For more details see the web site.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>zh_tw</name>
<!-- 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. -->
diff --git a/plugins/Listener/catchcopy-v0002/informations.xml b/plugins/Listener/catchcopy-v0002/informations.xml
index b98adc2..9efc7ce 100644
--- a/plugins/Listener/catchcopy-v0002/informations.xml
+++ b/plugins/Listener/catchcopy-v0002/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Listener for catchcopy v0002. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
<description xml:lang="fr"><![CDATA[Écouteur pour catchcopy v0002. Permet de recevoir un liste de copie venant d'un plugin/explorateur avec catchcopy.]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>catchcopy-v0002</name>
<!-- 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. -->
diff --git a/plugins/PluginLoader/catchcopy-v0002/informations.xml b/plugins/PluginLoader/catchcopy-v0002/informations.xml
index 9257d3a..95861a6 100644
--- a/plugins/PluginLoader/catchcopy-v0002/informations.xml
+++ b/plugins/PluginLoader/catchcopy-v0002/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Plugin loader for catchcopy v0002. Allow to receive copy list from plugin/explorer compatible with catchcopy.]]></description>
<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>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>catchcopy-v0002</name>
<!-- 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. -->
diff --git a/plugins/SessionLoader/Windows/informations.xml b/plugins/SessionLoader/Windows/informations.xml
index 1042f96..4bfbab1 100644
--- a/plugins/SessionLoader/Windows/informations.xml
+++ b/plugins/SessionLoader/Windows/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[This plugin allow Ultracopier to be loaded at the session opening under windows]]></description>
<description xml:lang="fr"><![CDATA[Ce plugin permet de charger Ultracopier à l'ouverture de la sessions sous windows]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Windows</name>
<!-- 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. -->
diff --git a/plugins/Themes/Oxygen/Languages/ar/translation.ts b/plugins/Themes/Oxygen/Languages/ar/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/ar/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/ar/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/de/translation.ts b/plugins/Themes/Oxygen/Languages/de/translation.ts
index 74d215d..8f51f95 100644
--- a/plugins/Themes/Oxygen/Languages/de/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/de/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation>Kaufe die Ultimate Version um die Entwicklung zu finanzieren</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation>Datei %1/%2, Größe:%3/%4</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation>Zu kopierende Dateien</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation>Zu verschiebende Dateien</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation>Nicht schließen, wenn Fehler aufgetreten sind</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation>Niemals schließen</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation>Immer schließen</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation>Dateiname, 0KB</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation>Farbe auswählen</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation>Nicht schließen, wenn Fehler aufgetreten sind</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation>Niemals schließen</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation>Immer schließen</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation>Wählen Sie eine Farbe</translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/el/translation.ts b/plugins/Themes/Oxygen/Languages/el/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/el/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/el/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/en/translation.ts b/plugins/Themes/Oxygen/Languages/en/translation.ts
index 6cbd884..73e399d 100644
--- a/plugins/Themes/Oxygen/Languages/en/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/en/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/es/translation.ts b/plugins/Themes/Oxygen/Languages/es/translation.ts
index 46b67a9..fff5a9c 100644
--- a/plugins/Themes/Oxygen/Languages/es/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/es/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation>Comprar la versión Ultimate para financiar el desarrollo</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation>El archivo %1/%2, el tamaño: %3/%4</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation>Lista de copia</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation>Lista de movimiento</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation>No cierre si se encuentran errores</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation>Nunca cierre</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation>Siempre cerrar</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation>Nombre de archivo, 0KB</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation>Seleccione un color</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation>No cierre si se encuentran errores</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation>Nunca cierre</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation>Siempre cerrar</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation>Seleccione un color</translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/fr/translation.ts b/plugins/Themes/Oxygen/Languages/fr/translation.ts
index 9a89964..c3aa909 100644
--- a/plugins/Themes/Oxygen/Languages/fr/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/fr/translation.ts
@@ -5,11 +5,17 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="+298"/>
- <location line="+11"/>
+ <location line="+15"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location line="-12"/>
+ <location line="+15"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location line="+2"/>
<source>Buy the Ultimate version to fund development</source>
<translation>Achetez la version Ultimate pour financer le développement</translation>
@@ -67,7 +73,7 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="+224"/>
+ <location filename="../../ThemesFactory.cpp" line="+228"/>
<source>Don&apos;t close if errors are found</source>
<translation>Garder ouvert s&apos;il y a des erreurs</translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/hi/translation.ts b/plugins/Themes/Oxygen/Languages/hi/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/hi/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/hi/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/hu/translation.ts b/plugins/Themes/Oxygen/Languages/hu/translation.ts
index ecf3eb5..409e6ea 100644
--- a/plugins/Themes/Oxygen/Languages/hu/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/hu/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation>Vásárold meg az Ultimate verziót a fejlesztés támogatásához</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation>Fájl %1/%2, méret: %3/%4</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation>Lista másolása</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation>Lista mozgatása</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation>Ne zárja be, ha hiba történik</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation>Sose zárja be</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation>Mindig zárja be</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation>Fájlnév, 0KB</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation>Válassz egy színt</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation>Ne zárja be, ha hiba történik</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation>Sose zárja be</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation>Mindig zárja be</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation>Válassz egy színt</translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/id/translation.ts b/plugins/Themes/Oxygen/Languages/id/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/id/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/id/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/it/translation.ts b/plugins/Themes/Oxygen/Languages/it/translation.ts
index 5ca6a07..c813017 100644
--- a/plugins/Themes/Oxygen/Languages/it/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/it/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation>Acquista la versione Ultimate per finanziare lo sviluppo del programma</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation>File %1/%2, dimensione: %3/%4</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation>Lista della copia</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation>Lista dello spostamento</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation>Non chiudere se vengono rilevati errori</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation>Non chiudere mai</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation>Chiudere sempre</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation>Nome del file, 0KB</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation>Scegliere un colore</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation>%1 %2% di %3</translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation>Non chiudere se vengono rilevati errori</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation>Non chiudere mai</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation>Chiudere sempre</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation>Scegliere un colore</translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/ja/translation.ts b/plugins/Themes/Oxygen/Languages/ja/translation.ts
index facdce1..2099b73 100644
--- a/plugins/Themes/Oxygen/Languages/ja/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/ja/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/ko/translation.ts b/plugins/Themes/Oxygen/Languages/ko/translation.ts
index 86a2b04..c446d72 100644
--- a/plugins/Themes/Oxygen/Languages/ko/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/ko/translation.ts
@@ -5,11 +5,17 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="+298"/>
- <location line="+11"/>
+ <location line="+15"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
+ <location line="-12"/>
+ <location line="+15"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location line="+2"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
@@ -67,7 +73,7 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="+224"/>
+ <location filename="../../ThemesFactory.cpp" line="+228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished">오류 발견시 종료 안함</translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/nl/translation.ts b/plugins/Themes/Oxygen/Languages/nl/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/nl/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/nl/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/no/translation.ts b/plugins/Themes/Oxygen/Languages/no/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/no/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/no/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/pl/translation.ts b/plugins/Themes/Oxygen/Languages/pl/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/pl/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/pl/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/pt/translation.ts b/plugins/Themes/Oxygen/Languages/pt/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/pt/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/pt/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/ru/translation.ts b/plugins/Themes/Oxygen/Languages/ru/translation.ts
index ac18a39..1ef7093 100644
--- a/plugins/Themes/Oxygen/Languages/ru/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/ru/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation>Файл %1/%2, размер: %3/%4</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished">Копировать список</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished">Не закрывать, если найдены ошибки</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished">Никогда не закрывать</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished">Всегда закрывайте</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation>Имя файла, 0KB</translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished">Не закрывать, если найдены ошибки</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished">Никогда не закрывать</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished">Всегда закрывайте</translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/th/translation.ts b/plugins/Themes/Oxygen/Languages/th/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/th/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/th/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/tr/translation.ts b/plugins/Themes/Oxygen/Languages/tr/translation.ts
index 483e140..c7b2fdd 100644
--- a/plugins/Themes/Oxygen/Languages/tr/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/tr/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/Languages/zh/translation.ts b/plugins/Themes/Oxygen/Languages/zh/translation.ts
index facdce1..2099b73 100644
--- a/plugins/Themes/Oxygen/Languages/zh/translation.ts
+++ b/plugins/Themes/Oxygen/Languages/zh/translation.ts
@@ -5,61 +5,67 @@
<name>Themes</name>
<message>
<location filename="../../interface.cpp" line="298"/>
- <location filename="../../interface.cpp" line="309"/>
+ <location filename="../../interface.cpp" line="313"/>
<source>%1 is deprecated, Use %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="311"/>
+ <location filename="../../interface.cpp" line="301"/>
+ <location filename="../../interface.cpp" line="316"/>
+ <source>This will be the last version for Mac, but you can compile from source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../../interface.cpp" line="318"/>
<source>Buy the Ultimate version to fund development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="396"/>
+ <location filename="../../interface.cpp" line="403"/>
<source>File %1/%2, size: %3/%4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="630"/>
+ <location filename="../../interface.cpp" line="637"/>
<source>Copy list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="632"/>
+ <location filename="../../interface.cpp" line="639"/>
<source>Move list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1053"/>
+ <location filename="../../interface.cpp" line="1060"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1054"/>
+ <location filename="../../interface.cpp" line="1061"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1055"/>
+ <location filename="../../interface.cpp" line="1062"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1057"/>
+ <location filename="../../interface.cpp" line="1064"/>
<source>File Name, 0KB</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1244"/>
- <location filename="../../interface.cpp" line="1256"/>
- <location filename="../../interface.cpp" line="1268"/>
+ <location filename="../../interface.cpp" line="1251"/>
+ <location filename="../../interface.cpp" line="1263"/>
+ <location filename="../../interface.cpp" line="1275"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../interface.cpp" line="1343"/>
- <location filename="../../interface.cpp" line="1347"/>
- <location filename="../../interface.cpp" line="1349"/>
+ <location filename="../../interface.cpp" line="1350"/>
+ <location filename="../../interface.cpp" line="1354"/>
+ <location filename="../../interface.cpp" line="1356"/>
<source>%1 %2% of %3</source>
<translation type="unfinished"></translation>
</message>
@@ -67,24 +73,24 @@
<context>
<name>ThemesFactory</name>
<message>
- <location filename="../../ThemesFactory.cpp" line="224"/>
+ <location filename="../../ThemesFactory.cpp" line="228"/>
<source>Don&apos;t close if errors are found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="225"/>
+ <location filename="../../ThemesFactory.cpp" line="229"/>
<source>Never close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="226"/>
+ <location filename="../../ThemesFactory.cpp" line="230"/>
<source>Always close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../ThemesFactory.cpp" line="422"/>
- <location filename="../../ThemesFactory.cpp" line="437"/>
- <location filename="../../ThemesFactory.cpp" line="452"/>
+ <location filename="../../ThemesFactory.cpp" line="426"/>
+ <location filename="../../ThemesFactory.cpp" line="441"/>
+ <location filename="../../ThemesFactory.cpp" line="456"/>
<source>Select a color</source>
<translation type="unfinished"></translation>
</message>
diff --git a/plugins/Themes/Oxygen/informations.xml b/plugins/Themes/Oxygen/informations.xml
index 6cfe489..f03f832 100644
--- a/plugins/Themes/Oxygen/informations.xml
+++ b/plugins/Themes/Oxygen/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Oxygen style for Ultracopier]]></description>
<description xml:lang="fr"><![CDATA[Style oxygen pour Ultracopier]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Oxygen</name>
<!-- 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. -->
diff --git a/plugins/Themes/Supercopier/informations.xml b/plugins/Themes/Supercopier/informations.xml
index 476e5f5..d5cb35e 100644
--- a/plugins/Themes/Supercopier/informations.xml
+++ b/plugins/Themes/Supercopier/informations.xml
@@ -17,7 +17,7 @@
<description xml:lang="en"><![CDATA[Supercopier style for Ultracopier]]></description>
<description xml:lang="fr"><![CDATA[Style supercopier pour Ultracopier]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>Supercopier</name>
<!-- 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. -->
diff --git a/resources/Languages/en/informations.xml b/resources/Languages/en/informations.xml
index 979d729..8b998f0 100644
--- a/resources/Languages/en/informations.xml
+++ b/resources/Languages/en/informations.xml
@@ -12,7 +12,7 @@
<!-- Detailed description -->
<description xml:lang="en"><![CDATA[File to define all English language related, Ultracopier is written in English, then not translation file needed]]></description>
<!-- Version of this release of this plugin, need be like that's: A.B.C.D, where A, B, C and D is number -->
- <version>1.4.0.3</version>
+ <version>1.4.0.4</version>
<!-- 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. -->
<name>en</name>
<dependencies><![CDATA[