diff options
Diffstat (limited to 'src/plugins/General/converter/converterfactory.cpp')
| -rw-r--r-- | src/plugins/General/converter/converterfactory.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/General/converter/converterfactory.cpp b/src/plugins/General/converter/converterfactory.cpp index 0254cda82..c48deae30 100644 --- a/src/plugins/General/converter/converterfactory.cpp +++ b/src/plugins/General/converter/converterfactory.cpp @@ -22,12 +22,11 @@ #include "converterhelper.h" #include "converterfactory.h" -const GeneralProperties ConverterFactory::properties() const +GeneralProperties ConverterFactory::properties() const { GeneralProperties properties; properties.name = tr("Converter Plugin"); properties.shortName = "converter"; - properties.translation = QLatin1String(":/converter_plugin_"); properties.hasAbout = true; properties.hasSettings = false; properties.visibilityControl = false; @@ -53,3 +52,8 @@ void ConverterFactory::showAbout(QWidget *parent) "using external command-line encoders") +"\n"+ tr("Written by: Ilya Kotov <forkotov02@ya.ru>")); } + +QString ConverterFactory::translation() const +{ + return QLatin1String(":/converter_plugin_"); +} |
