diff options
Diffstat (limited to 'lumina-fileinfo')
68 files changed, 0 insertions, 11179 deletions
diff --git a/lumina-fileinfo/MainUI.cpp b/lumina-fileinfo/MainUI.cpp deleted file mode 100644 index a2c30ebd..00000000 --- a/lumina-fileinfo/MainUI.cpp +++ /dev/null @@ -1,299 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2015, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#include <QtConcurrent/QtConcurrentRun> -#include "MainUI.h" -#include "ui_MainUI.h" - -#include <QFileDialog> -#include <QMessageBox> - -#include <LuminaUtils.h> -#include <LuminaOS.h> - -LFileInfo INFO = LFileInfo(""); - -MainUI::MainUI() : QDialog(), ui(new Ui::MainUI){ - ui->setupUi(this); //load the designer form - canwrite = false; - terminate_thread = false; - UpdateIcons(); //Set all the icons in the dialog - SetupConnections(); -} - -MainUI::~MainUI(){ - terminate_thread = true; -} - -//============= -// PUBLIC -//============= -void MainUI::LoadFile(QString path, QString type){ - INFO = LFileInfo(path); - if(INFO.exists()){ canwrite = INFO.isWritable(); } - else{ - //See if the containing directory can be written - QFileInfo chk(INFO.absolutePath()); - canwrite = (chk.isDir() && chk.isWritable()); - } - if(!INFO.exists() && !type.isEmpty()){ - //Set the proper type flag on the shortcut - if(type=="APP"){ INFO.XDG()->type = XDGDesktop::APP; } - else if(type=="LINK"){ INFO.XDG()->type = XDGDesktop::LINK; } - } - - //First load the general file information - ui->label_file_name->setText( INFO.fileName() ); - ui->label_file_mimetype->setText( INFO.mimetype() ); - if(!INFO.isDir()){ ui->label_file_size->setText( LUtils::BytesToDisplaySize( INFO.size() ) ); } - else { - ui->label_file_size->setText(tr("---Calculating---")); - QtConcurrent::run(this, &MainUI::GetDirSize, INFO.absoluteFilePath()); - } - ui->label_file_owner->setText(INFO.owner()); - ui->label_file_group->setText(INFO.group()); - ui->label_file_created->setText( INFO.created().toString(Qt::SystemLocaleLongDate) ); - ui->label_file_modified->setText( INFO.lastModified().toString(Qt::SystemLocaleLongDate) ); - //Get the file permissions - QString perms; - if(INFO.isReadable() && INFO.isWritable()){ perms = tr("Read/Write"); } - else if(INFO.isReadable()){ perms = tr("Read Only"); } - else if(INFO.isWritable()){ perms = tr("Write Only"); } - else{ perms = tr("No Access"); } - ui->label_file_perms->setText(perms); - //Now the special "type" for the file - QString ftype; - if(INFO.suffix().toLower()=="desktop"){ ftype = tr("XDG Shortcut"); } - else if(INFO.isDir()){ ftype = tr("Directory"); } - else if(INFO.isExecutable()){ ftype = tr("Binary"); } - else{ ftype = INFO.suffix().toUpper(); } - if(INFO.isHidden()){ ftype = QString(tr("Hidden %1")).arg(type); } - ui->label_file_type->setText(ftype); - //Now load the icon for the file - if(INFO.isImage()){ - ui->label_file_icon->setPixmap( QPixmap(INFO.absoluteFilePath()).scaledToHeight(64) ); - }else{ - ui->label_file_icon->setPixmap( LXDG::findIcon( INFO.iconfile(), "unknown").pixmap(QSize(64,64)) ); - } - //Now load the special XDG desktop info - if(INFO.isDesktopFile()){ - - if(INFO.XDG()->type == XDGDesktop::APP){ - ui->line_xdg_command->setText(INFO.XDG()->exec); - ui->line_xdg_wdir->setText(INFO.XDG()->path); - ui->check_xdg_useTerminal->setChecked( INFO.XDG()->useTerminal ); - ui->check_xdg_startupNotify->setChecked( INFO.XDG()->startupNotify ); - }else if(INFO.XDG()->type==XDGDesktop::LINK){ - //Hide the options that are unavailable for links - //Command line (exec) - ui->line_xdg_command->setVisible(false); - ui->tool_xdg_getCommand->setVisible(false); - ui->lblCommand->setVisible(false); - //Options - ui->lblOptions->setVisible(false); - ui->check_xdg_useTerminal->setVisible(false); - ui->check_xdg_startupNotify->setVisible(false); - //Now load the variables for this type of shortcut - ui->lblWorkingDir->setText(tr("URL:")); - ui->line_xdg_wdir->setText( INFO.XDG()->url ); - ui->tool_xdg_getDir->setVisible(false); //the dir selection button - - } - ui->line_xdg_name->setText(INFO.XDG()->name); - ui->line_xdg_comment->setText(INFO.XDG()->comment); - ui->push_xdg_getIcon->setWhatsThis( INFO.XDG()->icon ); - ReloadAppIcon(); - ui->push_save->setVisible(true); - ui->push_save->setEnabled(false); - }else{ - xdgvaluechanged(); //just do the disables here - //Also remove the xdg tab - if(ui->tabWidget->count()>1){ ui->tabWidget->removeTab(1); } - } - //Setup the tab - if(type.isEmpty()){ ui->tabWidget->setCurrentIndex(0); } - else if(ui->tabWidget->count()>1){ ui->tabWidget->setCurrentIndex(1); } - //Hide the tab bar (the autoHideTabBar setting was not added until Qt 5.4) - if(ui->tabWidget->count() < 2){ ui->tabWidget->tabBar()->hide(); } -} - -void MainUI::UpdateIcons(){ - this->setWindowIcon(LXDG::findIcon("document-preview","unknown")); - ui->push_close->setIcon( LXDG::findIcon("dialog-close","") ); - ui->push_save->setIcon( LXDG::findIcon("document-save","") ); - ui->tool_xdg_getCommand->setIcon( LXDG::findIcon("edit-find-project","") ); - ui->tool_xdg_getDir->setIcon( LXDG::findIcon("document-open","") ); -} - -//============== -// PRIVATE -//============== -void MainUI::ReloadAppIcon(){ - ui->push_xdg_getIcon->setIcon( LXDG::findIcon(ui->push_xdg_getIcon->whatsThis(),"") ); -} - -void MainUI::GetDirSize(const QString dirname) const { - const quint16 update_frequency = 2000; //For reducing the number of folder_size_changed calls - quint64 filesize = 0; - quint64 file_number = 0; - quint64 dir_number = 1; - QDir folder(dirname); - QFileInfoList file_list; - QString dir_name; - QList<QString> head; - folder.setFilter(QDir::Hidden|QDir::AllEntries|QDir::NoDotAndDotDot); - file_list = folder.entryInfoList(); - for(int i=0; i<file_list.size(); ++i) { - if(terminate_thread) - break; - if(file_list[i].isDir() && !file_list[i].isSymLink()) { - ++dir_number; - head.prepend(file_list[i].absoluteFilePath()); - } - else - ++file_number; - if(!file_list[i].isSymLink()) - filesize += file_list[i].size(); - } - while(!head.isEmpty()) { - if(terminate_thread) - break; - dir_name = head.takeFirst(); - if(!folder.cd(dir_name)) { - qDebug() << "The folder " << dir_name << " doesn't exist"; - continue; - } - file_list = folder.entryInfoList(); - for(int i=0; i<file_list.size(); ++i) { - if(file_list[i].isDir() && !file_list[i].isSymLink()) { - ++dir_number; - head.prepend(file_list[i].absoluteFilePath()); - } - else - ++file_number; - if(!file_list[i].isSymLink()) - filesize += file_list[i].size(); - if(i%update_frequency == 0) - emit folder_size_changed(filesize, file_number, dir_number, false); - } - } - emit folder_size_changed(filesize, file_number, dir_number, true); -} - -// Initialization procedures -void MainUI::SetupConnections(){ - connect(ui->line_xdg_command, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); - connect(ui->line_xdg_comment, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); - connect(ui->line_xdg_name, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); - connect(ui->line_xdg_wdir, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); - connect(ui->check_xdg_useTerminal, SIGNAL(clicked()), this, SLOT(xdgvaluechanged()) ); - connect(ui->check_xdg_startupNotify, SIGNAL(clicked()), this, SLOT(xdgvaluechanged()) ); - connect(this, SIGNAL(folder_size_changed(quint64, quint64, quint64, bool)), this, SLOT(refresh_folder_size(quint64, quint64, quint64, bool))); -} - -//UI Buttons -void MainUI::on_push_close_clicked(){ - terminate_thread = true; - if(ui->push_save->isEnabled()){ - //Still have unsaved changes - //TO-DO - prompt for whether to save the changes - - } - this->close(); -} - -void MainUI::on_push_save_clicked(){ - //Save all the xdg values into the structure - if(!INFO.isDesktopFile() || !canwrite){ return; } - XDGDesktop XDG = *INFO.XDG();; - //Now change the structure - XDG.name = ui->line_xdg_name->text(); - XDG.genericName = ui->line_xdg_name->text().toLower(); - XDG.comment = ui->line_xdg_comment->text(); - XDG.icon = ui->push_xdg_getIcon->whatsThis(); - //Now do the type-specific fields - if(XDG.type==XDGDesktop::APP){ - XDG.exec = ui->line_xdg_command->text(); - XDG.tryexec = ui->line_xdg_command->text().section(" ",0,0); //use the first word/binary for the existance check - XDG.path = ui->line_xdg_wdir->text(); //working dir/path - XDG.useTerminal = ui->check_xdg_useTerminal->isChecked(); - XDG.startupNotify = ui->check_xdg_startupNotify->isChecked(); - }else if(XDG.type==XDGDesktop::LINK){ - XDG.url = ui->line_xdg_wdir->text(); //we re-used this field - } - //Clear any info which this utility does not support at the moment - XDG.actionList.clear(); - XDG.actions.clear(); - //Now save the structure to file - bool saved = LXDG::saveDesktopFile( XDG, true); //Try to merge the file/structure as necessary - qDebug() << "File Saved:" << saved; - ui->push_save->setEnabled( !saved ); - if(saved){ - //Re-load the file info - LoadFile(INFO.absoluteFilePath()); - } -} - -void MainUI::on_tool_xdg_getCommand_clicked(QString prev){ - //Find a binary to run - QString dir = prev; //start with the previous attempt (if there was one) - if(dir.isEmpty()){ ui->line_xdg_command->text(); }//then try current selection - if(dir.isEmpty()){ dir = LOS::AppPrefix()+"bin"; } //then open the application binaries directory - QString file = QFileDialog::getOpenFileName(this, tr("Select a binary"), dir ); - if(file.isEmpty()){ return; } //cancelled - if(!LUtils::isValidBinary(file)){ - QMessageBox::warning(this, tr("Error"), tr("Invalid selection: Not a valid executable")); - on_tool_xdg_getCommand_clicked(file); - return; - } - ui->line_xdg_command->setText(file); - xdgvaluechanged(); -} - -void MainUI::on_tool_xdg_getDir_clicked(){ - //Find a directory - QString dir = ui->line_xdg_wdir->text(); - if(dir.isEmpty()){ dir = QDir::homePath(); } - dir = QFileDialog::getExistingDirectory(this, tr("Select a directory"), dir); - if(dir.isEmpty()){ return; } //cancelled - ui->line_xdg_wdir->setText(dir); - xdgvaluechanged(); -} - -void MainUI::on_push_xdg_getIcon_clicked(){ - //Find an image file - QString dir = ui->push_xdg_getIcon->whatsThis(); //then try current selection - if(dir.isEmpty()){ dir = QDir::homePath(); } - //Get the known file extensions - QStringList ext = LUtils::imageExtensions(); - for(int i=0; i<ext.length(); i++){ ext[i].prepend("*."); } //turn them into valid filters - QString file = QFileDialog::getOpenFileName(this, tr("Select an icon"), dir ,QString(tr("Images (%1);; All Files (*)")).arg(ext.join(" ")) ); - if(file.isEmpty()){ return; } //cancelled - ui->push_xdg_getIcon->setWhatsThis(file); - ReloadAppIcon(); - xdgvaluechanged(); -} - -//XDG Value Changed -void MainUI::xdgvaluechanged(){ - if(INFO.isDesktopFile()){ - ui->push_save->setVisible(true); - //Compare the current UI values to the file values - ui->push_save->setEnabled(canwrite); //assume changed at this point - // TO-DO - - }else{ - ui->push_save->setVisible(false); - ui->push_save->setEnabled(false); - } -} - -void MainUI::refresh_folder_size(quint64 size, quint64 files, quint64 folders, bool finished) { - if(finished) - ui->label_file_size->setText( LUtils::BytesToDisplaySize( size ) + " -- " + tr(" Folders: ") + QString::number(folders) + " / " + tr("Files: ") + QString::number(files) ); - else - ui->label_file_size->setText( LUtils::BytesToDisplaySize( size ) + " -- " + tr(" Folders: ") + QString::number(folders) + " / " + tr("Files: ") + QString::number(files) + tr(" Calculating..." )); -} diff --git a/lumina-fileinfo/MainUI.h b/lumina-fileinfo/MainUI.h deleted file mode 100644 index 65349d3e..00000000 --- a/lumina-fileinfo/MainUI.h +++ /dev/null @@ -1,63 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2015, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -// Note: Some of this class (particularly parts of the UI), were initially created by: -// William (william-os4y on GitHub: https://github.com/william-os4y) -// March -> April, 2015 -// This utility was re-written by Ken Moore on August 31, 2015 -// Primarily to align the utility with the LWinInfo & XDGDesktop classes -//=========================================== -#ifndef _LUMINA_FILE_INFO_MAIN_UI_H -#define _LUMINA_FILE_INFO_MAIN_UI_H - -#include <QDialog> - -#include <LuminaXDG.h> - -namespace Ui{ - class MainUI; -}; - -class MainUI : public QDialog{ - Q_OBJECT -public: - MainUI(); - ~MainUI(); - - void LoadFile(QString path, QString type=""); //type=[APP, LINK] - -public slots: - void UpdateIcons(); - -private: - Ui::MainUI *ui; - bool canwrite; - bool terminate_thread; //flag for terminating the GetDirSize task - void ReloadAppIcon(); - void GetDirSize(const QString dirname) const; //function to get folder size - -signals: - void folder_size_changed(quint64 size, quint64 files, quint64 folders, bool finished) const; //Signal for updating the folder size asynchronously - -private slots: - //Initialization functions - void SetupConnections(); - - //UI Buttons - void on_push_close_clicked(); - void on_push_save_clicked(); - void on_tool_xdg_getCommand_clicked(QString prev = ""); - void on_tool_xdg_getDir_clicked(); - void on_push_xdg_getIcon_clicked(); - - //XDG Value Changed - void xdgvaluechanged(); - - //Folder size - void refresh_folder_size(quint64 size, quint64 files, quint64 folders, bool finished); //Slot for updating the folder size asynchronously -}; - -#endif diff --git a/lumina-fileinfo/MainUI.ui b/lumina-fileinfo/MainUI.ui deleted file mode 100644 index d8cc554d..00000000 --- a/lumina-fileinfo/MainUI.ui +++ /dev/null @@ -1,420 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>MainUI</class> - <widget class="QDialog" name="MainUI"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>349</width> - <height>354</height> - </rect> - </property> - <property name="windowTitle"> - <string>File Information</string> - </property> - <layout class="QVBoxLayout" name="verticalLayout"> - <item> - <widget class="QTabWidget" name="tabWidget"> - <property name="currentIndex"> - <number>0</number> - </property> - <widget class="QWidget" name="tab_file"> - <attribute name="title"> - <string>File Information</string> - </attribute> - <layout class="QFormLayout" name="formLayout"> - <property name="labelAlignment"> - <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> - </property> - <item row="0" column="0"> - <widget class="QLabel" name="label_file_icon"> - <property name="text"> - <string notr="true">icon</string> - </property> - <property name="alignment"> - <set>Qt::AlignCenter</set> - </property> - </widget> - </item> - <item row="4" column="0" colspan="2"> - <widget class="Line" name="line_2"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - </widget> - </item> - <item row="5" column="0"> - <widget class="QLabel" name="label"> - <property name="text"> - <string>Owner:</string> - </property> - </widget> - </item> - <item row="5" column="1"> - <widget class="QLabel" name="label_file_owner"> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="6" column="0"> - <widget class="QLabel" name="label_3"> - <property name="text"> - <string>Group:</string> - </property> - </widget> - </item> - <item row="6" column="1"> - <widget class="QLabel" name="label_file_group"> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="7" column="0"> - <widget class="QLabel" name="label_11"> - <property name="text"> - <string>Permissions:</string> - </property> - </widget> - </item> - <item row="10" column="0" colspan="2"> - <widget class="Line" name="line_3"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - </widget> - </item> - <item row="11" column="0"> - <widget class="QLabel" name="label_7"> - <property name="text"> - <string>Created:</string> - </property> - </widget> - </item> - <item row="11" column="1"> - <widget class="QLabel" name="label_file_created"> - <property name="toolTip"> - <string>Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently.</string> - </property> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="12" column="0"> - <widget class="QLabel" name="label_2"> - <property name="text"> - <string>Last Modified:</string> - </property> - </widget> - </item> - <item row="1" column="0"> - <widget class="QLabel" name="label_5"> - <property name="text"> - <string>Type:</string> - </property> - </widget> - </item> - <item row="2" column="0"> - <widget class="QLabel" name="label_6"> - <property name="text"> - <string>MimeType:</string> - </property> - </widget> - </item> - <item row="2" column="1"> - <widget class="QLabel" name="label_file_mimetype"> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="1" column="1"> - <widget class="QLabel" name="label_file_type"> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="7" column="1"> - <widget class="QLabel" name="label_file_perms"> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="12" column="1"> - <widget class="QLabel" name="label_file_modified"> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="3" column="0"> - <widget class="QLabel" name="label_4"> - <property name="text"> - <string>File Size:</string> - </property> - </widget> - </item> - <item row="3" column="1"> - <widget class="QLabel" name="label_file_size"> - <property name="text"> - <string notr="true"/> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - <item row="0" column="1"> - <widget class="QLabel" name="label_file_name"> - <property name="text"> - <string notr="true"/> - </property> - <property name="wordWrap"> - <bool>true</bool> - </property> - <property name="textInteractionFlags"> - <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> - </property> - </widget> - </item> - </layout> - </widget> - <widget class="QWidget" name="tab_deskedit"> - <attribute name="title"> - <string>Edit Shortcut</string> - </attribute> - <layout class="QVBoxLayout" name="verticalLayout_2"> - <property name="spacing"> - <number>2</number> - </property> - <property name="leftMargin"> - <number>4</number> - </property> - <property name="topMargin"> - <number>4</number> - </property> - <property name="rightMargin"> - <number>4</number> - </property> - <property name="bottomMargin"> - <number>4</number> - </property> - <item> - <layout class="QGridLayout" name="gridLayout"> - <item row="3" column="0" alignment="Qt::AlignRight"> - <widget class="QLabel" name="lblWorkingDir"> - <property name="text"> - <string>Working Dir:</string> - </property> - </widget> - </item> - <item row="5" column="1"> - <widget class="QCheckBox" name="check_xdg_startupNotify"> - <property name="text"> - <string>Use startup notification</string> - </property> - </widget> - </item> - <item row="3" column="1"> - <widget class="QLineEdit" name="line_xdg_wdir"> - <property name="enabled"> - <bool>true</bool> - </property> - </widget> - </item> - <item row="4" column="0" alignment="Qt::AlignRight"> - <widget class="QLabel" name="lblIcon"> - <property name="text"> - <string>Icon:</string> - </property> - </widget> - </item> - <item row="2" column="0" alignment="Qt::AlignRight"> - <widget class="QLabel" name="lblCommand"> - <property name="text"> - <string>Command:</string> - </property> - </widget> - </item> - <item row="1" column="0" alignment="Qt::AlignRight"> - <widget class="QLabel" name="lblComment"> - <property name="text"> - <string>Comment:</string> - </property> - </widget> - </item> - <item row="2" column="1"> - <widget class="QLineEdit" name="line_xdg_command"/> - </item> - <item row="6" column="1"> - <widget class="QCheckBox" name="check_xdg_useTerminal"> - <property name="text"> - <string>Run in terminal</string> - </property> - </widget> - </item> - <item row="0" column="0" alignment="Qt::AlignRight"> - <widget class="QLabel" name="lblName"> - <property name="text"> - <string>Name:</string> - </property> - </widget> - </item> - <item row="5" column="0" alignment="Qt::AlignRight"> - <widget class="QLabel" name="lblOptions"> - <property name="text"> - <string>Options</string> - </property> - </widget> - </item> - <item row="0" column="1" colspan="2"> - <widget class="QLineEdit" name="line_xdg_name"/> - </item> - <item row="1" column="1" colspan="2"> - <widget class="QLineEdit" name="line_xdg_comment"/> - </item> - <item row="2" column="2"> - <widget class="QToolButton" name="tool_xdg_getCommand"> - <property name="text"> - <string notr="true"/> - </property> - </widget> - </item> - <item row="3" column="2"> - <widget class="QToolButton" name="tool_xdg_getDir"> - <property name="enabled"> - <bool>true</bool> - </property> - <property name="text"> - <string notr="true"/> - </property> - </widget> - </item> - <item row="4" column="1"> - <layout class="QHBoxLayout" name="horizontalLayout"> - <item> - <widget class="QToolButton" name="push_xdg_getIcon"> - <property name="maximumSize"> - <size> - <width>275</width> - <height>16777215</height> - </size> - </property> - <property name="text"> - <string>No Icon</string> - </property> - <property name="iconSize"> - <size> - <width>64</width> - <height>64</height> - </size> - </property> - </widget> - </item> - <item> - <spacer name="horizontalSpacer"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>40</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - </layout> - </item> - </layout> - </item> - <item> - <widget class="Line" name="line"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - </widget> - </item> - </layout> - </widget> - </widget> - </item> - <item> - <layout class="QHBoxLayout" name="horizontalLayout_2"> - <item> - <spacer name="horizontalSpacer_2"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>40</width> - <height>20</height> - </size> - </property> - </spacer> - </item> - <item> - <widget class="QPushButton" name="push_save"> - <property name="text"> - <string>Save</string> - </property> - </widget> - </item> - <item> - <widget class="QPushButton" name="push_close"> - <property name="text"> - <string>Close</string> - </property> - </widget> - </item> - </layout> - </item> - </layout> - </widget> - <layoutdefault spacing="6" margin="11"/> - <tabstops> - <tabstop>line_xdg_name</tabstop> - <tabstop>line_xdg_comment</tabstop> - <tabstop>line_xdg_command</tabstop> - <tabstop>line_xdg_wdir</tabstop> - <tabstop>check_xdg_startupNotify</tabstop> - <tabstop>check_xdg_useTerminal</tabstop> - <tabstop>tool_xdg_getCommand</tabstop> - <tabstop>tool_xdg_getDir</tabstop> - </tabstops> - <resources/> - <connections/> -</ui> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_af.ts b/lumina-fileinfo/i18n/lumina-fileinfo_af.ts deleted file mode 100644 index 05396d24..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_af.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="af_ZA"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ar.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ar.ts deleted file mode 100644 index 7a58299b..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ar.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ar_EG"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_az.ts b/lumina-fileinfo/i18n/lumina-fileinfo_az.ts deleted file mode 100644 index aeac4343..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_az.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="az_AZ"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_bg.ts b/lumina-fileinfo/i18n/lumina-fileinfo_bg.ts deleted file mode 100644 index 05989ece..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_bg.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="bg_BG"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_bn.ts b/lumina-fileinfo/i18n/lumina-fileinfo_bn.ts deleted file mode 100644 index 68091313..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_bn.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="bn_BD"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_bs.ts b/lumina-fileinfo/i18n/lumina-fileinfo_bs.ts deleted file mode 100644 index d73a1bb5..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_bs.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="bs_BA"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ca.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ca.ts deleted file mode 100644 index 19e6ea8a..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ca.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ca_ES"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_cs.ts b/lumina-fileinfo/i18n/lumina-fileinfo_cs.ts deleted file mode 100644 index 11077a51..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_cs.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="cs_CZ"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_cy.ts b/lumina-fileinfo/i18n/lumina-fileinfo_cy.ts deleted file mode 100644 index dee7dc08..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_cy.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="cy_GB"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_da.ts b/lumina-fileinfo/i18n/lumina-fileinfo_da.ts deleted file mode 100644 index 56086626..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_da.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="da_DK"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_de.ts b/lumina-fileinfo/i18n/lumina-fileinfo_de.ts deleted file mode 100644 index dd8aae0e..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_de.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="de_DE"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_el.ts b/lumina-fileinfo/i18n/lumina-fileinfo_el.ts deleted file mode 100644 index b0f23a61..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_el.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="el_GR"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_en_GB.ts b/lumina-fileinfo/i18n/lumina-fileinfo_en_GB.ts deleted file mode 100644 index 3300cec1..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_en_GB.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="en_GB"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_en_ZA.ts b/lumina-fileinfo/i18n/lumina-fileinfo_en_ZA.ts deleted file mode 100644 index da41d5e6..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_en_ZA.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="en_ZA"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_es.ts b/lumina-fileinfo/i18n/lumina-fileinfo_es.ts deleted file mode 100644 index 7905fcde..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_es.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="es_ES"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_et.ts b/lumina-fileinfo/i18n/lumina-fileinfo_et.ts deleted file mode 100644 index cb515e62..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_et.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="et_EE"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_eu.ts b/lumina-fileinfo/i18n/lumina-fileinfo_eu.ts deleted file mode 100644 index 8e06ce7f..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_eu.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="eu_ES"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_fa.ts b/lumina-fileinfo/i18n/lumina-fileinfo_fa.ts deleted file mode 100644 index 8b6ae9d3..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_fa.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="fa_IR"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_fi.ts b/lumina-fileinfo/i18n/lumina-fileinfo_fi.ts deleted file mode 100644 index 6298ca2c..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_fi.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="fi_FI"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_fr.ts b/lumina-fileinfo/i18n/lumina-fileinfo_fr.ts deleted file mode 100644 index cf785aa0..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_fr.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="fr_FR"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_fr_CA.ts b/lumina-fileinfo/i18n/lumina-fileinfo_fr_CA.ts deleted file mode 100644 index 75f09a08..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_fr_CA.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="fr_CA"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_gl.ts b/lumina-fileinfo/i18n/lumina-fileinfo_gl.ts deleted file mode 100644 index 3c9da2a9..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_gl.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="gl_ES"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_he.ts b/lumina-fileinfo/i18n/lumina-fileinfo_he.ts deleted file mode 100644 index 80502b58..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_he.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="he_IL"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_hi.ts b/lumina-fileinfo/i18n/lumina-fileinfo_hi.ts deleted file mode 100644 index c4817f79..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_hi.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="hi_IN"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_hr.ts b/lumina-fileinfo/i18n/lumina-fileinfo_hr.ts deleted file mode 100644 index 23a7a2ee..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_hr.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="hr_HR"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_hu.ts b/lumina-fileinfo/i18n/lumina-fileinfo_hu.ts deleted file mode 100644 index 72510402..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_hu.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="hu_HU"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_id.ts b/lumina-fileinfo/i18n/lumina-fileinfo_id.ts deleted file mode 100644 index de76beea..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_id.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="id_ID"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_is.ts b/lumina-fileinfo/i18n/lumina-fileinfo_is.ts deleted file mode 100644 index 68117706..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_is.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="is_IS"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_it.ts b/lumina-fileinfo/i18n/lumina-fileinfo_it.ts deleted file mode 100644 index 97c1bf16..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_it.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="it_IT"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ja.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ja.ts deleted file mode 100644 index 6b1fecf4..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ja.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ja_JP"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ka.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ka.ts deleted file mode 100644 index abf7a119..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ka.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ka_GE"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ko.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ko.ts deleted file mode 100644 index a9d61f19..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ko.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ko_KR"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_lt.ts b/lumina-fileinfo/i18n/lumina-fileinfo_lt.ts deleted file mode 100644 index 6bfe9443..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_lt.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="lt_LT"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_lv.ts b/lumina-fileinfo/i18n/lumina-fileinfo_lv.ts deleted file mode 100644 index e48f5b3d..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_lv.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="lv_LV"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_mk.ts b/lumina-fileinfo/i18n/lumina-fileinfo_mk.ts deleted file mode 100644 index 7a77544f..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_mk.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="mk_MK"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_mn.ts b/lumina-fileinfo/i18n/lumina-fileinfo_mn.ts deleted file mode 100644 index 594351eb..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_mn.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="mn_MN"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ms.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ms.ts deleted file mode 100644 index 1fa7edf6..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ms.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ms_MY"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_mt.ts b/lumina-fileinfo/i18n/lumina-fileinfo_mt.ts deleted file mode 100644 index 11c881a6..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_mt.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="mt_MT"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_nb.ts b/lumina-fileinfo/i18n/lumina-fileinfo_nb.ts deleted file mode 100644 index f3ad6f00..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_nb.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="nb_NO"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_nl.ts b/lumina-fileinfo/i18n/lumina-fileinfo_nl.ts deleted file mode 100644 index 3dc5cd83..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_nl.ts +++ /dev/null @@ -1,166 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="nl_NL"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation>Bestand informatie</translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation>Werkmap:</translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation>Gebruik opstart notificatie</translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation>Icoon:</translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation>Commando:</translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation>Commentaar:</translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation>Draaien in terminal</translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation>Naam</translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation>Opties</translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation>Annuleren</translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation>Toepassen</translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation>Fout</translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation>Lumina-bestandinformatie vereist inputs:</translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation>Voorbeeld:</translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation>Werkmap</translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation>Bestandnaam kan niet beginnen met een "-".</translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation>Fout tijdens lezen van bureaublad bestand genaamd:</translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation>Er zijn problemen met dit bestand !!!!</translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation>U kunt dit bestand zowel zelf aanpassen met een editor, of opnieuw beginnen vanaf scratch met het gebruik van de link of de applicatie blouwdruk. -Opmerking: dit process zal de file aanpassen genaamd:</translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation>Open commando</translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation>Alle bestanden (*)</translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation>Werkmap</translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation>Fout tijdens schrijven naar schijf</translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation>Er is een probleem bij het schrijven van het aangepast bureaublad bestand naar de schijf. U kunt het opnieuw proberen na het verhelpen van het probleem met de schijf?</translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation>Er is een probleem bij het uitvoeren van het volgende commando:</translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation>Afbeelding bestanden (*.png *.jpg *.bmp)</translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation>Bij het toevoegen van deze waarde zullen alle vertalingen hiervan verloren gaan</translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation>Dit veld: Naam is vertaald in verschillende andere talen. Als u wilt doorgaan zullen alle vertalingen hiervan verloren gaan</translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation>Dit veld: Commentaar is vertaald in verschillende andere talen. Als u wilt doorgaan zullen alle vertalingen hiervan verloren gaan</translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_pa.ts b/lumina-fileinfo/i18n/lumina-fileinfo_pa.ts deleted file mode 100644 index a5fe2f0d..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_pa.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="pa_IN"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_pl.ts b/lumina-fileinfo/i18n/lumina-fileinfo_pl.ts deleted file mode 100644 index 55b0d8a4..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_pl.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="pl_PL"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_pt.ts b/lumina-fileinfo/i18n/lumina-fileinfo_pt.ts deleted file mode 100644 index 3031d08f..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_pt.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="pt"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_pt_BR.ts b/lumina-fileinfo/i18n/lumina-fileinfo_pt_BR.ts deleted file mode 100644 index 1e0c5338..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_pt_BR.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="pt_BR"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ro.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ro.ts deleted file mode 100644 index 60aaec20..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ro.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ro_RO"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ru.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ru.ts deleted file mode 100644 index 267317f8..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ru.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ru_RU"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_sk.ts b/lumina-fileinfo/i18n/lumina-fileinfo_sk.ts deleted file mode 100644 index 78d2e56f..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_sk.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="sk_SK"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_sl.ts b/lumina-fileinfo/i18n/lumina-fileinfo_sl.ts deleted file mode 100644 index afae9938..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_sl.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="sl_SI"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_sr.ts b/lumina-fileinfo/i18n/lumina-fileinfo_sr.ts deleted file mode 100644 index b6fc133b..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_sr.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="sr_RS"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_sv.ts b/lumina-fileinfo/i18n/lumina-fileinfo_sv.ts deleted file mode 100644 index 88cf666e..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_sv.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="sv_SE"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_sw.ts b/lumina-fileinfo/i18n/lumina-fileinfo_sw.ts deleted file mode 100644 index 11089fea..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_sw.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="sw_TZ"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_ta.ts b/lumina-fileinfo/i18n/lumina-fileinfo_ta.ts deleted file mode 100644 index cb184927..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_ta.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="ta_IN"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_tg.ts b/lumina-fileinfo/i18n/lumina-fileinfo_tg.ts deleted file mode 100644 index 8de9af24..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_tg.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="tg_TJ"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_th.ts b/lumina-fileinfo/i18n/lumina-fileinfo_th.ts deleted file mode 100644 index 969939e7..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_th.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="th_TH"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_tr.ts b/lumina-fileinfo/i18n/lumina-fileinfo_tr.ts deleted file mode 100644 index 5e7d700b..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_tr.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="tr_TR"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_uk.ts b/lumina-fileinfo/i18n/lumina-fileinfo_uk.ts deleted file mode 100644 index 90f732a1..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_uk.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="uk_UA"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_uz.ts b/lumina-fileinfo/i18n/lumina-fileinfo_uz.ts deleted file mode 100644 index 1c391af6..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_uz.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="uz_UZ"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_vi.ts b/lumina-fileinfo/i18n/lumina-fileinfo_vi.ts deleted file mode 100644 index 82078a7d..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_vi.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="vi_VN"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_zh_CN.ts b/lumina-fileinfo/i18n/lumina-fileinfo_zh_CN.ts deleted file mode 100644 index d63273dc..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_zh_CN.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="zh_CN"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_zh_HK.ts b/lumina-fileinfo/i18n/lumina-fileinfo_zh_HK.ts deleted file mode 100644 index 44eaab6c..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_zh_HK.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="zh_HK"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_zh_TW.ts b/lumina-fileinfo/i18n/lumina-fileinfo_zh_TW.ts deleted file mode 100644 index 33a5da6c..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_zh_TW.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="zh_TW"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/i18n/lumina-fileinfo_zu.ts b/lumina-fileinfo/i18n/lumina-fileinfo_zu.ts deleted file mode 100644 index 8c0d0e05..00000000 --- a/lumina-fileinfo/i18n/lumina-fileinfo_zu.ts +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="zu_ZA"> -<context> - <name>Dialog</name> - <message> - <location filename="../dialog.ui" line="14"/> - <source>File Information</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="22"/> - <source>Working dir:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="56"/> - <source>Use startup notification</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="70"/> - <source>Icon:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="77"/> - <source>Command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="84"/> - <source>Comment:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="118"/> - <source>Run in terminal</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="125"/> - <source>Name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="132"/> - <source>Options</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="162"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.ui" line="169"/> - <source>Apply</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <location filename="../dialog.cpp" line="125"/> - <location filename="../dialog.cpp" line="160"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Lumina-fileinfo requires inputs:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="84"/> - <source>Example: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="101"/> - <source>URL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="111"/> - <source>Working dir</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="125"/> - <source>The filename cannot start with a "-".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="160"/> - <source>Problem to read the desktop file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="182"/> - <source>There are some issues with this file !!!!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="183"/> - <source>Either you correct this file your self with an editor, or you start from scratch using the link or app template. -Please note that this process will update the file called:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <location filename="../dialog.cpp" line="323"/> - <source>Open command</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="217"/> - <source>All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="233"/> - <source>Working Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>Problem to write to disk</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="285"/> - <source>We have a problem to write the adapted desktop file to the disk. Can you re-try the modification after solving the issue with the disk ?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="300"/> - <location filename="../dialog.cpp" line="309"/> - <source>We have a problem to execute the following command:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="323"/> - <source>Image Files (*.png *.jpg *.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="334"/> - <location filename="../dialog.cpp" line="351"/> - <source>By modifying this value, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="335"/> - <source>The field: Name is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../dialog.cpp" line="352"/> - <source>The field: Comment is translated in several other languages. If you want to continue, you will loose all translated versions</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/lumina-fileinfo/lumina-fileinfo.desktop b/lumina-fileinfo/lumina-fileinfo.desktop deleted file mode 100644 index 91dace87..00000000 --- a/lumina-fileinfo/lumina-fileinfo.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Exec=lumina-fileinfo %f -TryExec=lumina-fileinfo -Icon=unknown -Terminal=false -Type=Application -StartupNotify=true -Categories=System; -Name=Lumina File Information -Comment=View or edit file information - diff --git a/lumina-fileinfo/lumina-fileinfo.pro b/lumina-fileinfo/lumina-fileinfo.pro deleted file mode 100644 index 55ebe211..00000000 --- a/lumina-fileinfo/lumina-fileinfo.pro +++ /dev/null @@ -1,96 +0,0 @@ -include("$${PWD}/../OS-detect.pri") - -QT += core gui -greaterThan(QT_MAJOR_VERSION, 4): QT += widgets concurrent - - -TARGET = lumina-fileinfo -TEMPLATE = app - -target.path = $${L_BINDIR} - -SOURCES += main.cpp\ - MainUI.cpp - -HEADERS += MainUI.h - -FORMS += MainUI.ui - -#RESOURCES+= lumina-fileinfo.qrc - -LIBS += -lLuminaUtils - -DEPENDPATH += ../libLumina - - -TRANSLATIONS = i18n/lumina-fileinfo_af.ts \ - i18n/lumina-fileinfo_ar.ts \ - i18n/lumina-fileinfo_az.ts \ - i18n/lumina-fileinfo_bg.ts \ - i18n/lumina-fileinfo_bn.ts \ - i18n/lumina-fileinfo_bs.ts \ - i18n/lumina-fileinfo_ca.ts \ - i18n/lumina-fileinfo_cs.ts \ - i18n/lumina-fileinfo_cy.ts \ - i18n/lumina-fileinfo_da.ts \ - i18n/lumina-fileinfo_de.ts \ - i18n/lumina-fileinfo_el.ts \ - i18n/lumina-fileinfo_en_GB.ts \ - i18n/lumina-fileinfo_en_ZA.ts \ - i18n/lumina-fileinfo_es.ts \ - i18n/lumina-fileinfo_et.ts \ - i18n/lumina-fileinfo_eu.ts \ - i18n/lumina-fileinfo_fa.ts \ - i18n/lumina-fileinfo_fi.ts \ - i18n/lumina-fileinfo_fr.ts \ - i18n/lumina-fileinfo_fr_CA.ts \ - i18n/lumina-fileinfo_gl.ts \ - i18n/lumina-fileinfo_he.ts \ - i18n/lumina-fileinfo_hi.ts \ - i18n/lumina-fileinfo_hr.ts \ - i18n/lumina-fileinfo_hu.ts \ - i18n/lumina-fileinfo_id.ts \ - i18n/lumina-fileinfo_is.ts \ - i18n/lumina-fileinfo_it.ts \ - i18n/lumina-fileinfo_ja.ts \ - i18n/lumina-fileinfo_ka.ts \ - i18n/lumina-fileinfo_ko.ts \ - i18n/lumina-fileinfo_lt.ts \ - i18n/lumina-fileinfo_lv.ts \ - i18n/lumina-fileinfo_mk.ts \ - i18n/lumina-fileinfo_mn.ts \ - i18n/lumina-fileinfo_ms.ts \ - i18n/lumina-fileinfo_mt.ts \ - i18n/lumina-fileinfo_nb.ts \ - i18n/lumina-fileinfo_nl.ts \ - i18n/lumina-fileinfo_pa.ts \ - i18n/lumina-fileinfo_pl.ts \ - i18n/lumina-fileinfo_pt.ts \ - i18n/lumina-fileinfo_pt_BR.ts \ - i18n/lumina-fileinfo_ro.ts \ - i18n/lumina-fileinfo_ru.ts \ - i18n/lumina-fileinfo_sk.ts \ - i18n/lumina-fileinfo_sl.ts \ - i18n/lumina-fileinfo_sr.ts \ - i18n/lumina-fileinfo_sv.ts \ - i18n/lumina-fileinfo_sw.ts \ - i18n/lumina-fileinfo_ta.ts \ - i18n/lumina-fileinfo_tg.ts \ - i18n/lumina-fileinfo_th.ts \ - i18n/lumina-fileinfo_tr.ts \ - i18n/lumina-fileinfo_uk.ts \ - i18n/lumina-fileinfo_uz.ts \ - i18n/lumina-fileinfo_vi.ts \ - i18n/lumina-fileinfo_zh_CN.ts \ - i18n/lumina-fileinfo_zh_HK.ts \ - i18n/lumina-fileinfo_zh_TW.ts \ - i18n/lumina-fileinfo_zu.ts - -dotrans.path=$${L_SHAREDIR}/Lumina-DE/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/Lumina-DE/i18n/ - -INSTALLS += target dotrans - -NO_I18N{ - INSTALLS -= dotrans -}
\ No newline at end of file diff --git a/lumina-fileinfo/main.cpp b/lumina-fileinfo/main.cpp deleted file mode 100644 index f8ba3620..00000000 --- a/lumina-fileinfo/main.cpp +++ /dev/null @@ -1,59 +0,0 @@ -#include <QTranslator> -#include <QApplication> -#include <QDebug> -#include <QFile> - -#include "MainUI.h" -#include <LuminaUtils.h> -#include <LuminaThemes.h> - -int main(int argc, char ** argv) -{ - LTHEME::LoadCustomEnvSettings(); - QApplication a(argc, argv); - LUtils::LoadTranslation(&a, "lumina-fileinfo"); - LuminaThemeEngine theme(&a); - - - //Read the input variables - QString path = ""; - QString flag = ""; - if (argc==2) { - path = QString::fromLocal8Bit(argv[1]); - }else if (argc==3) { - flag = QString::fromLocal8Bit(argv[1]); - path = QString::fromLocal8Bit(argv[2]); - } - //Check the input variables - // - path - if(!path.isEmpty()){ path = LUtils::PathToAbsolute(path); } - // - flag - if(!flag.isEmpty()){ - if(flag=="-application"){ - flag = "APP"; //for internal use - }else if(flag=="-link"){ - flag = "LINK"; //for internal use - }else{ - //Invalid flag - clear the path as well - path.clear(); - } - } - if(!path.isEmpty()){ - //if(!QFile::exists(path)){ LUtils::writeFile(path,QStringList()); } //create an empty file - MainUI w; - QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(UpdateIcons()) ); - w.LoadFile(path, flag); - w.show(); - int retCode = a.exec(); - return retCode; - }else{ - //Show an error text and exit - QStringList msg; - msg << "ERROR: Invalid input arguments"; - msg << "Usage: \"lumina-fileinfo [-application | -link] <file>"; - qDebug() << msg.join("\n"); - return 1; - } - - -}
\ No newline at end of file |